From 2d13c943c5f84463c688d0e19c1352424a499821 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Fri, 30 Jan 2026 00:35:48 -0500 Subject: [PATCH 1/6] Merger (#75) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ptr727 <2061579+ptr727@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- LanguageTags/.editorconfig | 3 +++ LanguageTags/LanguageTags.csproj | 11 ++++++----- LanguageTagsTests/LanguageTagsTests.csproj | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/LanguageTags/.editorconfig b/LanguageTags/.editorconfig index c9179fd..e7ba7f1 100644 --- a/LanguageTags/.editorconfig +++ b/LanguageTags/.editorconfig @@ -5,3 +5,6 @@ root = false # Ignore normalize strings to uppercase dotnet_diagnostic.CA1308.severity = none + +# Ignore missing XML comments +dotnet_diagnostic.CS1591.severity = none diff --git a/LanguageTags/LanguageTags.csproj b/LanguageTags/LanguageTags.csproj index dabc6d9..a69358d 100644 --- a/LanguageTags/LanguageTags.csproj +++ b/LanguageTags/LanguageTags.csproj @@ -10,6 +10,7 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags true 1.0.0.0 + true true true 1.0.0-pre @@ -29,13 +30,13 @@ net10.0 1.0.0.0 - - true - $(NoWarn);1591 - - + diff --git a/LanguageTagsTests/LanguageTagsTests.csproj b/LanguageTagsTests/LanguageTagsTests.csproj index e36b670..6a7849a 100644 --- a/LanguageTagsTests/LanguageTagsTests.csproj +++ b/LanguageTagsTests/LanguageTagsTests.csproj @@ -11,12 +11,12 @@ - - + all runtime; build; native; contentfiles; analyzers; buildtransitive + From ad8a5c46618bc8adb4216167e1d07d65910529c1 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sun, 1 Feb 2026 12:20:17 -0500 Subject: [PATCH 2/6] Refactor LanguageTag and LanguageTagBuilder for improved documentation and validation (#77) - Updated XML documentation in LanguageTag.cs to clarify return values and parsing behavior. - Enhanced LanguageTagBuilder methods to specify that they set subtags without validation. - Improved normalization and validation methods in LanguageTagParser to ensure null checks are handled properly. - Added remarks in LogOptions to clarify the effects of setting logger factory and logger after creation. - Streamlined async file handling in Rfc5646Data to use 'using' statements for better resource management. - Updated tests to inherit from SingleInstanceFixture for consistent test execution and resource management. - Refined exception handling in Program.cs to ensure proper logging and cleanup on errors. - General code cleanup and consistency improvements across various files. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ptr727 <2061579+ptr727@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .editorconfig | 11 +- .github/copilot-instructions.md | 114 +- AGENTS.md | 23 +- CODESTYLE.md | 28 +- HISTORY.md | 10 +- LanguageTags.code-workspace | 4 +- LanguageTags/Extensions.cs | 4 +- LanguageTags/Iso6392Data.cs | 146 +- LanguageTags/Iso6392DataGen.cs | 5 + LanguageTags/Iso6393Data.cs | 150 +- LanguageTags/Iso6393DataGen.cs | 7932 ++++++++++++++++++ LanguageTags/LanguageLookup.cs | 43 +- LanguageTags/LanguageSchema.cs | 14 - LanguageTags/LanguageTag.cs | 83 +- LanguageTags/LanguageTagBuilder.cs | 37 +- LanguageTags/LanguageTagParser.cs | 55 +- LanguageTags/LogOptions.cs | 106 +- LanguageTags/Options.cs | 17 - LanguageTags/Rfc5646Data.cs | 161 +- LanguageTags/Rfc5646DataGen.cs | 5 + LanguageTagsCreate/CommandLine.cs | 3 +- LanguageTagsCreate/CreateTagData.cs | 42 +- LanguageTagsCreate/Extensions.cs | 4 +- LanguageTagsCreate/HttpClientFactory.cs | 10 +- LanguageTagsCreate/LoggerFactory.cs | 32 +- LanguageTagsCreate/Program.cs | 41 +- LanguageTagsTests/.editorconfig | 9 + LanguageTagsTests/Fixture.cs | 22 +- LanguageTagsTests/Iso6392Tests.cs | 56 +- LanguageTagsTests/Iso6393Tests.cs | 56 +- LanguageTagsTests/LanguageLookupTests.cs | 2 +- LanguageTagsTests/LanguageTagBuilderTests.cs | 21 +- LanguageTagsTests/LanguageTagParserTests.cs | 2 +- LanguageTagsTests/LanguageTagTests.cs | 104 +- LanguageTagsTests/LogOptionsTests.cs | 138 +- LanguageTagsTests/Rfc5646Tests.cs | 55 +- README.md | 58 +- 37 files changed, 8650 insertions(+), 953 deletions(-) delete mode 100644 LanguageTags/Options.cs diff --git a/.editorconfig b/.editorconfig index 6be9a0e..bfbe233 100644 --- a/.editorconfig +++ b/.editorconfig @@ -22,7 +22,7 @@ insert_final_newline = true trim_trailing_whitespace = true # Markdown files -[*.{md}] +[*.md] end_of_line = crlf trim_trailing_whitespace = false @@ -39,7 +39,6 @@ indent_size = 2 # Json files [*.json] end_of_line = crlf -indent_size = 4 # Linux scripts [*.sh] @@ -73,7 +72,7 @@ csharp_prefer_simple_using_statement = true csharp_prefer_static_anonymous_function = true csharp_prefer_static_local_function = true csharp_prefer_system_threading_lock = true -csharp_preferred_modifier_order = public,private,protected,internal,file,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async +csharp_preferred_modifier_order = public,private,protected,internal,file,static,abstract,sealed,virtual,override,readonly,unsafe,volatile,async,extern,new,partial:warning csharp_preserve_single_line_blocks = true csharp_preserve_single_line_statements = false csharp_space_after_cast = false @@ -204,3 +203,9 @@ dotnet_style_qualification_for_method = false dotnet_style_qualification_for_property = false dotnet_style_readonly_field = true dotnet_style_require_accessibility_modifiers = for_non_interface_members + +# ReSharper settings +resharper_csharp_trailing_comma_in_multiline_lists = true +resharper_csharp_var_for_built_in_types = false +resharper_csharp_var_when_type_is_apparent = false +resharper_csharp_var_when_type_is_not_apparent = false diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index aa228eb..6d6c964 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -28,11 +28,10 @@ - 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 +- **LanguageTagsTests** (`LanguageTagsTests/LanguageTagsTests.csproj`) + - xUnit test suite with comprehensive coverage + - Uses AwesomeAssertions for test assertions + - Target framework: .NET 10.0 ### Key Directories @@ -56,12 +55,9 @@ The main public API for working with language tags: **Static Factory Methods:** - `Parse(string tag)`: Parse a language tag string, returns null on failure -- `Parse(string tag, Options? options)`: Parse with per-call logging options - `TryParse(string tag, out LanguageTag? result)`: Safe parsing with out parameter -- `TryParse(string tag, out LanguageTag? result, Options? options)`: Safe parsing with per-call logging options - `ParseOrDefault(string tag, LanguageTag? defaultTag = null)`: Parse with fallback to "und" - `ParseAndNormalize(string tag)`: Parse and normalize in one step -- `ParseAndNormalize(string tag, Options? options)`: Parse and normalize with per-call logging options - `CreateBuilder()`: Create a fluent builder instance - `FromLanguage(string language)`: Factory for simple language tags - `FromLanguageRegion(string language, string region)`: Factory for language+region tags @@ -77,10 +73,9 @@ The main public API for working with language tags: - `PrivateUse`: PrivateUseTag object - `IsValid`: Property to check if tag is valid -**Instance Methods:** -- `Validate()`: Verify tag correctness -- `Normalize()`: Return normalized copy of tag -- `Normalize(Options? options)`: Return normalized copy with per-call logging options +**Instance Methods:** +- `Validate()`: Verify structural correctness +- `Normalize()`: Return normalized copy of tag (does not validate) - `ToString()`: String representation - `Equals()`: Equality comparison (case-insensitive) - `GetHashCode()`: Hash code for collections @@ -107,8 +102,7 @@ Fluent builder for constructing language tags: - `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) -- `Normalize(Options? options)`: Return normalized tag with per-call logging options +- `Normalize()`: Return normalized tag (no validation) ### LanguageTagParser Class (LanguageTagParser.cs) @@ -138,56 +132,77 @@ Provides language code conversion and matching: - `GetIsoFromIetf(string languageTag)`: Convert IETF to ISO format - `IsMatch(string prefix, string languageTag)`: Prefix matching for content selection -**Construction:** -- `new LanguageLookup(Options? options = null)`: Optional per-instance logging +### LogOptions Class (LogOptions.cs) + +Static class for configuring global logging for the entire library: + +**Properties:** +- `LoggerFactory`: Gets or sets the global logger factory for creating category loggers + +**Methods:** +- `SetFactory(ILoggerFactory loggerFactory)`: Configure the library to use a logger factory +- `TrySetFactory(ILoggerFactory loggerFactory)`: Set factory only if none is configured + +**Logger Resolution Priority:** +1. `LoggerFactory` property (when not `NullLoggerFactory`) +2. `NullLogger.Instance` (default fallback) + +**Important Notes:** +- Loggers are created and cached at time of use by each class instance +- Changes to `LoggerFactory` after a logger is created do not affect existing cached loggers +- Only new logger requests use updated configuration ### Data Models -#### Iso6392Data.cs -- ISO 639-2 language codes (3-letter bibliographic/terminologic codes) -- **Public Methods:** - - `Create()`: Load embedded data - - `LoadDataAsync(string fileName)`: Load from file - - `LoadJsonAsync(string fileName)`: Load from JSON - - `Find(string? languageTag, bool includeDescription)`: Find record by tag - - `Find(string? languageTag, bool includeDescription, Options? options)`: Find record by tag with logging options +#### Iso6392Data.cs +- ISO 639-2 language codes (3-letter bibliographic/terminologic codes) +- **Public Methods:** + - `Create()`: Load embedded data + - `FromDataAsync(string fileName)`: Load from file + - `FromJsonAsync(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Internal Methods:** `SaveJsonAsync(string fileName)`, `SaveCodeAsync(string fileName)` - **Record Properties:** `Part2B`, `Part2T`, `Part1`, `RefName` -#### Iso6393Data.cs -- ISO 639-3 language codes (comprehensive language codes) -- **Public Methods:** - - `Create()`: Load embedded data - - `LoadDataAsync(string fileName)`: Load from file - - `LoadJsonAsync(string fileName)`: Load from JSON - - `Find(string? languageTag, bool includeDescription)`: Find record by tag - - `Find(string? languageTag, bool includeDescription, Options? options)`: Find record by tag with logging options +#### Iso6393Data.cs +- ISO 639-3 language codes (comprehensive language codes) +- **Public Methods:** + - `Create()`: Load embedded data + - `FromDataAsync(string fileName)`: Load from file + - `FromJsonAsync(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Internal Methods:** `SaveJsonAsync(string fileName)`, `SaveCodeAsync(string fileName)` - **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 - - `LoadDataAsync(string fileName)`: Load from file - - `LoadJsonAsync(string fileName)`: Load from JSON - - `Find(string? languageTag, bool includeDescription)`: Find record by tag - - `Find(string? languageTag, bool includeDescription, Options? options)`: Find record by tag with logging options -- **Properties:** `FileDate`, `RecordList` -- **Record Properties:** `Type`, `Tag`, `SubTag`, `Description` (ImmutableArray), `Added`, `SuppressScript`, `Scope`, `MacroLanguage`, `Deprecated`, `Comments` (ImmutableArray), `Prefix` (ImmutableArray), `PreferredValue`, `TagAny` +#### Rfc5646Data.cs +- RFC 5646 / BCP 47 language subtag registry +- **Public Methods:** + - `Create()`: Load embedded data + - `FromDataAsync(string fileName)`: Load from file + - `FromJsonAsync(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Properties:** `FileDate`, `RecordList` +- **Internal Methods:** `SaveJsonAsync(string fileName)`, `SaveCodeAsync(string fileName)` +- **Record Properties:** `Type`, `Tag`, `SubTag`, `Description` (ImmutableArray), `Added`, `SuppressScript`, `Scope`, `MacroLanguage`, `Deprecated`, `Comments` (ImmutableArray), `Prefix` (ImmutableArray), `PreferredValue`, `TagValue` - **Enums:** - `RecordType`: None, Language, ExtLanguage, Script, Variant, Grandfathered, Region, Redundant - `RecordScope`: None, MacroLanguage, Collection, Special, PrivateUse #### Supporting Classes -**ExtensionTag:** +**ExtensionTag (sealed record):** - `Prefix`: Single-character extension prefix (char) - `Tags`: ImmutableArray of extension values - `ToString()`: Format as "prefix-tag1-tag2" +- `Normalize()`: Returns normalized copy with sorted, lowercase tags +- `Equals()`: Case-insensitive equality comparison -**PrivateUseTag:** +**PrivateUseTag (sealed record):** - `Prefix`: Constant 'x' - `Tags`: ImmutableArray of private use values - `ToString()`: Format as "x-tag1-tag2" +- `Normalize()`: Returns normalized copy with sorted, lowercase tags +- `Equals()`: Case-insensitive equality comparison ### Language Tag Structure @@ -273,24 +288,24 @@ LanguageTag tag = LanguageTag.ParseOrDefault(input); // Falls back to "und" ## Recent API Changes -### Changed (Breaking) +### Changed (Breaking) - `LanguageTagParser` is now internal (use `LanguageTag.Parse()` instead) - Properties changed from `IList` to `ImmutableArray`: - `VariantList` → `Variants` - `ExtensionList` → `Extensions` - `TagList` → `Tags` -- Data file APIs are async-only: `LoadDataAsync()`/`LoadJsonAsync()`; sync versions removed +- Data file APIs are async-only and use static creators: `FromDataAsync()`/`FromJsonAsync()` +- Logging configuration now uses `ILoggerFactory` only; `ILogger` support was removed from `LogOptions` - 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.ParseAndNormalize(string, Options?)`: Combined parse and normalize with logging options - `LanguageTag.IsValid`: Property for validation - `LanguageTag.FromLanguage()`, `FromLanguageRegion()`, `FromLanguageScriptRegion()`: Factory methods - `IEquatable` implementation with operators -- Options-aware logging for parsing/normalization and lookup (`Options` + `LogOptions`) -- `LanguageLookup` supports optional logging via primary constructor +- `LogOptions` static class for global logging configuration with `ILoggerFactory` +- `ExtensionTag` and `PrivateUseTag` are now sealed records with `Normalize()` and case-insensitive `Equals()` methods - Comprehensive XML documentation for all public APIs ## Future Improvements @@ -300,7 +315,6 @@ Consider these areas for enhancement: - 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 diff --git a/AGENTS.md b/AGENTS.md index 5ee89e1..4d1feaa 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -30,20 +30,21 @@ For comprehensive coding standards and detailed conventions, refer to [`.github/ ### Key Components -**Public API Classes:** - -- `LanguageTag`: Main class for working with language tags (parse, build, normalize, validate) -- `LanguageTagBuilder`: Fluent builder for constructing language tags -- `LanguageLookup`: Language code conversion and matching (IETF ↔ ISO) -- `Iso6392Data`: ISO 639-2 language code data -- `Iso6393Data`: ISO 639-3 language code data -- `Rfc5646Data`: RFC 5646 / BCP 47 language subtag registry data -- `ExtensionTag`: Represents extension subtags -- `PrivateUseTag`: Represents private use subtags +**Public API Classes:** + +- `LanguageTag`: Main class for working with language tags (parse, build, normalize, validate) +- `LanguageTagBuilder`: Fluent builder for constructing language tags +- `LanguageLookup`: Language code conversion and matching (IETF ↔ ISO) +- `Iso6392Data`: ISO 639-2 language code data (`Create()`, `FromDataAsync()`, `FromJsonAsync()`) +- `Iso6393Data`: ISO 639-3 language code data (`Create()`, `FromDataAsync()`, `FromJsonAsync()`) +- `Rfc5646Data`: RFC 5646 / BCP 47 language subtag registry data (`Create()`, `FromDataAsync()`, `FromJsonAsync()`) +- `ExtensionTag`: Represents extension subtags (sealed record) +- `PrivateUseTag`: Represents private use subtags (sealed record) +- `LogOptions`: Static class for configuring library-wide logging via `ILoggerFactory` **Internal Classes:** -- `LanguageTagParser`: Internal parser (use `LanguageTag.Parse()` instead) +- `LanguageTagParser`: Internal parser implementation (use `LanguageTag.Parse()` instead) ## Authoritative References diff --git a/CODESTYLE.md b/CODESTYLE.md index 3952ddd..462f801 100644 --- a/CODESTYLE.md +++ b/CODESTYLE.md @@ -168,20 +168,38 @@ Note: Code snippets are illustrative examples only. Replace namespaces/types to - C#, XML, YAML, JSON, Windows scripts: CRLF - Linux scripts (`.sh`): LF -6. **`#region`**: Do not use. Prefer logical file/folder/namespace organization. -7. **Member ordering (StyleCop-like)**: Constants → fields → constructors → properties → indexers → methods → events → operators → finalizers → delegates → nested types +6. **`#region`**: Do not use regions. Prefer logical file/folder/namespace organization. +7. **Member ordering (StyleCop SA1201)**: const → static readonly → static fields → instance readonly fields → instance fields → constructors → public (events → properties → indexers → methods → operators) → non-public in same order → nested types ### Comments and Documentation 1. **XML documentation** - `true` - Missing XML comments for public APIs are suppressed (`.editorconfig`) - - Single-line summaries + - Must document all public surfaces. + - Single-line summaries, additional details in remarks, document input parameters, returns values, exceptions, and add crefs ```csharp /// - /// This property always returns a value < 1. + /// Example of a single line summary. /// + /// + /// Additional important details about usage. + /// Multiple lines if needed. + /// + /// + /// The quote category to request + /// + /// + /// A that can be used to cancel the request. + /// + /// + /// A containing the quote text. + /// + /// + /// Thrown when is not a supported value. + /// + public async Task GetQuoteOfTheDayAsync(string category, CancellationToken cancellationToken) {} ``` 2. **Code analysis suppressions** @@ -248,7 +266,7 @@ Note: Code snippets are illustrative examples only. Replace namespaces/types to ### Testing Conventions -1. **Framework**: xUnit with FluentAssertions +1. **Framework**: xUnit with AwesomeAssertions ```csharp [Fact] diff --git a/HISTORY.md b/HISTORY.md index 2e7d830..1081db8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,11 +5,11 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. ## Release History - Version 1.2: - - Refactored the project to follow standard patterns across other projects. - - IO APIs are now async-only (`LoadDataAsync`, `LoadJsonAsync`, `SaveJsonAsync`, `GenCodeAsync`). - - Added logging support for `ILogger` or `ILoggerFactory` per class instance or statically. - - JSON load/save and codegen now stream directly to/from files, no intermediate text buffers. - + - Refactored the project to follow standard patterns used across other projects. + - Added logging support configured through `LogOptions.SetFactory(ILoggerFactory)`. + - ⚠️ IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`. + - ⚠️ Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync()`. + - IO now streams directly to/from code/files without intermediate text buffers. - Version 1.1: - .NET 10 and AOT support. - Refactored public surfaces to minimize internals exposure. diff --git a/LanguageTags.code-workspace b/LanguageTags.code-workspace index 8f550b7..98d217f 100644 --- a/LanguageTags.code-workspace +++ b/LanguageTags.code-workspace @@ -13,6 +13,7 @@ "ANTLR", "arevela", "boont", + "chamí", "CLDR", "codegen", "csdevkit", @@ -20,6 +21,7 @@ "davidanson", "derbend", "dotnettools", + "Emberá", "extlang", "finalizers", "gruntfuggly", @@ -52,6 +54,7 @@ "pyfisch", "Qaaa", "Qabx", + "reparsed", "rspeer", "Serilog", "Simoncic", @@ -99,7 +102,6 @@ "github.vscode-github-actions", "ms-azuretools.vscode-docker", "ms-dotnettools.csdevkit", - "sanjulaganepola.github-local-actions", "yzhang.markdown-all-in-one", ] } diff --git a/LanguageTags/Extensions.cs b/LanguageTags/Extensions.cs index b9e4b6e..7555971 100644 --- a/LanguageTags/Extensions.cs +++ b/LanguageTags/Extensions.cs @@ -11,7 +11,7 @@ internal bool LogAndPropagate( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return false; } @@ -20,7 +20,7 @@ internal bool LogAndHandle( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return true; } } diff --git a/LanguageTags/Iso6392Data.cs b/LanguageTags/Iso6392Data.cs index efa0d11..dd18726 100644 --- a/LanguageTags/Iso6392Data.cs +++ b/LanguageTags/Iso6392Data.cs @@ -1,4 +1,5 @@ using System.Runtime.CompilerServices; +using System.Text.Json.Serialization; namespace ptr727.LanguageTags; @@ -10,31 +11,38 @@ public sealed partial class Iso6392Data internal const string DataUri = "https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt"; internal const string DataFileName = "iso6392"; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; + + [JsonConstructor] + internal Iso6392Data() { } + /// - /// Loads ISO 639-2 data from a file asynchronously. + /// Gets the collection of ISO 639-2 language records. /// - /// The path to the data file. - /// The loaded . - /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName) => - LoadDataAsync(fileName, LogOptions.CreateLogger()); + [JsonInclude] + public ImmutableArray RecordList { get; internal set; } = []; /// - /// Loads ISO 639-2 data from a file asynchronously using the specified options. + /// Creates an instance from a data file asynchronously. /// /// The path to the data file. - /// The options used to configure logging. /// The loaded . + /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options) => - LoadDataAsync(fileName, LogOptions.CreateLogger(options)); + public static async Task FromDataAsync(string fileName) + { + Iso6392Data iso6392Data = new(); + await iso6392Data.LoadDataAsync(fileName).ConfigureAwait(false); + return iso6392Data; + } [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadDataAsync(string fileName, ILogger logger) + private async Task LoadDataAsync(string fileName) { // https://www.loc.gov/standards/iso639-2/ascii_8bits.html // Alpha-3 (bibliographic) code @@ -88,53 +96,36 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (recordList.Count == 0) { - logger.LogDataLoadEmpty(nameof(Iso6392Data), fileName); + Log.LogDataLoadEmpty(nameof(Iso6392Data), fileName); throw new InvalidDataException($"No data found in ISO 639-2 file: {fileName}"); } - Iso6392Data data = new() { RecordList = [.. recordList] }; - logger.LogDataLoaded(nameof(Iso6392Data), fileName, data.RecordList.Length); - return data; + RecordList = [.. recordList]; + Log.LogDataLoaded(nameof(Iso6392Data), fileName, RecordList.Length); } catch (Exception exception) { - logger.LogDataLoadFailed(nameof(Iso6392Data), fileName, exception); + Log.LogDataLoadFailed(nameof(Iso6392Data), fileName, exception); throw; } } /// - /// Loads ISO 639-2 data from a JSON file asynchronously. + /// Creates an instance from a JSON file asynchronously. /// /// The path to the JSON file. - /// - /// The loaded , or null when deserialization yields no data. - /// - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName) => - LoadJsonAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads ISO 639-2 data from a JSON file asynchronously using the specified options. - /// - /// The path to the JSON file. - /// The options used to configure logging. - /// - /// The loaded , or null when deserialization yields no data. - /// + /// The loaded . + /// Thrown when the file contains invalid data. /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName, Options? options) => - LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); - [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + public static async Task FromJsonAsync(string fileName) { + ILogger logger = LogOptions.CreateLogger(); try { await using FileStream fileStream = new( @@ -151,12 +142,10 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (data == null) { logger.LogDataLoadEmpty(nameof(Iso6392Data), fileName); - } - else - { - logger.LogDataLoaded(nameof(Iso6392Data), fileName, data.RecordList.Length); + throw new InvalidDataException($"No data found in ISO 639-2 file: {fileName}"); } + logger.LogDataLoaded(nameof(Iso6392Data), fileName, data.RecordList.Length); return data; } catch (Exception exception) @@ -171,7 +160,7 @@ private static async Task LoadDataAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - internal static async Task SaveJsonAsync(string fileName, Iso6392Data iso6392) + internal async Task SaveJsonAsync(string fileName) { await using FileStream fileStream = new( fileName, @@ -182,19 +171,13 @@ internal static async Task SaveJsonAsync(string fileName, Iso6392Data iso6392) FileOptions.Asynchronous | FileOptions.SequentialScan ); await JsonSerializer - .SerializeAsync(fileStream, iso6392, LanguageJsonContext.Default.Iso6392Data) + .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Iso6392Data) .ConfigureAwait(false); } - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - internal static async Task GenCodeAsync(string fileName, Iso6392Data iso6392) + internal async Task SaveCodeAsync(string fileName) { - ArgumentNullException.ThrowIfNull(iso6392); - StreamWriter writer = new( + using StreamWriter writer = new( new FileStream( fileName, FileMode.Create, @@ -208,25 +191,32 @@ internal static async Task GenCodeAsync(string fileName, Iso6392Data iso6392) { NewLine = "\r\n", }; - await using ConfiguredAsyncDisposable writerScope = writer.ConfigureAwait(false); - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); await WriteLineAsync("namespace ptr727.LanguageTags;"); await WriteLineAsync(string.Empty); await WriteLineAsync("/// "); await WriteLineAsync("/// Provides access to ISO 639-2 language code data."); await WriteLineAsync("/// "); + await WriteLineAsync( + $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Iso6392Data).FullName}\", \"1.0\")]" + ); await WriteLineAsync("public sealed partial class Iso6392Data"); await WriteLineAsync("{"); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// Creates an instance loaded from the embedded ISO 639-2 dataset." + ); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// The populated instance." + ); await WriteLineAsync(" public static Iso6392Data Create() =>"); await WriteLineAsync(" new()"); await WriteLineAsync(" {"); await WriteLineAsync(" RecordList ="); await WriteLineAsync(" ["); - foreach (Iso6392Record record in iso6392.RecordList) + foreach (Iso6392Record record in RecordList) { await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -248,37 +238,27 @@ await WriteLineAsync( await WriteLineAsync(" ],"); await WriteLineAsync(" };"); await WriteLineAsync("}"); - } + return; - /// - /// Gets the collection of ISO 639-2 language records. - /// - public required ImmutableArray RecordList { get; init; } + ConfiguredTaskAwaitable WriteLineAsync(string value) => + writer.WriteLineAsync(value).ConfigureAwait(false); + } /// /// Finds an ISO 639-2 language record by language code or description. /// + /// + /// Matching is case-insensitive and checks Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// Null or empty values return null. + /// /// 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) => - Find(languageTag, includeDescription, LogOptions.CreateLogger()); - - /// - /// Finds an ISO 639-2 language record by language code or description using the specified options. - /// - /// The language code or description to search for. - /// If true, searches in the reference name field; otherwise, only searches language codes. - /// The options used to configure logging. - /// The matching or null if not found. - public Iso6392Record? Find(string? languageTag, bool includeDescription, Options? options) => - Find(languageTag, includeDescription, LogOptions.CreateLogger(options)); - - private Iso6392Record? Find(string? languageTag, bool includeDescription, ILogger logger) + /// The first matching , or null when no match is found. + public Iso6392Record? Find(string languageTag, bool includeDescription) { if (string.IsNullOrEmpty(languageTag)) { - logger.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); return null; } @@ -295,7 +275,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } @@ -306,7 +286,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } } @@ -321,7 +301,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } } @@ -336,7 +316,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } @@ -347,13 +327,13 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } } // Not found - logger.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); return null; } } diff --git a/LanguageTags/Iso6392DataGen.cs b/LanguageTags/Iso6392DataGen.cs index ec4cf4a..54e9489 100644 --- a/LanguageTags/Iso6392DataGen.cs +++ b/LanguageTags/Iso6392DataGen.cs @@ -3,8 +3,13 @@ namespace ptr727.LanguageTags; /// /// Provides access to ISO 639-2 language code data. /// +[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Iso6392Data", "1.0")] public sealed partial class Iso6392Data { + /// + /// Creates an instance loaded from the embedded ISO 639-2 dataset. + /// + /// The populated instance. public static Iso6392Data Create() => new() { diff --git a/LanguageTags/Iso6393Data.cs b/LanguageTags/Iso6393Data.cs index b204a1b..e5abf4d 100644 --- a/LanguageTags/Iso6393Data.cs +++ b/LanguageTags/Iso6393Data.cs @@ -1,4 +1,5 @@ using System.Runtime.CompilerServices; +using System.Text.Json.Serialization; namespace ptr727.LanguageTags; @@ -11,31 +12,38 @@ public sealed partial class Iso6393Data "https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab"; internal const string DataFileName = "iso6393"; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; + + [JsonConstructor] + internal Iso6393Data() { } + /// - /// Loads ISO 639-3 data from a file asynchronously. + /// Gets the collection of ISO 639-3 language records. /// - /// The path to the data file. - /// The loaded . - /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName) => - LoadDataAsync(fileName, LogOptions.CreateLogger()); + [JsonInclude] + public ImmutableArray RecordList { get; internal set; } = []; /// - /// Loads ISO 639-3 data from a file asynchronously using the specified options. + /// Creates an instance from a data file asynchronously. /// /// The path to the data file. - /// The options used to configure logging. /// The loaded . + /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options) => - LoadDataAsync(fileName, LogOptions.CreateLogger(options)); + public static async Task FromDataAsync(string fileName) + { + Iso6393Data iso6393Data = new(); + await iso6393Data.LoadDataAsync(fileName).ConfigureAwait(false); + return iso6393Data; + } [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadDataAsync(string fileName, ILogger logger) + private async Task LoadDataAsync(string fileName) { // https://iso639-3.sil.org/code_tables/download_tables // Id char(3) NOT NULL, The three-letter 639-3 identifier @@ -114,53 +122,36 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (recordList.Count == 0) { - logger.LogDataLoadEmpty(nameof(Iso6393Data), fileName); + Log.LogDataLoadEmpty(nameof(Iso6393Data), fileName); throw new InvalidDataException($"No data found in ISO 639-3 file: {fileName}"); } - Iso6393Data data = new() { RecordList = [.. recordList] }; - logger.LogDataLoaded(nameof(Iso6393Data), fileName, data.RecordList.Length); - return data; + RecordList = [.. recordList]; + Log.LogDataLoaded(nameof(Iso6393Data), fileName, RecordList.Length); } catch (Exception exception) { - logger.LogDataLoadFailed(nameof(Iso6393Data), fileName, exception); + Log.LogDataLoadFailed(nameof(Iso6393Data), fileName, exception); throw; } } /// - /// Loads ISO 639-3 data from a JSON file asynchronously. + /// Creates an instance from a JSON file asynchronously. /// /// The path to the JSON file. - /// - /// The loaded , or null when deserialization yields no data. - /// - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName) => - LoadJsonAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads ISO 639-3 data from a JSON file asynchronously using the specified options. - /// - /// The path to the JSON file. - /// The options used to configure logging. - /// - /// The loaded , or null when deserialization yields no data. - /// + /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName, Options? options) => - LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); - + /// Thrown when the file contains invalid data. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + public static async Task FromJsonAsync(string fileName) { + ILogger logger = LogOptions.CreateLogger(); try { await using FileStream fileStream = new( @@ -177,12 +168,10 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (data == null) { logger.LogDataLoadEmpty(nameof(Iso6393Data), fileName); - } - else - { - logger.LogDataLoaded(nameof(Iso6393Data), fileName, data.RecordList.Length); + throw new InvalidDataException($"No data found in ISO 639-3 file: {fileName}"); } + logger.LogDataLoaded(nameof(Iso6393Data), fileName, data.RecordList.Length); return data; } catch (Exception exception) @@ -197,7 +186,7 @@ private static async Task LoadDataAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - internal static async Task SaveJsonAsync(string fileName, Iso6393Data iso6393) + internal async Task SaveJsonAsync(string fileName) { await using FileStream fileStream = new( fileName, @@ -208,20 +197,13 @@ internal static async Task SaveJsonAsync(string fileName, Iso6393Data iso6393) FileOptions.Asynchronous | FileOptions.SequentialScan ); await JsonSerializer - .SerializeAsync(fileStream, iso6393, LanguageJsonContext.Default.Iso6393Data) + .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Iso6393Data) .ConfigureAwait(false); } - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - internal static async Task GenCodeAsync(string fileName, Iso6393Data iso6393) + internal async Task SaveCodeAsync(string fileName) { - ArgumentNullException.ThrowIfNull(iso6393); - - StreamWriter writer = new( + using StreamWriter writer = new( new FileStream( fileName, FileMode.Create, @@ -235,25 +217,32 @@ internal static async Task GenCodeAsync(string fileName, Iso6393Data iso6393) { NewLine = "\r\n", }; - await using ConfiguredAsyncDisposable writerScope = writer.ConfigureAwait(false); - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); await WriteLineAsync("namespace ptr727.LanguageTags;"); await WriteLineAsync(string.Empty); await WriteLineAsync("/// "); await WriteLineAsync("/// Provides access to ISO 639-3 language code data."); await WriteLineAsync("/// "); + await WriteLineAsync( + $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Iso6393Data).FullName}\", \"1.0\")]" + ); await WriteLineAsync("public sealed partial class Iso6393Data"); await WriteLineAsync("{"); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// Creates an instance loaded from the embedded ISO 639-3 dataset." + ); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// The populated instance." + ); await WriteLineAsync(" public static Iso6393Data Create() =>"); await WriteLineAsync(" new()"); await WriteLineAsync(" {"); await WriteLineAsync(" RecordList ="); await WriteLineAsync(" ["); - foreach (Iso6393Record record in iso6393.RecordList) + foreach (Iso6393Record record in RecordList) { await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -278,43 +267,36 @@ await WriteLineAsync( await WriteLineAsync( $" RefName = {LanguageSchema.GetCodeGenString(record.RefName)}," ); + await WriteLineAsync( + $" Comment = {LanguageSchema.GetCodeGenString(record.Comment)}," + ); await WriteLineAsync(" },"); } await WriteLineAsync(" ],"); await WriteLineAsync(" };"); await WriteLineAsync("}"); - } + return; - /// - /// Gets the collection of ISO 639-3 language records. - /// - public required ImmutableArray RecordList { get; init; } + ConfiguredTaskAwaitable WriteLineAsync(string value) => + writer.WriteLineAsync(value).ConfigureAwait(false); + } /// /// Finds an ISO 639-3 language record by language code or description. /// + /// + /// Matching is case-insensitive and checks Id, Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// Null or empty values return null. + /// /// 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) => - Find(languageTag, includeDescription, LogOptions.CreateLogger()); - - /// - /// Finds an ISO 639-3 language record by language code or description using the specified options. - /// - /// The language code or description to search for. - /// If true, searches in the reference name field; otherwise, only searches language codes. - /// The options used to configure logging. - /// The matching or null if not found. - public Iso6393Record? Find(string? languageTag, bool includeDescription, Options? options) => - Find(languageTag, includeDescription, LogOptions.CreateLogger(options)); - - private Iso6393Record? Find(string? languageTag, bool includeDescription, ILogger logger) + public Iso6393Record? Find(string languageTag, bool includeDescription) { if (string.IsNullOrEmpty(languageTag)) { - logger.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); return null; } @@ -331,7 +313,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } @@ -342,7 +324,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } @@ -353,7 +335,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } } @@ -368,7 +350,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } } @@ -383,7 +365,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } @@ -394,13 +376,13 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } } // Not found - logger.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); return null; } } diff --git a/LanguageTags/Iso6393DataGen.cs b/LanguageTags/Iso6393DataGen.cs index df64bd4..fe80433 100644 --- a/LanguageTags/Iso6393DataGen.cs +++ b/LanguageTags/Iso6393DataGen.cs @@ -3,8 +3,13 @@ namespace ptr727.LanguageTags; /// /// Provides access to ISO 639-3 language code data. /// +[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Iso6393Data", "1.0")] public sealed partial class Iso6393Data { + /// + /// Creates an instance loaded from the embedded ISO 639-3 dataset. + /// + /// The populated instance. public static Iso6393Data Create() => new() { @@ -19,6 +24,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghotuo", + Comment = null, }, new() { @@ -29,6 +35,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alumu-Tesu", + Comment = null, }, new() { @@ -39,6 +46,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ari", + Comment = null, }, new() { @@ -49,6 +57,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amal", + Comment = null, }, new() { @@ -59,6 +68,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arbëreshë Albanian", + Comment = null, }, new() { @@ -69,6 +79,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aranadan", + Comment = null, }, new() { @@ -79,6 +90,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambrak", + Comment = null, }, new() { @@ -89,6 +101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abu' Arapesh", + Comment = null, }, new() { @@ -99,6 +112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arifama-Miniafia", + Comment = null, }, new() { @@ -109,6 +123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ankave", + Comment = null, }, new() { @@ -119,6 +134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afade", + Comment = null, }, new() { @@ -129,6 +145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anambé", + Comment = null, }, new() { @@ -139,6 +156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Saharan Arabic", + Comment = null, }, new() { @@ -149,6 +167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pará Arára", + Comment = null, }, new() { @@ -159,6 +178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eastern Abnaki", + Comment = null, }, new() { @@ -169,6 +189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afar", + Comment = null, }, new() { @@ -179,6 +200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aasáx", + Comment = null, }, new() { @@ -189,6 +211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arvanitika Albanian", + Comment = null, }, new() { @@ -199,6 +222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abau", + Comment = null, }, new() { @@ -209,6 +233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Solong", + Comment = null, }, new() { @@ -219,6 +244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandobo Atas", + Comment = null, }, new() { @@ -229,6 +255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amarasi", + Comment = null, }, new() { @@ -239,6 +266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abé", + Comment = null, }, new() { @@ -249,6 +277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankon", + Comment = null, }, new() { @@ -259,6 +288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambala Ayta", + Comment = null, }, new() { @@ -269,6 +299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manide", + Comment = null, }, new() { @@ -279,6 +310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Abnaki", + Comment = null, }, new() { @@ -289,6 +321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abai Sungai", + Comment = null, }, new() { @@ -299,6 +332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abaga", + Comment = null, }, new() { @@ -309,6 +343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajiki Arabic", + Comment = null, }, new() { @@ -319,6 +354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abidji", + Comment = null, }, new() { @@ -329,6 +365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Bea", + Comment = null, }, new() { @@ -339,6 +376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abkhazian", + Comment = null, }, new() { @@ -349,6 +387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lampung Nyo", + Comment = null, }, new() { @@ -359,6 +398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abanyom", + Comment = null, }, new() { @@ -369,6 +409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abua", + Comment = null, }, new() { @@ -379,6 +420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abon", + Comment = null, }, new() { @@ -389,6 +431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abellen Ayta", + Comment = null, }, new() { @@ -399,6 +442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abaza", + Comment = null, }, new() { @@ -409,6 +453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abron", + Comment = null, }, new() { @@ -419,6 +464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambonese Malay", + Comment = null, }, new() { @@ -429,6 +475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambulas", + Comment = null, }, new() { @@ -439,6 +486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abure", + Comment = null, }, new() { @@ -449,6 +497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baharna Arabic", + Comment = null, }, new() { @@ -459,6 +508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pal", + Comment = null, }, new() { @@ -469,6 +519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inabaknon", + Comment = null, }, new() { @@ -479,6 +530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aneme Wake", + Comment = null, }, new() { @@ -489,6 +541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abui", + Comment = null, }, new() { @@ -499,6 +552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achagua", + Comment = null, }, new() { @@ -509,6 +563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Áncá", + Comment = null, }, new() { @@ -519,6 +574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gikyode", + Comment = null, }, new() { @@ -529,6 +585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achinese", + Comment = null, }, new() { @@ -539,6 +596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saint Lucian Creole French", + Comment = null, }, new() { @@ -549,6 +607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Acoli", + Comment = null, }, new() { @@ -559,6 +618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Cari", + Comment = null, }, new() { @@ -569,6 +629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Kora", + Comment = null, }, new() { @@ -579,6 +640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Akar-Bale", + Comment = null, }, new() { @@ -589,6 +651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesopotamian Arabic", + Comment = null, }, new() { @@ -599,6 +662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achang", + Comment = null, }, new() { @@ -609,6 +673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Acipa", + Comment = null, }, new() { @@ -619,6 +684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ta'izzi-Adeni Arabic", + Comment = null, }, new() { @@ -629,6 +695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achi", + Comment = null, }, new() { @@ -639,6 +706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Acroá", + Comment = null, }, new() { @@ -649,6 +717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achterhoeks", + Comment = null, }, new() { @@ -659,6 +728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achuar-Shiwiar", + Comment = null, }, new() { @@ -669,6 +739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achumawi", + Comment = null, }, new() { @@ -679,6 +750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hijazi Arabic", + Comment = null, }, new() { @@ -689,6 +761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omani Arabic", + Comment = null, }, new() { @@ -699,6 +772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cypriot Arabic", + Comment = null, }, new() { @@ -709,6 +783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Acheron", + Comment = null, }, new() { @@ -719,6 +794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adangme", + Comment = null, }, new() { @@ -729,6 +805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atauran", + Comment = null, }, new() { @@ -739,6 +816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lidzonka", + Comment = null, }, new() { @@ -749,6 +827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adele", + Comment = null, }, new() { @@ -759,6 +838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhofari Arabic", + Comment = null, }, new() { @@ -769,6 +849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andegerebinha", + Comment = null, }, new() { @@ -779,6 +860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adhola", + Comment = null, }, new() { @@ -789,6 +871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adi", + Comment = null, }, new() { @@ -799,6 +882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adioukrou", + Comment = null, }, new() { @@ -809,6 +893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galo", + Comment = null, }, new() { @@ -819,6 +904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adang", + Comment = null, }, new() { @@ -829,6 +915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abu", + Comment = null, }, new() { @@ -839,6 +926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adangbe", + Comment = null, }, new() { @@ -849,6 +937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adonara", + Comment = null, }, new() { @@ -859,6 +948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adamorobe Sign Language", + Comment = null, }, new() { @@ -869,6 +959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adnyamathanha", + Comment = null, }, new() { @@ -879,6 +970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aduge", + Comment = null, }, new() { @@ -889,6 +981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amundava", + Comment = null, }, new() { @@ -899,6 +992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amdo Tibetan", + Comment = null, }, new() { @@ -909,6 +1003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adyghe", + Comment = null, }, new() { @@ -919,6 +1014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adzera", + Comment = null, }, new() { @@ -929,6 +1025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Areba", + Comment = null, }, new() { @@ -939,6 +1036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunisian Arabic", + Comment = null, }, new() { @@ -949,6 +1047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saidi Arabic", + Comment = null, }, new() { @@ -959,6 +1058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Argentine Sign Language", + Comment = null, }, new() { @@ -969,6 +1069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeast Pashai", + Comment = null, }, new() { @@ -979,6 +1080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haeke", + Comment = null, }, new() { @@ -989,6 +1091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambele", + Comment = null, }, new() { @@ -999,6 +1102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arem", + Comment = null, }, new() { @@ -1009,6 +1113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Armenian Sign Language", + Comment = null, }, new() { @@ -1019,6 +1124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aer", + Comment = null, }, new() { @@ -1029,6 +1135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Arrernte", + Comment = null, }, new() { @@ -1039,6 +1146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Alsea", + Comment = null, }, new() { @@ -1049,6 +1157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akeu", + Comment = null, }, new() { @@ -1059,6 +1168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambakich", + Comment = null, }, new() { @@ -1069,6 +1179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amele", + Comment = null, }, new() { @@ -1079,6 +1190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aeka", + Comment = null, }, new() { @@ -1089,6 +1201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gulf Arabic", + Comment = null, }, new() { @@ -1099,6 +1212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andai", + Comment = null, }, new() { @@ -1109,6 +1223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Putukwam", + Comment = null, }, new() { @@ -1119,6 +1234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afghan Sign Language", + Comment = null, }, new() { @@ -1129,6 +1245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Afrihili", + Comment = null, }, new() { @@ -1139,6 +1256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akrukay", + Comment = null, }, new() { @@ -1149,6 +1267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanubae", + Comment = null, }, new() { @@ -1159,6 +1278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Defaka", + Comment = null, }, new() { @@ -1169,6 +1289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eloyi", + Comment = null, }, new() { @@ -1179,6 +1300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tapei", + Comment = null, }, new() { @@ -1189,6 +1311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afrikaans", + Comment = null, }, new() { @@ -1199,6 +1322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afro-Seminole Creole", + Comment = null, }, new() { @@ -1209,6 +1333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afitti", + Comment = null, }, new() { @@ -1219,6 +1344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awutu", + Comment = null, }, new() { @@ -1229,6 +1355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obokuitai", + Comment = null, }, new() { @@ -1239,6 +1366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aguano", + Comment = null, }, new() { @@ -1249,6 +1377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Legbo", + Comment = null, }, new() { @@ -1259,6 +1388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agatu", + Comment = null, }, new() { @@ -1269,6 +1399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agarabi", + Comment = null, }, new() { @@ -1279,6 +1410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angal", + Comment = null, }, new() { @@ -1289,6 +1421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arguni", + Comment = null, }, new() { @@ -1299,6 +1432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angor", + Comment = null, }, new() { @@ -1309,6 +1443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngelima", + Comment = null, }, new() { @@ -1319,6 +1454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agariya", + Comment = null, }, new() { @@ -1329,6 +1465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Argobba", + Comment = null, }, new() { @@ -1339,6 +1476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isarog Agta", + Comment = null, }, new() { @@ -1349,6 +1487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fembe", + Comment = null, }, new() { @@ -1359,6 +1498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angaataha", + Comment = null, }, new() { @@ -1369,6 +1509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agutaynen", + Comment = null, }, new() { @@ -1379,6 +1520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tainae", + Comment = null, }, new() { @@ -1389,6 +1531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aghem", + Comment = null, }, new() { @@ -1399,6 +1542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aguaruna", + Comment = null, }, new() { @@ -1409,6 +1553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Esimbi", + Comment = null, }, new() { @@ -1419,6 +1564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Cagayan Agta", + Comment = null, }, new() { @@ -1429,6 +1575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aguacateco", + Comment = null, }, new() { @@ -1439,6 +1586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Remontado Dumagat", + Comment = null, }, new() { @@ -1449,6 +1597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kahua", + Comment = null, }, new() { @@ -1459,6 +1608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aghul", + Comment = null, }, new() { @@ -1469,6 +1619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Alta", + Comment = null, }, new() { @@ -1479,6 +1630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mt. Iriga Agta", + Comment = null, }, new() { @@ -1489,6 +1641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahanta", + Comment = null, }, new() { @@ -1499,6 +1652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Axamb", + Comment = null, }, new() { @@ -1509,6 +1663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qimant", + Comment = null, }, new() { @@ -1519,6 +1674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aghu", + Comment = null, }, new() { @@ -1529,6 +1685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiagbamrin Aizi", + Comment = null, }, new() { @@ -1539,6 +1696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akha", + Comment = null, }, new() { @@ -1549,6 +1707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igo", + Comment = null, }, new() { @@ -1559,6 +1718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mobumrin Aizi", + Comment = null, }, new() { @@ -1569,6 +1729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Àhàn", + Comment = null, }, new() { @@ -1579,6 +1740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ahom", + Comment = null, }, new() { @@ -1589,6 +1751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aproumu Aizi", + Comment = null, }, new() { @@ -1599,6 +1762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahirani", + Comment = null, }, new() { @@ -1609,6 +1773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashe", + Comment = null, }, new() { @@ -1619,6 +1784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahtena", + Comment = null, }, new() { @@ -1629,6 +1795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arosi", + Comment = null, }, new() { @@ -1639,6 +1806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ainu (China)", + Comment = null, }, new() { @@ -1649,6 +1817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ainbai", + Comment = null, }, new() { @@ -1659,6 +1828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Alngith", + Comment = null, }, new() { @@ -1669,6 +1839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amara", + Comment = null, }, new() { @@ -1679,6 +1850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agi", + Comment = null, }, new() { @@ -1689,6 +1861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Antigua and Barbuda Creole English", + Comment = null, }, new() { @@ -1699,6 +1872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ai-Cham", + Comment = null, }, new() { @@ -1709,6 +1883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assyrian Neo-Aramaic", + Comment = null, }, new() { @@ -1719,6 +1894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lishanid Noshan", + Comment = null, }, new() { @@ -1729,6 +1905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ake", + Comment = null, }, new() { @@ -1739,6 +1916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aimele", + Comment = null, }, new() { @@ -1749,6 +1927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aimol", + Comment = null, }, new() { @@ -1759,6 +1938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ainu (Japan)", + Comment = null, }, new() { @@ -1769,6 +1949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aiton", + Comment = null, }, new() { @@ -1779,6 +1960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burumakok", + Comment = null, }, new() { @@ -1789,6 +1971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aimaq", + Comment = null, }, new() { @@ -1799,6 +1982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Airoran", + Comment = null, }, new() { @@ -1809,6 +1993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arikem", + Comment = null, }, new() { @@ -1819,6 +2004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aari", + Comment = null, }, new() { @@ -1829,6 +2015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aighon", + Comment = null, }, new() { @@ -1839,6 +2026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ali", + Comment = null, }, new() { @@ -1849,6 +2037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aja (South Sudan)", + Comment = null, }, new() { @@ -1859,6 +2048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aja (Benin)", + Comment = null, }, new() { @@ -1869,6 +2059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ajië", + Comment = null, }, new() { @@ -1879,6 +2070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andajin", + Comment = null, }, new() { @@ -1889,6 +2081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Jewish Sign Language", + Comment = null, }, new() { @@ -1899,6 +2092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Moroccan Arabic", + Comment = null, }, new() { @@ -1909,6 +2103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ajawa", + Comment = null, }, new() { @@ -1919,6 +2114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amri Karbi", + Comment = null, }, new() { @@ -1929,6 +2125,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Akan", + Comment = null, }, new() { @@ -1939,6 +2136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Angkola", + Comment = null, }, new() { @@ -1949,6 +2147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpur", + Comment = null, }, new() { @@ -1959,6 +2158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukpet-Ehom", + Comment = null, }, new() { @@ -1969,6 +2169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akawaio", + Comment = null, }, new() { @@ -1979,6 +2180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akpa", + Comment = null, }, new() { @@ -1989,6 +2191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anakalangu", + Comment = null, }, new() { @@ -1999,6 +2202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angal Heneng", + Comment = null, }, new() { @@ -2009,6 +2213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aiome", + Comment = null, }, new() { @@ -2019,6 +2224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Jeru", + Comment = null, }, new() { @@ -2029,6 +2235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Akkadian", + Comment = null, }, new() { @@ -2039,6 +2246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aklanon", + Comment = null, }, new() { @@ -2049,6 +2257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Bo", + Comment = null, }, new() { @@ -2059,6 +2268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akurio", + Comment = null, }, new() { @@ -2069,6 +2279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siwu", + Comment = null, }, new() { @@ -2079,6 +2290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ak", + Comment = null, }, new() { @@ -2089,6 +2301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Araki", + Comment = null, }, new() { @@ -2099,6 +2312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akaselem", + Comment = null, }, new() { @@ -2109,6 +2323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akolet", + Comment = null, }, new() { @@ -2119,6 +2334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akum", + Comment = null, }, new() { @@ -2129,6 +2345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akhvakh", + Comment = null, }, new() { @@ -2139,6 +2356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akwa", + Comment = null, }, new() { @@ -2149,6 +2367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Kede", + Comment = null, }, new() { @@ -2159,6 +2378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Kol", + Comment = null, }, new() { @@ -2169,6 +2389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alabama", + Comment = null, }, new() { @@ -2179,6 +2400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alago", + Comment = null, }, new() { @@ -2189,6 +2411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qawasqar", + Comment = null, }, new() { @@ -2199,6 +2422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alladian", + Comment = null, }, new() { @@ -2209,6 +2433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aleut", + Comment = null, }, new() { @@ -2219,6 +2444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alege", + Comment = null, }, new() { @@ -2229,6 +2455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alawa", + Comment = null, }, new() { @@ -2239,6 +2466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amaimon", + Comment = null, }, new() { @@ -2249,6 +2477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alangan", + Comment = null, }, new() { @@ -2259,6 +2488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alak", + Comment = null, }, new() { @@ -2269,6 +2499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Allar", + Comment = null, }, new() { @@ -2279,6 +2510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amblong", + Comment = null, }, new() { @@ -2289,6 +2521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gheg Albanian", + Comment = null, }, new() { @@ -2299,6 +2532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larike-Wakasihu", + Comment = null, }, new() { @@ -2309,6 +2543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alune", + Comment = null, }, new() { @@ -2319,6 +2554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algonquin", + Comment = null, }, new() { @@ -2329,6 +2565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alutor", + Comment = null, }, new() { @@ -2339,6 +2576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tosk Albanian", + Comment = null, }, new() { @@ -2349,6 +2587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Altai", + Comment = null, }, new() { @@ -2359,6 +2598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "'Are'are", + Comment = null, }, new() { @@ -2369,6 +2609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alaba-K’abeena", + Comment = null, }, new() { @@ -2379,6 +2620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amol", + Comment = null, }, new() { @@ -2389,6 +2631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alyawarr", + Comment = null, }, new() { @@ -2399,6 +2642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alur", + Comment = null, }, new() { @@ -2409,6 +2653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Amanayé", + Comment = null, }, new() { @@ -2419,6 +2664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambo", + Comment = null, }, new() { @@ -2429,6 +2675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amahuaca", + Comment = null, }, new() { @@ -2439,6 +2686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanesha'", + Comment = null, }, new() { @@ -2449,6 +2697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamer-Banna", + Comment = null, }, new() { @@ -2459,6 +2708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amurdak", + Comment = null, }, new() { @@ -2469,6 +2719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amharic", + Comment = null, }, new() { @@ -2479,6 +2730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amis", + Comment = null, }, new() { @@ -2489,6 +2741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amdang", + Comment = null, }, new() { @@ -2499,6 +2752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambai", + Comment = null, }, new() { @@ -2509,6 +2763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "War-Jaintia", + Comment = null, }, new() { @@ -2519,6 +2774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ama (Papua New Guinea)", + Comment = null, }, new() { @@ -2529,6 +2785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amanab", + Comment = null, }, new() { @@ -2539,6 +2796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amo", + Comment = null, }, new() { @@ -2549,6 +2807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alamblak", + Comment = null, }, new() { @@ -2559,6 +2818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amahai", + Comment = null, }, new() { @@ -2569,6 +2829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amarakaeri", + Comment = null, }, new() { @@ -2579,6 +2840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Amami-Oshima", + Comment = null, }, new() { @@ -2589,6 +2851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amto", + Comment = null, }, new() { @@ -2599,6 +2862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guerrero Amuzgo", + Comment = null, }, new() { @@ -2609,6 +2873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambelau", + Comment = null, }, new() { @@ -2619,6 +2884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Neo-Aramaic", + Comment = null, }, new() { @@ -2629,6 +2895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anmatyerre", + Comment = null, }, new() { @@ -2639,6 +2906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ami", + Comment = null, }, new() { @@ -2649,6 +2917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Atampaya", + Comment = null, }, new() { @@ -2659,6 +2928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Andaqui", + Comment = null, }, new() { @@ -2669,6 +2939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Andoa", + Comment = null, }, new() { @@ -2679,6 +2950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngas", + Comment = null, }, new() { @@ -2689,6 +2961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ansus", + Comment = null, }, new() { @@ -2699,6 +2972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xârâcùù", + Comment = null, }, new() { @@ -2709,6 +2983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Animere", + Comment = null, }, new() { @@ -2719,6 +2994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old English (ca. 450-1100)", + Comment = null, }, new() { @@ -2729,6 +3005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nend", + Comment = null, }, new() { @@ -2739,6 +3016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andi", + Comment = null, }, new() { @@ -2749,6 +3027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anor", + Comment = null, }, new() { @@ -2759,6 +3038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goemai", + Comment = null, }, new() { @@ -2769,6 +3049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anu-Hkongso Chin", + Comment = null, }, new() { @@ -2779,6 +3060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anal", + Comment = null, }, new() { @@ -2789,6 +3071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obolo", + Comment = null, }, new() { @@ -2799,6 +3082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andoque", + Comment = null, }, new() { @@ -2809,6 +3093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angika", + Comment = null, }, new() { @@ -2819,6 +3104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jarawa (India)", + Comment = null, }, new() { @@ -2829,6 +3115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andh", + Comment = null, }, new() { @@ -2839,6 +3126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Anserma", + Comment = null, }, new() { @@ -2849,6 +3137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Antakarinya", + Comment = null, }, new() { @@ -2859,6 +3148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anuak", + Comment = null, }, new() { @@ -2869,6 +3159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Denya", + Comment = null, }, new() { @@ -2879,6 +3170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anaang", + Comment = null, }, new() { @@ -2889,6 +3181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andra-Hus", + Comment = null, }, new() { @@ -2899,6 +3192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anyin", + Comment = null, }, new() { @@ -2909,6 +3203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anem", + Comment = null, }, new() { @@ -2919,6 +3214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angolar", + Comment = null, }, new() { @@ -2929,6 +3225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abom", + Comment = null, }, new() { @@ -2939,6 +3236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pemon", + Comment = null, }, new() { @@ -2949,6 +3247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andarum", + Comment = null, }, new() { @@ -2959,6 +3258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angal Enen", + Comment = null, }, new() { @@ -2969,6 +3269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bragat", + Comment = null, }, new() { @@ -2979,6 +3280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angoram", + Comment = null, }, new() { @@ -2989,6 +3291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anindilyakwa", + Comment = null, }, new() { @@ -2999,6 +3302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mufian", + Comment = null, }, new() { @@ -3009,6 +3313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arhö", + Comment = null, }, new() { @@ -3019,6 +3324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alor", + Comment = null, }, new() { @@ -3029,6 +3335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ömie", + Comment = null, }, new() { @@ -3039,6 +3346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumbita Arapesh", + Comment = null, }, new() { @@ -3049,6 +3357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aore", + Comment = null, }, new() { @@ -3059,6 +3368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taikat", + Comment = null, }, new() { @@ -3069,6 +3379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atong (India)", + Comment = null, }, new() { @@ -3079,6 +3390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "A'ou", + Comment = null, }, new() { @@ -3089,6 +3401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atorada", + Comment = null, }, new() { @@ -3099,6 +3412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uab Meto", + Comment = null, }, new() { @@ -3109,6 +3423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa'a", + Comment = null, }, new() { @@ -3119,6 +3434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Levantine Arabic", + Comment = null, }, new() { @@ -3129,6 +3445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sudanese Arabic", + Comment = null, }, new() { @@ -3139,6 +3456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukiyip", + Comment = null, }, new() { @@ -3149,6 +3467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahanan Agta", + Comment = null, }, new() { @@ -3159,6 +3478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ampanang", + Comment = null, }, new() { @@ -3169,6 +3489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Athpariya", + Comment = null, }, new() { @@ -3179,6 +3500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apiaká", + Comment = null, }, new() { @@ -3189,6 +3511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jicarilla Apache", + Comment = null, }, new() { @@ -3199,6 +3522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiowa Apache", + Comment = null, }, new() { @@ -3209,6 +3533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lipan Apache", + Comment = null, }, new() { @@ -3219,6 +3544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mescalero-Chiricahua Apache", + Comment = null, }, new() { @@ -3229,6 +3555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apinayé", + Comment = null, }, new() { @@ -3239,6 +3566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambul", + Comment = null, }, new() { @@ -3249,6 +3577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apma", + Comment = null, }, new() { @@ -3259,6 +3588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "A-Pucikwar", + Comment = null, }, new() { @@ -3269,6 +3599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arop-Lokep", + Comment = null, }, new() { @@ -3279,6 +3610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arop-Sissano", + Comment = null, }, new() { @@ -3289,6 +3621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apatani", + Comment = null, }, new() { @@ -3299,6 +3632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apurinã", + Comment = null, }, new() { @@ -3309,6 +3643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Alapmunte", + Comment = null, }, new() { @@ -3319,6 +3654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Apache", + Comment = null, }, new() { @@ -3329,6 +3665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aputai", + Comment = null, }, new() { @@ -3339,6 +3676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apalaí", + Comment = null, }, new() { @@ -3349,6 +3687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Safeyoka", + Comment = null, }, new() { @@ -3359,6 +3698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Archi", + Comment = null, }, new() { @@ -3369,6 +3709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ampari Dogon", + Comment = null, }, new() { @@ -3379,6 +3720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arigidi", + Comment = null, }, new() { @@ -3389,6 +3731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aninka", + Comment = null, }, new() { @@ -3399,6 +3742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atohwaim", + Comment = null, }, new() { @@ -3409,6 +3753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Alta", + Comment = null, }, new() { @@ -3419,6 +3764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Atakapa", + Comment = null, }, new() { @@ -3429,6 +3775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arhâ", + Comment = null, }, new() { @@ -3439,6 +3786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angaité", + Comment = null, }, new() { @@ -3449,6 +3797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akuntsu", + Comment = null, }, new() { @@ -3459,6 +3808,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Arabic", + Comment = null, }, new() { @@ -3469,6 +3819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Arabic", + Comment = null, }, new() { @@ -3479,6 +3830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Official Aramaic (700-300 BCE)", + Comment = null, }, new() { @@ -3489,6 +3841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arabana", + Comment = null, }, new() { @@ -3499,6 +3852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Arrarnta", + Comment = null, }, new() { @@ -3509,6 +3863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aragonese", + Comment = null, }, new() { @@ -3519,6 +3874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arhuaco", + Comment = null, }, new() { @@ -3529,6 +3885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arikara", + Comment = null, }, new() { @@ -3539,6 +3896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arapaso", + Comment = null, }, new() { @@ -3549,6 +3907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arikapú", + Comment = null, }, new() { @@ -3559,6 +3918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arabela", + Comment = null, }, new() { @@ -3569,6 +3929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapudungun", + Comment = null, }, new() { @@ -3579,6 +3940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Araona", + Comment = null, }, new() { @@ -3589,6 +3951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arapaho", + Comment = null, }, new() { @@ -3599,6 +3962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Arabic", + Comment = null, }, new() { @@ -3609,6 +3973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karo (Brazil)", + Comment = null, }, new() { @@ -3619,6 +3984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Najdi Arabic", + Comment = null, }, new() { @@ -3629,6 +3995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aruá (Amazonas State)", + Comment = null, }, new() { @@ -3639,6 +4006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arbore", + Comment = null, }, new() { @@ -3649,6 +4017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arawak", + Comment = null, }, new() { @@ -3659,6 +4028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruá (Rodonia State)", + Comment = null, }, new() { @@ -3669,6 +4039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moroccan Arabic", + Comment = null, }, new() { @@ -3679,6 +4050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Egyptian Arabic", + Comment = null, }, new() { @@ -3689,6 +4061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asu (Tanzania)", + Comment = null, }, new() { @@ -3699,6 +4072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assiniboine", + Comment = null, }, new() { @@ -3709,6 +4083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Casuarina Coast Asmat", + Comment = null, }, new() { @@ -3719,6 +4094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "American Sign Language", + Comment = null, }, new() { @@ -3729,6 +4105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Auslan", + Comment = null, }, new() { @@ -3739,6 +4116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cishingini", + Comment = null, }, new() { @@ -3749,6 +4127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Abishira", + Comment = null, }, new() { @@ -3759,6 +4138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buruwai", + Comment = null, }, new() { @@ -3769,6 +4149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sari", + Comment = null, }, new() { @@ -3779,6 +4160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashkun", + Comment = null, }, new() { @@ -3789,6 +4171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asilulu", + Comment = null, }, new() { @@ -3799,6 +4182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assamese", + Comment = null, }, new() { @@ -3809,6 +4193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xingú Asuriní", + Comment = null, }, new() { @@ -3819,6 +4204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dano", + Comment = null, }, new() { @@ -3829,6 +4215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Sign Language", + Comment = null, }, new() { @@ -3839,6 +4226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Austrian Sign Language", + Comment = null, }, new() { @@ -3849,6 +4237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asuri", + Comment = null, }, new() { @@ -3859,6 +4248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipulo", + Comment = null, }, new() { @@ -3869,6 +4259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asturian", + Comment = null, }, new() { @@ -3879,6 +4270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tocantins Asurini", + Comment = null, }, new() { @@ -3889,6 +4281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asoa", + Comment = null, }, new() { @@ -3899,6 +4292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Australian Aborigines Sign Language", + Comment = null, }, new() { @@ -3909,6 +4303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muratayak", + Comment = null, }, new() { @@ -3919,6 +4314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaosakor Asmat", + Comment = null, }, new() { @@ -3929,6 +4325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "As", + Comment = null, }, new() { @@ -3939,6 +4336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pele-Ata", + Comment = null, }, new() { @@ -3949,6 +4347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaiwa", + Comment = null, }, new() { @@ -3959,6 +4358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Atsahuaca", + Comment = null, }, new() { @@ -3969,6 +4369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ata Manobo", + Comment = null, }, new() { @@ -3979,6 +4380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atemble", + Comment = null, }, new() { @@ -3989,6 +4391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ivbie North-Okpela-Arhe", + Comment = null, }, new() { @@ -3999,6 +4402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Attié", + Comment = null, }, new() { @@ -4009,6 +4413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atikamekw", + Comment = null, }, new() { @@ -4019,6 +4424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ati", + Comment = null, }, new() { @@ -4029,6 +4435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mt. Iraya Agta", + Comment = null, }, new() { @@ -4039,6 +4446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ata", + Comment = null, }, new() { @@ -4049,6 +4457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashtiani", + Comment = null, }, new() { @@ -4059,6 +4468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atong (Cameroon)", + Comment = null, }, new() { @@ -4069,6 +4479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pudtol Atta", + Comment = null, }, new() { @@ -4079,6 +4490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aralle-Tabulahan", + Comment = null, }, new() { @@ -4089,6 +4501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waimiri-Atroari", + Comment = null, }, new() { @@ -4099,6 +4512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gros Ventre", + Comment = null, }, new() { @@ -4109,6 +4523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pamplona Atta", + Comment = null, }, new() { @@ -4119,6 +4534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reel", + Comment = null, }, new() { @@ -4129,6 +4545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Altai", + Comment = null, }, new() { @@ -4139,6 +4556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atsugewi", + Comment = null, }, new() { @@ -4149,6 +4567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arutani", + Comment = null, }, new() { @@ -4159,6 +4578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aneityum", + Comment = null, }, new() { @@ -4169,6 +4589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arta", + Comment = null, }, new() { @@ -4179,6 +4600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asumboa", + Comment = null, }, new() { @@ -4189,6 +4611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alugu", + Comment = null, }, new() { @@ -4199,6 +4622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waorani", + Comment = null, }, new() { @@ -4209,6 +4633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anuta", + Comment = null, }, new() { @@ -4219,6 +4644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aguna", + Comment = null, }, new() { @@ -4229,6 +4655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aushi", + Comment = null, }, new() { @@ -4239,6 +4666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anuki", + Comment = null, }, new() { @@ -4249,6 +4677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awjilah", + Comment = null, }, new() { @@ -4259,6 +4688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Heyo", + Comment = null, }, new() { @@ -4269,6 +4699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aulua", + Comment = null, }, new() { @@ -4279,6 +4710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asu (Nigeria)", + Comment = null, }, new() { @@ -4289,6 +4721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molmo One", + Comment = null, }, new() { @@ -4299,6 +4732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Auyokawa", + Comment = null, }, new() { @@ -4309,6 +4743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makayam", + Comment = null, }, new() { @@ -4319,6 +4754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anus", + Comment = null, }, new() { @@ -4329,6 +4765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruek", + Comment = null, }, new() { @@ -4339,6 +4776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Austral", + Comment = null, }, new() { @@ -4349,6 +4787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Auye", + Comment = null, }, new() { @@ -4359,6 +4798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awyi", + Comment = null, }, new() { @@ -4369,6 +4809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aurá", + Comment = null, }, new() { @@ -4379,6 +4820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awiyaana", + Comment = null, }, new() { @@ -4389,6 +4831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uzbeki Arabic", + Comment = null, }, new() { @@ -4399,6 +4842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avaric", + Comment = null, }, new() { @@ -4409,6 +4853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avau", + Comment = null, }, new() { @@ -4419,6 +4864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alviri-Vidari", + Comment = null, }, new() { @@ -4429,6 +4875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Avestan", + Comment = null, }, new() { @@ -4439,6 +4886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avikam", + Comment = null, }, new() { @@ -4449,6 +4897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Kotava", + Comment = null, }, new() { @@ -4459,6 +4908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Egyptian Bedawi Arabic", + Comment = null, }, new() { @@ -4469,6 +4919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Angkamuthi", + Comment = null, }, new() { @@ -4479,6 +4930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avatime", + Comment = null, }, new() { @@ -4489,6 +4941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Agavotaguerra", + Comment = null, }, new() { @@ -4499,6 +4952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aushiri", + Comment = null, }, new() { @@ -4509,6 +4963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Au", + Comment = null, }, new() { @@ -4519,6 +4974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avokaya", + Comment = null, }, new() { @@ -4529,6 +4985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avá-Canoeiro", + Comment = null, }, new() { @@ -4539,6 +4996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awadhi", + Comment = null, }, new() { @@ -4549,6 +5007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awa (Papua New Guinea)", + Comment = null, }, new() { @@ -4559,6 +5018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cicipu", + Comment = null, }, new() { @@ -4569,6 +5029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awetí", + Comment = null, }, new() { @@ -4579,6 +5040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Anguthimri", + Comment = null, }, new() { @@ -4589,6 +5051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awbono", + Comment = null, }, new() { @@ -4599,6 +5062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aekyom", + Comment = null, }, new() { @@ -4609,6 +5073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Awabakal", + Comment = null, }, new() { @@ -4619,6 +5084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arawum", + Comment = null, }, new() { @@ -4629,6 +5095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awngi", + Comment = null, }, new() { @@ -4639,6 +5106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awak", + Comment = null, }, new() { @@ -4649,6 +5117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awera", + Comment = null, }, new() { @@ -4659,6 +5128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Awyu", + Comment = null, }, new() { @@ -4669,6 +5139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Araweté", + Comment = null, }, new() { @@ -4679,6 +5150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Awyu", + Comment = null, }, new() { @@ -4689,6 +5161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jair Awyu", + Comment = null, }, new() { @@ -4699,6 +5172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awun", + Comment = null, }, new() { @@ -4709,6 +5183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awara", + Comment = null, }, new() { @@ -4719,6 +5194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Edera Awyu", + Comment = null, }, new() { @@ -4729,6 +5205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Abipon", + Comment = null, }, new() { @@ -4739,6 +5216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ayerrerenge", + Comment = null, }, new() { @@ -4749,6 +5227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mato Grosso Arára", + Comment = null, }, new() { @@ -4759,6 +5238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaka (Central African Republic)", + Comment = null, }, new() { @@ -4769,6 +5249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Southern Aranda", + Comment = null, }, new() { @@ -4779,6 +5260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Armenian", + Comment = null, }, new() { @@ -4789,6 +5271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xârâgurè", + Comment = null, }, new() { @@ -4799,6 +5282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awar", + Comment = null, }, new() { @@ -4809,6 +5293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayizo Gbe", + Comment = null, }, new() { @@ -4819,6 +5304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Aymara", + Comment = null, }, new() { @@ -4829,6 +5315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ayabadhu", + Comment = null, }, new() { @@ -4839,6 +5326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayere", + Comment = null, }, new() { @@ -4849,6 +5337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ginyanga", + Comment = null, }, new() { @@ -4859,6 +5348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadrami Arabic", + Comment = null, }, new() { @@ -4869,6 +5359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leyigha", + Comment = null, }, new() { @@ -4879,6 +5370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akuku", + Comment = null, }, new() { @@ -4889,6 +5381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libyan Arabic", + Comment = null, }, new() { @@ -4899,6 +5392,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Aymara", + Comment = null, }, new() { @@ -4909,6 +5403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanaani Arabic", + Comment = null, }, new() { @@ -4919,6 +5414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayoreo", + Comment = null, }, new() { @@ -4929,6 +5425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Mesopotamian Arabic", + Comment = null, }, new() { @@ -4939,6 +5436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayi (Papua New Guinea)", + Comment = null, }, new() { @@ -4949,6 +5447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Aymara", + Comment = null, }, new() { @@ -4959,6 +5458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sorsogon Ayta", + Comment = null, }, new() { @@ -4969,6 +5469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magbukun Ayta", + Comment = null, }, new() { @@ -4979,6 +5480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayu", + Comment = null, }, new() { @@ -4989,6 +5491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mai Brat", + Comment = null, }, new() { @@ -4999,6 +5502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Azha", + Comment = null, }, new() { @@ -5009,6 +5513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Azerbaijani", + Comment = null, }, new() { @@ -5019,6 +5524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Durango Nahuatl", + Comment = null, }, new() { @@ -5029,6 +5535,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Azerbaijani", + Comment = null, }, new() { @@ -5039,6 +5546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Pedro Amuzgos Amuzgo", + Comment = null, }, new() { @@ -5049,6 +5557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Azerbaijani", + Comment = null, }, new() { @@ -5059,6 +5568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipalapa Amuzgo", + Comment = null, }, new() { @@ -5069,6 +5579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Durango Nahuatl", + Comment = null, }, new() { @@ -5079,6 +5590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awing", + Comment = null, }, new() { @@ -5089,6 +5601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faire Atta", + Comment = null, }, new() { @@ -5099,6 +5612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Puebla Nahuatl", + Comment = null, }, new() { @@ -5109,6 +5623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babatana", + Comment = null, }, new() { @@ -5119,6 +5634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bainouk-Gunyuño", + Comment = null, }, new() { @@ -5129,6 +5645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badui", + Comment = null, }, new() { @@ -5139,6 +5656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baré", + Comment = null, }, new() { @@ -5149,6 +5667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nubaca", + Comment = null, }, new() { @@ -5159,6 +5678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuki", + Comment = null, }, new() { @@ -5169,6 +5689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahamas Creole English", + Comment = null, }, new() { @@ -5179,6 +5700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barakai", + Comment = null, }, new() { @@ -5189,6 +5711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bashkir", + Comment = null, }, new() { @@ -5199,6 +5722,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Baluchi", + Comment = null, }, new() { @@ -5209,6 +5733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambara", + Comment = null, }, new() { @@ -5219,6 +5744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balinese", + Comment = null, }, new() { @@ -5229,6 +5755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waimaha", + Comment = null, }, new() { @@ -5239,6 +5766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantawa", + Comment = null, }, new() { @@ -5249,6 +5777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bavarian", + Comment = null, }, new() { @@ -5259,6 +5788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basa (Cameroon)", + Comment = null, }, new() { @@ -5269,6 +5799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bada (Nigeria)", + Comment = null, }, new() { @@ -5279,6 +5810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vengo", + Comment = null, }, new() { @@ -5289,6 +5821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambili-Bambui", + Comment = null, }, new() { @@ -5299,6 +5832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamun", + Comment = null, }, new() { @@ -5309,6 +5843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batuley", + Comment = null, }, new() { @@ -5319,6 +5854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baatonum", + Comment = null, }, new() { @@ -5329,6 +5865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barai", + Comment = null, }, new() { @@ -5339,6 +5876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Toba", + Comment = null, }, new() { @@ -5349,6 +5887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bau", + Comment = null, }, new() { @@ -5359,6 +5898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangba", + Comment = null, }, new() { @@ -5369,6 +5909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baibai", + Comment = null, }, new() { @@ -5379,6 +5920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barama", + Comment = null, }, new() { @@ -5389,6 +5931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bugan", + Comment = null, }, new() { @@ -5399,6 +5942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barombi", + Comment = null, }, new() { @@ -5409,6 +5953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghomálá'", + Comment = null, }, new() { @@ -5419,6 +5964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babanki", + Comment = null, }, new() { @@ -5429,6 +5975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bats", + Comment = null, }, new() { @@ -5439,6 +5986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babango", + Comment = null, }, new() { @@ -5449,6 +5997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uneapa", + Comment = null, }, new() { @@ -5459,6 +6008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Bobo Madaré", + Comment = null, }, new() { @@ -5469,6 +6019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Central Banda", + Comment = null, }, new() { @@ -5479,6 +6030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamali", + Comment = null, }, new() { @@ -5489,6 +6041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Girawa", + Comment = null, }, new() { @@ -5499,6 +6052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakpinka", + Comment = null, }, new() { @@ -5509,6 +6063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mburku", + Comment = null, }, new() { @@ -5519,6 +6074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulung (Nigeria)", + Comment = null, }, new() { @@ -5529,6 +6085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karnai", + Comment = null, }, new() { @@ -5539,6 +6096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baba", + Comment = null, }, new() { @@ -5549,6 +6107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bubia", + Comment = null, }, new() { @@ -5559,6 +6118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Befang", + Comment = null, }, new() { @@ -5569,6 +6129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Bai", + Comment = null, }, new() { @@ -5579,6 +6140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bainouk-Samik", + Comment = null, }, new() { @@ -5589,6 +6151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Balochi", + Comment = null, }, new() { @@ -5599,6 +6162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Babar", + Comment = null, }, new() { @@ -5609,6 +6173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamenyam", + Comment = null, }, new() { @@ -5619,6 +6184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamu", + Comment = null, }, new() { @@ -5629,6 +6195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Pokur", + Comment = null, }, new() { @@ -5639,6 +6206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bariai", + Comment = null, }, new() { @@ -5649,6 +6217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baoulé", + Comment = null, }, new() { @@ -5659,6 +6228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bardi", + Comment = null, }, new() { @@ -5669,6 +6239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunuba", + Comment = null, }, new() { @@ -5679,6 +6250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Bikol", + Comment = null, }, new() { @@ -5689,6 +6261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bannoni", + Comment = null, }, new() { @@ -5699,6 +6272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bali (Nigeria)", + Comment = null, }, new() { @@ -5709,6 +6283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaluli", + Comment = null, }, new() { @@ -5719,6 +6294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bali (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -5729,6 +6305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bench", + Comment = null, }, new() { @@ -5739,6 +6316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babine", + Comment = null, }, new() { @@ -5749,6 +6327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kohumono", + Comment = null, }, new() { @@ -5759,6 +6338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bendi", + Comment = null, }, new() { @@ -5769,6 +6349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awad Bing", + Comment = null, }, new() { @@ -5779,6 +6360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shoo-Minda-Nye", + Comment = null, }, new() { @@ -5789,6 +6371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bana", + Comment = null, }, new() { @@ -5799,6 +6382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bacama", + Comment = null, }, new() { @@ -5809,6 +6393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bainouk-Gunyaamolo", + Comment = null, }, new() { @@ -5819,6 +6404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bayot", + Comment = null, }, new() { @@ -5829,6 +6415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basap", + Comment = null, }, new() { @@ -5839,6 +6426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Baudó", + Comment = null, }, new() { @@ -5849,6 +6437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunama", + Comment = null, }, new() { @@ -5859,6 +6448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bade", + Comment = null, }, new() { @@ -5869,6 +6459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biage", + Comment = null, }, new() { @@ -5879,6 +6470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonggi", + Comment = null, }, new() { @@ -5889,6 +6481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baka (South Sudan)", + Comment = null, }, new() { @@ -5899,6 +6492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burun", + Comment = null, }, new() { @@ -5909,6 +6503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bai (South Sudan)", + Comment = null, }, new() { @@ -5919,6 +6514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budukh", + Comment = null, }, new() { @@ -5929,6 +6525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indonesian Bajau", + Comment = null, }, new() { @@ -5939,6 +6536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buduma", + Comment = null, }, new() { @@ -5949,6 +6547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baldemu", + Comment = null, }, new() { @@ -5959,6 +6558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morom", + Comment = null, }, new() { @@ -5969,6 +6569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bende", + Comment = null, }, new() { @@ -5979,6 +6580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahnar", + Comment = null, }, new() { @@ -5989,6 +6591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Coast Bajau", + Comment = null, }, new() { @@ -5999,6 +6602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burunge", + Comment = null, }, new() { @@ -6009,6 +6613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokoto", + Comment = null, }, new() { @@ -6019,6 +6624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroko", + Comment = null, }, new() { @@ -6029,6 +6635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo Parja", + Comment = null, }, new() { @@ -6039,6 +6646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baham", + Comment = null, }, new() { @@ -6049,6 +6657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budong-Budong", + Comment = null, }, new() { @@ -6059,6 +6668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bandjalang", + Comment = null, }, new() { @@ -6069,6 +6679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badeshi", + Comment = null, }, new() { @@ -6079,6 +6690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beaver", + Comment = null, }, new() { @@ -6089,6 +6701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bebele", + Comment = null, }, new() { @@ -6099,6 +6712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iceve-Maci", + Comment = null, }, new() { @@ -6109,6 +6723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bedoanas", + Comment = null, }, new() { @@ -6119,6 +6734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Byangsi", + Comment = null, }, new() { @@ -6129,6 +6745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benabena", + Comment = null, }, new() { @@ -6139,6 +6756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belait", + Comment = null, }, new() { @@ -6149,6 +6767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biali", + Comment = null, }, new() { @@ -6159,6 +6778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bekati'", + Comment = null, }, new() { @@ -6169,6 +6789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beja", + Comment = null, }, new() { @@ -6179,6 +6800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bebeli", + Comment = null, }, new() { @@ -6189,6 +6811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belarusian", + Comment = null, }, new() { @@ -6199,6 +6822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bemba (Zambia)", + Comment = null, }, new() { @@ -6209,6 +6833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bengali", + Comment = null, }, new() { @@ -6219,6 +6844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beami", + Comment = null, }, new() { @@ -6229,6 +6855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Besoa", + Comment = null, }, new() { @@ -6239,6 +6866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beembe", + Comment = null, }, new() { @@ -6249,6 +6877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Besme", + Comment = null, }, new() { @@ -6259,6 +6888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guiberoua Béte", + Comment = null, }, new() { @@ -6269,6 +6899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blagar", + Comment = null, }, new() { @@ -6279,6 +6910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daloa Bété", + Comment = null, }, new() { @@ -6289,6 +6921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Betawi", + Comment = null, }, new() { @@ -6299,6 +6932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jur Modo", + Comment = null, }, new() { @@ -6309,6 +6943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beli (Papua New Guinea)", + Comment = null, }, new() { @@ -6319,6 +6954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bena (Tanzania)", + Comment = null, }, new() { @@ -6329,6 +6965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bari", + Comment = null, }, new() { @@ -6339,6 +6976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pauri Bareli", + Comment = null, }, new() { @@ -6349,6 +6987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panyi Bai", + Comment = null, }, new() { @@ -6359,6 +6998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafut", + Comment = null, }, new() { @@ -6369,6 +7009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Betaf", + Comment = null, }, new() { @@ -6379,6 +7020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bofi", + Comment = null, }, new() { @@ -6389,6 +7031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busang Kayan", + Comment = null, }, new() { @@ -6399,6 +7042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blafe", + Comment = null, }, new() { @@ -6409,6 +7053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "British Sign Language", + Comment = null, }, new() { @@ -6419,6 +7064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafanji", + Comment = null, }, new() { @@ -6429,6 +7075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ban Khor Sign Language", + Comment = null, }, new() { @@ -6439,6 +7086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Ndélé", + Comment = null, }, new() { @@ -6449,6 +7097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mmen", + Comment = null, }, new() { @@ -6459,6 +7108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunak", + Comment = null, }, new() { @@ -6469,6 +7119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malba Birifor", + Comment = null, }, new() { @@ -6479,6 +7130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beba", + Comment = null, }, new() { @@ -6489,6 +7141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badaga", + Comment = null, }, new() { @@ -6499,6 +7152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bazigar", + Comment = null, }, new() { @@ -6509,6 +7163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Bai", + Comment = null, }, new() { @@ -6519,6 +7174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balti", + Comment = null, }, new() { @@ -6529,6 +7185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gahri", + Comment = null, }, new() { @@ -6539,6 +7196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondo", + Comment = null, }, new() { @@ -6549,6 +7207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantayanon", + Comment = null, }, new() { @@ -6559,6 +7218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagheli", + Comment = null, }, new() { @@ -6569,6 +7229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahasu Pahari", + Comment = null, }, new() { @@ -6579,6 +7240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwamhi-Wuri", + Comment = null, }, new() { @@ -6589,6 +7251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bobongko", + Comment = null, }, new() { @@ -6599,6 +7262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haryanvi", + Comment = null, }, new() { @@ -6609,6 +7273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rathwi Bareli", + Comment = null, }, new() { @@ -6619,6 +7284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauria", + Comment = null, }, new() { @@ -6629,6 +7295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangandu", + Comment = null, }, new() { @@ -6639,6 +7306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bugun", + Comment = null, }, new() { @@ -6649,6 +7317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giangan", + Comment = null, }, new() { @@ -6659,6 +7328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangolan", + Comment = null, }, new() { @@ -6669,6 +7339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bit", + Comment = null, }, new() { @@ -6679,6 +7350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo (Laos)", + Comment = null, }, new() { @@ -6689,6 +7361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Balochi", + Comment = null, }, new() { @@ -6699,6 +7372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Koga", + Comment = null, }, new() { @@ -6709,6 +7383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Balochi", + Comment = null, }, new() { @@ -6719,6 +7394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagri", + Comment = null, }, new() { @@ -6729,6 +7405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bawm Chin", + Comment = null, }, new() { @@ -6739,6 +7416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagabawa", + Comment = null, }, new() { @@ -6749,6 +7427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bughotu", + Comment = null, }, new() { @@ -6759,6 +7438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbongno", + Comment = null, }, new() { @@ -6769,6 +7449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warkay-Bipim", + Comment = null, }, new() { @@ -6779,6 +7460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhatri", + Comment = null, }, new() { @@ -6789,6 +7471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balkan Gagauz Turkish", + Comment = null, }, new() { @@ -6799,6 +7482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benggoi", + Comment = null, }, new() { @@ -6809,6 +7493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banggai", + Comment = null, }, new() { @@ -6819,6 +7504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bharia", + Comment = null, }, new() { @@ -6829,6 +7515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhili", + Comment = null, }, new() { @@ -6839,6 +7526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biga", + Comment = null, }, new() { @@ -6849,6 +7537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhadrawahi", + Comment = null, }, new() { @@ -6859,6 +7548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhaya", + Comment = null, }, new() { @@ -6869,6 +7559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odiai", + Comment = null, }, new() { @@ -6879,6 +7570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binandere", + Comment = null, }, new() { @@ -6889,6 +7581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukharic", + Comment = null, }, new() { @@ -6899,6 +7592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhilali", + Comment = null, }, new() { @@ -6909,6 +7603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahing", + Comment = null, }, new() { @@ -6919,6 +7614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bimin", + Comment = null, }, new() { @@ -6929,6 +7625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bathari", + Comment = null, }, new() { @@ -6939,6 +7636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bohtan Neo-Aramaic", + Comment = null, }, new() { @@ -6949,6 +7647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhojpuri", + Comment = null, }, new() { @@ -6959,6 +7658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bima", + Comment = null, }, new() { @@ -6969,6 +7669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukang Besi South", + Comment = null, }, new() { @@ -6979,6 +7680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bara Malagasy", + Comment = null, }, new() { @@ -6989,6 +7691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buwal", + Comment = null, }, new() { @@ -6999,6 +7702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhattiyali", + Comment = null, }, new() { @@ -7009,6 +7713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhunjia", + Comment = null, }, new() { @@ -7019,6 +7724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahau", + Comment = null, }, new() { @@ -7029,6 +7735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biak", + Comment = null, }, new() { @@ -7039,6 +7746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhalay", + Comment = null, }, new() { @@ -7049,6 +7757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhele", + Comment = null, }, new() { @@ -7059,6 +7768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bada (Indonesia)", + Comment = null, }, new() { @@ -7069,6 +7779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badimaya", + Comment = null, }, new() { @@ -7079,6 +7790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bissa", + Comment = null, }, new() { @@ -7089,6 +7801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bidiyo", + Comment = null, }, new() { @@ -7099,6 +7812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bepour", + Comment = null, }, new() { @@ -7109,6 +7823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biafada", + Comment = null, }, new() { @@ -7119,6 +7834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biangai", + Comment = null, }, new() { @@ -7129,6 +7845,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Bikol", + Comment = null, }, new() { @@ -7139,6 +7856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bile", + Comment = null, }, new() { @@ -7149,6 +7867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bimoba", + Comment = null, }, new() { @@ -7159,6 +7878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bini", + Comment = null, }, new() { @@ -7169,6 +7889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nai", + Comment = null, }, new() { @@ -7179,6 +7900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bila", + Comment = null, }, new() { @@ -7189,6 +7911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bipi", + Comment = null, }, new() { @@ -7199,6 +7922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bisorio", + Comment = null, }, new() { @@ -7209,6 +7933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bislama", + Comment = null, }, new() { @@ -7219,6 +7944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berinomo", + Comment = null, }, new() { @@ -7229,6 +7955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biete", + Comment = null, }, new() { @@ -7239,6 +7966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Birifor", + Comment = null, }, new() { @@ -7249,6 +7977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kol (Cameroon)", + Comment = null, }, new() { @@ -7259,6 +7988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bijori", + Comment = null, }, new() { @@ -7269,6 +7999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birhor", + Comment = null, }, new() { @@ -7279,6 +8010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baloi", + Comment = null, }, new() { @@ -7289,6 +8021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budza", + Comment = null, }, new() { @@ -7299,6 +8032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Banggarla", + Comment = null, }, new() { @@ -7309,6 +8043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bariji", + Comment = null, }, new() { @@ -7319,6 +8054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biao-Jiao Mien", + Comment = null, }, new() { @@ -7329,6 +8065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barzani Jewish Neo-Aramaic", + Comment = null, }, new() { @@ -7339,6 +8076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bidyogo", + Comment = null, }, new() { @@ -7349,6 +8087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahinemo", + Comment = null, }, new() { @@ -7359,6 +8098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burji", + Comment = null, }, new() { @@ -7369,6 +8109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanauji", + Comment = null, }, new() { @@ -7379,6 +8120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barok", + Comment = null, }, new() { @@ -7389,6 +8131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulu (Papua New Guinea)", + Comment = null, }, new() { @@ -7399,6 +8142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bajelani", + Comment = null, }, new() { @@ -7409,6 +8153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banjar", + Comment = null, }, new() { @@ -7419,6 +8164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mid-Southern Banda", + Comment = null, }, new() { @@ -7429,6 +8175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanamaket", + Comment = null, }, new() { @@ -7439,6 +8186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binumarien", + Comment = null, }, new() { @@ -7449,6 +8197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bajan", + Comment = null, }, new() { @@ -7459,6 +8208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balanta-Ganja", + Comment = null, }, new() { @@ -7469,6 +8219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busuu", + Comment = null, }, new() { @@ -7479,6 +8230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bedjond", + Comment = null, }, new() { @@ -7489,6 +8241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakwé", + Comment = null, }, new() { @@ -7499,6 +8252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banao Itneg", + Comment = null, }, new() { @@ -7509,6 +8263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bayali", + Comment = null, }, new() { @@ -7519,6 +8274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baruga", + Comment = null, }, new() { @@ -7529,6 +8285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyak", + Comment = null, }, new() { @@ -7539,6 +8296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baka (Cameroon)", + Comment = null, }, new() { @@ -7549,6 +8307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binukid", + Comment = null, }, new() { @@ -7559,6 +8318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beeke", + Comment = null, }, new() { @@ -7569,6 +8329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buraka", + Comment = null, }, new() { @@ -7579,6 +8340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakoko", + Comment = null, }, new() { @@ -7589,6 +8351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baki", + Comment = null, }, new() { @@ -7599,6 +8362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pande", + Comment = null, }, new() { @@ -7609,6 +8373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brokskat", + Comment = null, }, new() { @@ -7619,6 +8384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berik", + Comment = null, }, new() { @@ -7629,6 +8395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kom (Cameroon)", + Comment = null, }, new() { @@ -7639,6 +8406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukitan", + Comment = null, }, new() { @@ -7649,6 +8417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwa'", + Comment = null, }, new() { @@ -7659,6 +8428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boko (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -7669,6 +8439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakairí", + Comment = null, }, new() { @@ -7679,6 +8450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakumpai", + Comment = null, }, new() { @@ -7689,6 +8461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Sorsoganon", + Comment = null, }, new() { @@ -7699,6 +8472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boloki", + Comment = null, }, new() { @@ -7709,6 +8483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buhid", + Comment = null, }, new() { @@ -7719,6 +8494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bekwarra", + Comment = null, }, new() { @@ -7729,6 +8505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bekwel", + Comment = null, }, new() { @@ -7739,6 +8516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baikeno", + Comment = null, }, new() { @@ -7749,6 +8527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokyi", + Comment = null, }, new() { @@ -7759,6 +8538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bungku", + Comment = null, }, new() { @@ -7769,6 +8549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siksika", + Comment = null, }, new() { @@ -7779,6 +8560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilua", + Comment = null, }, new() { @@ -7789,6 +8571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bella Coola", + Comment = null, }, new() { @@ -7799,6 +8582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolango", + Comment = null, }, new() { @@ -7809,6 +8593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balanta-Kentohe", + Comment = null, }, new() { @@ -7819,6 +8604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buol", + Comment = null, }, new() { @@ -7829,6 +8615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuwaa", + Comment = null, }, new() { @@ -7839,6 +8626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolia", + Comment = null, }, new() { @@ -7849,6 +8637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolongan", + Comment = null, }, new() { @@ -7859,6 +8648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa'o Karen", + Comment = null, }, new() { @@ -7869,6 +8659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Biloxi", + Comment = null, }, new() { @@ -7879,6 +8670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beli (South Sudan)", + Comment = null, }, new() { @@ -7889,6 +8681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Catanduanes Bikol", + Comment = null, }, new() { @@ -7899,6 +8692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anii", + Comment = null, }, new() { @@ -7909,6 +8703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blablanga", + Comment = null, }, new() { @@ -7919,6 +8714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baluan-Pam", + Comment = null, }, new() { @@ -7929,6 +8725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blang", + Comment = null, }, new() { @@ -7939,6 +8736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balaesang", + Comment = null, }, new() { @@ -7949,6 +8747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Dam", + Comment = null, }, new() { @@ -7959,6 +8758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kibala", + Comment = null, }, new() { @@ -7969,6 +8769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balangao", + Comment = null, }, new() { @@ -7979,6 +8780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mag-Indi Ayta", + Comment = null, }, new() { @@ -7989,6 +8791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Notre", + Comment = null, }, new() { @@ -7999,6 +8802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balantak", + Comment = null, }, new() { @@ -8009,6 +8813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lame", + Comment = null, }, new() { @@ -8019,6 +8824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bembe", + Comment = null, }, new() { @@ -8029,6 +8835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biem", + Comment = null, }, new() { @@ -8039,6 +8846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Manduri", + Comment = null, }, new() { @@ -8049,6 +8857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limassa", + Comment = null, }, new() { @@ -8059,6 +8868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bom-Kim", + Comment = null, }, new() { @@ -8069,6 +8879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamwe", + Comment = null, }, new() { @@ -8079,6 +8890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kein", + Comment = null, }, new() { @@ -8089,6 +8901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagirmi", + Comment = null, }, new() { @@ -8099,6 +8912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bote-Majhi", + Comment = null, }, new() { @@ -8109,6 +8923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghayavi", + Comment = null, }, new() { @@ -8119,6 +8934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomboli", + Comment = null, }, new() { @@ -8129,6 +8945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Betsimisaraka Malagasy", + Comment = null, }, new() { @@ -8139,6 +8956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bina (Papua New Guinea)", + Comment = null, }, new() { @@ -8149,6 +8967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambalang", + Comment = null, }, new() { @@ -8159,6 +8978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulgebi", + Comment = null, }, new() { @@ -8169,6 +8989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomu", + Comment = null, }, new() { @@ -8179,6 +9000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muinane", + Comment = null, }, new() { @@ -8189,6 +9011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilma Kanuri", + Comment = null, }, new() { @@ -8199,6 +9022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biao Mon", + Comment = null, }, new() { @@ -8209,6 +9033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somba-Siawari", + Comment = null, }, new() { @@ -8219,6 +9044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bum", + Comment = null, }, new() { @@ -8229,6 +9055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomwali", + Comment = null, }, new() { @@ -8239,6 +9066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baimak", + Comment = null, }, new() { @@ -8249,6 +9077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baramu", + Comment = null, }, new() { @@ -8259,6 +9088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonerate", + Comment = null, }, new() { @@ -8269,6 +9099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bookan", + Comment = null, }, new() { @@ -8279,6 +9110,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Bontok", + Comment = null, }, new() { @@ -8289,6 +9121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda (Indonesia)", + Comment = null, }, new() { @@ -8299,6 +9132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bintauna", + Comment = null, }, new() { @@ -8309,6 +9143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masiwang", + Comment = null, }, new() { @@ -8319,6 +9154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benga", + Comment = null, }, new() { @@ -8329,6 +9165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangi", + Comment = null, }, new() { @@ -8339,6 +9176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Tawbuid", + Comment = null, }, new() { @@ -8349,6 +9187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bierebo", + Comment = null, }, new() { @@ -8359,6 +9198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boon", + Comment = null, }, new() { @@ -8369,6 +9209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batanga", + Comment = null, }, new() { @@ -8379,6 +9220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunun", + Comment = null, }, new() { @@ -8389,6 +9231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantoanon", + Comment = null, }, new() { @@ -8399,6 +9242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bola", + Comment = null, }, new() { @@ -8409,6 +9253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantik", + Comment = null, }, new() { @@ -8419,6 +9264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Butmas-Tur", + Comment = null, }, new() { @@ -8429,6 +9275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bundeli", + Comment = null, }, new() { @@ -8439,6 +9286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bentong", + Comment = null, }, new() { @@ -8449,6 +9297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonerif", + Comment = null, }, new() { @@ -8459,6 +9308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bisis", + Comment = null, }, new() { @@ -8469,6 +9319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangubangu", + Comment = null, }, new() { @@ -8479,6 +9330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bintulu", + Comment = null, }, new() { @@ -8489,6 +9341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beezen", + Comment = null, }, new() { @@ -8499,6 +9352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bora", + Comment = null, }, new() { @@ -8509,6 +9363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aweer", + Comment = null, }, new() { @@ -8519,6 +9374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tibetan", + Comment = null, }, new() { @@ -8529,6 +9385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundabli-Mufu", + Comment = null, }, new() { @@ -8539,6 +9396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolon", + Comment = null, }, new() { @@ -8549,6 +9407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamako Sign Language", + Comment = null, }, new() { @@ -8559,6 +9418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boma", + Comment = null, }, new() { @@ -8569,6 +9429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barbareño", + Comment = null, }, new() { @@ -8579,6 +9440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anjam", + Comment = null, }, new() { @@ -8589,6 +9451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonjo", + Comment = null, }, new() { @@ -8599,6 +9462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bole", + Comment = null, }, new() { @@ -8609,6 +9473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berom", + Comment = null, }, new() { @@ -8619,6 +9484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bine", + Comment = null, }, new() { @@ -8629,6 +9495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiemacèwè Bozo", + Comment = null, }, new() { @@ -8639,6 +9506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonkiman", + Comment = null, }, new() { @@ -8649,6 +9517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bogaya", + Comment = null, }, new() { @@ -8659,6 +9528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borôro", + Comment = null, }, new() { @@ -8669,6 +9539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bosnian", + Comment = null, }, new() { @@ -8679,6 +9550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bongo", + Comment = null, }, new() { @@ -8689,6 +9561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondei", + Comment = null, }, new() { @@ -8699,6 +9572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuwuli", + Comment = null, }, new() { @@ -8709,6 +9583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Rema", + Comment = null, }, new() { @@ -8719,6 +9594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buamu", + Comment = null, }, new() { @@ -8729,6 +9605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo (Central African Republic)", + Comment = null, }, new() { @@ -8739,6 +9616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiéyaxo Bozo", + Comment = null, }, new() { @@ -8749,6 +9627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daakaka", + Comment = null, }, new() { @@ -8759,6 +9638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbuk", + Comment = null, }, new() { @@ -8769,6 +9649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Banda", + Comment = null, }, new() { @@ -8779,6 +9660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauni", + Comment = null, }, new() { @@ -8789,6 +9671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonggo", + Comment = null, }, new() { @@ -8799,6 +9682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Botlikh", + Comment = null, }, new() { @@ -8809,6 +9693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagupi", + Comment = null, }, new() { @@ -8819,6 +9704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binji", + Comment = null, }, new() { @@ -8829,6 +9715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orowe", + Comment = null, }, new() { @@ -8839,6 +9726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Broome Pearling Lugger Pidgin", + Comment = null, }, new() { @@ -8849,6 +9737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biyom", + Comment = null, }, new() { @@ -8859,6 +9748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzao Min", + Comment = null, }, new() { @@ -8869,6 +9759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anasi", + Comment = null, }, new() { @@ -8879,6 +9770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaure", + Comment = null, }, new() { @@ -8889,6 +9781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda Malay", + Comment = null, }, new() { @@ -8899,6 +9792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koronadal Blaan", + Comment = null, }, new() { @@ -8909,6 +9803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarangani Blaan", + Comment = null, }, new() { @@ -8919,6 +9814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barrow Point", + Comment = null, }, new() { @@ -8929,6 +9825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bongu", + Comment = null, }, new() { @@ -8939,6 +9836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bian Marind", + Comment = null, }, new() { @@ -8949,6 +9847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo (Papua New Guinea)", + Comment = null, }, new() { @@ -8959,6 +9858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palya Bareli", + Comment = null, }, new() { @@ -8969,6 +9869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bishnupriya", + Comment = null, }, new() { @@ -8979,6 +9880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilba", + Comment = null, }, new() { @@ -8989,6 +9891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tchumbuli", + Comment = null, }, new() { @@ -8999,6 +9902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagusa", + Comment = null, }, new() { @@ -9009,6 +9913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boko (Benin)", + Comment = null, }, new() { @@ -9019,6 +9924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bung", + Comment = null, }, new() { @@ -9029,6 +9935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baga Kaloum", + Comment = null, }, new() { @@ -9039,6 +9946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bago-Kusuntu", + Comment = null, }, new() { @@ -9049,6 +9957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baima", + Comment = null, }, new() { @@ -9059,6 +9968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakhtiari", + Comment = null, }, new() { @@ -9069,6 +9979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bandial", + Comment = null, }, new() { @@ -9079,6 +9990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Mbrès", + Comment = null, }, new() { @@ -9089,6 +10001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karian", + Comment = null, }, new() { @@ -9099,6 +10012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wumboko", + Comment = null, }, new() { @@ -9109,6 +10023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulgarian Sign Language", + Comment = null, }, new() { @@ -9119,6 +10034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balo", + Comment = null, }, new() { @@ -9129,6 +10045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busa", + Comment = null, }, new() { @@ -9139,6 +10056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biritai", + Comment = null, }, new() { @@ -9149,6 +10067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burusu", + Comment = null, }, new() { @@ -9159,6 +10078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bosngun", + Comment = null, }, new() { @@ -9169,6 +10089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamukumbit", + Comment = null, }, new() { @@ -9179,6 +10100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boguru", + Comment = null, }, new() { @@ -9189,6 +10111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro Wachi", + Comment = null, }, new() { @@ -9199,6 +10122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buru (Nigeria)", + Comment = null, }, new() { @@ -9209,6 +10133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baangi", + Comment = null, }, new() { @@ -9219,6 +10144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bengkala Sign Language", + Comment = null, }, new() { @@ -9229,6 +10155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakaka", + Comment = null, }, new() { @@ -9239,6 +10166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Braj", + Comment = null, }, new() { @@ -9249,6 +10177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brao", + Comment = null, }, new() { @@ -9259,6 +10188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Berbice Creole Dutch", + Comment = null, }, new() { @@ -9269,6 +10199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baraamu", + Comment = null, }, new() { @@ -9279,6 +10210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Breton", + Comment = null, }, new() { @@ -9289,6 +10221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bira", + Comment = null, }, new() { @@ -9299,6 +10232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baure", + Comment = null, }, new() { @@ -9309,6 +10243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brahui", + Comment = null, }, new() { @@ -9319,6 +10254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokpwe", + Comment = null, }, new() { @@ -9329,6 +10265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bieria", + Comment = null, }, new() { @@ -9339,6 +10276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Birked", + Comment = null, }, new() { @@ -9349,6 +10287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birwa", + Comment = null, }, new() { @@ -9359,6 +10298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barambu", + Comment = null, }, new() { @@ -9369,6 +10309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boruca", + Comment = null, }, new() { @@ -9379,6 +10320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brokkat", + Comment = null, }, new() { @@ -9389,6 +10331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barapasi", + Comment = null, }, new() { @@ -9399,6 +10342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Breri", + Comment = null, }, new() { @@ -9409,6 +10353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birao", + Comment = null, }, new() { @@ -9419,6 +10364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baras", + Comment = null, }, new() { @@ -9429,6 +10375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bitare", + Comment = null, }, new() { @@ -9439,6 +10386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Bru", + Comment = null, }, new() { @@ -9449,6 +10397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Bru", + Comment = null, }, new() { @@ -9459,6 +10408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bellari", + Comment = null, }, new() { @@ -9469,6 +10419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo (India)", + Comment = null, }, new() { @@ -9479,6 +10430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burui", + Comment = null, }, new() { @@ -9489,6 +10441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilbil", + Comment = null, }, new() { @@ -9499,6 +10452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abinomn", + Comment = null, }, new() { @@ -9509,6 +10463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brunei Bisaya", + Comment = null, }, new() { @@ -9519,6 +10474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassari", + Comment = null, }, new() { @@ -9529,6 +10485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wushi", + Comment = null, }, new() { @@ -9539,6 +10496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauchi", + Comment = null, }, new() { @@ -9549,6 +10507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bashkardi", + Comment = null, }, new() { @@ -9559,6 +10518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kati", + Comment = null, }, new() { @@ -9569,6 +10529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassossi", + Comment = null, }, new() { @@ -9579,6 +10540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangwinji", + Comment = null, }, new() { @@ -9589,6 +10551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burushaski", + Comment = null, }, new() { @@ -9599,6 +10562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Basa-Gumna", + Comment = null, }, new() { @@ -9609,6 +10573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busami", + Comment = null, }, new() { @@ -9619,6 +10584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barasana-Eduria", + Comment = null, }, new() { @@ -9629,6 +10595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buso", + Comment = null, }, new() { @@ -9639,6 +10606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Sitemu", + Comment = null, }, new() { @@ -9649,6 +10617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassa", + Comment = null, }, new() { @@ -9659,6 +10628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassa-Kontagora", + Comment = null, }, new() { @@ -9669,6 +10639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akoose", + Comment = null, }, new() { @@ -9679,6 +10650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basketo", + Comment = null, }, new() { @@ -9689,6 +10661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahonsuai", + Comment = null, }, new() { @@ -9699,6 +10672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baga Sobané", + Comment = null, }, new() { @@ -9709,6 +10683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baiso", + Comment = null, }, new() { @@ -9719,6 +10694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangkam", + Comment = null, }, new() { @@ -9729,6 +10705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabah Bisaya", + Comment = null, }, new() { @@ -9739,6 +10716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bata", + Comment = null, }, new() { @@ -9749,6 +10727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bati (Cameroon)", + Comment = null, }, new() { @@ -9759,6 +10738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Dairi", + Comment = null, }, new() { @@ -9769,6 +10749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gamo-Ningi", + Comment = null, }, new() { @@ -9779,6 +10760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birgit", + Comment = null, }, new() { @@ -9789,6 +10771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagnoa Bété", + Comment = null, }, new() { @@ -9799,6 +10782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biatah Bidayuh", + Comment = null, }, new() { @@ -9809,6 +10793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burate", + Comment = null, }, new() { @@ -9819,6 +10804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bacanese Malay", + Comment = null, }, new() { @@ -9829,6 +10815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Mandailing", + Comment = null, }, new() { @@ -9839,6 +10826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ratagnon", + Comment = null, }, new() { @@ -9849,6 +10837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rinconada Bikol", + Comment = null, }, new() { @@ -9859,6 +10848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budibud", + Comment = null, }, new() { @@ -9869,6 +10859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batek", + Comment = null, }, new() { @@ -9879,6 +10870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baetora", + Comment = null, }, new() { @@ -9889,6 +10881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Simalungun", + Comment = null, }, new() { @@ -9899,6 +10892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bete-Bendi", + Comment = null, }, new() { @@ -9909,6 +10903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batu", + Comment = null, }, new() { @@ -9919,6 +10914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bateri", + Comment = null, }, new() { @@ -9929,6 +10925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Butuanon", + Comment = null, }, new() { @@ -9939,6 +10936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Karo", + Comment = null, }, new() { @@ -9949,6 +10947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bobot", + Comment = null, }, new() { @@ -9959,6 +10958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Alas-Kluet", + Comment = null, }, new() { @@ -9969,6 +10969,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Buriat", + Comment = null, }, new() { @@ -9979,6 +10980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bua", + Comment = null, }, new() { @@ -9989,6 +10991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bushi", + Comment = null, }, new() { @@ -9999,6 +11002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ntcham", + Comment = null, }, new() { @@ -10009,6 +11013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Beothuk", + Comment = null, }, new() { @@ -10019,6 +11024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bushoong", + Comment = null, }, new() { @@ -10029,6 +11035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buginese", + Comment = null, }, new() { @@ -10039,6 +11046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Younuo Bunu", + Comment = null, }, new() { @@ -10049,6 +11057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bongili", + Comment = null, }, new() { @@ -10059,6 +11068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basa-Gurmana", + Comment = null, }, new() { @@ -10069,6 +11079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bugawac", + Comment = null, }, new() { @@ -10079,6 +11090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulgarian", + Comment = null, }, new() { @@ -10089,6 +11101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulu (Cameroon)", + Comment = null, }, new() { @@ -10099,6 +11112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sherbro", + Comment = null, }, new() { @@ -10109,6 +11123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Terei", + Comment = null, }, new() { @@ -10119,6 +11134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busoa", + Comment = null, }, new() { @@ -10129,6 +11145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brem", + Comment = null, }, new() { @@ -10139,6 +11156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokobaru", + Comment = null, }, new() { @@ -10149,6 +11167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bungain", + Comment = null, }, new() { @@ -10159,6 +11178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budu", + Comment = null, }, new() { @@ -10169,6 +11189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bun", + Comment = null, }, new() { @@ -10179,6 +11200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bubi", + Comment = null, }, new() { @@ -10189,6 +11211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boghom", + Comment = null, }, new() { @@ -10199,6 +11222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bullom So", + Comment = null, }, new() { @@ -10209,6 +11233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukwen", + Comment = null, }, new() { @@ -10219,6 +11244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barein", + Comment = null, }, new() { @@ -10229,6 +11255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bube", + Comment = null, }, new() { @@ -10239,6 +11266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baelelea", + Comment = null, }, new() { @@ -10249,6 +11277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baeggu", + Comment = null, }, new() { @@ -10259,6 +11288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berau Malay", + Comment = null, }, new() { @@ -10269,6 +11299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boor", + Comment = null, }, new() { @@ -10279,6 +11310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonkeng", + Comment = null, }, new() { @@ -10289,6 +11321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bure", + Comment = null, }, new() { @@ -10299,6 +11332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belanda Viri", + Comment = null, }, new() { @@ -10309,6 +11343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baan", + Comment = null, }, new() { @@ -10319,6 +11354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukat", + Comment = null, }, new() { @@ -10329,6 +11365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolivian Sign Language", + Comment = null, }, new() { @@ -10339,6 +11376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamunka", + Comment = null, }, new() { @@ -10349,6 +11387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buna", + Comment = null, }, new() { @@ -10359,6 +11398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolgo", + Comment = null, }, new() { @@ -10369,6 +11409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumang", + Comment = null, }, new() { @@ -10379,6 +11420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birri", + Comment = null, }, new() { @@ -10389,6 +11431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burarra", + Comment = null, }, new() { @@ -10399,6 +11442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bati (Indonesia)", + Comment = null, }, new() { @@ -10409,6 +11453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukit Malay", + Comment = null, }, new() { @@ -10419,6 +11464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baniva", + Comment = null, }, new() { @@ -10429,6 +11475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boga", + Comment = null, }, new() { @@ -10439,6 +11486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibole", + Comment = null, }, new() { @@ -10449,6 +11497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baybayanon", + Comment = null, }, new() { @@ -10459,6 +11508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauzi", + Comment = null, }, new() { @@ -10469,6 +11519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwatoo", + Comment = null, }, new() { @@ -10479,6 +11530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namosi-Naitasiri-Serua", + Comment = null, }, new() { @@ -10489,6 +11541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwile", + Comment = null, }, new() { @@ -10499,6 +11552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwaidoka", + Comment = null, }, new() { @@ -10509,6 +11563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwe Karen", + Comment = null, }, new() { @@ -10519,6 +11574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boselewa", + Comment = null, }, new() { @@ -10529,6 +11585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barwe", + Comment = null, }, new() { @@ -10539,6 +11596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bishuo", + Comment = null, }, new() { @@ -10549,6 +11607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baniwa", + Comment = null, }, new() { @@ -10559,6 +11618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Láá Láá Bwamu", + Comment = null, }, new() { @@ -10569,6 +11629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauwaki", + Comment = null, }, new() { @@ -10579,6 +11640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwela", + Comment = null, }, new() { @@ -10589,6 +11651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biwat", + Comment = null, }, new() { @@ -10599,6 +11662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wunai Bunu", + Comment = null, }, new() { @@ -10609,6 +11673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boro (Ethiopia)", + Comment = null, }, new() { @@ -10619,6 +11684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandobo Bawah", + Comment = null, }, new() { @@ -10629,6 +11695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Bobo Madaré", + Comment = null, }, new() { @@ -10639,6 +11706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bura-Pabir", + Comment = null, }, new() { @@ -10649,6 +11717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomboma", + Comment = null, }, new() { @@ -10659,6 +11728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafaw-Balong", + Comment = null, }, new() { @@ -10669,6 +11739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buli (Ghana)", + Comment = null, }, new() { @@ -10679,6 +11750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwa", + Comment = null, }, new() { @@ -10689,6 +11761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bu-Nao Bunu", + Comment = null, }, new() { @@ -10699,6 +11772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cwi Bwamu", + Comment = null, }, new() { @@ -10709,6 +11783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwisi", + Comment = null, }, new() { @@ -10719,6 +11794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tairaha", + Comment = null, }, new() { @@ -10729,6 +11805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belanda Bor", + Comment = null, }, new() { @@ -10739,6 +11816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molengue", + Comment = null, }, new() { @@ -10749,6 +11827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pela", + Comment = null, }, new() { @@ -10759,6 +11838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birale", + Comment = null, }, new() { @@ -10769,6 +11849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilur", + Comment = null, }, new() { @@ -10779,6 +11860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangala", + Comment = null, }, new() { @@ -10789,6 +11871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buhutu", + Comment = null, }, new() { @@ -10799,6 +11882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pirlatapa", + Comment = null, }, new() { @@ -10809,6 +11893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bayungu", + Comment = null, }, new() { @@ -10819,6 +11904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukusu", + Comment = null, }, new() { @@ -10829,6 +11915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jalkunan", + Comment = null, }, new() { @@ -10839,6 +11926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongolia Buriat", + Comment = null, }, new() { @@ -10849,6 +11937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burduna", + Comment = null, }, new() { @@ -10859,6 +11948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barikanchi", + Comment = null, }, new() { @@ -10869,6 +11959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bebil", + Comment = null, }, new() { @@ -10879,6 +11970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beele", + Comment = null, }, new() { @@ -10889,6 +11981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Russia Buriat", + Comment = null, }, new() { @@ -10899,6 +11992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busam", + Comment = null, }, new() { @@ -10909,6 +12003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "China Buriat", + Comment = null, }, new() { @@ -10919,6 +12014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berakou", + Comment = null, }, new() { @@ -10929,6 +12025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankagooma", + Comment = null, }, new() { @@ -10939,6 +12036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binahari", + Comment = null, }, new() { @@ -10949,6 +12047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak", + Comment = null, }, new() { @@ -10959,6 +12058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bikya", + Comment = null, }, new() { @@ -10969,6 +12069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubaghara", + Comment = null, }, new() { @@ -10979,6 +12080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benyadu'", + Comment = null, }, new() { @@ -10989,6 +12091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pouye", + Comment = null, }, new() { @@ -10999,6 +12102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bete", + Comment = null, }, new() { @@ -11009,6 +12113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baygo", + Comment = null, }, new() { @@ -11019,6 +12124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhujel", + Comment = null, }, new() { @@ -11029,6 +12135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buyu", + Comment = null, }, new() { @@ -11039,6 +12146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bina (Nigeria)", + Comment = null, }, new() { @@ -11049,6 +12157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biao", + Comment = null, }, new() { @@ -11059,6 +12168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bayono", + Comment = null, }, new() { @@ -11069,6 +12179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bidjara", + Comment = null, }, new() { @@ -11079,6 +12190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilin", + Comment = null, }, new() { @@ -11089,6 +12201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biyo", + Comment = null, }, new() { @@ -11099,6 +12212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumaji", + Comment = null, }, new() { @@ -11109,6 +12223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Basay", + Comment = null, }, new() { @@ -11119,6 +12234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baruya", + Comment = null, }, new() { @@ -11129,6 +12245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burak", + Comment = null, }, new() { @@ -11139,6 +12256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Berti", + Comment = null, }, new() { @@ -11149,6 +12267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Medumba", + Comment = null, }, new() { @@ -11159,6 +12278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belhariya", + Comment = null, }, new() { @@ -11169,6 +12289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qaqet", + Comment = null, }, new() { @@ -11179,6 +12300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banaro", + Comment = null, }, new() { @@ -11189,6 +12311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bandi", + Comment = null, }, new() { @@ -11199,6 +12322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andio", + Comment = null, }, new() { @@ -11209,6 +12333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Betsimisaraka Malagasy", + Comment = null, }, new() { @@ -11219,6 +12344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bribri", + Comment = null, }, new() { @@ -11229,6 +12355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jenaama Bozo", + Comment = null, }, new() { @@ -11239,6 +12366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boikin", + Comment = null, }, new() { @@ -11249,6 +12377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babuza", + Comment = null, }, new() { @@ -11259,6 +12388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapos Buang", + Comment = null, }, new() { @@ -11269,6 +12399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bisu", + Comment = null, }, new() { @@ -11279,6 +12410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belize Kriol English", + Comment = null, }, new() { @@ -11289,6 +12421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nicaragua Creole English", + Comment = null, }, new() { @@ -11299,6 +12432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boano (Sulawesi)", + Comment = null, }, new() { @@ -11309,6 +12443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolondo", + Comment = null, }, new() { @@ -11319,6 +12454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boano (Maluku)", + Comment = null, }, new() { @@ -11329,6 +12465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bozaba", + Comment = null, }, new() { @@ -11339,6 +12476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemberano", + Comment = null, }, new() { @@ -11349,6 +12487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buli (Indonesia)", + Comment = null, }, new() { @@ -11359,6 +12498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Biri", + Comment = null, }, new() { @@ -11369,6 +12509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brazilian Sign Language", + Comment = null, }, new() { @@ -11379,6 +12520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Brithenig", + Comment = null, }, new() { @@ -11389,6 +12531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burmeso", + Comment = null, }, new() { @@ -11399,6 +12542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naami", + Comment = null, }, new() { @@ -11409,6 +12553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basa (Nigeria)", + Comment = null, }, new() { @@ -11419,6 +12564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kɛlɛngaxo Bozo", + Comment = null, }, new() { @@ -11429,6 +12575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obanliku", + Comment = null, }, new() { @@ -11439,6 +12586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Evant", + Comment = null, }, new() { @@ -11449,6 +12597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chortí", + Comment = null, }, new() { @@ -11459,6 +12608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garifuna", + Comment = null, }, new() { @@ -11469,6 +12619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuj", + Comment = null, }, new() { @@ -11479,6 +12630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caddo", + Comment = null, }, new() { @@ -11489,6 +12641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lehar", + Comment = null, }, new() { @@ -11499,6 +12652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Carrier", + Comment = null, }, new() { @@ -11509,6 +12663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nivaclé", + Comment = null, }, new() { @@ -11519,6 +12674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cahuarano", + Comment = null, }, new() { @@ -11529,6 +12685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chané", + Comment = null, }, new() { @@ -11539,6 +12696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaqchikel", + Comment = null, }, new() { @@ -11549,6 +12707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carolinian", + Comment = null, }, new() { @@ -11559,6 +12718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cemuhî", + Comment = null, }, new() { @@ -11569,6 +12729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chambri", + Comment = null, }, new() { @@ -11579,6 +12740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chácobo", + Comment = null, }, new() { @@ -11589,6 +12751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chipaya", + Comment = null, }, new() { @@ -11599,6 +12762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Car Nicobarese", + Comment = null, }, new() { @@ -11609,6 +12773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galibi Carib", + Comment = null, }, new() { @@ -11619,6 +12784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsimané", + Comment = null, }, new() { @@ -11629,6 +12795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Catalan", + Comment = null, }, new() { @@ -11639,6 +12806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cavineña", + Comment = null, }, new() { @@ -11649,6 +12817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Callawalla", + Comment = null, }, new() { @@ -11659,6 +12828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiquitano", + Comment = null, }, new() { @@ -11669,6 +12839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cayuga", + Comment = null, }, new() { @@ -11679,6 +12850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Canichana", + Comment = null, }, new() { @@ -11689,6 +12861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cabiyarí", + Comment = null, }, new() { @@ -11699,6 +12872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carapana", + Comment = null, }, new() { @@ -11709,6 +12883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carijona", + Comment = null, }, new() { @@ -11719,6 +12894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chimila", + Comment = null, }, new() { @@ -11729,6 +12905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chachi", + Comment = null, }, new() { @@ -11739,6 +12916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Cabe", + Comment = null, }, new() { @@ -11749,6 +12927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chavacano", + Comment = null, }, new() { @@ -11759,6 +12938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bualkhaw Chin", + Comment = null, }, new() { @@ -11769,6 +12949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyahkur", + Comment = null, }, new() { @@ -11779,6 +12960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izora", + Comment = null, }, new() { @@ -11789,6 +12971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsucuba", + Comment = null, }, new() { @@ -11799,6 +12982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cashibo-Cacataibo", + Comment = null, }, new() { @@ -11809,6 +12993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cashinahua", + Comment = null, }, new() { @@ -11819,6 +13004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chayahuita", + Comment = null, }, new() { @@ -11829,6 +13015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Candoshi-Shapra", + Comment = null, }, new() { @@ -11839,6 +13026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cacua", + Comment = null, }, new() { @@ -11849,6 +13037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinabalian", + Comment = null, }, new() { @@ -11859,6 +13048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carabayo", + Comment = null, }, new() { @@ -11869,6 +13059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamicuro", + Comment = null, }, new() { @@ -11879,6 +13070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cafundo Creole", + Comment = null, }, new() { @@ -11889,6 +13081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chopi", + Comment = null, }, new() { @@ -11899,6 +13092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samba Daka", + Comment = null, }, new() { @@ -11909,6 +13103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atsam", + Comment = null, }, new() { @@ -11919,6 +13114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasanga", + Comment = null, }, new() { @@ -11929,6 +13125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cutchi-Swahili", + Comment = null, }, new() { @@ -11939,6 +13136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaccan Creole Malay", + Comment = null, }, new() { @@ -11949,6 +13147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Comaltepec Chinantec", + Comment = null, }, new() { @@ -11959,6 +13158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chakma", + Comment = null, }, new() { @@ -11969,6 +13169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cacaopera", + Comment = null, }, new() { @@ -11979,6 +13180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Choni", + Comment = null, }, new() { @@ -11989,6 +13191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chenchu", + Comment = null, }, new() { @@ -11999,6 +13202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiru", + Comment = null, }, new() { @@ -12009,6 +13213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chambeali", + Comment = null, }, new() { @@ -12019,6 +13224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chodri", + Comment = null, }, new() { @@ -12029,6 +13235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Churahi", + Comment = null, }, new() { @@ -12039,6 +13246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chepang", + Comment = null, }, new() { @@ -12049,6 +13257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaudangsi", + Comment = null, }, new() { @@ -12059,6 +13268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Dong Chinese", + Comment = null, }, new() { @@ -12069,6 +13279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cinda-Regi-Tiyal", + Comment = null, }, new() { @@ -12079,6 +13290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chadian Sign Language", + Comment = null, }, new() { @@ -12089,6 +13301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chadong", + Comment = null, }, new() { @@ -12099,6 +13312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koda", + Comment = null, }, new() { @@ -12109,6 +13323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Chehalis", + Comment = null, }, new() { @@ -12119,6 +13334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cebuano", + Comment = null, }, new() { @@ -12129,6 +13345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamacoco", + Comment = null, }, new() { @@ -12139,6 +13356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Khumi Chin", + Comment = null, }, new() { @@ -12149,6 +13367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cen", + Comment = null, }, new() { @@ -12159,6 +13378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Czech", + Comment = null, }, new() { @@ -12169,6 +13389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Centúúm", + Comment = null, }, new() { @@ -12179,6 +13400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekai Chin", + Comment = null, }, new() { @@ -12189,6 +13411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dijim-Bwilim", + Comment = null, }, new() { @@ -12199,6 +13422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cara", + Comment = null, }, new() { @@ -12209,6 +13433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Como Karim", + Comment = null, }, new() { @@ -12219,6 +13444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Falam Chin", + Comment = null, }, new() { @@ -12229,6 +13455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Changriwa", + Comment = null, }, new() { @@ -12239,6 +13466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagayanen", + Comment = null, }, new() { @@ -12249,6 +13477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiga", + Comment = null, }, new() { @@ -12259,6 +13488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chocangacakha", + Comment = null, }, new() { @@ -12269,6 +13499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamorro", + Comment = null, }, new() { @@ -12279,6 +13510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chibcha", + Comment = null, }, new() { @@ -12289,6 +13521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Catawba", + Comment = null, }, new() { @@ -12299,6 +13532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Oaxaca Chontal", + Comment = null, }, new() { @@ -12309,6 +13543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chechen", + Comment = null, }, new() { @@ -12319,6 +13554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabasco Chontal", + Comment = null, }, new() { @@ -12329,6 +13565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chagatai", + Comment = null, }, new() { @@ -12339,6 +13576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chinook", + Comment = null, }, new() { @@ -12349,6 +13587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ojitlán Chinantec", + Comment = null, }, new() { @@ -12359,6 +13598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuukese", + Comment = null, }, new() { @@ -12369,6 +13609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cahuilla", + Comment = null, }, new() { @@ -12379,6 +13620,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Mari (Russia)", + Comment = null, }, new() { @@ -12389,6 +13631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinook jargon", + Comment = null, }, new() { @@ -12399,6 +13642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Choctaw", + Comment = null, }, new() { @@ -12409,6 +13653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chipewyan", + Comment = null, }, new() { @@ -12419,6 +13664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quiotepec Chinantec", + Comment = null, }, new() { @@ -12429,6 +13675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cherokee", + Comment = null, }, new() { @@ -12439,6 +13686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cholón", + Comment = null, }, new() { @@ -12449,6 +13697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Church Slavic", + Comment = null, }, new() { @@ -12459,6 +13708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuvash", + Comment = null, }, new() { @@ -12469,6 +13719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuwabu", + Comment = null, }, new() { @@ -12479,6 +13730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chantyal", + Comment = null, }, new() { @@ -12489,6 +13741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cheyenne", + Comment = null, }, new() { @@ -12499,6 +13752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ozumacín Chinantec", + Comment = null, }, new() { @@ -12509,6 +13763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cia-Cia", + Comment = null, }, new() { @@ -12519,6 +13774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ci Gbe", + Comment = null, }, new() { @@ -12529,6 +13785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chickasaw", + Comment = null, }, new() { @@ -12539,6 +13796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chimariko", + Comment = null, }, new() { @@ -12549,6 +13807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cineni", + Comment = null, }, new() { @@ -12559,6 +13818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinali", + Comment = null, }, new() { @@ -12569,6 +13829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chitkuli Kinnauri", + Comment = null, }, new() { @@ -12579,6 +13840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cimbrian", + Comment = null, }, new() { @@ -12589,6 +13851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cinta Larga", + Comment = null, }, new() { @@ -12599,6 +13862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiapanec", + Comment = null, }, new() { @@ -12609,6 +13873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiri", + Comment = null, }, new() { @@ -12619,6 +13884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chippewa", + Comment = null, }, new() { @@ -12629,6 +13895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaima", + Comment = null, }, new() { @@ -12639,6 +13906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Cham", + Comment = null, }, new() { @@ -12649,6 +13917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chru", + Comment = null, }, new() { @@ -12659,6 +13928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Upper Chehalis", + Comment = null, }, new() { @@ -12669,6 +13939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamalal", + Comment = null, }, new() { @@ -12679,6 +13950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chokwe", + Comment = null, }, new() { @@ -12689,6 +13961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Cham", + Comment = null, }, new() { @@ -12699,6 +13972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chenapian", + Comment = null, }, new() { @@ -12709,6 +13983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashéninka Pajonal", + Comment = null, }, new() { @@ -12719,6 +13994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cabécar", + Comment = null, }, new() { @@ -12729,6 +14005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shor", + Comment = null, }, new() { @@ -12739,6 +14016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuave", + Comment = null, }, new() { @@ -12749,6 +14027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jinyu Chinese", + Comment = null, }, new() { @@ -12759,6 +14038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Kurdish", + Comment = null, }, new() { @@ -12769,6 +14049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chak", + Comment = null, }, new() { @@ -12779,6 +14060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cibak", + Comment = null, }, new() { @@ -12789,6 +14071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chakavian", + Comment = null, }, new() { @@ -12799,6 +14082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaang Chin", + Comment = null, }, new() { @@ -12809,6 +14093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anufo", + Comment = null, }, new() { @@ -12819,6 +14104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kajakse", + Comment = null, }, new() { @@ -12829,6 +14115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kairak", + Comment = null, }, new() { @@ -12839,6 +14126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tayo", + Comment = null, }, new() { @@ -12849,6 +14137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chukot", + Comment = null, }, new() { @@ -12859,6 +14148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koasati", + Comment = null, }, new() { @@ -12869,6 +14159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kavalan", + Comment = null, }, new() { @@ -12879,6 +14170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caka", + Comment = null, }, new() { @@ -12889,6 +14181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cakfem-Mushere", + Comment = null, }, new() { @@ -12899,6 +14192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cakchiquel-Quiché Mixed Language", + Comment = null, }, new() { @@ -12909,6 +14203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ron", + Comment = null, }, new() { @@ -12919,6 +14214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chilcotin", + Comment = null, }, new() { @@ -12929,6 +14225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaldean Neo-Aramaic", + Comment = null, }, new() { @@ -12939,6 +14236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lealao Chinantec", + Comment = null, }, new() { @@ -12949,6 +14247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chilisso", + Comment = null, }, new() { @@ -12959,6 +14258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chakali", + Comment = null, }, new() { @@ -12969,6 +14269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laitu Chin", + Comment = null, }, new() { @@ -12979,6 +14280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idu-Mishmi", + Comment = null, }, new() { @@ -12989,6 +14291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chala", + Comment = null, }, new() { @@ -12999,6 +14302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Klallam", + Comment = null, }, new() { @@ -13009,6 +14313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lowland Oaxaca Chontal", + Comment = null, }, new() { @@ -13019,6 +14324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Sanskrit", + Comment = null, }, new() { @@ -13029,6 +14335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lautu Chin", + Comment = null, }, new() { @@ -13039,6 +14346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caluyanun", + Comment = null, }, new() { @@ -13049,6 +14357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chulym", + Comment = null, }, new() { @@ -13059,6 +14368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Highland Chatino", + Comment = null, }, new() { @@ -13069,6 +14379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maa", + Comment = null, }, new() { @@ -13079,6 +14390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cerma", + Comment = null, }, new() { @@ -13089,6 +14401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Mongolian", + Comment = null, }, new() { @@ -13099,6 +14412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Chamí", + Comment = null, }, new() { @@ -13109,6 +14423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Campalagian", + Comment = null, }, new() { @@ -13119,6 +14434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Michigamea", + Comment = null, }, new() { @@ -13129,6 +14445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandarin Chinese", + Comment = null, }, new() { @@ -13139,6 +14456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Mnong", + Comment = null, }, new() { @@ -13149,6 +14467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mro-Khimi Chin", + Comment = null, }, new() { @@ -13159,6 +14478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Messapic", + Comment = null, }, new() { @@ -13169,6 +14489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Camtho", + Comment = null, }, new() { @@ -13179,6 +14500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Changthang", + Comment = null, }, new() { @@ -13189,6 +14511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinbon Chin", + Comment = null, }, new() { @@ -13199,6 +14522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Côông", + Comment = null, }, new() { @@ -13209,6 +14533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Qiang", + Comment = null, }, new() { @@ -13219,6 +14544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hakha Chin", + Comment = null, }, new() { @@ -13229,6 +14555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asháninka", + Comment = null, }, new() { @@ -13239,6 +14566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khumi Chin", + Comment = null, }, new() { @@ -13249,6 +14577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lalana Chinantec", + Comment = null, }, new() { @@ -13259,6 +14588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Con", + Comment = null, }, new() { @@ -13269,6 +14599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ping Chinese", + Comment = null, }, new() { @@ -13279,6 +14610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chung", + Comment = null, }, new() { @@ -13289,6 +14621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Montenegrin", + Comment = null, }, new() { @@ -13299,6 +14632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Asmat", + Comment = null, }, new() { @@ -13309,6 +14643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepetotutla Chinantec", + Comment = null, }, new() { @@ -13319,6 +14654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chenoua", + Comment = null, }, new() { @@ -13329,6 +14665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngawn Chin", + Comment = null, }, new() { @@ -13339,6 +14676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Cornish", + Comment = null, }, new() { @@ -13349,6 +14687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cocos Islands Malay", + Comment = null, }, new() { @@ -13359,6 +14698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chicomuceltec", + Comment = null, }, new() { @@ -13369,6 +14709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cocopa", + Comment = null, }, new() { @@ -13379,6 +14720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cocama-Cocamilla", + Comment = null, }, new() { @@ -13389,6 +14731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koreguaje", + Comment = null, }, new() { @@ -13399,6 +14742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Colorado", + Comment = null, }, new() { @@ -13409,6 +14753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chong", + Comment = null, }, new() { @@ -13419,6 +14764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chonyi-Dzihana-Kauma", + Comment = null, }, new() { @@ -13429,6 +14775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cochimi", + Comment = null, }, new() { @@ -13439,6 +14786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Teresa Cora", + Comment = null, }, new() { @@ -13449,6 +14797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Columbia-Wenatchi", + Comment = null, }, new() { @@ -13459,6 +14808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Comanche", + Comment = null, }, new() { @@ -13469,6 +14819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cofán", + Comment = null, }, new() { @@ -13479,6 +14830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Comox", + Comment = null, }, new() { @@ -13489,6 +14841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coptic", + Comment = null, }, new() { @@ -13499,6 +14852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coquille", + Comment = null, }, new() { @@ -13509,6 +14863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cornish", + Comment = null, }, new() { @@ -13519,6 +14874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Corsican", + Comment = null, }, new() { @@ -13529,6 +14885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caquinte", + Comment = null, }, new() { @@ -13539,6 +14896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wamey", + Comment = null, }, new() { @@ -13549,6 +14907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cao Miao", + Comment = null, }, new() { @@ -13559,6 +14918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cowlitz", + Comment = null, }, new() { @@ -13569,6 +14929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanti", + Comment = null, }, new() { @@ -13579,6 +14940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chochotec", + Comment = null, }, new() { @@ -13589,6 +14951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palantla Chinantec", + Comment = null, }, new() { @@ -13599,6 +14962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ucayali-Yurúa Ashéninka", + Comment = null, }, new() { @@ -13609,6 +14973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ajyíninka Apurucayali", + Comment = null, }, new() { @@ -13619,6 +14984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cappadocian Greek", + Comment = null, }, new() { @@ -13629,6 +14995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinese Pidgin English", + Comment = null, }, new() { @@ -13639,6 +15006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cherepon", + Comment = null, }, new() { @@ -13649,6 +15017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpeego", + Comment = null, }, new() { @@ -13659,6 +15028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Capiznon", + Comment = null, }, new() { @@ -13669,6 +15039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pichis Ashéninka", + Comment = null, }, new() { @@ -13679,6 +15050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pu-Xian Chinese", + Comment = null, }, new() { @@ -13689,6 +15061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Ucayali Ashéninka", + Comment = null, }, new() { @@ -13699,6 +15072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuanqiandian Cluster Miao", + Comment = null, }, new() { @@ -13709,6 +15083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chara", + Comment = null, }, new() { @@ -13719,6 +15094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Island Carib", + Comment = null, }, new() { @@ -13729,6 +15105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lonwolwol", + Comment = null, }, new() { @@ -13739,6 +15116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coeur d'Alene", + Comment = null, }, new() { @@ -13749,6 +15127,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Cree", + Comment = null, }, new() { @@ -13759,6 +15138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Caramanta", + Comment = null, }, new() { @@ -13769,6 +15149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Michif", + Comment = null, }, new() { @@ -13779,6 +15160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Crimean Tatar", + Comment = null, }, new() { @@ -13789,6 +15171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sãotomense", + Comment = null, }, new() { @@ -13799,6 +15182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern East Cree", + Comment = null, }, new() { @@ -13809,6 +15193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plains Cree", + Comment = null, }, new() { @@ -13819,6 +15204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern East Cree", + Comment = null, }, new() { @@ -13829,6 +15215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moose Cree", + Comment = null, }, new() { @@ -13839,6 +15226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Nayar Cora", + Comment = null, }, new() { @@ -13849,6 +15237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Crow", + Comment = null, }, new() { @@ -13859,6 +15248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyo'wujwa Chorote", + Comment = null, }, new() { @@ -13869,6 +15259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Carolina Algonquian", + Comment = null, }, new() { @@ -13879,6 +15270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seselwa Creole French", + Comment = null, }, new() { @@ -13889,6 +15281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyojwa'ja Chorote", + Comment = null, }, new() { @@ -13899,6 +15292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaura", + Comment = null, }, new() { @@ -13909,6 +15303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chrau", + Comment = null, }, new() { @@ -13919,6 +15314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carrier", + Comment = null, }, new() { @@ -13929,6 +15325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cori", + Comment = null, }, new() { @@ -13939,6 +15336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cruzeño", + Comment = null, }, new() { @@ -13949,6 +15347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiltepec Chinantec", + Comment = null, }, new() { @@ -13959,6 +15358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kashubian", + Comment = null, }, new() { @@ -13969,6 +15369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Catalan Sign Language", + Comment = null, }, new() { @@ -13979,6 +15380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiangmai Sign Language", + Comment = null, }, new() { @@ -13989,6 +15391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Czech Sign Language", + Comment = null, }, new() { @@ -13999,6 +15402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuba Sign Language", + Comment = null, }, new() { @@ -14009,6 +15413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chilean Sign Language", + Comment = null, }, new() { @@ -14019,6 +15424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asho Chin", + Comment = null, }, new() { @@ -14029,6 +15435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coast Miwok", + Comment = null, }, new() { @@ -14039,6 +15446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songlai Chin", + Comment = null, }, new() { @@ -14049,6 +15457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jola-Kasa", + Comment = null, }, new() { @@ -14059,6 +15468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinese Sign Language", + Comment = null, }, new() { @@ -14069,6 +15479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Sierra Miwok", + Comment = null, }, new() { @@ -14079,6 +15490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Colombian Sign Language", + Comment = null, }, new() { @@ -14089,6 +15501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sochiapam Chinantec", + Comment = null, }, new() { @@ -14099,6 +15512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ping Chinese", + Comment = null, }, new() { @@ -14109,6 +15523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Croatia Sign Language", + Comment = null, }, new() { @@ -14119,6 +15534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Costa Rican Sign Language", + Comment = null, }, new() { @@ -14129,6 +15545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southern Ohlone", + Comment = null, }, new() { @@ -14139,6 +15556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ohlone", + Comment = null, }, new() { @@ -14149,6 +15567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumtu Chin", + Comment = null, }, new() { @@ -14159,6 +15578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swampy Cree", + Comment = null, }, new() { @@ -14169,6 +15589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cambodian Sign Language", + Comment = null, }, new() { @@ -14179,6 +15600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siyin Chin", + Comment = null, }, new() { @@ -14189,6 +15611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coos", + Comment = null, }, new() { @@ -14199,6 +15622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tataltepec Chatino", + Comment = null, }, new() { @@ -14209,6 +15633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chetco", + Comment = null, }, new() { @@ -14219,6 +15644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tedim Chin", + Comment = null, }, new() { @@ -14229,6 +15655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepinapa Chinantec", + Comment = null, }, new() { @@ -14239,6 +15666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chittagonian", + Comment = null, }, new() { @@ -14249,6 +15677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thaiphum Chin", + Comment = null, }, new() { @@ -14259,6 +15688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlacoatzintepec Chinantec", + Comment = null, }, new() { @@ -14269,6 +15699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chitimacha", + Comment = null, }, new() { @@ -14279,6 +15710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chhintange", + Comment = null, }, new() { @@ -14289,6 +15721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Catío", + Comment = null, }, new() { @@ -14299,6 +15732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Highland Chatino", + Comment = null, }, new() { @@ -14309,6 +15743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Catanduanes Bikol", + Comment = null, }, new() { @@ -14319,6 +15754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayanad Chetti", + Comment = null, }, new() { @@ -14329,6 +15765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chol", + Comment = null, }, new() { @@ -14339,6 +15776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moundadan Chetty", + Comment = null, }, new() { @@ -14349,6 +15787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zacatepec Chatino", + Comment = null, }, new() { @@ -14359,6 +15798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cua", + Comment = null, }, new() { @@ -14369,6 +15809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cubeo", + Comment = null, }, new() { @@ -14379,6 +15820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usila Chinantec", + Comment = null, }, new() { @@ -14389,6 +15831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuka", + Comment = null, }, new() { @@ -14399,6 +15842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuiba", + Comment = null, }, new() { @@ -14409,6 +15853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mashco Piro", + Comment = null, }, new() { @@ -14419,6 +15864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Blas Kuna", + Comment = null, }, new() { @@ -14429,6 +15875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Culina", + Comment = null, }, new() { @@ -14439,6 +15886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cumanagoto", + Comment = null, }, new() { @@ -14449,6 +15897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cupeño", + Comment = null, }, new() { @@ -14459,6 +15908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cun", + Comment = null, }, new() { @@ -14469,6 +15919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chhulung", + Comment = null, }, new() { @@ -14479,6 +15930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teutila Cuicatec", + Comment = null, }, new() { @@ -14489,6 +15941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Ya", + Comment = null, }, new() { @@ -14499,6 +15952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuvok", + Comment = null, }, new() { @@ -14509,6 +15963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chukwa", + Comment = null, }, new() { @@ -14519,6 +15974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepeuxila Cuicatec", + Comment = null, }, new() { @@ -14529,6 +15985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuitlatec", + Comment = null, }, new() { @@ -14539,6 +15996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chug", + Comment = null, }, new() { @@ -14549,6 +16007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valle Nacional Chinantec", + Comment = null, }, new() { @@ -14559,6 +16018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabwa", + Comment = null, }, new() { @@ -14569,6 +16029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maindo", + Comment = null, }, new() { @@ -14579,6 +16040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woods Cree", + Comment = null, }, new() { @@ -14589,6 +16051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwere", + Comment = null, }, new() { @@ -14599,6 +16062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chewong", + Comment = null, }, new() { @@ -14609,6 +16073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuwaataay", + Comment = null, }, new() { @@ -14619,6 +16084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cha'ari", + Comment = null, }, new() { @@ -14629,6 +16095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nopala Chatino", + Comment = null, }, new() { @@ -14639,6 +16106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cayubaba", + Comment = null, }, new() { @@ -14649,6 +16117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Welsh", + Comment = null, }, new() { @@ -14659,6 +16128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuyonon", + Comment = null, }, new() { @@ -14669,6 +16139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huizhou Chinese", + Comment = null, }, new() { @@ -14679,6 +16150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Knaanic", + Comment = null, }, new() { @@ -14689,6 +16161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zenzontepec Chatino", + Comment = null, }, new() { @@ -14699,6 +16172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Zhong Chinese", + Comment = null, }, new() { @@ -14709,6 +16183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zotung Chin", + Comment = null, }, new() { @@ -14719,6 +16194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dangaléat", + Comment = null, }, new() { @@ -14729,6 +16205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dambi", + Comment = null, }, new() { @@ -14739,6 +16216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marik", + Comment = null, }, new() { @@ -14749,6 +16227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duupa", + Comment = null, }, new() { @@ -14759,6 +16238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagbani", + Comment = null, }, new() { @@ -14769,6 +16249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwahatike", + Comment = null, }, new() { @@ -14779,6 +16260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Day", + Comment = null, }, new() { @@ -14789,6 +16271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dar Fur Daju", + Comment = null, }, new() { @@ -14799,6 +16282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dakota", + Comment = null, }, new() { @@ -14809,6 +16293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dahalo", + Comment = null, }, new() { @@ -14819,6 +16304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Damakawa", + Comment = null, }, new() { @@ -14829,6 +16315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danish", + Comment = null, }, new() { @@ -14839,6 +16326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daai Chin", + Comment = null, }, new() { @@ -14849,6 +16337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dandami Maria", + Comment = null, }, new() { @@ -14859,6 +16348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dargwa", + Comment = null, }, new() { @@ -14869,6 +16359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daho-Doo", + Comment = null, }, new() { @@ -14879,6 +16370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dar Sila Daju", + Comment = null, }, new() { @@ -14889,6 +16381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taita", + Comment = null, }, new() { @@ -14899,6 +16392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Davawenyo", + Comment = null, }, new() { @@ -14909,6 +16403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dayi", + Comment = null, }, new() { @@ -14919,6 +16414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moi-Wadea", + Comment = null, }, new() { @@ -14929,6 +16425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangime", + Comment = null, }, new() { @@ -14939,6 +16436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deno", + Comment = null, }, new() { @@ -14949,6 +16447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dadiya", + Comment = null, }, new() { @@ -14959,6 +16458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dabe", + Comment = null, }, new() { @@ -14969,6 +16469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Edopi", + Comment = null, }, new() { @@ -14979,6 +16480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogul Dom Dogon", + Comment = null, }, new() { @@ -14989,6 +16491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doka", + Comment = null, }, new() { @@ -14999,6 +16502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ida'an", + Comment = null, }, new() { @@ -15009,6 +16513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyirbal", + Comment = null, }, new() { @@ -15019,6 +16524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duguri", + Comment = null, }, new() { @@ -15029,6 +16535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duriankere", + Comment = null, }, new() { @@ -15039,6 +16546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dulbu", + Comment = null, }, new() { @@ -15049,6 +16557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duwai", + Comment = null, }, new() { @@ -15059,6 +16568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daba", + Comment = null, }, new() { @@ -15069,6 +16579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dabarre", + Comment = null, }, new() { @@ -15079,6 +16590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ben Tey Dogon", + Comment = null, }, new() { @@ -15089,6 +16601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondum Dom Dogon", + Comment = null, }, new() { @@ -15099,6 +16612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungu", + Comment = null, }, new() { @@ -15109,6 +16623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankan Tey Dogon", + Comment = null, }, new() { @@ -15119,6 +16634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibiyaso", + Comment = null, }, new() { @@ -15129,6 +16645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deccan", + Comment = null, }, new() { @@ -15139,6 +16656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Negerhollands", + Comment = null, }, new() { @@ -15149,6 +16667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dadi Dadi", + Comment = null, }, new() { @@ -15159,6 +16678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongotono", + Comment = null, }, new() { @@ -15169,6 +16689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doondo", + Comment = null, }, new() { @@ -15179,6 +16700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fataluku", + Comment = null, }, new() { @@ -15189,6 +16711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Goodenough", + Comment = null, }, new() { @@ -15199,6 +16722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaru", + Comment = null, }, new() { @@ -15209,6 +16733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dendi (Benin)", + Comment = null, }, new() { @@ -15219,6 +16744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dido", + Comment = null, }, new() { @@ -15229,6 +16755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dhudhuroa", + Comment = null, }, new() { @@ -15239,6 +16766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Donno So Dogon", + Comment = null, }, new() { @@ -15249,6 +16777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawera-Daweloor", + Comment = null, }, new() { @@ -15259,6 +16788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagik", + Comment = null, }, new() { @@ -15269,6 +16799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dedua", + Comment = null, }, new() { @@ -15279,6 +16810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dewoin", + Comment = null, }, new() { @@ -15289,6 +16821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dezfuli", + Comment = null, }, new() { @@ -15299,6 +16832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Degema", + Comment = null, }, new() { @@ -15309,6 +16843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dehwari", + Comment = null, }, new() { @@ -15319,6 +16854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Demisa", + Comment = null, }, new() { @@ -15329,6 +16865,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Delaware", + Comment = null, }, new() { @@ -15339,6 +16876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dem", + Comment = null, }, new() { @@ -15349,6 +16887,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Slave (Athapascan)", + Comment = null, }, new() { @@ -15359,6 +16898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pidgin Delaware", + Comment = null, }, new() { @@ -15369,6 +16909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dendi (Central African Republic)", + Comment = null, }, new() { @@ -15379,6 +16920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deori", + Comment = null, }, new() { @@ -15389,6 +16931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Desano", + Comment = null, }, new() { @@ -15399,6 +16942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "German", + Comment = null, }, new() { @@ -15409,6 +16953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domung", + Comment = null, }, new() { @@ -15419,6 +16964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dengese", + Comment = null, }, new() { @@ -15429,6 +16975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Dagaare", + Comment = null, }, new() { @@ -15439,6 +16986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunoge Dogon", + Comment = null, }, new() { @@ -15449,6 +16997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Casiguran Dumagat Agta", + Comment = null, }, new() { @@ -15459,6 +17008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagaari Dioula", + Comment = null, }, new() { @@ -15469,6 +17019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Degenan", + Comment = null, }, new() { @@ -15479,6 +17030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doga", + Comment = null, }, new() { @@ -15489,6 +17041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dghwede", + Comment = null, }, new() { @@ -15499,6 +17052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Dagara", + Comment = null, }, new() { @@ -15509,6 +17063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagba", + Comment = null, }, new() { @@ -15519,6 +17074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andaandi", + Comment = null, }, new() { @@ -15529,6 +17085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dagoman", + Comment = null, }, new() { @@ -15539,6 +17096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogri (individual language)", + Comment = null, }, new() { @@ -15549,6 +17107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlicho", + Comment = null, }, new() { @@ -15559,6 +17118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogoso", + Comment = null, }, new() { @@ -15569,6 +17129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ndra'ngith", + Comment = null, }, new() { @@ -15579,6 +17140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Daungwurrung", + Comment = null, }, new() { @@ -15589,6 +17151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doghoro", + Comment = null, }, new() { @@ -15599,6 +17162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daga", + Comment = null, }, new() { @@ -15609,6 +17173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhundari", + Comment = null, }, new() { @@ -15619,6 +17184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhangu-Djangu", + Comment = null, }, new() { @@ -15629,6 +17195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhimal", + Comment = null, }, new() { @@ -15639,6 +17206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhalandji", + Comment = null, }, new() { @@ -15649,6 +17217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zemba", + Comment = null, }, new() { @@ -15659,6 +17228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhanki", + Comment = null, }, new() { @@ -15669,6 +17239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhodia", + Comment = null, }, new() { @@ -15679,6 +17250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhargari", + Comment = null, }, new() { @@ -15689,6 +17261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhaiso", + Comment = null, }, new() { @@ -15699,6 +17272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dhurga", + Comment = null, }, new() { @@ -15709,6 +17283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dehu", + Comment = null, }, new() { @@ -15719,6 +17294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhanwar (Nepal)", + Comment = null, }, new() { @@ -15729,6 +17305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhungaloo", + Comment = null, }, new() { @@ -15739,6 +17316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dia", + Comment = null, }, new() { @@ -15749,6 +17327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Central Dinka", + Comment = null, }, new() { @@ -15759,6 +17338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakota Dida", + Comment = null, }, new() { @@ -15769,6 +17349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Didinga", + Comment = null, }, new() { @@ -15779,6 +17360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dieri", + Comment = null, }, new() { @@ -15789,6 +17371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Digo", + Comment = null, }, new() { @@ -15799,6 +17382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumiai", + Comment = null, }, new() { @@ -15809,6 +17393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dimbong", + Comment = null, }, new() { @@ -15819,6 +17404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dai", + Comment = null, }, new() { @@ -15829,6 +17415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Dinka", + Comment = null, }, new() { @@ -15839,6 +17426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dilling", + Comment = null, }, new() { @@ -15849,6 +17437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dime", + Comment = null, }, new() { @@ -15859,6 +17448,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Dinka", + Comment = null, }, new() { @@ -15869,6 +17459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibo", + Comment = null, }, new() { @@ -15879,6 +17470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeastern Dinka", + Comment = null, }, new() { @@ -15889,6 +17481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dimli (individual language)", + Comment = null, }, new() { @@ -15899,6 +17492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dirim", + Comment = null, }, new() { @@ -15909,6 +17503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dimasa", + Comment = null, }, new() { @@ -15919,6 +17514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diriku", + Comment = null, }, new() { @@ -15929,6 +17525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhivehi", + Comment = null, }, new() { @@ -15939,6 +17536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Dinka", + Comment = null, }, new() { @@ -15949,6 +17547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dixon Reef", + Comment = null, }, new() { @@ -15959,6 +17558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diuwe", + Comment = null, }, new() { @@ -15969,6 +17569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ding", + Comment = null, }, new() { @@ -15979,6 +17580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djadjawurrung", + Comment = null, }, new() { @@ -15989,6 +17591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djinba", + Comment = null, }, new() { @@ -15999,6 +17602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dar Daju Daju", + Comment = null, }, new() { @@ -16009,6 +17613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djamindjung", + Comment = null, }, new() { @@ -16019,6 +17624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zarma", + Comment = null, }, new() { @@ -16029,6 +17635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djangun", + Comment = null, }, new() { @@ -16039,6 +17646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djinang", + Comment = null, }, new() { @@ -16049,6 +17657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djeebbana", + Comment = null, }, new() { @@ -16059,6 +17668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Maroon Creole", + Comment = null, }, new() { @@ -16069,6 +17679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamsay Dogon", + Comment = null, }, new() { @@ -16079,6 +17690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jawoyn", + Comment = null, }, new() { @@ -16089,6 +17701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jangkang", + Comment = null, }, new() { @@ -16099,6 +17712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djambarrpuyngu", + Comment = null, }, new() { @@ -16109,6 +17723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapriman", + Comment = null, }, new() { @@ -16119,6 +17734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djawi", + Comment = null, }, new() { @@ -16129,6 +17745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dakpakha", + Comment = null, }, new() { @@ -16139,6 +17756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadung", + Comment = null, }, new() { @@ -16149,6 +17767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dakka", + Comment = null, }, new() { @@ -16159,6 +17778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuijau", + Comment = null, }, new() { @@ -16169,6 +17789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Dinka", + Comment = null, }, new() { @@ -16179,6 +17800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazagway", + Comment = null, }, new() { @@ -16189,6 +17811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dolgan", + Comment = null, }, new() { @@ -16199,6 +17822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dahalik", + Comment = null, }, new() { @@ -16209,6 +17833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dalmatian", + Comment = null, }, new() { @@ -16219,6 +17844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darlong", + Comment = null, }, new() { @@ -16229,6 +17855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duma", + Comment = null, }, new() { @@ -16239,6 +17866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mombo Dogon", + Comment = null, }, new() { @@ -16249,6 +17877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gavak", + Comment = null, }, new() { @@ -16259,6 +17888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Madhi Madhi", + Comment = null, }, new() { @@ -16269,6 +17899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dugwor", + Comment = null, }, new() { @@ -16279,6 +17910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Medefaidrin", + Comment = null, }, new() { @@ -16289,6 +17921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Kinabatangan", + Comment = null, }, new() { @@ -16299,6 +17932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domaaki", + Comment = null, }, new() { @@ -16309,6 +17943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dameli", + Comment = null, }, new() { @@ -16319,6 +17954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dama", + Comment = null, }, new() { @@ -16329,6 +17965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemedzung", + Comment = null, }, new() { @@ -16339,6 +17976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Damar", + Comment = null, }, new() { @@ -16349,6 +17987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dampelas", + Comment = null, }, new() { @@ -16359,6 +17998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dubu", + Comment = null, }, new() { @@ -16369,6 +18009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumpas", + Comment = null, }, new() { @@ -16379,6 +18020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mudburra", + Comment = null, }, new() { @@ -16389,6 +18031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dema", + Comment = null, }, new() { @@ -16399,6 +18042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Demta", + Comment = null, }, new() { @@ -16409,6 +18053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Grand Valley Dani", + Comment = null, }, new() { @@ -16419,6 +18064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daonda", + Comment = null, }, new() { @@ -16429,6 +18075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndendeule", + Comment = null, }, new() { @@ -16439,6 +18086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungan", + Comment = null, }, new() { @@ -16449,6 +18097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Grand Valley Dani", + Comment = null, }, new() { @@ -16459,6 +18108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dan", + Comment = null, }, new() { @@ -16469,6 +18119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dengka", + Comment = null, }, new() { @@ -16479,6 +18130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzùùngoo", + Comment = null, }, new() { @@ -16489,6 +18141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndrulo", + Comment = null, }, new() { @@ -16499,6 +18152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danaru", + Comment = null, }, new() { @@ -16509,6 +18163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mid Grand Valley Dani", + Comment = null, }, new() { @@ -16519,6 +18174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danau", + Comment = null, }, new() { @@ -16529,6 +18185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danu", + Comment = null, }, new() { @@ -16539,6 +18196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Dani", + Comment = null, }, new() { @@ -16549,6 +18207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dení", + Comment = null, }, new() { @@ -16559,6 +18218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dom", + Comment = null, }, new() { @@ -16569,6 +18229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dobu", + Comment = null, }, new() { @@ -16579,6 +18240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Dong", + Comment = null, }, new() { @@ -16589,6 +18251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doe", + Comment = null, }, new() { @@ -16599,6 +18262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domu", + Comment = null, }, new() { @@ -16609,6 +18273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dong", + Comment = null, }, new() { @@ -16619,6 +18284,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Dogri (macrolanguage)", + Comment = null, }, new() { @@ -16629,6 +18295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dondo", + Comment = null, }, new() { @@ -16639,6 +18306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doso", + Comment = null, }, new() { @@ -16649,6 +18317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toura (Papua New Guinea)", + Comment = null, }, new() { @@ -16659,6 +18328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongo", + Comment = null, }, new() { @@ -16669,6 +18339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lukpa", + Comment = null, }, new() { @@ -16679,6 +18350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dominican Sign Language", + Comment = null, }, new() { @@ -16689,6 +18361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dori'o", + Comment = null, }, new() { @@ -16699,6 +18372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogosé", + Comment = null, }, new() { @@ -16709,6 +18383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dass", + Comment = null, }, new() { @@ -16719,6 +18394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dombe", + Comment = null, }, new() { @@ -16729,6 +18405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doyayo", + Comment = null, }, new() { @@ -16739,6 +18416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bussa", + Comment = null, }, new() { @@ -16749,6 +18427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dompo", + Comment = null, }, new() { @@ -16759,6 +18438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dorze", + Comment = null, }, new() { @@ -16769,6 +18449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papar", + Comment = null, }, new() { @@ -16779,6 +18460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dair", + Comment = null, }, new() { @@ -16789,6 +18471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minderico", + Comment = null, }, new() { @@ -16799,6 +18482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darmiya", + Comment = null, }, new() { @@ -16809,6 +18493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dolpo", + Comment = null, }, new() { @@ -16819,6 +18504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rungus", + Comment = null, }, new() { @@ -16829,6 +18515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "C'Lela", + Comment = null, }, new() { @@ -16839,6 +18526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paakantyi", + Comment = null, }, new() { @@ -16849,6 +18537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Damar", + Comment = null, }, new() { @@ -16859,6 +18548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daro-Matu Melanau", + Comment = null, }, new() { @@ -16869,6 +18559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dura", + Comment = null, }, new() { @@ -16879,6 +18570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gedeo", + Comment = null, }, new() { @@ -16889,6 +18581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Drents", + Comment = null, }, new() { @@ -16899,6 +18592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rukai", + Comment = null, }, new() { @@ -16909,6 +18603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darai", + Comment = null, }, new() { @@ -16919,6 +18614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Sorbian", + Comment = null, }, new() { @@ -16929,6 +18625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dutch Sign Language", + Comment = null, }, new() { @@ -16939,6 +18636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daasanach", + Comment = null, }, new() { @@ -16949,6 +18647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Disa", + Comment = null, }, new() { @@ -16959,6 +18658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dokshi", + Comment = null, }, new() { @@ -16969,6 +18669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danish Sign Language", + Comment = null, }, new() { @@ -16979,6 +18680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dusner", + Comment = null, }, new() { @@ -16989,6 +18691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Desiya", + Comment = null, }, new() { @@ -16999,6 +18702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tadaksahak", + Comment = null, }, new() { @@ -17009,6 +18713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mardin Sign Language", + Comment = null, }, new() { @@ -17019,6 +18724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daur", + Comment = null, }, new() { @@ -17029,6 +18735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labuk-Kinabatangan Kadazan", + Comment = null, }, new() { @@ -17039,6 +18746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ditidaht", + Comment = null, }, new() { @@ -17049,6 +18757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Adithinngithigh", + Comment = null, }, new() { @@ -17059,6 +18768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ana Tinga Dogon", + Comment = null, }, new() { @@ -17069,6 +18779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tene Kan Dogon", + Comment = null, }, new() { @@ -17079,6 +18790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomo Kan Dogon", + Comment = null, }, new() { @@ -17089,6 +18801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daatsʼíin", + Comment = null, }, new() { @@ -17099,6 +18812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tommo So Dogon", + Comment = null, }, new() { @@ -17109,6 +18823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadazan Dusun", + Comment = null, }, new() { @@ -17119,6 +18834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lotud", + Comment = null, }, new() { @@ -17129,6 +18845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toro So Dogon", + Comment = null, }, new() { @@ -17139,6 +18856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toro Tegu Dogon", + Comment = null, }, new() { @@ -17149,6 +18867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tebul Ure Dogon", + Comment = null, }, new() { @@ -17159,6 +18878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dotyali", + Comment = null, }, new() { @@ -17169,6 +18889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duala", + Comment = null, }, new() { @@ -17179,6 +18900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dubli", + Comment = null, }, new() { @@ -17189,6 +18911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duna", + Comment = null, }, new() { @@ -17199,6 +18922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umiray Dumaget Agta", + Comment = null, }, new() { @@ -17209,6 +18933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumbea", + Comment = null, }, new() { @@ -17219,6 +18944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duruma", + Comment = null, }, new() { @@ -17229,6 +18955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungra Bhil", + Comment = null, }, new() { @@ -17239,6 +18966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumun", + Comment = null, }, new() { @@ -17249,6 +18977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uyajitaya", + Comment = null, }, new() { @@ -17259,6 +18988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alabat Island Agta", + Comment = null, }, new() { @@ -17269,6 +18999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Dutch (ca. 1050-1350)", + Comment = null, }, new() { @@ -17279,6 +19010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dusun Deyah", + Comment = null, }, new() { @@ -17289,6 +19021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dupaninan Agta", + Comment = null, }, new() { @@ -17299,6 +19032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duano", + Comment = null, }, new() { @@ -17309,6 +19043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dusun Malang", + Comment = null, }, new() { @@ -17319,6 +19054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dii", + Comment = null, }, new() { @@ -17329,6 +19065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumi", + Comment = null, }, new() { @@ -17339,6 +19076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Drung", + Comment = null, }, new() { @@ -17349,6 +19087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duvle", + Comment = null, }, new() { @@ -17359,6 +19098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dusun Witu", + Comment = null, }, new() { @@ -17369,6 +19109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duungooma", + Comment = null, }, new() { @@ -17379,6 +19120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dicamay Agta", + Comment = null, }, new() { @@ -17389,6 +19131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Duli-Gey", + Comment = null, }, new() { @@ -17399,6 +19142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duau", + Comment = null, }, new() { @@ -17409,6 +19153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diri", + Comment = null, }, new() { @@ -17419,6 +19164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawik Kui", + Comment = null, }, new() { @@ -17429,6 +19175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawro", + Comment = null, }, new() { @@ -17439,6 +19186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Dutton World Speedwords", + Comment = null, }, new() { @@ -17449,6 +19197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhuwal", + Comment = null, }, new() { @@ -17459,6 +19208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawawa", + Comment = null, }, new() { @@ -17469,6 +19219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhuwaya", + Comment = null, }, new() { @@ -17479,6 +19230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dewas Rai", + Comment = null, }, new() { @@ -17489,6 +19241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyan", + Comment = null, }, new() { @@ -17499,6 +19252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dyaberdyaber", + Comment = null, }, new() { @@ -17509,6 +19263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dyugun", + Comment = null, }, new() { @@ -17519,6 +19274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Villa Viciosa Agta", + Comment = null, }, new() { @@ -17529,6 +19285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djimini Senoufo", + Comment = null, }, new() { @@ -17539,6 +19296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhutanese Sign Language", + Comment = null, }, new() { @@ -17549,6 +19307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanda Dom Dogon", + Comment = null, }, new() { @@ -17559,6 +19318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyangadi", + Comment = null, }, new() { @@ -17569,6 +19329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jola-Fonyi", + Comment = null, }, new() { @@ -17579,6 +19340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyarim", + Comment = null, }, new() { @@ -17589,6 +19351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyula", + Comment = null, }, new() { @@ -17599,6 +19362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djabugay", + Comment = null, }, new() { @@ -17609,6 +19373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunzu", + Comment = null, }, new() { @@ -17619,6 +19384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daza", + Comment = null, }, new() { @@ -17629,6 +19395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djiwarli", + Comment = null, }, new() { @@ -17639,6 +19406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dazaga", + Comment = null, }, new() { @@ -17649,6 +19417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzalakha", + Comment = null, }, new() { @@ -17659,6 +19428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzando", + Comment = null, }, new() { @@ -17669,6 +19439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzongkha", + Comment = null, }, new() { @@ -17679,6 +19450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karenggapa", + Comment = null, }, new() { @@ -17689,6 +19461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beginci", + Comment = null, }, new() { @@ -17699,6 +19472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ebughu", + Comment = null, }, new() { @@ -17709,6 +19483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Bontok", + Comment = null, }, new() { @@ -17719,6 +19494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Ebo", + Comment = null, }, new() { @@ -17729,6 +19505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ebrié", + Comment = null, }, new() { @@ -17739,6 +19516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Embu", + Comment = null, }, new() { @@ -17749,6 +19527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Eteocretan", + Comment = null, }, new() { @@ -17759,6 +19538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ecuadorian Sign Language", + Comment = null, }, new() { @@ -17769,6 +19549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Eteocypriot", + Comment = null, }, new() { @@ -17779,6 +19560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "E", + Comment = null, }, new() { @@ -17789,6 +19571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efai", + Comment = null, }, new() { @@ -17799,6 +19582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efe", + Comment = null, }, new() { @@ -17809,6 +19593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efik", + Comment = null, }, new() { @@ -17819,6 +19604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ega", + Comment = null, }, new() { @@ -17829,6 +19615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emilian", + Comment = null, }, new() { @@ -17839,6 +19626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benamanga", + Comment = null, }, new() { @@ -17849,6 +19637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eggon", + Comment = null, }, new() { @@ -17859,6 +19648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Egyptian (Ancient)", + Comment = null, }, new() { @@ -17869,6 +19659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miyakubo Sign Language", + Comment = null, }, new() { @@ -17879,6 +19670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ehueun", + Comment = null, }, new() { @@ -17889,6 +19681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eipomek", + Comment = null, }, new() { @@ -17899,6 +19692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eitiep", + Comment = null, }, new() { @@ -17909,6 +19703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Askopan", + Comment = null, }, new() { @@ -17919,6 +19714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ejamat", + Comment = null, }, new() { @@ -17929,6 +19725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekajuk", + Comment = null, }, new() { @@ -17939,6 +19736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekit", + Comment = null, }, new() { @@ -17949,6 +19747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekari", + Comment = null, }, new() { @@ -17959,6 +19758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eki", + Comment = null, }, new() { @@ -17969,6 +19769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Estonian", + Comment = null, }, new() { @@ -17979,6 +19780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kol (Bangladesh)", + Comment = null, }, new() { @@ -17989,6 +19791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elip", + Comment = null, }, new() { @@ -17999,6 +19802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koti", + Comment = null, }, new() { @@ -18009,6 +19813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekpeye", + Comment = null, }, new() { @@ -18019,6 +19824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yace", + Comment = null, }, new() { @@ -18029,6 +19835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Kayah", + Comment = null, }, new() { @@ -18039,6 +19846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elepi", + Comment = null, }, new() { @@ -18049,6 +19857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Hugeirat", + Comment = null, }, new() { @@ -18059,6 +19868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nding", + Comment = null, }, new() { @@ -18069,6 +19879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elkei", + Comment = null, }, new() { @@ -18079,6 +19890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Modern Greek (1453-)", + Comment = null, }, new() { @@ -18089,6 +19901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eleme", + Comment = null, }, new() { @@ -18099,6 +19912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Molo", + Comment = null, }, new() { @@ -18109,6 +19923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elu", + Comment = null, }, new() { @@ -18119,6 +19934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Elamite", + Comment = null, }, new() { @@ -18129,6 +19945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emai-Iuleha-Ora", + Comment = null, }, new() { @@ -18139,6 +19956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Embaloh", + Comment = null, }, new() { @@ -18149,6 +19967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emerillon", + Comment = null, }, new() { @@ -18159,6 +19978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Meohang", + Comment = null, }, new() { @@ -18169,6 +19989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mussau-Emira", + Comment = null, }, new() { @@ -18179,6 +20000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Maninkakan", + Comment = null, }, new() { @@ -18189,6 +20011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mamulique", + Comment = null, }, new() { @@ -18199,6 +20022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eman", + Comment = null, }, new() { @@ -18209,6 +20033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Emberá", + Comment = null, }, new() { @@ -18219,6 +20044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Minyag", + Comment = null, }, new() { @@ -18229,6 +20055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacific Gulf Yupik", + Comment = null, }, new() { @@ -18239,6 +20066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Muria", + Comment = null, }, new() { @@ -18249,6 +20077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emplawas", + Comment = null, }, new() { @@ -18259,6 +20088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erromintxela", + Comment = null, }, new() { @@ -18269,6 +20099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Epigraphic Mayan", + Comment = null, }, new() { @@ -18279,6 +20110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbessa", + Comment = null, }, new() { @@ -18289,6 +20121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apali", + Comment = null, }, new() { @@ -18299,6 +20132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Markweeta", + Comment = null, }, new() { @@ -18309,6 +20143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "En", + Comment = null, }, new() { @@ -18319,6 +20154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ende", + Comment = null, }, new() { @@ -18329,6 +20165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Forest Enets", + Comment = null, }, new() { @@ -18339,6 +20176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "English", + Comment = null, }, new() { @@ -18349,6 +20187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tundra Enets", + Comment = null, }, new() { @@ -18359,6 +20198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enlhet", + Comment = null, }, new() { @@ -18369,6 +20209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle English (1100-1500)", + Comment = null, }, new() { @@ -18379,6 +20220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Engenni", + Comment = null, }, new() { @@ -18389,6 +20231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enggano", + Comment = null, }, new() { @@ -18399,6 +20242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enga", + Comment = null, }, new() { @@ -18409,6 +20253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emumu", + Comment = null, }, new() { @@ -18419,6 +20264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enu", + Comment = null, }, new() { @@ -18429,6 +20275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enwan (Edo State)", + Comment = null, }, new() { @@ -18439,6 +20286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enwan (Akwa Ibom State)", + Comment = null, }, new() { @@ -18449,6 +20297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enxet", + Comment = null, }, new() { @@ -18459,6 +20308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beti (Côte d'Ivoire)", + Comment = null, }, new() { @@ -18469,6 +20319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Epie", + Comment = null, }, new() { @@ -18479,6 +20330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Esperanto", + Comment = null, }, new() { @@ -18489,6 +20341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eravallan", + Comment = null, }, new() { @@ -18499,6 +20352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sie", + Comment = null, }, new() { @@ -18509,6 +20363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eruwa", + Comment = null, }, new() { @@ -18519,6 +20374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogea", + Comment = null, }, new() { @@ -18529,6 +20385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Efate", + Comment = null, }, new() { @@ -18539,6 +20396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Horpa", + Comment = null, }, new() { @@ -18549,6 +20407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Erre", + Comment = null, }, new() { @@ -18559,6 +20418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ersu", + Comment = null, }, new() { @@ -18569,6 +20429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eritai", + Comment = null, }, new() { @@ -18579,6 +20440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erokwanas", + Comment = null, }, new() { @@ -18589,6 +20451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ese Ejja", + Comment = null, }, new() { @@ -18599,6 +20462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aheri Gondi", + Comment = null, }, new() { @@ -18609,6 +20473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eshtehardi", + Comment = null, }, new() { @@ -18619,6 +20484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Alaskan Inupiatun", + Comment = null, }, new() { @@ -18629,6 +20495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Alaska Inupiatun", + Comment = null, }, new() { @@ -18639,6 +20506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Egypt Sign Language", + Comment = null, }, new() { @@ -18649,6 +20517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Esuma", + Comment = null, }, new() { @@ -18659,6 +20528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salvadoran Sign Language", + Comment = null, }, new() { @@ -18669,6 +20539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Estonian Sign Language", + Comment = null, }, new() { @@ -18679,6 +20550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Esselen", + Comment = null, }, new() { @@ -18689,6 +20561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Siberian Yupik", + Comment = null, }, new() { @@ -18699,6 +20572,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Estonian", + Comment = null, }, new() { @@ -18709,6 +20583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Yupik", + Comment = null, }, new() { @@ -18719,6 +20594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eskayan", + Comment = null, }, new() { @@ -18729,6 +20605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Etebi", + Comment = null, }, new() { @@ -18739,6 +20616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Etchemin", + Comment = null, }, new() { @@ -18749,6 +20627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ethiopian Sign Language", + Comment = null, }, new() { @@ -18759,6 +20638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eton (Vanuatu)", + Comment = null, }, new() { @@ -18769,6 +20649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eton (Cameroon)", + Comment = null, }, new() { @@ -18779,6 +20660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Edolo", + Comment = null, }, new() { @@ -18789,6 +20671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yekhee", + Comment = null, }, new() { @@ -18799,6 +20682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Etruscan", + Comment = null, }, new() { @@ -18809,6 +20693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ejagham", + Comment = null, }, new() { @@ -18819,6 +20704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eten", + Comment = null, }, new() { @@ -18829,6 +20715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semimi", + Comment = null, }, new() { @@ -18839,6 +20726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eudeve", + Comment = null, }, new() { @@ -18849,6 +20737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basque", + Comment = null, }, new() { @@ -18859,6 +20748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Even", + Comment = null, }, new() { @@ -18869,6 +20759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uvbie", + Comment = null, }, new() { @@ -18879,6 +20770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Evenki", + Comment = null, }, new() { @@ -18889,6 +20781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ewe", + Comment = null, }, new() { @@ -18899,6 +20792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ewondo", + Comment = null, }, new() { @@ -18909,6 +20803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Extremaduran", + Comment = null, }, new() { @@ -18919,6 +20814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eyak", + Comment = null, }, new() { @@ -18929,6 +20825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keiyo", + Comment = null, }, new() { @@ -18939,6 +20836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ezaa", + Comment = null, }, new() { @@ -18949,6 +20847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uzekwe", + Comment = null, }, new() { @@ -18959,6 +20858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fasu", + Comment = null, }, new() { @@ -18969,6 +20869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fa d'Ambu", + Comment = null, }, new() { @@ -18979,6 +20880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagi", + Comment = null, }, new() { @@ -18989,6 +20891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fagani", + Comment = null, }, new() { @@ -18999,6 +20902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finongan", + Comment = null, }, new() { @@ -19009,6 +20913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baissa Fali", + Comment = null, }, new() { @@ -19019,6 +20924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faiwol", + Comment = null, }, new() { @@ -19029,6 +20935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faita", + Comment = null, }, new() { @@ -19039,6 +20946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fang (Cameroon)", + Comment = null, }, new() { @@ -19049,6 +20957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Fali", + Comment = null, }, new() { @@ -19059,6 +20968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fam", + Comment = null, }, new() { @@ -19069,6 +20979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fang (Equatorial Guinea)", + Comment = null, }, new() { @@ -19079,6 +20990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faroese", + Comment = null, }, new() { @@ -19089,6 +21001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paloor", + Comment = null, }, new() { @@ -19099,6 +21012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fataleka", + Comment = null, }, new() { @@ -19109,6 +21023,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Persian", + Comment = null, }, new() { @@ -19119,6 +21034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanti", + Comment = null, }, new() { @@ -19129,6 +21045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fayu", + Comment = null, }, new() { @@ -19139,6 +21056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fala", + Comment = null, }, new() { @@ -19149,6 +21067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Fars", + Comment = null, }, new() { @@ -19159,6 +21078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Fars", + Comment = null, }, new() { @@ -19169,6 +21089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Albay Bikol", + Comment = null, }, new() { @@ -19179,6 +21100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quebec Sign Language", + Comment = null, }, new() { @@ -19189,6 +21111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Feroge", + Comment = null, }, new() { @@ -19199,6 +21122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foia Foia", + Comment = null, }, new() { @@ -19209,6 +21133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maasina Fulfulde", + Comment = null, }, new() { @@ -19219,6 +21144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fongoro", + Comment = null, }, new() { @@ -19229,6 +21155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nobiin", + Comment = null, }, new() { @@ -19239,6 +21166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fyer", + Comment = null, }, new() { @@ -19249,6 +21177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faifi", + Comment = null, }, new() { @@ -19259,6 +21188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fijian", + Comment = null, }, new() { @@ -19269,6 +21199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Filipino", + Comment = null, }, new() { @@ -19279,6 +21210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finnish", + Comment = null, }, new() { @@ -19289,6 +21221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fipa", + Comment = null, }, new() { @@ -19299,6 +21232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Firan", + Comment = null, }, new() { @@ -19309,6 +21243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tornedalen Finnish", + Comment = null, }, new() { @@ -19319,6 +21254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fiwaga", + Comment = null, }, new() { @@ -19329,6 +21265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirya-Konzəl", + Comment = null, }, new() { @@ -19339,6 +21276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kven Finnish", + Comment = null, }, new() { @@ -19349,6 +21287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalispel-Pend d'Oreille", + Comment = null, }, new() { @@ -19359,6 +21298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foau", + Comment = null, }, new() { @@ -19369,6 +21309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fali", + Comment = null, }, new() { @@ -19379,6 +21320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Fali", + Comment = null, }, new() { @@ -19389,6 +21331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Flinders Island", + Comment = null, }, new() { @@ -19399,6 +21342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fuliiru", + Comment = null, }, new() { @@ -19409,6 +21353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Flaaitaal", + Comment = null, }, new() { @@ -19419,6 +21364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fe'fe'", + Comment = null, }, new() { @@ -19429,6 +21375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Far Western Muria", + Comment = null, }, new() { @@ -19439,6 +21386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanbak", + Comment = null, }, new() { @@ -19449,6 +21397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanagalo", + Comment = null, }, new() { @@ -19459,6 +21408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fania", + Comment = null, }, new() { @@ -19469,6 +21419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foodo", + Comment = null, }, new() { @@ -19479,6 +21430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foi", + Comment = null, }, new() { @@ -19489,6 +21441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foma", + Comment = null, }, new() { @@ -19499,6 +21452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fon", + Comment = null, }, new() { @@ -19509,6 +21463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fore", + Comment = null, }, new() { @@ -19519,6 +21474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Siraya", + Comment = null, }, new() { @@ -19529,6 +21485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fernando Po Creole English", + Comment = null, }, new() { @@ -19539,6 +21496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fas", + Comment = null, }, new() { @@ -19549,6 +21507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "French", + Comment = null, }, new() { @@ -19559,6 +21518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajun French", + Comment = null, }, new() { @@ -19569,6 +21529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fordata", + Comment = null, }, new() { @@ -19579,6 +21540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Frankish", + Comment = null, }, new() { @@ -19589,6 +21551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle French (ca. 1400-1600)", + Comment = null, }, new() { @@ -19599,6 +21562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old French (842-ca. 1400)", + Comment = null, }, new() { @@ -19609,6 +21573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arpitan", + Comment = null, }, new() { @@ -19619,6 +21584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Forak", + Comment = null, }, new() { @@ -19629,6 +21595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Frisian", + Comment = null, }, new() { @@ -19639,6 +21606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Frisian", + Comment = null, }, new() { @@ -19649,6 +21617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fortsenal", + Comment = null, }, new() { @@ -19659,6 +21628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Frisian", + Comment = null, }, new() { @@ -19669,6 +21639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finnish Sign Language", + Comment = null, }, new() { @@ -19679,6 +21650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "French Sign Language", + Comment = null, }, new() { @@ -19689,6 +21661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finland-Swedish Sign Language", + Comment = null, }, new() { @@ -19699,6 +21672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adamawa Fulfulde", + Comment = null, }, new() { @@ -19709,6 +21683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pulaar", + Comment = null, }, new() { @@ -19719,6 +21694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Futuna", + Comment = null, }, new() { @@ -19729,6 +21705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borgu Fulfulde", + Comment = null, }, new() { @@ -19739,6 +21716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pular", + Comment = null, }, new() { @@ -19749,6 +21727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Niger Fulfulde", + Comment = null, }, new() { @@ -19759,6 +21738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagirmi Fulfulde", + Comment = null, }, new() { @@ -19769,6 +21749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ko", + Comment = null, }, new() { @@ -19779,6 +21760,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Fulah", + Comment = null, }, new() { @@ -19789,6 +21771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fum", + Comment = null, }, new() { @@ -19799,6 +21782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fulniô", + Comment = null, }, new() { @@ -19809,6 +21793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central-Eastern Niger Fulfulde", + Comment = null, }, new() { @@ -19819,6 +21804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Friulian", + Comment = null, }, new() { @@ -19829,6 +21815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Futuna-Aniwa", + Comment = null, }, new() { @@ -19839,6 +21826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Furu", + Comment = null, }, new() { @@ -19849,6 +21837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigerian Fulfulde", + Comment = null, }, new() { @@ -19859,6 +21848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fuyug", + Comment = null, }, new() { @@ -19869,6 +21859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fur", + Comment = null, }, new() { @@ -19879,6 +21870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fwâi", + Comment = null, }, new() { @@ -19889,6 +21881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fwe", + Comment = null, }, new() { @@ -19899,6 +21892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ga", + Comment = null, }, new() { @@ -19909,6 +21903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gabri", + Comment = null, }, new() { @@ -19919,6 +21914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mixed Great Andamanese", + Comment = null, }, new() { @@ -19929,6 +21925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaddang", + Comment = null, }, new() { @@ -19939,6 +21936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guarequena", + Comment = null, }, new() { @@ -19949,6 +21947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gende", + Comment = null, }, new() { @@ -19959,6 +21958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagauz", + Comment = null, }, new() { @@ -19969,6 +21969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alekano", + Comment = null, }, new() { @@ -19979,6 +21980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borei", + Comment = null, }, new() { @@ -19989,6 +21991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gadsup", + Comment = null, }, new() { @@ -19999,6 +22002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamkonora", + Comment = null, }, new() { @@ -20009,6 +22013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galolen", + Comment = null, }, new() { @@ -20019,6 +22024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kandawo", + Comment = null, }, new() { @@ -20029,6 +22035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gan Chinese", + Comment = null, }, new() { @@ -20039,6 +22046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gants", + Comment = null, }, new() { @@ -20049,6 +22057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gal", + Comment = null, }, new() { @@ -20059,6 +22068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gata'", + Comment = null, }, new() { @@ -20069,6 +22079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galeya", + Comment = null, }, new() { @@ -20079,6 +22090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adiwasi Garasia", + Comment = null, }, new() { @@ -20089,6 +22101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenati", + Comment = null, }, new() { @@ -20099,6 +22112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mudhili Gadaba", + Comment = null, }, new() { @@ -20109,6 +22123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nobonob", + Comment = null, }, new() { @@ -20119,6 +22134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borana-Arsi-Guji Oromo", + Comment = null, }, new() { @@ -20129,6 +22145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gayo", + Comment = null, }, new() { @@ -20139,6 +22156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Central Oromo", + Comment = null, }, new() { @@ -20149,6 +22167,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Gbaya (Central African Republic)", + Comment = null, }, new() { @@ -20159,6 +22178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaytetye", + Comment = null, }, new() { @@ -20169,6 +22189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karajarri", + Comment = null, }, new() { @@ -20179,6 +22200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niksek", + Comment = null, }, new() { @@ -20189,6 +22211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaikundi", + Comment = null, }, new() { @@ -20199,6 +22222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbanziri", + Comment = null, }, new() { @@ -20209,6 +22233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Defi Gbe", + Comment = null, }, new() { @@ -20219,6 +22244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galela", + Comment = null, }, new() { @@ -20229,6 +22255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo Gadaba", + Comment = null, }, new() { @@ -20239,6 +22266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaddi", + Comment = null, }, new() { @@ -20249,6 +22277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamit", + Comment = null, }, new() { @@ -20259,6 +22288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garhwali", + Comment = null, }, new() { @@ -20269,6 +22299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mo'da", + Comment = null, }, new() { @@ -20279,6 +22310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Grebo", + Comment = null, }, new() { @@ -20289,6 +22321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya-Bossangoa", + Comment = null, }, new() { @@ -20299,6 +22332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya-Bozoum", + Comment = null, }, new() { @@ -20309,6 +22343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbagyi", + Comment = null, }, new() { @@ -20319,6 +22354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbesi Gbe", + Comment = null, }, new() { @@ -20329,6 +22365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagadu", + Comment = null, }, new() { @@ -20339,6 +22376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbanu", + Comment = null, }, new() { @@ -20349,6 +22387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gabi-Gabi", + Comment = null, }, new() { @@ -20359,6 +22398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Xwla Gbe", + Comment = null, }, new() { @@ -20369,6 +22409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbari", + Comment = null, }, new() { @@ -20379,6 +22420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zoroastrian Dari", + Comment = null, }, new() { @@ -20389,6 +22431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mali", + Comment = null, }, new() { @@ -20399,6 +22442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ganggalida", + Comment = null, }, new() { @@ -20409,6 +22453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Galice", + Comment = null, }, new() { @@ -20419,6 +22464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guadeloupean Creole French", + Comment = null, }, new() { @@ -20429,6 +22475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Grenadian Creole English", + Comment = null, }, new() { @@ -20439,6 +22486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaina", + Comment = null, }, new() { @@ -20449,6 +22497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guianese Creole French", + Comment = null, }, new() { @@ -20459,6 +22508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Colonia Tovar German", + Comment = null, }, new() { @@ -20469,6 +22519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gade Lohar", + Comment = null, }, new() { @@ -20479,6 +22530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pottangi Ollar Gadaba", + Comment = null, }, new() { @@ -20489,6 +22541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gugu Badhun", + Comment = null, }, new() { @@ -20499,6 +22552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gedaged", + Comment = null, }, new() { @@ -20509,6 +22563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gude", + Comment = null, }, new() { @@ -20519,6 +22574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guduf-Gava", + Comment = null, }, new() { @@ -20529,6 +22585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ga'dang", + Comment = null, }, new() { @@ -20539,6 +22596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gadjerawang", + Comment = null, }, new() { @@ -20549,6 +22607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gundi", + Comment = null, }, new() { @@ -20559,6 +22618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurdjar", + Comment = null, }, new() { @@ -20569,6 +22629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gadang", + Comment = null, }, new() { @@ -20579,6 +22640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dirasha", + Comment = null, }, new() { @@ -20589,6 +22651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laal", + Comment = null, }, new() { @@ -20599,6 +22662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umanakaina", + Comment = null, }, new() { @@ -20609,6 +22673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghodoberi", + Comment = null, }, new() { @@ -20619,6 +22684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mehri", + Comment = null, }, new() { @@ -20629,6 +22695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wipi", + Comment = null, }, new() { @@ -20639,6 +22706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghandruk Sign Language", + Comment = null, }, new() { @@ -20649,6 +22717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kungardutyi", + Comment = null, }, new() { @@ -20659,6 +22728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gudu", + Comment = null, }, new() { @@ -20669,6 +22739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Godwari", + Comment = null, }, new() { @@ -20679,6 +22750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geruma", + Comment = null, }, new() { @@ -20689,6 +22761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kire", + Comment = null, }, new() { @@ -20699,6 +22772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gboloo Grebo", + Comment = null, }, new() { @@ -20709,6 +22783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gade", + Comment = null, }, new() { @@ -20719,6 +22794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gerai", + Comment = null, }, new() { @@ -20729,6 +22805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gengle", + Comment = null, }, new() { @@ -20739,6 +22816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hutterite German", + Comment = null, }, new() { @@ -20749,6 +22827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gebe", + Comment = null, }, new() { @@ -20759,6 +22838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gen", + Comment = null, }, new() { @@ -20769,6 +22849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ywom", + Comment = null, }, new() { @@ -20779,6 +22860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ut-Ma'in", + Comment = null, }, new() { @@ -20789,6 +22871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geme", + Comment = null, }, new() { @@ -20799,6 +22882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geser-Gorom", + Comment = null, }, new() { @@ -20809,6 +22893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eviya", + Comment = null, }, new() { @@ -20819,6 +22904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gera", + Comment = null, }, new() { @@ -20829,6 +22915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garre", + Comment = null, }, new() { @@ -20839,6 +22926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enya", + Comment = null, }, new() { @@ -20849,6 +22937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Geez", + Comment = null, }, new() { @@ -20859,6 +22948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patpatar", + Comment = null, }, new() { @@ -20869,6 +22959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gafat", + Comment = null, }, new() { @@ -20879,6 +22970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gao", + Comment = null, }, new() { @@ -20889,6 +22981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbii", + Comment = null, }, new() { @@ -20899,6 +22992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gugadj", + Comment = null, }, new() { @@ -20909,6 +23003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurr-goni", + Comment = null, }, new() { @@ -20919,6 +23014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurgula", + Comment = null, }, new() { @@ -20929,6 +23025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kungarakany", + Comment = null, }, new() { @@ -20939,6 +23036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganglau", + Comment = null, }, new() { @@ -20949,6 +23047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gitua", + Comment = null, }, new() { @@ -20959,6 +23058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagu", + Comment = null, }, new() { @@ -20969,6 +23069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gogodala", + Comment = null, }, new() { @@ -20979,6 +23080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghadamès", + Comment = null, }, new() { @@ -20989,6 +23091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hiberno-Scottish Gaelic", + Comment = null, }, new() { @@ -20999,6 +23102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ghale", + Comment = null, }, new() { @@ -21009,6 +23113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ghale", + Comment = null, }, new() { @@ -21019,6 +23124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geko Karen", + Comment = null, }, new() { @@ -21029,6 +23135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghulfan", + Comment = null, }, new() { @@ -21039,6 +23146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghanongga", + Comment = null, }, new() { @@ -21049,6 +23157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghomara", + Comment = null, }, new() { @@ -21059,6 +23168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghera", + Comment = null, }, new() { @@ -21069,6 +23179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guhu-Samane", + Comment = null, }, new() { @@ -21079,6 +23190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuke", + Comment = null, }, new() { @@ -21089,6 +23201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kija", + Comment = null, }, new() { @@ -21099,6 +23212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gibanawa", + Comment = null, }, new() { @@ -21109,6 +23223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gail", + Comment = null, }, new() { @@ -21119,6 +23234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gidar", + Comment = null, }, new() { @@ -21129,6 +23245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaɓogbo", + Comment = null, }, new() { @@ -21139,6 +23256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goaria", + Comment = null, }, new() { @@ -21149,6 +23267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Githabul", + Comment = null, }, new() { @@ -21159,6 +23278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Girirra", + Comment = null, }, new() { @@ -21169,6 +23289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilbertese", + Comment = null, }, new() { @@ -21179,6 +23300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimi (Eastern Highlands)", + Comment = null, }, new() { @@ -21189,6 +23311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hinukh", + Comment = null, }, new() { @@ -21199,6 +23322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimi (West New Britain)", + Comment = null, }, new() { @@ -21209,6 +23333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Green Gelao", + Comment = null, }, new() { @@ -21219,6 +23344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Red Gelao", + Comment = null, }, new() { @@ -21229,6 +23355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Giziga", + Comment = null, }, new() { @@ -21239,6 +23366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gitxsan", + Comment = null, }, new() { @@ -21249,6 +23377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mulao", + Comment = null, }, new() { @@ -21259,6 +23388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "White Gelao", + Comment = null, }, new() { @@ -21269,6 +23399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilima", + Comment = null, }, new() { @@ -21279,6 +23410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giyug", + Comment = null, }, new() { @@ -21289,6 +23421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Giziga", + Comment = null, }, new() { @@ -21299,6 +23432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachi Koli", + Comment = null, }, new() { @@ -21309,6 +23443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gunditjmara", + Comment = null, }, new() { @@ -21319,6 +23454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gonja", + Comment = null, }, new() { @@ -21329,6 +23465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurindji Kriol", + Comment = null, }, new() { @@ -21339,6 +23476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gujari", + Comment = null, }, new() { @@ -21349,6 +23487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guya", + Comment = null, }, new() { @@ -21359,6 +23498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magɨ (Madang Province)", + Comment = null, }, new() { @@ -21369,6 +23509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndai", + Comment = null, }, new() { @@ -21379,6 +23520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gokana", + Comment = null, }, new() { @@ -21389,6 +23531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kok-Nar", + Comment = null, }, new() { @@ -21399,6 +23542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guinea Kpelle", + Comment = null, }, new() { @@ -21409,6 +23553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "ǂUngkue", + Comment = null, }, new() { @@ -21419,6 +23564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Scottish Gaelic", + Comment = null, }, new() { @@ -21429,6 +23575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belning", + Comment = null, }, new() { @@ -21439,6 +23586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bon Gula", + Comment = null, }, new() { @@ -21449,6 +23597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanai", + Comment = null, }, new() { @@ -21459,6 +23608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irish", + Comment = null, }, new() { @@ -21469,6 +23619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galician", + Comment = null, }, new() { @@ -21479,6 +23630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Pashai", + Comment = null, }, new() { @@ -21489,6 +23641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula Iro", + Comment = null, }, new() { @@ -21499,6 +23652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilaki", + Comment = null, }, new() { @@ -21509,6 +23663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garlali", + Comment = null, }, new() { @@ -21519,6 +23674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galambu", + Comment = null, }, new() { @@ -21529,6 +23685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Glaro-Twabo", + Comment = null, }, new() { @@ -21539,6 +23696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula (Chad)", + Comment = null, }, new() { @@ -21549,6 +23707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manx", + Comment = null, }, new() { @@ -21559,6 +23718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Glavda", + Comment = null, }, new() { @@ -21569,6 +23729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gule", + Comment = null, }, new() { @@ -21579,6 +23740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gambera", + Comment = null, }, new() { @@ -21589,6 +23751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula'alaa", + Comment = null, }, new() { @@ -21599,6 +23762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mághdì", + Comment = null, }, new() { @@ -21609,6 +23773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magɨyi", + Comment = null, }, new() { @@ -21619,6 +23784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle High German (ca. 1050-1500)", + Comment = null, }, new() { @@ -21629,6 +23795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Low German", + Comment = null, }, new() { @@ -21639,6 +23806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya-Mbodomo", + Comment = null, }, new() { @@ -21649,6 +23817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimnime", + Comment = null, }, new() { @@ -21659,6 +23828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mirning", + Comment = null, }, new() { @@ -21669,6 +23839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumalu", + Comment = null, }, new() { @@ -21679,6 +23850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamo", + Comment = null, }, new() { @@ -21689,6 +23861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magoma", + Comment = null, }, new() { @@ -21699,6 +23872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Mycenaean Greek", + Comment = null, }, new() { @@ -21709,6 +23883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mgbolizhia", + Comment = null, }, new() { @@ -21719,6 +23894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaansa", + Comment = null, }, new() { @@ -21729,6 +23905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gangte", + Comment = null, }, new() { @@ -21739,6 +23916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guanche", + Comment = null, }, new() { @@ -21749,6 +23927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zulgo-Gemzek", + Comment = null, }, new() { @@ -21759,6 +23938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganang", + Comment = null, }, new() { @@ -21769,6 +23949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngangam", + Comment = null, }, new() { @@ -21779,6 +23960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lere", + Comment = null, }, new() { @@ -21789,6 +23971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gooniyandi", + Comment = null, }, new() { @@ -21799,6 +23982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngen", + Comment = null, }, new() { @@ -21809,6 +23993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǁGana", + Comment = null, }, new() { @@ -21819,6 +24004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gangulu", + Comment = null, }, new() { @@ -21829,6 +24015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ginuman", + Comment = null, }, new() { @@ -21839,6 +24026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumatj", + Comment = null, }, new() { @@ -21849,6 +24037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Gondi", + Comment = null, }, new() { @@ -21859,6 +24048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gana", + Comment = null, }, new() { @@ -21869,6 +24059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gureng Gureng", + Comment = null, }, new() { @@ -21879,6 +24070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guntai", + Comment = null, }, new() { @@ -21889,6 +24081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gnau", + Comment = null, }, new() { @@ -21899,6 +24092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Bolivian Guaraní", + Comment = null, }, new() { @@ -21909,6 +24103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganzi", + Comment = null, }, new() { @@ -21919,6 +24114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guro", + Comment = null, }, new() { @@ -21929,6 +24125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Playero", + Comment = null, }, new() { @@ -21939,6 +24136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorakor", + Comment = null, }, new() { @@ -21949,6 +24147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Godié", + Comment = null, }, new() { @@ -21959,6 +24158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gongduk", + Comment = null, }, new() { @@ -21969,6 +24169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gofa", + Comment = null, }, new() { @@ -21979,6 +24180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gogo", + Comment = null, }, new() { @@ -21989,6 +24191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old High German (ca. 750-1050)", + Comment = null, }, new() { @@ -21999,6 +24202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gobasi", + Comment = null, }, new() { @@ -22009,6 +24213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gowlan", + Comment = null, }, new() { @@ -22019,6 +24224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gowli", + Comment = null, }, new() { @@ -22029,6 +24235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gola", + Comment = null, }, new() { @@ -22039,6 +24246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goan Konkani", + Comment = null, }, new() { @@ -22049,6 +24257,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Gondi", + Comment = null, }, new() { @@ -22059,6 +24268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gone Dau", + Comment = null, }, new() { @@ -22069,6 +24279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yeretuar", + Comment = null, }, new() { @@ -22079,6 +24290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorap", + Comment = null, }, new() { @@ -22089,6 +24301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorontalo", + Comment = null, }, new() { @@ -22099,6 +24312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gronings", + Comment = null, }, new() { @@ -22109,6 +24323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Gothic", + Comment = null, }, new() { @@ -22119,6 +24334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gavar", + Comment = null, }, new() { @@ -22129,6 +24345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goo", + Comment = null, }, new() { @@ -22139,6 +24356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorowa", + Comment = null, }, new() { @@ -22149,6 +24367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gobu", + Comment = null, }, new() { @@ -22159,6 +24378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goundo", + Comment = null, }, new() { @@ -22169,6 +24389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gozarkhani", + Comment = null, }, new() { @@ -22179,6 +24400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gupa-Abawa", + Comment = null, }, new() { @@ -22189,6 +24411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghanaian Pidgin English", + Comment = null, }, new() { @@ -22199,6 +24422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taiap", + Comment = null, }, new() { @@ -22209,6 +24433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ga'anda", + Comment = null, }, new() { @@ -22219,6 +24444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guiqiong", + Comment = null, }, new() { @@ -22229,6 +24455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guana (Brazil)", + Comment = null, }, new() { @@ -22239,6 +24466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gor", + Comment = null, }, new() { @@ -22249,6 +24477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qau", + Comment = null, }, new() { @@ -22259,6 +24488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajput Garasia", + Comment = null, }, new() { @@ -22269,6 +24499,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Grebo", + Comment = null, }, new() { @@ -22279,6 +24510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Greek (to 1453)", + Comment = null, }, new() { @@ -22289,6 +24521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guruntum-Mbaaru", + Comment = null, }, new() { @@ -22299,6 +24532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madi", + Comment = null, }, new() { @@ -22309,6 +24543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbiri-Niragu", + Comment = null, }, new() { @@ -22319,6 +24554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghari", + Comment = null, }, new() { @@ -22329,6 +24565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Grebo", + Comment = null, }, new() { @@ -22339,6 +24576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota Marudu Talantang", + Comment = null, }, new() { @@ -22349,6 +24587,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Guarani", + Comment = null, }, new() { @@ -22359,6 +24598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Groma", + Comment = null, }, new() { @@ -22369,6 +24609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorovu", + Comment = null, }, new() { @@ -22379,6 +24620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taznatit", + Comment = null, }, new() { @@ -22389,6 +24631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gresi", + Comment = null, }, new() { @@ -22399,6 +24642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garo", + Comment = null, }, new() { @@ -22409,6 +24653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kistane", + Comment = null, }, new() { @@ -22419,6 +24664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Grebo", + Comment = null, }, new() { @@ -22429,6 +24675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gweda", + Comment = null, }, new() { @@ -22439,6 +24686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guriaso", + Comment = null, }, new() { @@ -22449,6 +24697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barclayville Grebo", + Comment = null, }, new() { @@ -22459,6 +24708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guramalum", + Comment = null, }, new() { @@ -22469,6 +24719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghanaian Sign Language", + Comment = null, }, new() { @@ -22479,6 +24730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "German Sign Language", + Comment = null, }, new() { @@ -22489,6 +24741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gusilay", + Comment = null, }, new() { @@ -22499,6 +24752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guatemalan Sign Language", + Comment = null, }, new() { @@ -22509,6 +24763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nema", + Comment = null, }, new() { @@ -22519,6 +24774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Gbaya", + Comment = null, }, new() { @@ -22529,6 +24785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wasembo", + Comment = null, }, new() { @@ -22539,6 +24796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Greek Sign Language", + Comment = null, }, new() { @@ -22549,6 +24807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss German", + Comment = null, }, new() { @@ -22559,6 +24818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guató", + Comment = null, }, new() { @@ -22569,6 +24829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aghu-Tharnggala", + Comment = null, }, new() { @@ -22579,6 +24840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shiki", + Comment = null, }, new() { @@ -22589,6 +24851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guajajára", + Comment = null, }, new() { @@ -22599,6 +24862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayuu", + Comment = null, }, new() { @@ -22609,6 +24873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yocoboué Dida", + Comment = null, }, new() { @@ -22619,6 +24884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurindji", + Comment = null, }, new() { @@ -22629,6 +24895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gupapuyngu", + Comment = null, }, new() { @@ -22639,6 +24906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paraguayan Guaraní", + Comment = null, }, new() { @@ -22649,6 +24917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guahibo", + Comment = null, }, new() { @@ -22659,6 +24928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Bolivian Guaraní", + Comment = null, }, new() { @@ -22669,6 +24939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gujarati", + Comment = null, }, new() { @@ -22679,6 +24950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumuz", + Comment = null, }, new() { @@ -22689,6 +24961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sea Island Creole English", + Comment = null, }, new() { @@ -22699,6 +24972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guambiano", + Comment = null, }, new() { @@ -22709,6 +24983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbyá Guaraní", + Comment = null, }, new() { @@ -22719,6 +24994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guayabero", + Comment = null, }, new() { @@ -22729,6 +25005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gunwinggu", + Comment = null, }, new() { @@ -22739,6 +25016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aché", + Comment = null, }, new() { @@ -22749,6 +25027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Farefare", + Comment = null, }, new() { @@ -22759,6 +25038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guinean Sign Language", + Comment = null, }, new() { @@ -22769,6 +25049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maléku Jaíka", + Comment = null, }, new() { @@ -22779,6 +25060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanomamö", + Comment = null, }, new() { @@ -22789,6 +25071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gun", + Comment = null, }, new() { @@ -22799,6 +25082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gourmanchéma", + Comment = null, }, new() { @@ -22809,6 +25093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gusii", + Comment = null, }, new() { @@ -22819,6 +25104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guana (Paraguay)", + Comment = null, }, new() { @@ -22829,6 +25115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guanano", + Comment = null, }, new() { @@ -22839,6 +25126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duwet", + Comment = null, }, new() { @@ -22849,6 +25137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Golin", + Comment = null, }, new() { @@ -22859,6 +25148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guajá", + Comment = null, }, new() { @@ -22869,6 +25159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gulay", + Comment = null, }, new() { @@ -22879,6 +25170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurmana", + Comment = null, }, new() { @@ -22889,6 +25181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuku-Yalanji", + Comment = null, }, new() { @@ -22899,6 +25192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gavião Do Jiparaná", + Comment = null, }, new() { @@ -22909,6 +25203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pará Gavião", + Comment = null, }, new() { @@ -22919,6 +25214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurung", + Comment = null, }, new() { @@ -22929,6 +25225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumawana", + Comment = null, }, new() { @@ -22939,6 +25236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guyani", + Comment = null, }, new() { @@ -22949,6 +25247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbato", + Comment = null, }, new() { @@ -22959,6 +25258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwa", + Comment = null, }, new() { @@ -22969,6 +25269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gawri", + Comment = null, }, new() { @@ -22979,6 +25280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gawwada", + Comment = null, }, new() { @@ -22989,6 +25291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gweno", + Comment = null, }, new() { @@ -22999,6 +25302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gowro", + Comment = null, }, new() { @@ -23009,6 +25313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moo", + Comment = null, }, new() { @@ -23019,6 +25324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwichʼin", + Comment = null, }, new() { @@ -23029,6 +25335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǀGwi", + Comment = null, }, new() { @@ -23039,6 +25346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Awngthim", + Comment = null, }, new() { @@ -23049,6 +25357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwandara", + Comment = null, }, new() { @@ -23059,6 +25368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwere", + Comment = null, }, new() { @@ -23069,6 +25379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gawar-Bati", + Comment = null, }, new() { @@ -23079,6 +25390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guwamu", + Comment = null, }, new() { @@ -23089,6 +25401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwini", + Comment = null, }, new() { @@ -23099,6 +25412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gua", + Comment = null, }, new() { @@ -23109,6 +25423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wè Southern", + Comment = null, }, new() { @@ -23119,6 +25434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Gbaya", + Comment = null, }, new() { @@ -23129,6 +25445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garus", + Comment = null, }, new() { @@ -23139,6 +25456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayardild", + Comment = null, }, new() { @@ -23149,6 +25467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gyem", + Comment = null, }, new() { @@ -23159,6 +25478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gungabula", + Comment = null, }, new() { @@ -23169,6 +25489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbayi", + Comment = null, }, new() { @@ -23179,6 +25500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gyele", + Comment = null, }, new() { @@ -23189,6 +25511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gayil", + Comment = null, }, new() { @@ -23199,6 +25522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngäbere", + Comment = null, }, new() { @@ -23209,6 +25533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guyanese Creole English", + Comment = null, }, new() { @@ -23219,6 +25544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gyalsumdo", + Comment = null, }, new() { @@ -23229,6 +25555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guarayu", + Comment = null, }, new() { @@ -23239,6 +25566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gunya", + Comment = null, }, new() { @@ -23249,6 +25577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geji", + Comment = null, }, new() { @@ -23259,6 +25588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganza", + Comment = null, }, new() { @@ -23269,6 +25599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gazi", + Comment = null, }, new() { @@ -23279,6 +25610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gane", + Comment = null, }, new() { @@ -23289,6 +25621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hän", + Comment = null, }, new() { @@ -23299,6 +25632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanoi Sign Language", + Comment = null, }, new() { @@ -23309,6 +25643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurani", + Comment = null, }, new() { @@ -23319,6 +25654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hatam", + Comment = null, }, new() { @@ -23329,6 +25665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Oromo", + Comment = null, }, new() { @@ -23339,6 +25676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haiphong Sign Language", + Comment = null, }, new() { @@ -23349,6 +25687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanga", + Comment = null, }, new() { @@ -23359,6 +25698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hahon", + Comment = null, }, new() { @@ -23369,6 +25709,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Haida", + Comment = null, }, new() { @@ -23379,6 +25720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hajong", + Comment = null, }, new() { @@ -23389,6 +25731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hakka Chinese", + Comment = null, }, new() { @@ -23399,6 +25742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halang", + Comment = null, }, new() { @@ -23409,6 +25753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hewa", + Comment = null, }, new() { @@ -23419,6 +25764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hangaza", + Comment = null, }, new() { @@ -23429,6 +25775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hakö", + Comment = null, }, new() { @@ -23439,6 +25786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hupla", + Comment = null, }, new() { @@ -23449,6 +25797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ha", + Comment = null, }, new() { @@ -23459,6 +25808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harari", + Comment = null, }, new() { @@ -23469,6 +25819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haisla", + Comment = null, }, new() { @@ -23479,6 +25830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haitian", + Comment = null, }, new() { @@ -23489,6 +25841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hausa", + Comment = null, }, new() { @@ -23499,6 +25852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Havu", + Comment = null, }, new() { @@ -23509,6 +25863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hawaiian", + Comment = null, }, new() { @@ -23519,6 +25874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Haida", + Comment = null, }, new() { @@ -23529,6 +25885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haya", + Comment = null, }, new() { @@ -23539,6 +25896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hazaragi", + Comment = null, }, new() { @@ -23549,6 +25907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamba", + Comment = null, }, new() { @@ -23559,6 +25918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huba", + Comment = null, }, new() { @@ -23569,6 +25929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Heiban", + Comment = null, }, new() { @@ -23579,6 +25940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Hebrew", + Comment = null, }, new() { @@ -23589,6 +25951,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Serbo-Croatian", + Comment = "Code element for 639-1 has been deprecated", }, new() { @@ -23599,6 +25962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Habu", + Comment = null, }, new() { @@ -23609,6 +25973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andaman Creole Hindi", + Comment = null, }, new() { @@ -23619,6 +25984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huichol", + Comment = null, }, new() { @@ -23629,6 +25995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Haida", + Comment = null, }, new() { @@ -23639,6 +26006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Honduras Sign Language", + Comment = null, }, new() { @@ -23649,6 +26017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadiyya", + Comment = null, }, new() { @@ -23659,6 +26028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Qiandong Miao", + Comment = null, }, new() { @@ -23669,6 +26039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hebrew", + Comment = null, }, new() { @@ -23679,6 +26050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Herdé", + Comment = null, }, new() { @@ -23689,6 +26061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Helong", + Comment = null, }, new() { @@ -23699,6 +26072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hehe", + Comment = null, }, new() { @@ -23709,6 +26083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Heiltsuk", + Comment = null, }, new() { @@ -23719,6 +26094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hemba", + Comment = null, }, new() { @@ -23729,6 +26105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Herero", + Comment = null, }, new() { @@ -23739,6 +26116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haiǁom", + Comment = null, }, new() { @@ -23749,6 +26127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haigwai", + Comment = null, }, new() { @@ -23759,6 +26138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hoia Hoia", + Comment = null, }, new() { @@ -23769,6 +26149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerak", + Comment = null, }, new() { @@ -23779,6 +26160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hoyahoya", + Comment = null, }, new() { @@ -23789,6 +26171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamang", + Comment = null, }, new() { @@ -23799,6 +26182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hibito", + Comment = null, }, new() { @@ -23809,6 +26193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hidatsa", + Comment = null, }, new() { @@ -23819,6 +26204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fiji Hindi", + Comment = null, }, new() { @@ -23829,6 +26215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamwe", + Comment = null, }, new() { @@ -23839,6 +26226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pamosu", + Comment = null, }, new() { @@ -23849,6 +26237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hinduri", + Comment = null, }, new() { @@ -23859,6 +26248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hijuk", + Comment = null, }, new() { @@ -23869,6 +26259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seit-Kaitetu", + Comment = null, }, new() { @@ -23879,6 +26270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hiligaynon", + Comment = null, }, new() { @@ -23889,6 +26281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hindi", + Comment = null, }, new() { @@ -23899,6 +26292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsoa", + Comment = null, }, new() { @@ -23909,6 +26303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Himarimã", + Comment = null, }, new() { @@ -23919,6 +26314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hittite", + Comment = null, }, new() { @@ -23929,6 +26325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hiw", + Comment = null, }, new() { @@ -23939,6 +26336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hixkaryána", + Comment = null, }, new() { @@ -23949,6 +26347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haji", + Comment = null, }, new() { @@ -23959,6 +26358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kahe", + Comment = null, }, new() { @@ -23969,6 +26369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunde", + Comment = null, }, new() { @@ -23979,6 +26380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khah", + Comment = null, }, new() { @@ -23989,6 +26391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunjara-Kaina Ke", + Comment = null, }, new() { @@ -23999,6 +26402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mel-Khaonh", + Comment = null, }, new() { @@ -24009,6 +26413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hong Kong Sign Language", + Comment = null, }, new() { @@ -24019,6 +26424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halia", + Comment = null, }, new() { @@ -24029,6 +26435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halbi", + Comment = null, }, new() { @@ -24039,6 +26446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halang Doan", + Comment = null, }, new() { @@ -24049,6 +26457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hlersu", + Comment = null, }, new() { @@ -24059,6 +26468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matu Chin", + Comment = null, }, new() { @@ -24069,6 +26479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hieroglyphic Luwian", + Comment = null, }, new() { @@ -24079,6 +26490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Mashan Hmong", + Comment = null, }, new() { @@ -24089,6 +26501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Humburi Senni Songhay", + Comment = null, }, new() { @@ -24099,6 +26512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Huishui Hmong", + Comment = null, }, new() { @@ -24109,6 +26523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Large Flowery Miao", + Comment = null, }, new() { @@ -24119,6 +26534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Huishui Hmong", + Comment = null, }, new() { @@ -24129,6 +26545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Don", + Comment = null, }, new() { @@ -24139,6 +26556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Guiyang Hmong", + Comment = null, }, new() { @@ -24149,6 +26567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Huishui Hmong", + Comment = null, }, new() { @@ -24159,6 +26578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Huishui Hmong", + Comment = null, }, new() { @@ -24169,6 +26589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ge", + Comment = null, }, new() { @@ -24179,6 +26600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Maek", + Comment = null, }, new() { @@ -24189,6 +26611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luopohe Hmong", + Comment = null, }, new() { @@ -24199,6 +26622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Mashan Hmong", + Comment = null, }, new() { @@ -24209,6 +26633,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Hmong", + Comment = null, }, new() { @@ -24219,6 +26644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hiri Motu", + Comment = null, }, new() { @@ -24229,6 +26655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Mashan Hmong", + Comment = null, }, new() { @@ -24239,6 +26666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Qiandong Miao", + Comment = null, }, new() { @@ -24249,6 +26677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmar", + Comment = null, }, new() { @@ -24259,6 +26688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Qiandong Miao", + Comment = null, }, new() { @@ -24269,6 +26699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamtai", + Comment = null, }, new() { @@ -24279,6 +26710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamap", + Comment = null, }, new() { @@ -24289,6 +26721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Dô", + Comment = null, }, new() { @@ -24299,6 +26732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Mashan Hmong", + Comment = null, }, new() { @@ -24309,6 +26743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Guiyang Hmong", + Comment = null, }, new() { @@ -24319,6 +26754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Shua", + Comment = null, }, new() { @@ -24329,6 +26765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mina (Cameroon)", + Comment = null, }, new() { @@ -24339,6 +26776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Hindko", + Comment = null, }, new() { @@ -24349,6 +26787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chhattisgarhi", + Comment = null, }, new() { @@ -24359,6 +26798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungu", + Comment = null, }, new() { @@ -24369,6 +26809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǁAni", + Comment = null, }, new() { @@ -24379,6 +26820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hani", + Comment = null, }, new() { @@ -24389,6 +26831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Njua", + Comment = null, }, new() { @@ -24399,6 +26842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hainanese", + Comment = null, }, new() { @@ -24409,6 +26853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanunoo", + Comment = null, }, new() { @@ -24419,6 +26864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Hindko", + Comment = null, }, new() { @@ -24429,6 +26875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caribbean Hindustani", + Comment = null, }, new() { @@ -24439,6 +26886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hung", + Comment = null, }, new() { @@ -24449,6 +26897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hoava", + Comment = null, }, new() { @@ -24459,6 +26908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mari (Madang Province)", + Comment = null, }, new() { @@ -24469,6 +26919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ho", + Comment = null, }, new() { @@ -24479,6 +26930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Holma", + Comment = null, }, new() { @@ -24489,6 +26941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Horom", + Comment = null, }, new() { @@ -24499,6 +26952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hobyót", + Comment = null, }, new() { @@ -24509,6 +26963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holikachuk", + Comment = null, }, new() { @@ -24519,6 +26974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadothi", + Comment = null, }, new() { @@ -24529,6 +26985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holu", + Comment = null, }, new() { @@ -24539,6 +26996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Homa", + Comment = null, }, new() { @@ -24549,6 +27007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holoholo", + Comment = null, }, new() { @@ -24559,6 +27018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hopi", + Comment = null, }, new() { @@ -24569,6 +27029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Horo", + Comment = null, }, new() { @@ -24579,6 +27040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ho Chi Minh City Sign Language", + Comment = null, }, new() { @@ -24589,6 +27051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hote", + Comment = null, }, new() { @@ -24599,6 +27062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hovongan", + Comment = null, }, new() { @@ -24609,6 +27073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Honi", + Comment = null, }, new() { @@ -24619,6 +27084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holiya", + Comment = null, }, new() { @@ -24629,6 +27095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hozo", + Comment = null, }, new() { @@ -24639,6 +27106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hpon", + Comment = null, }, new() { @@ -24649,6 +27117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hawai'i Sign Language (HSL)", + Comment = null, }, new() { @@ -24659,6 +27128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hrangkhol", + Comment = null, }, new() { @@ -24669,6 +27139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niwer Mil", + Comment = null, }, new() { @@ -24679,6 +27150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hre", + Comment = null, }, new() { @@ -24689,6 +27161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haruku", + Comment = null, }, new() { @@ -24699,6 +27172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Horned Miao", + Comment = null, }, new() { @@ -24709,6 +27183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haroi", + Comment = null, }, new() { @@ -24719,6 +27194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nhirrpi", + Comment = null, }, new() { @@ -24729,6 +27205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hértevin", + Comment = null, }, new() { @@ -24739,6 +27216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hruso", + Comment = null, }, new() { @@ -24749,6 +27227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Croatian", + Comment = null, }, new() { @@ -24759,6 +27238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warwar Feni", + Comment = null, }, new() { @@ -24769,6 +27249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunsrik", + Comment = null, }, new() { @@ -24779,6 +27260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harzani", + Comment = null, }, new() { @@ -24789,6 +27271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Sorbian", + Comment = null, }, new() { @@ -24799,6 +27282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungarian Sign Language", + Comment = null, }, new() { @@ -24809,6 +27293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hausa Sign Language", + Comment = null, }, new() { @@ -24819,6 +27304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xiang Chinese", + Comment = null, }, new() { @@ -24829,6 +27315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harsusi", + Comment = null, }, new() { @@ -24839,6 +27326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hoti", + Comment = null, }, new() { @@ -24849,6 +27337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minica Huitoto", + Comment = null, }, new() { @@ -24859,6 +27348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadza", + Comment = null, }, new() { @@ -24869,6 +27359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hitu", + Comment = null, }, new() { @@ -24879,6 +27370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Hittite", + Comment = null, }, new() { @@ -24889,6 +27381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huambisa", + Comment = null, }, new() { @@ -24899,6 +27392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǂHua", + Comment = null, }, new() { @@ -24909,6 +27403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaulu", + Comment = null, }, new() { @@ -24919,6 +27414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Francisco Del Mar Huave", + Comment = null, }, new() { @@ -24929,6 +27425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Humene", + Comment = null, }, new() { @@ -24939,6 +27436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huachipaeri", + Comment = null, }, new() { @@ -24949,6 +27447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huilliche", + Comment = null, }, new() { @@ -24959,6 +27458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huli", + Comment = null, }, new() { @@ -24969,6 +27469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Guiyang Hmong", + Comment = null, }, new() { @@ -24979,6 +27480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hulung", + Comment = null, }, new() { @@ -24989,6 +27491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hula", + Comment = null, }, new() { @@ -24999,6 +27502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungana", + Comment = null, }, new() { @@ -25009,6 +27513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungarian", + Comment = null, }, new() { @@ -25019,6 +27524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hu", + Comment = null, }, new() { @@ -25029,6 +27535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hupa", + Comment = null, }, new() { @@ -25039,6 +27546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsat", + Comment = null, }, new() { @@ -25049,6 +27557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halkomelem", + Comment = null, }, new() { @@ -25059,6 +27568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huastec", + Comment = null, }, new() { @@ -25069,6 +27579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Humla", + Comment = null, }, new() { @@ -25079,6 +27590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murui Huitoto", + Comment = null, }, new() { @@ -25089,6 +27601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Mateo Del Mar Huave", + Comment = null, }, new() { @@ -25099,6 +27612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hukumina", + Comment = null, }, new() { @@ -25109,6 +27623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nüpode Huitoto", + Comment = null, }, new() { @@ -25119,6 +27634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hulaulá", + Comment = null, }, new() { @@ -25129,6 +27645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunzib", + Comment = null, }, new() { @@ -25139,6 +27656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haitian Vodoun Culture Language", + Comment = null, }, new() { @@ -25149,6 +27667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Dionisio Del Mar Huave", + Comment = null, }, new() { @@ -25159,6 +27678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haveke", + Comment = null, }, new() { @@ -25169,6 +27689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabu", + Comment = null, }, new() { @@ -25179,6 +27700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María Del Mar Huave", + Comment = null, }, new() { @@ -25189,6 +27711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wané", + Comment = null, }, new() { @@ -25199,6 +27722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hawai'i Creole English", + Comment = null, }, new() { @@ -25209,6 +27733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hwana", + Comment = null, }, new() { @@ -25219,6 +27744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hya", + Comment = null, }, new() { @@ -25229,6 +27755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Armenian", + Comment = null, }, new() { @@ -25239,6 +27766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Armenian", + Comment = null, }, new() { @@ -25249,6 +27777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iaai", + Comment = null, }, new() { @@ -25259,6 +27788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iatmul", + Comment = null, }, new() { @@ -25269,6 +27799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purari", + Comment = null, }, new() { @@ -25279,6 +27810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iban", + Comment = null, }, new() { @@ -25289,6 +27821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibibio", + Comment = null, }, new() { @@ -25299,6 +27832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwaidja", + Comment = null, }, new() { @@ -25309,6 +27843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akpes", + Comment = null, }, new() { @@ -25319,6 +27854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibanag", + Comment = null, }, new() { @@ -25329,6 +27865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bih", + Comment = null, }, new() { @@ -25339,6 +27876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibaloi", + Comment = null, }, new() { @@ -25349,6 +27887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agoi", + Comment = null, }, new() { @@ -25359,6 +27898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibino", + Comment = null, }, new() { @@ -25369,6 +27909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igbo", + Comment = null, }, new() { @@ -25379,6 +27920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibuoro", + Comment = null, }, new() { @@ -25389,6 +27931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibu", + Comment = null, }, new() { @@ -25399,6 +27942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibani", + Comment = null, }, new() { @@ -25409,6 +27953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Ica", + Comment = null, }, new() { @@ -25419,6 +27964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Etkywan", + Comment = null, }, new() { @@ -25429,6 +27975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Icelandic Sign Language", + Comment = null, }, new() { @@ -25439,6 +27986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Islander Creole English", + Comment = null, }, new() { @@ -25449,6 +27997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idakho-Isukha-Tiriki", + Comment = null, }, new() { @@ -25459,6 +28008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indo-Portuguese", + Comment = null, }, new() { @@ -25469,6 +28019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idon", + Comment = null, }, new() { @@ -25479,6 +28030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Idaca", + Comment = null, }, new() { @@ -25489,6 +28041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idere", + Comment = null, }, new() { @@ -25499,6 +28052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idi", + Comment = null, }, new() { @@ -25509,6 +28063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Ido", + Comment = null, }, new() { @@ -25519,6 +28074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indri", + Comment = null, }, new() { @@ -25529,6 +28085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idesa", + Comment = null, }, new() { @@ -25539,6 +28096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idaté", + Comment = null, }, new() { @@ -25549,6 +28107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idoma", + Comment = null, }, new() { @@ -25559,6 +28118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amganad Ifugao", + Comment = null, }, new() { @@ -25569,6 +28129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batad Ifugao", + Comment = null, }, new() { @@ -25579,6 +28140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ifè", + Comment = null, }, new() { @@ -25589,6 +28151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ifo", + Comment = null, }, new() { @@ -25599,6 +28162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuwali Ifugao", + Comment = null, }, new() { @@ -25609,6 +28173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Fuumu", + Comment = null, }, new() { @@ -25619,6 +28184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayoyao Ifugao", + Comment = null, }, new() { @@ -25629,6 +28195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keley-I Kallahan", + Comment = null, }, new() { @@ -25639,6 +28206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ebira", + Comment = null, }, new() { @@ -25649,6 +28217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igede", + Comment = null, }, new() { @@ -25659,6 +28228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igana", + Comment = null, }, new() { @@ -25669,6 +28239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igala", + Comment = null, }, new() { @@ -25679,6 +28250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanggape", + Comment = null, }, new() { @@ -25689,6 +28261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ignaciano", + Comment = null, }, new() { @@ -25699,6 +28272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isebe", + Comment = null, }, new() { @@ -25709,6 +28283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interglossa", + Comment = null, }, new() { @@ -25719,6 +28294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igwe", + Comment = null, }, new() { @@ -25729,6 +28305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iha Based Pidgin", + Comment = null, }, new() { @@ -25739,6 +28316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ihievbe", + Comment = null, }, new() { @@ -25749,6 +28327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iha", + Comment = null, }, new() { @@ -25759,6 +28338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bidhawal", + Comment = null, }, new() { @@ -25769,6 +28349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sichuan Yi", + Comment = null, }, new() { @@ -25779,6 +28360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Thiin", + Comment = null, }, new() { @@ -25789,6 +28371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izon", + Comment = null, }, new() { @@ -25799,6 +28382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biseni", + Comment = null, }, new() { @@ -25809,6 +28393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Ije", + Comment = null, }, new() { @@ -25819,6 +28404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalabari", + Comment = null, }, new() { @@ -25829,6 +28415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Ijo", + Comment = null, }, new() { @@ -25839,6 +28426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Canadian Inuktitut", + Comment = null, }, new() { @@ -25849,6 +28437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikhin-Arokho", + Comment = null, }, new() { @@ -25859,6 +28448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iko", + Comment = null, }, new() { @@ -25869,6 +28459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ika", + Comment = null, }, new() { @@ -25879,6 +28470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikulu", + Comment = null, }, new() { @@ -25889,6 +28481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olulumo-Ikom", + Comment = null, }, new() { @@ -25899,6 +28492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikpeshi", + Comment = null, }, new() { @@ -25909,6 +28503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ikaranggal", + Comment = null, }, new() { @@ -25919,6 +28514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inuit Sign Language", + Comment = null, }, new() { @@ -25929,6 +28525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inuinnaqtun", + Comment = null, }, new() { @@ -25939,6 +28536,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Inuktitut", + Comment = null, }, new() { @@ -25949,6 +28547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iku-Gora-Ankwa", + Comment = null, }, new() { @@ -25959,6 +28558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikwere", + Comment = null, }, new() { @@ -25969,6 +28569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ik", + Comment = null, }, new() { @@ -25979,6 +28580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikizu", + Comment = null, }, new() { @@ -25989,6 +28591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ile Ape", + Comment = null, }, new() { @@ -25999,6 +28602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ila", + Comment = null, }, new() { @@ -26009,6 +28613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interlingue", + Comment = null, }, new() { @@ -26019,6 +28624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garig-Ilgar", + Comment = null, }, new() { @@ -26029,6 +28635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ili Turki", + Comment = null, }, new() { @@ -26039,6 +28646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilongot", + Comment = null, }, new() { @@ -26049,6 +28657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranun (Malaysia)", + Comment = null, }, new() { @@ -26059,6 +28668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iloko", + Comment = null, }, new() { @@ -26069,6 +28679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranun (Philippines)", + Comment = null, }, new() { @@ -26079,6 +28690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "International Sign", + Comment = null, }, new() { @@ -26089,6 +28701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ili'uun", + Comment = null, }, new() { @@ -26099,6 +28712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilue", + Comment = null, }, new() { @@ -26109,6 +28723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mala Malasar", + Comment = null, }, new() { @@ -26119,6 +28734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anamgura", + Comment = null, }, new() { @@ -26129,6 +28745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Miluk", + Comment = null, }, new() { @@ -26139,6 +28756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imonda", + Comment = null, }, new() { @@ -26149,6 +28767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imbongu", + Comment = null, }, new() { @@ -26159,6 +28778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imroing", + Comment = null, }, new() { @@ -26169,6 +28789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Marsian", + Comment = null, }, new() { @@ -26179,6 +28800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imotong", + Comment = null, }, new() { @@ -26189,6 +28811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Milyan", + Comment = null, }, new() { @@ -26199,6 +28822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interlingua (International Auxiliary Language Association)", + Comment = null, }, new() { @@ -26209,6 +28833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inga", + Comment = null, }, new() { @@ -26219,6 +28844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indonesian", + Comment = null, }, new() { @@ -26229,6 +28855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Degexit'an", + Comment = null, }, new() { @@ -26239,6 +28866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ingush", + Comment = null, }, new() { @@ -26249,6 +28877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jungle Inga", + Comment = null, }, new() { @@ -26259,6 +28888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indonesian Sign Language", + Comment = null, }, new() { @@ -26269,6 +28899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Minaean", + Comment = null, }, new() { @@ -26279,6 +28910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isinai", + Comment = null, }, new() { @@ -26289,6 +28921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inoke-Yate", + Comment = null, }, new() { @@ -26299,6 +28932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iñapari", + Comment = null, }, new() { @@ -26309,6 +28943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indian Sign Language", + Comment = null, }, new() { @@ -26319,6 +28954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Intha", + Comment = null, }, new() { @@ -26329,6 +28965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ineseño", + Comment = null, }, new() { @@ -26339,6 +28976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inor", + Comment = null, }, new() { @@ -26349,6 +28987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuma-Irumu", + Comment = null, }, new() { @@ -26359,6 +28998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Iowa-Oto", + Comment = null, }, new() { @@ -26369,6 +29009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipili", + Comment = null, }, new() { @@ -26379,6 +29020,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Inupiaq", + Comment = null, }, new() { @@ -26389,6 +29031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipiko", + Comment = null, }, new() { @@ -26399,6 +29042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iquito", + Comment = null, }, new() { @@ -26409,6 +29053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikwo", + Comment = null, }, new() { @@ -26419,6 +29064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iresim", + Comment = null, }, new() { @@ -26429,6 +29075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irarutu", + Comment = null, }, new() { @@ -26439,6 +29086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rigwe", + Comment = null, }, new() { @@ -26449,6 +29097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iraqw", + Comment = null, }, new() { @@ -26459,6 +29108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irántxe", + Comment = null, }, new() { @@ -26469,6 +29119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ir", + Comment = null, }, new() { @@ -26479,6 +29130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irula", + Comment = null, }, new() { @@ -26489,6 +29141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamberau", + Comment = null, }, new() { @@ -26499,6 +29152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iraya", + Comment = null, }, new() { @@ -26509,6 +29163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isabi", + Comment = null, }, new() { @@ -26519,6 +29174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isconahua", + Comment = null, }, new() { @@ -26529,6 +29185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isnag", + Comment = null, }, new() { @@ -26539,6 +29196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Italian Sign Language", + Comment = null, }, new() { @@ -26549,6 +29207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irish Sign Language", + Comment = null, }, new() { @@ -26559,6 +29218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Esan", + Comment = null, }, new() { @@ -26569,6 +29229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkem-Nkum", + Comment = null, }, new() { @@ -26579,6 +29240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ishkashimi", + Comment = null, }, new() { @@ -26589,6 +29251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Icelandic", + Comment = null, }, new() { @@ -26599,6 +29262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masimasi", + Comment = null, }, new() { @@ -26609,6 +29273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isanzu", + Comment = null, }, new() { @@ -26619,6 +29284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isoko", + Comment = null, }, new() { @@ -26629,6 +29295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Israeli Sign Language", + Comment = null, }, new() { @@ -26639,6 +29306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Istriot", + Comment = null, }, new() { @@ -26649,6 +29317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isu (Menchum Division)", + Comment = null, }, new() { @@ -26659,6 +29328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interslavic", + Comment = null, }, new() { @@ -26669,6 +29339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Italian", + Comment = null, }, new() { @@ -26679,6 +29350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binongan Itneg", + Comment = null, }, new() { @@ -26689,6 +29361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tidung", + Comment = null, }, new() { @@ -26699,6 +29372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Itene", + Comment = null, }, new() { @@ -26709,6 +29383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inlaod Itneg", + Comment = null, }, new() { @@ -26719,6 +29394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Italian", + Comment = null, }, new() { @@ -26729,6 +29405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itelmen", + Comment = null, }, new() { @@ -26739,6 +29416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itu Mbon Uzo", + Comment = null, }, new() { @@ -26749,6 +29427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itonama", + Comment = null, }, new() { @@ -26759,6 +29438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iteri", + Comment = null, }, new() { @@ -26769,6 +29449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isekiri", + Comment = null, }, new() { @@ -26779,6 +29460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maeng Itneg", + Comment = null, }, new() { @@ -26789,6 +29471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itawit", + Comment = null, }, new() { @@ -26799,6 +29482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ito", + Comment = null, }, new() { @@ -26809,6 +29493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itik", + Comment = null, }, new() { @@ -26819,6 +29504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moyadan Itneg", + Comment = null, }, new() { @@ -26829,6 +29515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itzá", + Comment = null, }, new() { @@ -26839,6 +29526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iu Mien", + Comment = null, }, new() { @@ -26849,6 +29537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibatan", + Comment = null, }, new() { @@ -26859,6 +29548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ivatan", + Comment = null, }, new() { @@ -26869,6 +29559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "I-Wak", + Comment = null, }, new() { @@ -26879,6 +29570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwam", + Comment = null, }, new() { @@ -26889,6 +29581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwur", + Comment = null, }, new() { @@ -26899,6 +29592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sepik Iwam", + Comment = null, }, new() { @@ -26909,6 +29603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixcatec", + Comment = null, }, new() { @@ -26919,6 +29614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixil", + Comment = null, }, new() { @@ -26929,6 +29625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyayu", + Comment = null, }, new() { @@ -26939,6 +29636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesaka", + Comment = null, }, new() { @@ -26949,6 +29647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaka (Congo)", + Comment = null, }, new() { @@ -26959,6 +29658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ingrian", + Comment = null, }, new() { @@ -26969,6 +29669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kizamani", + Comment = null, }, new() { @@ -26979,6 +29680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izere", + Comment = null, }, new() { @@ -26989,6 +29691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izii", + Comment = null, }, new() { @@ -26999,6 +29702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamamadí", + Comment = null, }, new() { @@ -27009,6 +29713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hyam", + Comment = null, }, new() { @@ -27019,6 +29724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Popti'", + Comment = null, }, new() { @@ -27029,6 +29735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jahanka", + Comment = null, }, new() { @@ -27039,6 +29746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yabem", + Comment = null, }, new() { @@ -27049,6 +29757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jara", + Comment = null, }, new() { @@ -27059,6 +29768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jah Hut", + Comment = null, }, new() { @@ -27069,6 +29779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zazao", + Comment = null, }, new() { @@ -27079,6 +29790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jakun", + Comment = null, }, new() { @@ -27089,6 +29801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yalahatan", + Comment = null, }, new() { @@ -27099,6 +29812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamaican Creole English", + Comment = null, }, new() { @@ -27109,6 +29823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jandai", + Comment = null, }, new() { @@ -27119,6 +29834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanyuwa", + Comment = null, }, new() { @@ -27129,6 +29845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaqay", + Comment = null, }, new() { @@ -27139,6 +29856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "New Caledonian Javanese", + Comment = null, }, new() { @@ -27149,6 +29867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jakati", + Comment = null, }, new() { @@ -27159,6 +29878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaur", + Comment = null, }, new() { @@ -27169,6 +29889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Javanese", + Comment = null, }, new() { @@ -27179,6 +29900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jambi Malay", + Comment = null, }, new() { @@ -27189,6 +29911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yan-nhangu", + Comment = null, }, new() { @@ -27199,6 +29922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jawe", + Comment = null, }, new() { @@ -27209,6 +29933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Berber", + Comment = null, }, new() { @@ -27219,6 +29944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Badjiri", + Comment = null, }, new() { @@ -27229,6 +29955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arandai", + Comment = null, }, new() { @@ -27239,6 +29966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barikewa", + Comment = null, }, new() { @@ -27249,6 +29977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bijim", + Comment = null, }, new() { @@ -27259,6 +29988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafusi", + Comment = null, }, new() { @@ -27269,6 +29999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Lojban", + Comment = null, }, new() { @@ -27279,6 +30010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jofotek-Bromnya", + Comment = null, }, new() { @@ -27289,6 +30021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jabutí", + Comment = null, }, new() { @@ -27299,6 +30032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jukun Takum", + Comment = null, }, new() { @@ -27309,6 +30043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yawijibaya", + Comment = null, }, new() { @@ -27319,6 +30054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamaican Country Sign Language", + Comment = null, }, new() { @@ -27329,6 +30065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krymchak", + Comment = null, }, new() { @@ -27339,6 +30076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jad", + Comment = null, }, new() { @@ -27349,6 +30087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jadgali", + Comment = null, }, new() { @@ -27359,6 +30098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Tat", + Comment = null, }, new() { @@ -27369,6 +30109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jebero", + Comment = null, }, new() { @@ -27379,6 +30120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jerung", + Comment = null, }, new() { @@ -27389,6 +30131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jeh", + Comment = null, }, new() { @@ -27399,6 +30142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yei", + Comment = null, }, new() { @@ -27409,6 +30153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jeri Kuo", + Comment = null, }, new() { @@ -27419,6 +30164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yelmek", + Comment = null, }, new() { @@ -27429,6 +30175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dza", + Comment = null, }, new() { @@ -27439,6 +30186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jere", + Comment = null, }, new() { @@ -27449,6 +30197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manem", + Comment = null, }, new() { @@ -27459,6 +30208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jonkor Bourmataguil", + Comment = null, }, new() { @@ -27469,6 +30219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngbee", + Comment = null, }, new() { @@ -27479,6 +30230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Georgian", + Comment = null, }, new() { @@ -27489,6 +30241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwak", + Comment = null, }, new() { @@ -27499,6 +30252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngomba", + Comment = null, }, new() { @@ -27509,6 +30263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jehai", + Comment = null, }, new() { @@ -27519,6 +30274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jhankot Sign Language", + Comment = null, }, new() { @@ -27529,6 +30285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jina", + Comment = null, }, new() { @@ -27539,6 +30296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jibu", + Comment = null, }, new() { @@ -27549,6 +30307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tol", + Comment = null, }, new() { @@ -27559,6 +30318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bu (Kaduna State)", + Comment = null, }, new() { @@ -27569,6 +30329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jilbe", + Comment = null, }, new() { @@ -27579,6 +30340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jingulu", + Comment = null, }, new() { @@ -27589,6 +30351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "sTodsde", + Comment = null, }, new() { @@ -27599,6 +30362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiiddu", + Comment = null, }, new() { @@ -27609,6 +30373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jilim", + Comment = null, }, new() { @@ -27619,6 +30384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jimi (Cameroon)", + Comment = null, }, new() { @@ -27629,6 +30395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiamao", + Comment = null, }, new() { @@ -27639,6 +30406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guanyinqiao", + Comment = null, }, new() { @@ -27649,6 +30417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jita", + Comment = null, }, new() { @@ -27659,6 +30428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Youle Jinuo", + Comment = null, }, new() { @@ -27669,6 +30439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shuar", + Comment = null, }, new() { @@ -27679,6 +30450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buyuan Jinuo", + Comment = null, }, new() { @@ -27689,6 +30461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jejueo", + Comment = null, }, new() { @@ -27699,6 +30472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankal", + Comment = null, }, new() { @@ -27709,6 +30483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaera", + Comment = null, }, new() { @@ -27719,6 +30494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mobwa Karen", + Comment = null, }, new() { @@ -27729,6 +30505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kubo", + Comment = null, }, new() { @@ -27739,6 +30516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paku Karen", + Comment = null, }, new() { @@ -27749,6 +30527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (India)", + Comment = null, }, new() { @@ -27759,6 +30538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amami Koniya Sign Language", + Comment = null, }, new() { @@ -27769,6 +30549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labir", + Comment = null, }, new() { @@ -27779,6 +30560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngile", + Comment = null, }, new() { @@ -27789,6 +30571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamaican Sign Language", + Comment = null, }, new() { @@ -27799,6 +30582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dima", + Comment = null, }, new() { @@ -27809,6 +30593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zumbun", + Comment = null, }, new() { @@ -27819,6 +30604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machame", + Comment = null, }, new() { @@ -27829,6 +30615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamdena", + Comment = null, }, new() { @@ -27839,6 +30626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jimi (Nigeria)", + Comment = null, }, new() { @@ -27849,6 +30637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jumli", + Comment = null, }, new() { @@ -27859,6 +30648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makuri Naga", + Comment = null, }, new() { @@ -27869,6 +30659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamara", + Comment = null, }, new() { @@ -27879,6 +30670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mashi (Nigeria)", + Comment = null, }, new() { @@ -27889,6 +30681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mouwase", + Comment = null, }, new() { @@ -27899,6 +30692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Juxtlahuaca Mixtec", + Comment = null, }, new() { @@ -27909,6 +30703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jangshung", + Comment = null, }, new() { @@ -27919,6 +30714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jandavra", + Comment = null, }, new() { @@ -27929,6 +30725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yangman", + Comment = null, }, new() { @@ -27939,6 +30736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Janji", + Comment = null, }, new() { @@ -27949,6 +30747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yemsa", + Comment = null, }, new() { @@ -27959,6 +30758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawat", + Comment = null, }, new() { @@ -27969,6 +30769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaunsari", + Comment = null, }, new() { @@ -27979,6 +30780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Joba", + Comment = null, }, new() { @@ -27989,6 +30791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wojenaka", + Comment = null, }, new() { @@ -27999,6 +30802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jogi", + Comment = null, }, new() { @@ -28009,6 +30813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jorá", + Comment = null, }, new() { @@ -28019,6 +30824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jordanian Sign Language", + Comment = null, }, new() { @@ -28029,6 +30835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jowulu", + Comment = null, }, new() { @@ -28039,6 +30846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Jewish Palestinian Aramaic", + Comment = null, }, new() { @@ -28049,6 +30857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Japanese", + Comment = null, }, new() { @@ -28059,6 +30868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Persian", + Comment = null, }, new() { @@ -28069,6 +30879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaqaru", + Comment = null, }, new() { @@ -28079,6 +30890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jarai", + Comment = null, }, new() { @@ -28089,6 +30901,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Judeo-Arabic", + Comment = null, }, new() { @@ -28099,6 +30912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiru", + Comment = null, }, new() { @@ -28109,6 +30923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jakattoe", + Comment = null, }, new() { @@ -28119,6 +30934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Japrería", + Comment = null, }, new() { @@ -28129,6 +30945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Japanese Sign Language", + Comment = null, }, new() { @@ -28139,6 +30956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Júma", + Comment = null, }, new() { @@ -28149,6 +30967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wannu", + Comment = null, }, new() { @@ -28159,6 +30978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Jurchen", + Comment = null, }, new() { @@ -28169,6 +30989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Worodougou", + Comment = null, }, new() { @@ -28179,6 +31000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hõne", + Comment = null, }, new() { @@ -28189,6 +31011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngadjuri", + Comment = null, }, new() { @@ -28199,6 +31022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wapan", + Comment = null, }, new() { @@ -28209,6 +31033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jirel", + Comment = null, }, new() { @@ -28219,6 +31044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jumjum", + Comment = null, }, new() { @@ -28229,6 +31055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juang", + Comment = null, }, new() { @@ -28239,6 +31066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiba", + Comment = null, }, new() { @@ -28249,6 +31077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hupdë", + Comment = null, }, new() { @@ -28259,6 +31088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jurúna", + Comment = null, }, new() { @@ -28269,6 +31099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jumla Sign Language", + Comment = null, }, new() { @@ -28279,6 +31110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Jutish", + Comment = null, }, new() { @@ -28289,6 +31121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ju", + Comment = null, }, new() { @@ -28299,6 +31132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wãpha", + Comment = null, }, new() { @@ -28309,6 +31143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juray", + Comment = null, }, new() { @@ -28319,6 +31154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Javindo", + Comment = null, }, new() { @@ -28329,6 +31165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caribbean Javanese", + Comment = null, }, new() { @@ -28339,6 +31176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jwira-Pepesa", + Comment = null, }, new() { @@ -28349,6 +31187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiarong", + Comment = null, }, new() { @@ -28359,6 +31198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Yemeni Arabic", + Comment = null, }, new() { @@ -28369,6 +31209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaya", + Comment = null, }, new() { @@ -28379,6 +31220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara-Kalpak", + Comment = null, }, new() { @@ -28389,6 +31231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabyle", + Comment = null, }, new() { @@ -28399,6 +31242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachin", + Comment = null, }, new() { @@ -28409,6 +31253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adara", + Comment = null, }, new() { @@ -28419,6 +31264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ketangalan", + Comment = null, }, new() { @@ -28429,6 +31275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katso", + Comment = null, }, new() { @@ -28439,6 +31286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kajaman", + Comment = null, }, new() { @@ -28449,6 +31297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara (Central African Republic)", + Comment = null, }, new() { @@ -28459,6 +31308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karekare", + Comment = null, }, new() { @@ -28469,6 +31319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jju", + Comment = null, }, new() { @@ -28479,6 +31330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalanguya", + Comment = null, }, new() { @@ -28489,6 +31341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalaallisut", + Comment = null, }, new() { @@ -28499,6 +31352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamba (Kenya)", + Comment = null, }, new() { @@ -28509,6 +31363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kannada", + Comment = null, }, new() { @@ -28519,6 +31374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xaasongaxango", + Comment = null, }, new() { @@ -28529,6 +31385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bezhta", + Comment = null, }, new() { @@ -28539,6 +31396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Capanahua", + Comment = null, }, new() { @@ -28549,6 +31407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kashmiri", + Comment = null, }, new() { @@ -28559,6 +31418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Georgian", + Comment = null, }, new() { @@ -28569,6 +31429,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kanuri", + Comment = null, }, new() { @@ -28579,6 +31440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katukína", + Comment = null, }, new() { @@ -28589,6 +31451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kawi", + Comment = null, }, new() { @@ -28599,6 +31462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kao", + Comment = null, }, new() { @@ -28609,6 +31473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamayurá", + Comment = null, }, new() { @@ -28619,6 +31484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kazakh", + Comment = null, }, new() { @@ -28629,6 +31495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kalarko", + Comment = null, }, new() { @@ -28639,6 +31506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kaxuiâna", + Comment = null, }, new() { @@ -28649,6 +31517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadiwéu", + Comment = null, }, new() { @@ -28659,6 +31528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabardian", + Comment = null, }, new() { @@ -28669,6 +31539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanju", + Comment = null, }, new() { @@ -28679,6 +31550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamba", + Comment = null, }, new() { @@ -28689,6 +31561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Camsá", + Comment = null, }, new() { @@ -28699,6 +31572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaptiau", + Comment = null, }, new() { @@ -28709,6 +31583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kari", + Comment = null, }, new() { @@ -28719,6 +31594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Grass Koiari", + Comment = null, }, new() { @@ -28729,6 +31605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanembu", + Comment = null, }, new() { @@ -28739,6 +31616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwal", + Comment = null, }, new() { @@ -28749,6 +31627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kare (Central African Republic)", + Comment = null, }, new() { @@ -28759,6 +31638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keliko", + Comment = null, }, new() { @@ -28769,6 +31649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabiyè", + Comment = null, }, new() { @@ -28779,6 +31660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamano", + Comment = null, }, new() { @@ -28789,6 +31671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kafa", + Comment = null, }, new() { @@ -28799,6 +31682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kande", + Comment = null, }, new() { @@ -28809,6 +31693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abadi", + Comment = null, }, new() { @@ -28819,6 +31704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabutra", + Comment = null, }, new() { @@ -28829,6 +31715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dera (Indonesia)", + Comment = null, }, new() { @@ -28839,6 +31726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaiep", + Comment = null, }, new() { @@ -28849,6 +31737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ap Ma", + Comment = null, }, new() { @@ -28859,6 +31748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manga Kanuri", + Comment = null, }, new() { @@ -28869,6 +31759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duhwa", + Comment = null, }, new() { @@ -28879,6 +31770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khanty", + Comment = null, }, new() { @@ -28889,6 +31781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kawacha", + Comment = null, }, new() { @@ -28899,6 +31792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lubila", + Comment = null, }, new() { @@ -28909,6 +31803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngkâlmpw Kanum", + Comment = null, }, new() { @@ -28919,6 +31814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaivi", + Comment = null, }, new() { @@ -28929,6 +31825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukaan", + Comment = null, }, new() { @@ -28939,6 +31836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tyap", + Comment = null, }, new() { @@ -28949,6 +31847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vono", + Comment = null, }, new() { @@ -28959,6 +31858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngyian", + Comment = null, }, new() { @@ -28969,6 +31869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobiana", + Comment = null, }, new() { @@ -28979,6 +31880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalanga", + Comment = null, }, new() { @@ -28989,6 +31891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kela (Papua New Guinea)", + Comment = null, }, new() { @@ -28999,6 +31902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula (Central African Republic)", + Comment = null, }, new() { @@ -29009,6 +31913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nubi", + Comment = null, }, new() { @@ -29019,6 +31924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinalakna", + Comment = null, }, new() { @@ -29029,6 +31935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanga", + Comment = null, }, new() { @@ -29039,6 +31946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamo", + Comment = null, }, new() { @@ -29049,6 +31957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katla", + Comment = null, }, new() { @@ -29059,6 +31968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koenoem", + Comment = null, }, new() { @@ -29069,6 +31979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaian", + Comment = null, }, new() { @@ -29079,6 +31990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kami (Tanzania)", + Comment = null, }, new() { @@ -29089,6 +32001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kete", + Comment = null, }, new() { @@ -29099,6 +32012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabwari", + Comment = null, }, new() { @@ -29109,6 +32023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachama-Ganjule", + Comment = null, }, new() { @@ -29119,6 +32034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korandje", + Comment = null, }, new() { @@ -29129,6 +32045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konongo", + Comment = null, }, new() { @@ -29139,6 +32056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Worimi", + Comment = null, }, new() { @@ -29149,6 +32067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutu", + Comment = null, }, new() { @@ -29159,6 +32078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yankunytjatjara", + Comment = null, }, new() { @@ -29169,6 +32089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makonde", + Comment = null, }, new() { @@ -29179,6 +32100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamusi", + Comment = null, }, new() { @@ -29189,6 +32111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seba", + Comment = null, }, new() { @@ -29199,6 +32122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tem", + Comment = null, }, new() { @@ -29209,6 +32133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumam", + Comment = null, }, new() { @@ -29219,6 +32144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karamojong", + Comment = null, }, new() { @@ -29229,6 +32155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numèè", + Comment = null, }, new() { @@ -29239,6 +32166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsikimba", + Comment = null, }, new() { @@ -29249,6 +32177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagoma", + Comment = null, }, new() { @@ -29259,6 +32188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunda", + Comment = null, }, new() { @@ -29269,6 +32199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaningdon-Nindem", + Comment = null, }, new() { @@ -29279,6 +32210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koch", + Comment = null, }, new() { @@ -29289,6 +32221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karaim", + Comment = null, }, new() { @@ -29299,6 +32232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuy", + Comment = null, }, new() { @@ -29309,6 +32243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadaru", + Comment = null, }, new() { @@ -29319,6 +32254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koneraw", + Comment = null, }, new() { @@ -29329,6 +32265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kam", + Comment = null, }, new() { @@ -29339,6 +32276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keder", + Comment = null, }, new() { @@ -29349,6 +32287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaja", + Comment = null, }, new() { @@ -29359,6 +32298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabuverdianu", + Comment = null, }, new() { @@ -29369,6 +32309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kélé", + Comment = null, }, new() { @@ -29379,6 +32320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keiga", + Comment = null, }, new() { @@ -29389,6 +32331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerewe", + Comment = null, }, new() { @@ -29399,6 +32342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Keres", + Comment = null, }, new() { @@ -29409,6 +32353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpessi", + Comment = null, }, new() { @@ -29419,6 +32364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tese", + Comment = null, }, new() { @@ -29429,6 +32375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keak", + Comment = null, }, new() { @@ -29439,6 +32386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kei", + Comment = null, }, new() { @@ -29449,6 +32397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadar", + Comment = null, }, new() { @@ -29459,6 +32408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kekchí", + Comment = null, }, new() { @@ -29469,6 +32419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kela (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -29479,6 +32430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemak", + Comment = null, }, new() { @@ -29489,6 +32441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenyang", + Comment = null, }, new() { @@ -29499,6 +32452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakwa", + Comment = null, }, new() { @@ -29509,6 +32463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaikadi", + Comment = null, }, new() { @@ -29519,6 +32474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamar", + Comment = null, }, new() { @@ -29529,6 +32485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kera", + Comment = null, }, new() { @@ -29539,6 +32496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kugbo", + Comment = null, }, new() { @@ -29549,6 +32507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ket", + Comment = null, }, new() { @@ -29559,6 +32518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akebu", + Comment = null, }, new() { @@ -29569,6 +32529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanikkaran", + Comment = null, }, new() { @@ -29579,6 +32540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Kewa", + Comment = null, }, new() { @@ -29589,6 +32551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kukna", + Comment = null, }, new() { @@ -29599,6 +32562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupia", + Comment = null, }, new() { @@ -29609,6 +32573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kukele", + Comment = null, }, new() { @@ -29619,6 +32584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodava", + Comment = null, }, new() { @@ -29629,6 +32595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Kolami", + Comment = null, }, new() { @@ -29639,6 +32606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konda-Dora", + Comment = null, }, new() { @@ -29649,6 +32617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korra Koraga", + Comment = null, }, new() { @@ -29659,6 +32628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota (India)", + Comment = null, }, new() { @@ -29669,6 +32639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koya", + Comment = null, }, new() { @@ -29679,6 +32650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kudiya", + Comment = null, }, new() { @@ -29689,6 +32661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurichiya", + Comment = null, }, new() { @@ -29699,6 +32672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kannada Kurumba", + Comment = null, }, new() { @@ -29709,6 +32683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemiehua", + Comment = null, }, new() { @@ -29719,6 +32694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinnauri", + Comment = null, }, new() { @@ -29729,6 +32705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kung", + Comment = null, }, new() { @@ -29739,6 +32716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khunsari", + Comment = null, }, new() { @@ -29749,6 +32727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuk", + Comment = null, }, new() { @@ -29759,6 +32738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (Côte d'Ivoire)", + Comment = null, }, new() { @@ -29769,6 +32749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korwa", + Comment = null, }, new() { @@ -29779,6 +32760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korku", + Comment = null, }, new() { @@ -29789,6 +32771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachhi", + Comment = null, }, new() { @@ -29799,6 +32782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilaspuri", + Comment = null, }, new() { @@ -29809,6 +32793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanjari", + Comment = null, }, new() { @@ -29819,6 +32804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katkari", + Comment = null, }, new() { @@ -29829,6 +32815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurmukar", + Comment = null, }, new() { @@ -29839,6 +32826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kharam Naga", + Comment = null, }, new() { @@ -29849,6 +32837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kullu Pahari", + Comment = null, }, new() { @@ -29859,6 +32848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumaoni", + Comment = null, }, new() { @@ -29869,6 +32859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koromfé", + Comment = null, }, new() { @@ -29879,6 +32870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyaga", + Comment = null, }, new() { @@ -29889,6 +32881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kawe", + Comment = null, }, new() { @@ -29899,6 +32892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komering", + Comment = null, }, new() { @@ -29909,6 +32903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kube", + Comment = null, }, new() { @@ -29919,6 +32914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusunda", + Comment = null, }, new() { @@ -29929,6 +32925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selangor Sign Language", + Comment = null, }, new() { @@ -29939,6 +32936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamale Kham", + Comment = null, }, new() { @@ -29949,6 +32947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaiwá", + Comment = null, }, new() { @@ -29959,6 +32958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kunggari", + Comment = null, }, new() { @@ -29969,6 +32969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karingani", + Comment = null, }, new() { @@ -29979,6 +32980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krongo", + Comment = null, }, new() { @@ -29989,6 +32991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaingang", + Comment = null, }, new() { @@ -29999,6 +33002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamoro", + Comment = null, }, new() { @@ -30009,6 +33013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abun", + Comment = null, }, new() { @@ -30019,6 +33024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumbainggar", + Comment = null, }, new() { @@ -30029,6 +33035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somyev", + Comment = null, }, new() { @@ -30039,6 +33046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobol", + Comment = null, }, new() { @@ -30049,6 +33057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karas", + Comment = null, }, new() { @@ -30059,6 +33068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karon Dori", + Comment = null, }, new() { @@ -30069,6 +33079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamaru", + Comment = null, }, new() { @@ -30079,6 +33090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyerung", + Comment = null, }, new() { @@ -30089,6 +33101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khasi", + Comment = null, }, new() { @@ -30099,6 +33112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lü", + Comment = null, }, new() { @@ -30109,6 +33123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukang Besi North", + Comment = null, }, new() { @@ -30119,6 +33134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bädi Kanum", + Comment = null, }, new() { @@ -30129,6 +33145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korowai", + Comment = null, }, new() { @@ -30139,6 +33156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khuen", + Comment = null, }, new() { @@ -30149,6 +33167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khams Tibetan", + Comment = null, }, new() { @@ -30159,6 +33178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kehu", + Comment = null, }, new() { @@ -30169,6 +33189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuturmi", + Comment = null, }, new() { @@ -30179,6 +33200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halh Mongolian", + Comment = null, }, new() { @@ -30189,6 +33211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lusi", + Comment = null, }, new() { @@ -30199,6 +33222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khmer", + Comment = null, }, new() { @@ -30209,6 +33233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khandesi", + Comment = null, }, new() { @@ -30219,6 +33244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Khotanese", + Comment = null, }, new() { @@ -30229,6 +33255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapori", + Comment = null, }, new() { @@ -30239,6 +33266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyra Chiini Songhay", + Comment = null, }, new() { @@ -30249,6 +33277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kharia", + Comment = null, }, new() { @@ -30259,6 +33288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasua", + Comment = null, }, new() { @@ -30269,6 +33299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamti", + Comment = null, }, new() { @@ -30279,6 +33310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkhumbi", + Comment = null, }, new() { @@ -30289,6 +33321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khvarshi", + Comment = null, }, new() { @@ -30299,6 +33332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khowar", + Comment = null, }, new() { @@ -30309,6 +33343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanu", + Comment = null, }, new() { @@ -30319,6 +33354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kele (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -30329,6 +33365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keapara", + Comment = null, }, new() { @@ -30339,6 +33376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kim", + Comment = null, }, new() { @@ -30349,6 +33387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koalib", + Comment = null, }, new() { @@ -30359,6 +33398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kickapoo", + Comment = null, }, new() { @@ -30369,6 +33409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koshin", + Comment = null, }, new() { @@ -30379,6 +33420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kibet", + Comment = null, }, new() { @@ -30389,6 +33431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Parbate Kham", + Comment = null, }, new() { @@ -30399,6 +33442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimaama", + Comment = null, }, new() { @@ -30409,6 +33453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kilmeri", + Comment = null, }, new() { @@ -30419,6 +33464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kitsai", + Comment = null, }, new() { @@ -30429,6 +33475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kilivila", + Comment = null, }, new() { @@ -30439,6 +33486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kikuyu", + Comment = null, }, new() { @@ -30449,6 +33497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kariya", + Comment = null, }, new() { @@ -30459,6 +33508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karagas", + Comment = null, }, new() { @@ -30469,6 +33519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinyarwanda", + Comment = null, }, new() { @@ -30479,6 +33530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiowa", + Comment = null, }, new() { @@ -30489,6 +33541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sheshi Kham", + Comment = null, }, new() { @@ -30499,6 +33552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosadle", + Comment = null, }, new() { @@ -30509,6 +33563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirghiz", + Comment = null, }, new() { @@ -30519,6 +33574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kis", + Comment = null, }, new() { @@ -30529,6 +33585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agob", + Comment = null, }, new() { @@ -30539,6 +33596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirmanjki (individual language)", + Comment = null, }, new() { @@ -30549,6 +33607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimbu", + Comment = null, }, new() { @@ -30559,6 +33618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeast Kiwai", + Comment = null, }, new() { @@ -30569,6 +33629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khiamniungan Naga", + Comment = null, }, new() { @@ -30579,6 +33640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirikiri", + Comment = null, }, new() { @@ -30589,6 +33651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisi", + Comment = null, }, new() { @@ -30599,6 +33662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mlap", + Comment = null, }, new() { @@ -30609,6 +33673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Q'anjob'al", + Comment = null, }, new() { @@ -30619,6 +33684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coastal Konjo", + Comment = null, }, new() { @@ -30629,6 +33695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kiwai", + Comment = null, }, new() { @@ -30639,6 +33706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisar", + Comment = null, }, new() { @@ -30649,6 +33717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khmu", + Comment = null, }, new() { @@ -30659,6 +33728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khakas", + Comment = null, }, new() { @@ -30669,6 +33739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zabana", + Comment = null, }, new() { @@ -30679,6 +33750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khinalugh", + Comment = null, }, new() { @@ -30689,6 +33761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Konjo", + Comment = null, }, new() { @@ -30699,6 +33772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Parbate Kham", + Comment = null, }, new() { @@ -30709,6 +33783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kháng", + Comment = null, }, new() { @@ -30719,6 +33794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunjen", + Comment = null, }, new() { @@ -30729,6 +33805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harijan Kinnauri", + Comment = null, }, new() { @@ -30739,6 +33816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwo Eastern Karen", + Comment = null, }, new() { @@ -30749,6 +33827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Keres", + Comment = null, }, new() { @@ -30759,6 +33838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurudu", + Comment = null, }, new() { @@ -30769,6 +33849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Kewa", + Comment = null, }, new() { @@ -30779,6 +33860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phrae Pwo Karen", + Comment = null, }, new() { @@ -30789,6 +33871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kashaya", + Comment = null, }, new() { @@ -30799,6 +33882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kaikavian Literary Language", + Comment = null, }, new() { @@ -30809,6 +33893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ramopa", + Comment = null, }, new() { @@ -30819,6 +33904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erave", + Comment = null, }, new() { @@ -30829,6 +33915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumthangkha", + Comment = null, }, new() { @@ -30839,6 +33926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakanda", + Comment = null, }, new() { @@ -30849,6 +33937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwerisa", + Comment = null, }, new() { @@ -30859,6 +33948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odoodee", + Comment = null, }, new() { @@ -30869,6 +33959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinuku", + Comment = null, }, new() { @@ -30879,6 +33970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakabe", + Comment = null, }, new() { @@ -30889,6 +33981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalaktang Monpa", + Comment = null, }, new() { @@ -30899,6 +33992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabaka Valley Kalinga", + Comment = null, }, new() { @@ -30909,6 +34003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khün", + Comment = null, }, new() { @@ -30919,6 +34014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagulu", + Comment = null, }, new() { @@ -30929,6 +34025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kako", + Comment = null, }, new() { @@ -30939,6 +34036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokota", + Comment = null, }, new() { @@ -30949,6 +34047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosarek Yale", + Comment = null, }, new() { @@ -30959,6 +34058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiong", + Comment = null, }, new() { @@ -30969,6 +34069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kon Keu", + Comment = null, }, new() { @@ -30979,6 +34080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karko", + Comment = null, }, new() { @@ -30989,6 +34091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gugubera", + Comment = null, }, new() { @@ -30999,6 +34102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaeku", + Comment = null, }, new() { @@ -31009,6 +34113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kir-Balar", + Comment = null, }, new() { @@ -31019,6 +34124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giiwo", + Comment = null, }, new() { @@ -31029,6 +34135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koi", + Comment = null, }, new() { @@ -31039,6 +34146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumi", + Comment = null, }, new() { @@ -31049,6 +34157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kangean", + Comment = null, }, new() { @@ -31059,6 +34168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Kukuya", + Comment = null, }, new() { @@ -31069,6 +34179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kohin", + Comment = null, }, new() { @@ -31079,6 +34190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guugu Yimidhirr", + Comment = null, }, new() { @@ -31089,6 +34201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaska", + Comment = null, }, new() { @@ -31099,6 +34212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Klamath-Modoc", + Comment = null, }, new() { @@ -31109,6 +34223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiliwa", + Comment = null, }, new() { @@ -31119,6 +34234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kolbila", + Comment = null, }, new() { @@ -31129,6 +34245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamilaraay", + Comment = null, }, new() { @@ -31139,6 +34256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulung (Nepal)", + Comment = null, }, new() { @@ -31149,6 +34267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kendeje", + Comment = null, }, new() { @@ -31159,6 +34278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagakaulo", + Comment = null, }, new() { @@ -31169,6 +34289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weliki", + Comment = null, }, new() { @@ -31179,6 +34300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalumpang", + Comment = null, }, new() { @@ -31189,6 +34311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khalaj", + Comment = null, }, new() { @@ -31199,6 +34322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kono (Nigeria)", + Comment = null, }, new() { @@ -31209,6 +34333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagan Kalagan", + Comment = null, }, new() { @@ -31219,6 +34344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Migum", + Comment = null, }, new() { @@ -31229,6 +34355,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kalenjin", + Comment = null, }, new() { @@ -31239,6 +34366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapya", + Comment = null, }, new() { @@ -31249,6 +34377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamasa", + Comment = null, }, new() { @@ -31259,6 +34388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rumu", + Comment = null, }, new() { @@ -31269,6 +34399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khaling", + Comment = null, }, new() { @@ -31279,6 +34410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalasha", + Comment = null, }, new() { @@ -31289,6 +34421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukna", + Comment = null, }, new() { @@ -31299,6 +34432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Klao", + Comment = null, }, new() { @@ -31309,6 +34443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maskelynes", + Comment = null, }, new() { @@ -31319,6 +34454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tado", + Comment = null, }, new() { @@ -31329,6 +34465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koluwawa", + Comment = null, }, new() { @@ -31339,6 +34476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalao", + Comment = null, }, new() { @@ -31349,6 +34487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabola", + Comment = null, }, new() { @@ -31359,6 +34498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konni", + Comment = null, }, new() { @@ -31369,6 +34509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimbundu", + Comment = null, }, new() { @@ -31379,6 +34520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Dong", + Comment = null, }, new() { @@ -31389,6 +34531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majukayang Kalinga", + Comment = null, }, new() { @@ -31399,6 +34542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakole", + Comment = null, }, new() { @@ -31409,6 +34553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kare (Papua New Guinea)", + Comment = null, }, new() { @@ -31419,6 +34564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kâte", + Comment = null, }, new() { @@ -31429,6 +34575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalam", + Comment = null, }, new() { @@ -31439,6 +34586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kami (Nigeria)", + Comment = null, }, new() { @@ -31449,6 +34597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumarbhag Paharia", + Comment = null, }, new() { @@ -31459,6 +34608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limos Kalinga", + Comment = null, }, new() { @@ -31469,6 +34619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanudan Kalinga", + Comment = null, }, new() { @@ -31479,6 +34630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kom (India)", + Comment = null, }, new() { @@ -31489,6 +34641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awtuw", + Comment = null, }, new() { @@ -31499,6 +34652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwoma", + Comment = null, }, new() { @@ -31509,6 +34663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimme", + Comment = null, }, new() { @@ -31519,6 +34674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwama", + Comment = null, }, new() { @@ -31529,6 +34685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Kurdish", + Comment = null, }, new() { @@ -31539,6 +34696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamasau", + Comment = null, }, new() { @@ -31549,6 +34707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemtuik", + Comment = null, }, new() { @@ -31559,6 +34718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanite", + Comment = null, }, new() { @@ -31569,6 +34729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karipúna Creole French", + Comment = null, }, new() { @@ -31579,6 +34740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komo (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -31589,6 +34751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waboda", + Comment = null, }, new() { @@ -31599,6 +34762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koma", + Comment = null, }, new() { @@ -31609,6 +34773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khorasani Turkish", + Comment = null, }, new() { @@ -31619,6 +34784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dera (Nigeria)", + Comment = null, }, new() { @@ -31629,6 +34795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lubuagan Kalinga", + Comment = null, }, new() { @@ -31639,6 +34806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Kanuri", + Comment = null, }, new() { @@ -31649,6 +34817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konda", + Comment = null, }, new() { @@ -31659,6 +34828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kankanaey", + Comment = null, }, new() { @@ -31669,6 +34839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mankanya", + Comment = null, }, new() { @@ -31679,6 +34850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koongo", + Comment = null, }, new() { @@ -31689,6 +34861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanufi", + Comment = null, }, new() { @@ -31699,6 +34872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Kanjobal", + Comment = null, }, new() { @@ -31709,6 +34883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuranko", + Comment = null, }, new() { @@ -31719,6 +34894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keninjal", + Comment = null, }, new() { @@ -31729,6 +34905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanamarí", + Comment = null, }, new() { @@ -31739,6 +34916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konkani (individual language)", + Comment = null, }, new() { @@ -31749,6 +34927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kono (Sierra Leone)", + Comment = null, }, new() { @@ -31759,6 +34938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwanja", + Comment = null, }, new() { @@ -31769,6 +34949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kintaq", + Comment = null, }, new() { @@ -31779,6 +34960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaningra", + Comment = null, }, new() { @@ -31789,6 +34971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kensiu", + Comment = null, }, new() { @@ -31799,6 +34982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panoan Katukína", + Comment = null, }, new() { @@ -31809,6 +34993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kono (Guinea)", + Comment = null, }, new() { @@ -31819,6 +35004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabo", + Comment = null, }, new() { @@ -31829,6 +35015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kung-Ekoka", + Comment = null, }, new() { @@ -31839,6 +35026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kendayan", + Comment = null, }, new() { @@ -31849,6 +35037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanyok", + Comment = null, }, new() { @@ -31859,6 +35048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalamsé", + Comment = null, }, new() { @@ -31869,6 +35059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konomala", + Comment = null, }, new() { @@ -31879,6 +35070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kpati", + Comment = null, }, new() { @@ -31889,6 +35081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodi", + Comment = null, }, new() { @@ -31899,6 +35092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kacipo-Bale Suri", + Comment = null, }, new() { @@ -31909,6 +35103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kubi", + Comment = null, }, new() { @@ -31919,6 +35114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cogui", + Comment = null, }, new() { @@ -31929,6 +35125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyo", + Comment = null, }, new() { @@ -31939,6 +35136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komi-Permyak", + Comment = null, }, new() { @@ -31949,6 +35147,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Konkani (macrolanguage)", + Comment = null, }, new() { @@ -31959,6 +35158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kol (Papua New Guinea)", + Comment = null, }, new() { @@ -31969,6 +35169,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Komi", + Comment = null, }, new() { @@ -31979,6 +35180,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kongo", + Comment = null, }, new() { @@ -31989,6 +35191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konzo", + Comment = null, }, new() { @@ -31999,6 +35202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waube", + Comment = null, }, new() { @@ -32009,6 +35213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota (Gabon)", + Comment = null, }, new() { @@ -32019,6 +35224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korean", + Comment = null, }, new() { @@ -32029,6 +35235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosraean", + Comment = null, }, new() { @@ -32039,6 +35246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lagwan", + Comment = null, }, new() { @@ -32049,6 +35257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koke", + Comment = null, }, new() { @@ -32059,6 +35268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kudu-Camo", + Comment = null, }, new() { @@ -32069,6 +35279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kugama", + Comment = null, }, new() { @@ -32079,6 +35290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyukon", + Comment = null, }, new() { @@ -32089,6 +35301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korak", + Comment = null, }, new() { @@ -32099,6 +35312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutto", + Comment = null, }, new() { @@ -32109,6 +35323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mullu Kurumba", + Comment = null, }, new() { @@ -32119,6 +35334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Curripaco", + Comment = null, }, new() { @@ -32129,6 +35345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koba", + Comment = null, }, new() { @@ -32139,6 +35356,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kpelle", + Comment = null, }, new() { @@ -32149,6 +35367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komba", + Comment = null, }, new() { @@ -32159,6 +35378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapingamarangi", + Comment = null, }, new() { @@ -32169,6 +35389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kplang", + Comment = null, }, new() { @@ -32179,6 +35400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kofei", + Comment = null, }, new() { @@ -32189,6 +35411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karajá", + Comment = null, }, new() { @@ -32199,6 +35422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpan", + Comment = null, }, new() { @@ -32209,6 +35433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpala", + Comment = null, }, new() { @@ -32219,6 +35444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koho", + Comment = null, }, new() { @@ -32229,6 +35455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kepkiriwát", + Comment = null, }, new() { @@ -32239,6 +35466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikposo", + Comment = null, }, new() { @@ -32249,6 +35477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korupun-Sela", + Comment = null, }, new() { @@ -32259,6 +35488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korafe-Yegha", + Comment = null, }, new() { @@ -32269,6 +35499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tehit", + Comment = null, }, new() { @@ -32279,6 +35510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karata", + Comment = null, }, new() { @@ -32289,6 +35521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kafoa", + Comment = null, }, new() { @@ -32299,6 +35532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komi-Zyrian", + Comment = null, }, new() { @@ -32309,6 +35543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobon", + Comment = null, }, new() { @@ -32319,6 +35554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mountain Koiali", + Comment = null, }, new() { @@ -32329,6 +35565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koryak", + Comment = null, }, new() { @@ -32339,6 +35576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupsabiny", + Comment = null, }, new() { @@ -32349,6 +35587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mum", + Comment = null, }, new() { @@ -32359,6 +35598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kovai", + Comment = null, }, new() { @@ -32369,6 +35609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doromu-Koki", + Comment = null, }, new() { @@ -32379,6 +35620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koy Sanjaq Surat", + Comment = null, }, new() { @@ -32389,6 +35631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalagan", + Comment = null, }, new() { @@ -32399,6 +35642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakabai", + Comment = null, }, new() { @@ -32409,6 +35653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khe", + Comment = null, }, new() { @@ -32419,6 +35664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisankasa", + Comment = null, }, new() { @@ -32429,6 +35675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koitabu", + Comment = null, }, new() { @@ -32439,6 +35686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koromira", + Comment = null, }, new() { @@ -32449,6 +35697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kotafon Gbe", + Comment = null, }, new() { @@ -32459,6 +35708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyenele", + Comment = null, }, new() { @@ -32469,6 +35719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khisa", + Comment = null, }, new() { @@ -32479,6 +35730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaonde", + Comment = null, }, new() { @@ -32489,6 +35741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Krahn", + Comment = null, }, new() { @@ -32499,6 +35752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimré", + Comment = null, }, new() { @@ -32509,6 +35763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krenak", + Comment = null, }, new() { @@ -32519,6 +35774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimaragang", + Comment = null, }, new() { @@ -32529,6 +35785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Kissi", + Comment = null, }, new() { @@ -32539,6 +35796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Klias River Kadazan", + Comment = null, }, new() { @@ -32549,6 +35807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Seroa", + Comment = null, }, new() { @@ -32559,6 +35818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okolod", + Comment = null, }, new() { @@ -32569,6 +35829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kandas", + Comment = null, }, new() { @@ -32579,6 +35840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mser", + Comment = null, }, new() { @@ -32589,6 +35851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koorete", + Comment = null, }, new() { @@ -32599,6 +35862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Korana", + Comment = null, }, new() { @@ -32609,6 +35873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumhali", + Comment = null, }, new() { @@ -32619,6 +35884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karkin", + Comment = null, }, new() { @@ -32629,6 +35895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karachay-Balkar", + Comment = null, }, new() { @@ -32639,6 +35906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kairui-Midiki", + Comment = null, }, new() { @@ -32649,6 +35917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panará", + Comment = null, }, new() { @@ -32659,6 +35928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (Vanuatu)", + Comment = null, }, new() { @@ -32669,6 +35939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurama", + Comment = null, }, new() { @@ -32679,6 +35950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krio", + Comment = null, }, new() { @@ -32689,6 +35961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinaray-A", + Comment = null, }, new() { @@ -32699,6 +35972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kerek", + Comment = null, }, new() { @@ -32709,6 +35983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karelian", + Comment = null, }, new() { @@ -32719,6 +35994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sapo", + Comment = null, }, new() { @@ -32729,6 +36005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Durop", + Comment = null, }, new() { @@ -32739,6 +36016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krung", + Comment = null, }, new() { @@ -32749,6 +36027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya (Sudan)", + Comment = null, }, new() { @@ -32759,6 +36038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumari Kanuri", + Comment = null, }, new() { @@ -32769,6 +36049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurukh", + Comment = null, }, new() { @@ -32779,6 +36060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kavet", + Comment = null, }, new() { @@ -32789,6 +36071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Krahn", + Comment = null, }, new() { @@ -32799,6 +36082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karon", + Comment = null, }, new() { @@ -32809,6 +36093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kryts", + Comment = null, }, new() { @@ -32819,6 +36104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sota Kanum", + Comment = null, }, new() { @@ -32829,6 +36115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shambala", + Comment = null, }, new() { @@ -32839,6 +36126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kalinga", + Comment = null, }, new() { @@ -32849,6 +36137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuanua", + Comment = null, }, new() { @@ -32859,6 +36148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuni", + Comment = null, }, new() { @@ -32869,6 +36159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafia", + Comment = null, }, new() { @@ -32879,6 +36170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusaghe", + Comment = null, }, new() { @@ -32889,6 +36181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kölsch", + Comment = null, }, new() { @@ -32899,6 +36192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krisa", + Comment = null, }, new() { @@ -32909,6 +36203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uare", + Comment = null, }, new() { @@ -32919,6 +36214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kansa", + Comment = null, }, new() { @@ -32929,6 +36225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumalu", + Comment = null, }, new() { @@ -32939,6 +36236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumba", + Comment = null, }, new() { @@ -32949,6 +36247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasiguranin", + Comment = null, }, new() { @@ -32959,6 +36258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kofa", + Comment = null, }, new() { @@ -32969,6 +36269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaba", + Comment = null, }, new() { @@ -32979,6 +36280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaami", + Comment = null, }, new() { @@ -32989,6 +36291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borong", + Comment = null, }, new() { @@ -32999,6 +36302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kisi", + Comment = null, }, new() { @@ -33009,6 +36313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Winyé", + Comment = null, }, new() { @@ -33019,6 +36324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamyang", + Comment = null, }, new() { @@ -33029,6 +36335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusu", + Comment = null, }, new() { @@ -33039,6 +36346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "S'gaw Karen", + Comment = null, }, new() { @@ -33049,6 +36357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kedang", + Comment = null, }, new() { @@ -33059,6 +36368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kharia Thar", + Comment = null, }, new() { @@ -33069,6 +36379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodaku", + Comment = null, }, new() { @@ -33079,6 +36390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katua", + Comment = null, }, new() { @@ -33089,6 +36401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kambaata", + Comment = null, }, new() { @@ -33099,6 +36412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kholok", + Comment = null, }, new() { @@ -33109,6 +36423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokata", + Comment = null, }, new() { @@ -33119,6 +36434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nubri", + Comment = null, }, new() { @@ -33129,6 +36445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwami", + Comment = null, }, new() { @@ -33139,6 +36456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kalkutung", + Comment = null, }, new() { @@ -33149,6 +36467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karanga", + Comment = null, }, new() { @@ -33159,6 +36478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Muyu", + Comment = null, }, new() { @@ -33169,6 +36489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plapo Krumen", + Comment = null, }, new() { @@ -33179,6 +36500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kaniet", + Comment = null, }, new() { @@ -33189,6 +36511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koroshi", + Comment = null, }, new() { @@ -33199,6 +36522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurti", + Comment = null, }, new() { @@ -33209,6 +36533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karitiâna", + Comment = null, }, new() { @@ -33219,6 +36544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuot", + Comment = null, }, new() { @@ -33229,6 +36555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaduo", + Comment = null, }, new() { @@ -33239,6 +36566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Katabaga", + Comment = null, }, new() { @@ -33249,6 +36577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Muyu", + Comment = null, }, new() { @@ -33259,6 +36588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ketum", + Comment = null, }, new() { @@ -33269,6 +36599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kituba (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -33279,6 +36610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Katu", + Comment = null, }, new() { @@ -33289,6 +36621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kato", + Comment = null, }, new() { @@ -33299,6 +36632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaxararí", + Comment = null, }, new() { @@ -33309,6 +36643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kango (Bas-Uélé District)", + Comment = null, }, new() { @@ -33319,6 +36654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juǀʼhoan", + Comment = null, }, new() { @@ -33329,6 +36665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuanyama", + Comment = null, }, new() { @@ -33339,6 +36676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutep", + Comment = null, }, new() { @@ -33349,6 +36687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwinsu", + Comment = null, }, new() { @@ -33359,6 +36698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "'Auhelawa", + Comment = null, }, new() { @@ -33369,6 +36709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuman (Papua New Guinea)", + Comment = null, }, new() { @@ -33379,6 +36720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Katu", + Comment = null, }, new() { @@ -33389,6 +36731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupa", + Comment = null, }, new() { @@ -33399,6 +36742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kushi", + Comment = null, }, new() { @@ -33409,6 +36753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuikúro-Kalapálo", + Comment = null, }, new() { @@ -33419,6 +36764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuria", + Comment = null, }, new() { @@ -33429,6 +36775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kepo'", + Comment = null, }, new() { @@ -33439,6 +36786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulere", + Comment = null, }, new() { @@ -33449,6 +36797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumyk", + Comment = null, }, new() { @@ -33459,6 +36808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunama", + Comment = null, }, new() { @@ -33469,6 +36819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumukio", + Comment = null, }, new() { @@ -33479,6 +36830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunimaipa", + Comment = null, }, new() { @@ -33489,6 +36841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karipuna", + Comment = null, }, new() { @@ -33499,6 +36852,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kurdish", + Comment = null, }, new() { @@ -33509,6 +36863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusaal", + Comment = null, }, new() { @@ -33519,6 +36874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutenai", + Comment = null, }, new() { @@ -33529,6 +36885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Kuskokwim", + Comment = null, }, new() { @@ -33539,6 +36896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kur", + Comment = null, }, new() { @@ -33549,6 +36907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpagua", + Comment = null, }, new() { @@ -33559,6 +36918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kukatja", + Comment = null, }, new() { @@ -33569,6 +36929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuuku-Ya'u", + Comment = null, }, new() { @@ -33579,6 +36940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kunza", + Comment = null, }, new() { @@ -33589,6 +36951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagvalal", + Comment = null, }, new() { @@ -33599,6 +36962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kubu", + Comment = null, }, new() { @@ -33609,6 +36973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kove", + Comment = null, }, new() { @@ -33619,6 +36984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kui (Indonesia)", + Comment = null, }, new() { @@ -33629,6 +36995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalabakan", + Comment = null, }, new() { @@ -33639,6 +37006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabalai", + Comment = null, }, new() { @@ -33649,6 +37017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuni-Boazi", + Comment = null, }, new() { @@ -33659,6 +37028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komodo", + Comment = null, }, new() { @@ -33669,6 +37039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwang", + Comment = null, }, new() { @@ -33679,6 +37050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Psikye", + Comment = null, }, new() { @@ -33689,6 +37061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korean Sign Language", + Comment = null, }, new() { @@ -33699,6 +37072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayaw", + Comment = null, }, new() { @@ -33709,6 +37083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kendem", + Comment = null, }, new() { @@ -33719,6 +37094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Border Kuna", + Comment = null, }, new() { @@ -33729,6 +37105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dobel", + Comment = null, }, new() { @@ -33739,6 +37116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kompane", + Comment = null, }, new() { @@ -33749,6 +37127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geba Karen", + Comment = null, }, new() { @@ -33759,6 +37138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerinci", + Comment = null, }, new() { @@ -33769,6 +37149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahta Karen", + Comment = null, }, new() { @@ -33779,6 +37160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yinbaw Karen", + Comment = null, }, new() { @@ -33789,6 +37171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kola", + Comment = null, }, new() { @@ -33799,6 +37182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wersing", + Comment = null, }, new() { @@ -33809,6 +37193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parkari Koli", + Comment = null, }, new() { @@ -33819,6 +37204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yintale Karen", + Comment = null, }, new() { @@ -33829,6 +37215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsakwambo", + Comment = null, }, new() { @@ -33839,6 +37226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dâw", + Comment = null, }, new() { @@ -33849,6 +37237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwa", + Comment = null, }, new() { @@ -33859,6 +37248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likwala", + Comment = null, }, new() { @@ -33869,6 +37259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaio", + Comment = null, }, new() { @@ -33879,6 +37270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwerba", + Comment = null, }, new() { @@ -33889,6 +37281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwara'ae", + Comment = null, }, new() { @@ -33899,6 +37292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara Kaba Deme", + Comment = null, }, new() { @@ -33909,6 +37303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kowiai", + Comment = null, }, new() { @@ -33919,6 +37314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awa-Cuaiquer", + Comment = null, }, new() { @@ -33929,6 +37325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwanga", + Comment = null, }, new() { @@ -33939,6 +37336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwak'wala", + Comment = null, }, new() { @@ -33949,6 +37347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kofyar", + Comment = null, }, new() { @@ -33959,6 +37358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwambi", + Comment = null, }, new() { @@ -33969,6 +37369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwangali", + Comment = null, }, new() { @@ -33979,6 +37380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwomtari", + Comment = null, }, new() { @@ -33989,6 +37391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodia", + Comment = null, }, new() { @@ -33999,6 +37402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwer", + Comment = null, }, new() { @@ -34009,6 +37413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwese", + Comment = null, }, new() { @@ -34019,6 +37424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwesten", + Comment = null, }, new() { @@ -34029,6 +37435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwakum", + Comment = null, }, new() { @@ -34039,6 +37446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara Kaba Náà", + Comment = null, }, new() { @@ -34049,6 +37457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwinti", + Comment = null, }, new() { @@ -34059,6 +37468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khirwar", + Comment = null, }, new() { @@ -34069,6 +37479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Salvador Kongo", + Comment = null, }, new() { @@ -34079,6 +37490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kwadi", + Comment = null, }, new() { @@ -34089,6 +37501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kairiru", + Comment = null, }, new() { @@ -34099,6 +37512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krobu", + Comment = null, }, new() { @@ -34109,6 +37523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konso", + Comment = null, }, new() { @@ -34119,6 +37534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brunei", + Comment = null, }, new() { @@ -34129,6 +37545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manumanaw Karen", + Comment = null, }, new() { @@ -34139,6 +37556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karo (Ethiopia)", + Comment = null, }, new() { @@ -34149,6 +37567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keningau Murut", + Comment = null, }, new() { @@ -34159,6 +37578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulfa", + Comment = null, }, new() { @@ -34169,6 +37589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zayein Karen", + Comment = null, }, new() { @@ -34179,6 +37600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Khmer", + Comment = null, }, new() { @@ -34189,6 +37611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanowit-Tanjong Melanau", + Comment = null, }, new() { @@ -34199,6 +37622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kanoé", + Comment = null, }, new() { @@ -34209,6 +37633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wadiyara Koli", + Comment = null, }, new() { @@ -34219,6 +37644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Smärky Kanum", + Comment = null, }, new() { @@ -34229,6 +37655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (Papua New Guinea)", + Comment = null, }, new() { @@ -34239,6 +37666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kangjia", + Comment = null, }, new() { @@ -34249,6 +37677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koiwat", + Comment = null, }, new() { @@ -34259,6 +37688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuvi", + Comment = null, }, new() { @@ -34269,6 +37699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konai", + Comment = null, }, new() { @@ -34279,6 +37710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likuba", + Comment = null, }, new() { @@ -34289,6 +37721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayong", + Comment = null, }, new() { @@ -34299,6 +37732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerewo", + Comment = null, }, new() { @@ -34309,6 +37743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaya", + Comment = null, }, new() { @@ -34319,6 +37754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Butbut Kalinga", + Comment = null, }, new() { @@ -34329,6 +37765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyaka", + Comment = null, }, new() { @@ -34339,6 +37776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karey", + Comment = null, }, new() { @@ -34349,6 +37787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krache", + Comment = null, }, new() { @@ -34359,6 +37798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kouya", + Comment = null, }, new() { @@ -34369,6 +37809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keyagana", + Comment = null, }, new() { @@ -34379,6 +37820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karok", + Comment = null, }, new() { @@ -34389,6 +37831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiput", + Comment = null, }, new() { @@ -34399,6 +37842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karao", + Comment = null, }, new() { @@ -34409,6 +37853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamayo", + Comment = null, }, new() { @@ -34419,6 +37864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalapuya", + Comment = null, }, new() { @@ -34429,6 +37875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpatili", + Comment = null, }, new() { @@ -34439,6 +37886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Binukidnon", + Comment = null, }, new() { @@ -34449,6 +37897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kelon", + Comment = null, }, new() { @@ -34459,6 +37908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kang", + Comment = null, }, new() { @@ -34469,6 +37919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenga", + Comment = null, }, new() { @@ -34479,6 +37930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuruáya", + Comment = null, }, new() { @@ -34489,6 +37941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baram Kayan", + Comment = null, }, new() { @@ -34499,6 +37952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayagar", + Comment = null, }, new() { @@ -34509,6 +37963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Kayah", + Comment = null, }, new() { @@ -34519,6 +37974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayort", + Comment = null, }, new() { @@ -34529,6 +37985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kudmali", + Comment = null, }, new() { @@ -34539,6 +37996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapoisi", + Comment = null, }, new() { @@ -34549,6 +38007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kambaira", + Comment = null, }, new() { @@ -34559,6 +38018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayabí", + Comment = null, }, new() { @@ -34569,6 +38029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Karaboro", + Comment = null, }, new() { @@ -34579,6 +38040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaibobo", + Comment = null, }, new() { @@ -34589,6 +38051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondoukou Kulango", + Comment = null, }, new() { @@ -34599,6 +38062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadai", + Comment = null, }, new() { @@ -34609,6 +38073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosena", + Comment = null, }, new() { @@ -34619,6 +38084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Da'a Kaili", + Comment = null, }, new() { @@ -34629,6 +38095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kikai", + Comment = null, }, new() { @@ -34639,6 +38106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kelabit", + Comment = null, }, new() { @@ -34649,6 +38117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kazukuru", + Comment = null, }, new() { @@ -34659,6 +38128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayeli", + Comment = null, }, new() { @@ -34669,6 +38139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kais", + Comment = null, }, new() { @@ -34679,6 +38150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokola", + Comment = null, }, new() { @@ -34689,6 +38161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaningi", + Comment = null, }, new() { @@ -34699,6 +38172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaidipang", + Comment = null, }, new() { @@ -34709,6 +38183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaike", + Comment = null, }, new() { @@ -34719,6 +38194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karang", + Comment = null, }, new() { @@ -34729,6 +38205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sugut Dusun", + Comment = null, }, new() { @@ -34739,6 +38216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayupulau", + Comment = null, }, new() { @@ -34749,6 +38227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komyandaret", + Comment = null, }, new() { @@ -34759,6 +38238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karirí-Xocó", + Comment = null, }, new() { @@ -34769,6 +38249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamarian", + Comment = null, }, new() { @@ -34779,6 +38260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kango (Tshopo District)", + Comment = null, }, new() { @@ -34789,6 +38271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalabra", + Comment = null, }, new() { @@ -34799,6 +38282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Subanen", + Comment = null, }, new() { @@ -34809,6 +38293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Linear A", + Comment = null, }, new() { @@ -34819,6 +38304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lacandon", + Comment = null, }, new() { @@ -34829,6 +38315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ladino", + Comment = null, }, new() { @@ -34839,6 +38326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pattani", + Comment = null, }, new() { @@ -34849,6 +38337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lafofa", + Comment = null, }, new() { @@ -34859,6 +38348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rangi", + Comment = null, }, new() { @@ -34869,6 +38359,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Lahnda", + Comment = null, }, new() { @@ -34879,6 +38370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambya", + Comment = null, }, new() { @@ -34889,6 +38381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lango (Uganda)", + Comment = null, }, new() { @@ -34899,6 +38392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lalia", + Comment = null, }, new() { @@ -34909,6 +38403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamba", + Comment = null, }, new() { @@ -34919,6 +38414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laru", + Comment = null, }, new() { @@ -34929,6 +38425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lao", + Comment = null, }, new() { @@ -34939,6 +38436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laka (Chad)", + Comment = null, }, new() { @@ -34949,6 +38447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qabiao", + Comment = null, }, new() { @@ -34959,6 +38458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larteh", + Comment = null, }, new() { @@ -34969,6 +38469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lama (Togo)", + Comment = null, }, new() { @@ -34979,6 +38480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Latin", + Comment = null, }, new() { @@ -34989,6 +38491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laba", + Comment = null, }, new() { @@ -34999,6 +38502,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Latvian", + Comment = null, }, new() { @@ -35009,6 +38513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lauje", + Comment = null, }, new() { @@ -35019,6 +38524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiwa", + Comment = null, }, new() { @@ -35029,6 +38535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lama Bai", + Comment = null, }, new() { @@ -35039,6 +38546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aribwatsa", + Comment = null, }, new() { @@ -35049,6 +38557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Label", + Comment = null, }, new() { @@ -35059,6 +38568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakkia", + Comment = null, }, new() { @@ -35069,6 +38579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lak", + Comment = null, }, new() { @@ -35079,6 +38590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tinani", + Comment = null, }, new() { @@ -35089,6 +38601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laopang", + Comment = null, }, new() { @@ -35099,6 +38612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "La'bi", + Comment = null, }, new() { @@ -35109,6 +38623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ladakhi", + Comment = null, }, new() { @@ -35119,6 +38634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Bontok", + Comment = null, }, new() { @@ -35129,6 +38645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libon Bikol", + Comment = null, }, new() { @@ -35139,6 +38656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lodhi", + Comment = null, }, new() { @@ -35149,6 +38667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rmeet", + Comment = null, }, new() { @@ -35159,6 +38678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laven", + Comment = null, }, new() { @@ -35169,6 +38689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wampar", + Comment = null, }, new() { @@ -35179,6 +38700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lohorung", + Comment = null, }, new() { @@ -35189,6 +38711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libyan Sign Language", + Comment = null, }, new() { @@ -35199,6 +38722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lachi", + Comment = null, }, new() { @@ -35209,6 +38733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labu", + Comment = null, }, new() { @@ -35219,6 +38744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lavatbura-Lamusong", + Comment = null, }, new() { @@ -35229,6 +38755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tolaki", + Comment = null, }, new() { @@ -35239,6 +38766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lawangan", + Comment = null, }, new() { @@ -35249,6 +38777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lamalama", + Comment = null, }, new() { @@ -35259,6 +38788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lardil", + Comment = null, }, new() { @@ -35269,6 +38799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Legenyem", + Comment = null, }, new() { @@ -35279,6 +38810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lola", + Comment = null, }, new() { @@ -35289,6 +38821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loncong", + Comment = null, }, new() { @@ -35299,6 +38832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lubu", + Comment = null, }, new() { @@ -35309,6 +38843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luchazi", + Comment = null, }, new() { @@ -35319,6 +38854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lisela", + Comment = null, }, new() { @@ -35329,6 +38865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tungag", + Comment = null, }, new() { @@ -35339,6 +38876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Lawa", + Comment = null, }, new() { @@ -35349,6 +38887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luhu", + Comment = null, }, new() { @@ -35359,6 +38898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lisabata-Nuniali", + Comment = null, }, new() { @@ -35369,6 +38909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kla-Dan", + Comment = null, }, new() { @@ -35379,6 +38920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dũya", + Comment = null, }, new() { @@ -35389,6 +38931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luri", + Comment = null, }, new() { @@ -35399,6 +38942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenyima", + Comment = null, }, new() { @@ -35409,6 +38953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamja-Dengsa-Tola", + Comment = null, }, new() { @@ -35419,6 +38964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laari", + Comment = null, }, new() { @@ -35429,6 +38975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemoro", + Comment = null, }, new() { @@ -35439,6 +38986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leelau", + Comment = null, }, new() { @@ -35449,6 +38997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaan", + Comment = null, }, new() { @@ -35459,6 +39008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Landoma", + Comment = null, }, new() { @@ -35469,6 +39019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Láadan", + Comment = null, }, new() { @@ -35479,6 +39030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loo", + Comment = null, }, new() { @@ -35489,6 +39041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tso", + Comment = null, }, new() { @@ -35499,6 +39052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lufu", + Comment = null, }, new() { @@ -35509,6 +39063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lega-Shabunda", + Comment = null, }, new() { @@ -35519,6 +39074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lala-Bisa", + Comment = null, }, new() { @@ -35529,6 +39085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leco", + Comment = null, }, new() { @@ -35539,6 +39096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lendu", + Comment = null, }, new() { @@ -35549,6 +39107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lyélé", + Comment = null, }, new() { @@ -35559,6 +39118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lelemi", + Comment = null, }, new() { @@ -35569,6 +39129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenje", + Comment = null, }, new() { @@ -35579,6 +39140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemio", + Comment = null, }, new() { @@ -35589,6 +39151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lengola", + Comment = null, }, new() { @@ -35599,6 +39162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leipon", + Comment = null, }, new() { @@ -35609,6 +39173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -35619,6 +39184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomaande", + Comment = null, }, new() { @@ -35629,6 +39195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lenca", + Comment = null, }, new() { @@ -35639,6 +39206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leti (Cameroon)", + Comment = null, }, new() { @@ -35649,6 +39217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lepcha", + Comment = null, }, new() { @@ -35659,6 +39228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lembena", + Comment = null, }, new() { @@ -35669,6 +39239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenkau", + Comment = null, }, new() { @@ -35679,6 +39250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lese", + Comment = null, }, new() { @@ -35689,6 +39261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lesing-Gelimi", + Comment = null, }, new() { @@ -35699,6 +39272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara (Papua New Guinea)", + Comment = null, }, new() { @@ -35709,6 +39283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamma", + Comment = null, }, new() { @@ -35719,6 +39294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ledo Kaili", + Comment = null, }, new() { @@ -35729,6 +39305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luang", + Comment = null, }, new() { @@ -35739,6 +39316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemolang", + Comment = null, }, new() { @@ -35749,6 +39327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lezghian", + Comment = null, }, new() { @@ -35759,6 +39338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lefa", + Comment = null, }, new() { @@ -35769,6 +39349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buu (Cameroon)", + Comment = null, }, new() { @@ -35779,6 +39360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Lingua Franca Nova", + Comment = null, }, new() { @@ -35789,6 +39371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lungga", + Comment = null, }, new() { @@ -35799,6 +39382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laghu", + Comment = null, }, new() { @@ -35809,6 +39393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lugbara", + Comment = null, }, new() { @@ -35819,6 +39404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laghuu", + Comment = null, }, new() { @@ -35829,6 +39415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lengilu", + Comment = null, }, new() { @@ -35839,6 +39426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lingarak", + Comment = null, }, new() { @@ -35849,6 +39437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wala", + Comment = null, }, new() { @@ -35859,6 +39448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lega-Mwenga", + Comment = null, }, new() { @@ -35869,6 +39459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "T'apo", + Comment = null, }, new() { @@ -35879,6 +39470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lango (South Sudan)", + Comment = null, }, new() { @@ -35889,6 +39481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logba", + Comment = null, }, new() { @@ -35899,6 +39492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lengo", + Comment = null, }, new() { @@ -35909,6 +39503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guinea-Bissau Sign Language", + Comment = null, }, new() { @@ -35919,6 +39514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahi", + Comment = null, }, new() { @@ -35929,6 +39525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Longgu", + Comment = null, }, new() { @@ -35939,6 +39536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ligenza", + Comment = null, }, new() { @@ -35949,6 +39547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laha (Viet Nam)", + Comment = null, }, new() { @@ -35959,6 +39558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laha (Indonesia)", + Comment = null, }, new() { @@ -35969,6 +39569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahu Shi", + Comment = null, }, new() { @@ -35979,6 +39580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahul Lohar", + Comment = null, }, new() { @@ -35989,6 +39591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lhomi", + Comment = null, }, new() { @@ -35999,6 +39602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahanan", + Comment = null, }, new() { @@ -36009,6 +39613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lhokpu", + Comment = null, }, new() { @@ -36019,6 +39624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mlahsö", + Comment = null, }, new() { @@ -36029,6 +39635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lo-Toga", + Comment = null, }, new() { @@ -36039,6 +39646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahu", + Comment = null, }, new() { @@ -36049,6 +39657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West-Central Limba", + Comment = null, }, new() { @@ -36059,6 +39668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likum", + Comment = null, }, new() { @@ -36069,6 +39679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hlai", + Comment = null, }, new() { @@ -36079,6 +39690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyindrou", + Comment = null, }, new() { @@ -36089,6 +39701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likila", + Comment = null, }, new() { @@ -36099,6 +39712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limbu", + Comment = null, }, new() { @@ -36109,6 +39723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ligbi", + Comment = null, }, new() { @@ -36119,6 +39734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lihir", + Comment = null, }, new() { @@ -36129,6 +39745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ligurian", + Comment = null, }, new() { @@ -36139,6 +39756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lika", + Comment = null, }, new() { @@ -36149,6 +39767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lillooet", + Comment = null, }, new() { @@ -36159,6 +39778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limburgan", + Comment = null, }, new() { @@ -36169,6 +39789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lingala", + Comment = null, }, new() { @@ -36179,6 +39800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liki", + Comment = null, }, new() { @@ -36189,6 +39811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekpele", + Comment = null, }, new() { @@ -36199,6 +39822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libido", + Comment = null, }, new() { @@ -36209,6 +39833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liberian English", + Comment = null, }, new() { @@ -36219,6 +39844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lisu", + Comment = null, }, new() { @@ -36229,6 +39855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lithuanian", + Comment = null, }, new() { @@ -36239,6 +39866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logorik", + Comment = null, }, new() { @@ -36249,6 +39877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liv", + Comment = null, }, new() { @@ -36259,6 +39888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Col", + Comment = null, }, new() { @@ -36269,6 +39899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liabuku", + Comment = null, }, new() { @@ -36279,6 +39910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Bambari", + Comment = null, }, new() { @@ -36289,6 +39921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libinza", + Comment = null, }, new() { @@ -36299,6 +39932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Golpa", + Comment = null, }, new() { @@ -36309,6 +39943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rampi", + Comment = null, }, new() { @@ -36319,6 +39954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laiyolo", + Comment = null, }, new() { @@ -36329,6 +39965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Li'o", + Comment = null, }, new() { @@ -36339,6 +39976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lampung Api", + Comment = null, }, new() { @@ -36349,6 +39987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yirandali", + Comment = null, }, new() { @@ -36359,6 +39998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yuru", + Comment = null, }, new() { @@ -36369,6 +40009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakalei", + Comment = null, }, new() { @@ -36379,6 +40020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabras", + Comment = null, }, new() { @@ -36389,6 +40031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kucong", + Comment = null, }, new() { @@ -36399,6 +40042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakondê", + Comment = null, }, new() { @@ -36409,6 +40053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenyi", + Comment = null, }, new() { @@ -36419,6 +40064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakha", + Comment = null, }, new() { @@ -36429,6 +40075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laki", + Comment = null, }, new() { @@ -36439,6 +40086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Remun", + Comment = null, }, new() { @@ -36449,6 +40097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laeko-Libuat", + Comment = null, }, new() { @@ -36459,6 +40108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kalaamaya", + Comment = null, }, new() { @@ -36469,6 +40119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakon", + Comment = null, }, new() { @@ -36479,6 +40130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khayo", + Comment = null, }, new() { @@ -36489,6 +40141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Päri", + Comment = null, }, new() { @@ -36499,6 +40152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisa", + Comment = null, }, new() { @@ -36509,6 +40163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakota", + Comment = null, }, new() { @@ -36519,6 +40174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kungkari", + Comment = null, }, new() { @@ -36529,6 +40185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lokoya", + Comment = null, }, new() { @@ -36539,6 +40196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lala-Roba", + Comment = null, }, new() { @@ -36549,6 +40207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lolo", + Comment = null, }, new() { @@ -36559,6 +40218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Guinea)", + Comment = null, }, new() { @@ -36569,6 +40229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ladin", + Comment = null, }, new() { @@ -36579,6 +40240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Papua New Guinea)", + Comment = null, }, new() { @@ -36589,6 +40251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hermit", + Comment = null, }, new() { @@ -36599,6 +40262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lole", + Comment = null, }, new() { @@ -36609,6 +40273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamu", + Comment = null, }, new() { @@ -36619,6 +40284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Laali", + Comment = null, }, new() { @@ -36629,6 +40295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ladji Ladji", + Comment = null, }, new() { @@ -36639,6 +40306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lelak", + Comment = null, }, new() { @@ -36649,6 +40317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lilau", + Comment = null, }, new() { @@ -36659,6 +40328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lasalimu", + Comment = null, }, new() { @@ -36669,6 +40339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Chad)", + Comment = null, }, new() { @@ -36679,6 +40350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Efate", + Comment = null, }, new() { @@ -36689,6 +40361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lolak", + Comment = null, }, new() { @@ -36699,6 +40372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lithuanian Sign Language", + Comment = null, }, new() { @@ -36709,6 +40383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lau", + Comment = null, }, new() { @@ -36719,6 +40394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lauan", + Comment = null, }, new() { @@ -36729,6 +40405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Limba", + Comment = null, }, new() { @@ -36739,6 +40416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merei", + Comment = null, }, new() { @@ -36749,6 +40427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Limilngan", + Comment = null, }, new() { @@ -36759,6 +40438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lumun", + Comment = null, }, new() { @@ -36769,6 +40449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pévé", + Comment = null, }, new() { @@ -36779,6 +40460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Lembata", + Comment = null, }, new() { @@ -36789,6 +40471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamogai", + Comment = null, }, new() { @@ -36799,6 +40482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambichhong", + Comment = null, }, new() { @@ -36809,6 +40493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lombi", + Comment = null, }, new() { @@ -36819,6 +40504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Lembata", + Comment = null, }, new() { @@ -36829,6 +40515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamkang", + Comment = null, }, new() { @@ -36839,6 +40526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hano", + Comment = null, }, new() { @@ -36849,6 +40537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambadi", + Comment = null, }, new() { @@ -36859,6 +40548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lombard", + Comment = null, }, new() { @@ -36869,6 +40559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limbum", + Comment = null, }, new() { @@ -36879,6 +40570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamatuka", + Comment = null, }, new() { @@ -36889,6 +40581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamalera", + Comment = null, }, new() { @@ -36899,6 +40592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamenu", + Comment = null, }, new() { @@ -36909,6 +40603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lomaiviti", + Comment = null, }, new() { @@ -36919,6 +40614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lake Miwok", + Comment = null, }, new() { @@ -36929,6 +40625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laimbue", + Comment = null, }, new() { @@ -36939,6 +40636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamboya", + Comment = null, }, new() { @@ -36949,6 +40647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langbashe", + Comment = null, }, new() { @@ -36959,6 +40658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbalanhu", + Comment = null, }, new() { @@ -36969,6 +40669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lundayeh", + Comment = null, }, new() { @@ -36979,6 +40680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Langobardic", + Comment = null, }, new() { @@ -36989,6 +40691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lanoh", + Comment = null, }, new() { @@ -36999,6 +40702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daantanai'", + Comment = null, }, new() { @@ -37009,6 +40713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Leningitij", + Comment = null, }, new() { @@ -37019,6 +40724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Central Banda", + Comment = null, }, new() { @@ -37029,6 +40735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langam", + Comment = null, }, new() { @@ -37039,6 +40746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lorediakarkar", + Comment = null, }, new() { @@ -37049,6 +40757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamnso'", + Comment = null, }, new() { @@ -37059,6 +40768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Longuda", + Comment = null, }, new() { @@ -37069,6 +40779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lanima", + Comment = null, }, new() { @@ -37079,6 +40790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lonzo", + Comment = null, }, new() { @@ -37089,6 +40801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loloda", + Comment = null, }, new() { @@ -37099,6 +40812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lobi", + Comment = null, }, new() { @@ -37109,6 +40823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inonhan", + Comment = null, }, new() { @@ -37119,6 +40834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saluan", + Comment = null, }, new() { @@ -37129,6 +40845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logol", + Comment = null, }, new() { @@ -37139,6 +40856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logo", + Comment = null, }, new() { @@ -37149,6 +40867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laarim", + Comment = null, }, new() { @@ -37159,6 +40878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loma (Côte d'Ivoire)", + Comment = null, }, new() { @@ -37169,6 +40889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lou", + Comment = null, }, new() { @@ -37179,6 +40900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loko", + Comment = null, }, new() { @@ -37189,6 +40911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongo", + Comment = null, }, new() { @@ -37199,6 +40922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loma (Liberia)", + Comment = null, }, new() { @@ -37209,6 +40933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malawi Lomwe", + Comment = null, }, new() { @@ -37219,6 +40944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lombo", + Comment = null, }, new() { @@ -37229,6 +40955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lopa", + Comment = null, }, new() { @@ -37239,6 +40966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lobala", + Comment = null, }, new() { @@ -37249,6 +40977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Téén", + Comment = null, }, new() { @@ -37259,6 +40988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loniu", + Comment = null, }, new() { @@ -37269,6 +40999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Otuho", + Comment = null, }, new() { @@ -37279,6 +41010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Louisiana Creole", + Comment = null, }, new() { @@ -37289,6 +41021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lopi", + Comment = null, }, new() { @@ -37299,6 +41032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tampias Lobu", + Comment = null, }, new() { @@ -37309,6 +41043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loun", + Comment = null, }, new() { @@ -37319,6 +41054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loke", + Comment = null, }, new() { @@ -37329,6 +41065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lozi", + Comment = null, }, new() { @@ -37339,6 +41076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lelepa", + Comment = null, }, new() { @@ -37349,6 +41087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lepki", + Comment = null, }, new() { @@ -37359,6 +41098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Long Phuri Naga", + Comment = null, }, new() { @@ -37369,6 +41109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lipo", + Comment = null, }, new() { @@ -37379,6 +41120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lopit", + Comment = null, }, new() { @@ -37389,6 +41131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logir", + Comment = null, }, new() { @@ -37399,6 +41142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rara Bakati'", + Comment = null, }, new() { @@ -37409,6 +41153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Luri", + Comment = null, }, new() { @@ -37419,6 +41164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Laurentian", + Comment = null, }, new() { @@ -37429,6 +41175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Laragia", + Comment = null, }, new() { @@ -37439,6 +41186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marachi", + Comment = null, }, new() { @@ -37449,6 +41197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loarki", + Comment = null, }, new() { @@ -37459,6 +41208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lari", + Comment = null, }, new() { @@ -37469,6 +41219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marama", + Comment = null, }, new() { @@ -37479,6 +41230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lorang", + Comment = null, }, new() { @@ -37489,6 +41241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laro", + Comment = null, }, new() { @@ -37499,6 +41252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Yamphu", + Comment = null, }, new() { @@ -37509,6 +41263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larantuka Malay", + Comment = null, }, new() { @@ -37519,6 +41274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larevat", + Comment = null, }, new() { @@ -37529,6 +41285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemerig", + Comment = null, }, new() { @@ -37539,6 +41296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lasgerdi", + Comment = null, }, new() { @@ -37549,6 +41307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burundian Sign Language", + Comment = null, }, new() { @@ -37559,6 +41318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Albarradas Sign Language", + Comment = null, }, new() { @@ -37569,6 +41329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lishana Deni", + Comment = null, }, new() { @@ -37579,6 +41340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lusengo", + Comment = null, }, new() { @@ -37589,6 +41351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lish", + Comment = null, }, new() { @@ -37599,6 +41362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lashi", + Comment = null, }, new() { @@ -37609,6 +41373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latvian Sign Language", + Comment = null, }, new() { @@ -37619,6 +41384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saamia", + Comment = null, }, new() { @@ -37629,6 +41395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tibetan Sign Language", + Comment = null, }, new() { @@ -37639,6 +41406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laos Sign Language", + Comment = null, }, new() { @@ -37649,6 +41417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panamanian Sign Language", + Comment = null, }, new() { @@ -37659,6 +41428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruop", + Comment = null, }, new() { @@ -37669,6 +41439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lasi", + Comment = null, }, new() { @@ -37679,6 +41450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trinidad and Tobago Sign Language", + Comment = null, }, new() { @@ -37689,6 +41461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sivia Sign Language", + Comment = null, }, new() { @@ -37699,6 +41472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seychelles Sign Language", + Comment = null, }, new() { @@ -37709,6 +41483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mauritian Sign Language", + Comment = null, }, new() { @@ -37719,6 +41494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Late Middle Chinese", + Comment = null, }, new() { @@ -37729,6 +41505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latgalian", + Comment = null, }, new() { @@ -37739,6 +41516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thur", + Comment = null, }, new() { @@ -37749,6 +41527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leti (Indonesia)", + Comment = null, }, new() { @@ -37759,6 +41538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latundê", + Comment = null, }, new() { @@ -37769,6 +41549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsotso", + Comment = null, }, new() { @@ -37779,6 +41560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tachoni", + Comment = null, }, new() { @@ -37789,6 +41571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latu", + Comment = null, }, new() { @@ -37799,6 +41582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luxembourgish", + Comment = null, }, new() { @@ -37809,6 +41593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luba-Lulua", + Comment = null, }, new() { @@ -37819,6 +41604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luba-Katanga", + Comment = null, }, new() { @@ -37829,6 +41615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aringa", + Comment = null, }, new() { @@ -37839,6 +41626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ludian", + Comment = null, }, new() { @@ -37849,6 +41637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luvale", + Comment = null, }, new() { @@ -37859,6 +41648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laua", + Comment = null, }, new() { @@ -37869,6 +41659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganda", + Comment = null, }, new() { @@ -37879,6 +41670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leizhou Chinese", + Comment = null, }, new() { @@ -37889,6 +41681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Luiseño", + Comment = null, }, new() { @@ -37899,6 +41692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luna", + Comment = null, }, new() { @@ -37909,6 +41703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lunanakha", + Comment = null, }, new() { @@ -37919,6 +41714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olu'bo", + Comment = null, }, new() { @@ -37929,6 +41725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luimbi", + Comment = null, }, new() { @@ -37939,6 +41736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lunda", + Comment = null, }, new() { @@ -37949,6 +41747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luo (Kenya and Tanzania)", + Comment = null, }, new() { @@ -37959,6 +41758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lumbu", + Comment = null, }, new() { @@ -37969,6 +41769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lucumi", + Comment = null, }, new() { @@ -37979,6 +41780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laura", + Comment = null, }, new() { @@ -37989,6 +41791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lushai", + Comment = null, }, new() { @@ -37999,6 +41802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lushootseed", + Comment = null, }, new() { @@ -38009,6 +41813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lumba-Yakkha", + Comment = null, }, new() { @@ -38019,6 +41824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luwati", + Comment = null, }, new() { @@ -38029,6 +41835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luo (Cameroon)", + Comment = null, }, new() { @@ -38039,6 +41846,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Luyia", + Comment = null, }, new() { @@ -38049,6 +41857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Luri", + Comment = null, }, new() { @@ -38059,6 +41868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maku'a", + Comment = null, }, new() { @@ -38069,6 +41879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lavi", + Comment = null, }, new() { @@ -38079,6 +41890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lavukaleve", + Comment = null, }, new() { @@ -38089,6 +41901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lwel", + Comment = null, }, new() { @@ -38099,6 +41912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Latvian", + Comment = null, }, new() { @@ -38109,6 +41923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Levuka", + Comment = null, }, new() { @@ -38119,6 +41934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lwalu", + Comment = null, }, new() { @@ -38129,6 +41945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lewo Eleng", + Comment = null, }, new() { @@ -38139,6 +41956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanga", + Comment = null, }, new() { @@ -38149,6 +41967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "White Lachi", + Comment = null, }, new() { @@ -38159,6 +41978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Lawa", + Comment = null, }, new() { @@ -38169,6 +41989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laomian", + Comment = null, }, new() { @@ -38179,6 +42000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luwo", + Comment = null, }, new() { @@ -38189,6 +42011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malawian Sign Language", + Comment = null, }, new() { @@ -38199,6 +42022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lewotobi", + Comment = null, }, new() { @@ -38209,6 +42033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lawu", + Comment = null, }, new() { @@ -38219,6 +42044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lewo", + Comment = null, }, new() { @@ -38229,6 +42055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakurumau", + Comment = null, }, new() { @@ -38239,6 +42066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Layakha", + Comment = null, }, new() { @@ -38249,6 +42077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lyngngam", + Comment = null, }, new() { @@ -38259,6 +42088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luyana", + Comment = null, }, new() { @@ -38269,6 +42099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Literary Chinese", + Comment = null, }, new() { @@ -38279,6 +42110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Litzlitz", + Comment = null, }, new() { @@ -38289,6 +42121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leinong Naga", + Comment = null, }, new() { @@ -38299,6 +42132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laz", + Comment = null, }, new() { @@ -38309,6 +42143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Jerónimo Tecóatl Mazatec", + Comment = null, }, new() { @@ -38319,6 +42154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yutanduchi Mixtec", + Comment = null, }, new() { @@ -38329,6 +42165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madurese", + Comment = null, }, new() { @@ -38339,6 +42176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo-Rukul", + Comment = null, }, new() { @@ -38349,6 +42187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mafa", + Comment = null, }, new() { @@ -38359,6 +42198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magahi", + Comment = null, }, new() { @@ -38369,6 +42209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marshallese", + Comment = null, }, new() { @@ -38379,6 +42220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maithili", + Comment = null, }, new() { @@ -38389,6 +42231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jalapa De Díaz Mazatec", + Comment = null, }, new() { @@ -38399,6 +42242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makasar", + Comment = null, }, new() { @@ -38409,6 +42253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malayalam", + Comment = null, }, new() { @@ -38419,6 +42264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mam", + Comment = null, }, new() { @@ -38429,6 +42275,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Mandingo", + Comment = null, }, new() { @@ -38439,6 +42286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiquihuitlán Mazatec", + Comment = null, }, new() { @@ -38449,6 +42297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marathi", + Comment = null, }, new() { @@ -38459,6 +42308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masai", + Comment = null, }, new() { @@ -38469,6 +42319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Francisco Matlatzinca", + Comment = null, }, new() { @@ -38479,6 +42330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huautla Mazatec", + Comment = null, }, new() { @@ -38489,6 +42341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sateré-Mawé", + Comment = null, }, new() { @@ -38499,6 +42352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mampruli", + Comment = null, }, new() { @@ -38509,6 +42363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Moluccan Malay", + Comment = null, }, new() { @@ -38519,6 +42374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Mazahua", + Comment = null, }, new() { @@ -38529,6 +42385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Higaonon", + Comment = null, }, new() { @@ -38539,6 +42396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Bukidnon Manobo", + Comment = null, }, new() { @@ -38549,6 +42407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macushi", + Comment = null, }, new() { @@ -38559,6 +42418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibabawon Manobo", + Comment = null, }, new() { @@ -38569,6 +42429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Molale", + Comment = null, }, new() { @@ -38579,6 +42440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baba Malay", + Comment = null, }, new() { @@ -38589,6 +42451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangseng", + Comment = null, }, new() { @@ -38599,6 +42462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilianen Manobo", + Comment = null, }, new() { @@ -38609,6 +42473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nadëb", + Comment = null, }, new() { @@ -38619,6 +42484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malol", + Comment = null, }, new() { @@ -38629,6 +42495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maxakalí", + Comment = null, }, new() { @@ -38639,6 +42506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ombamba", + Comment = null, }, new() { @@ -38649,6 +42517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macaguán", + Comment = null, }, new() { @@ -38659,6 +42528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbo (Cameroon)", + Comment = null, }, new() { @@ -38669,6 +42539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malayo", + Comment = null, }, new() { @@ -38679,6 +42550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maisin", + Comment = null, }, new() { @@ -38689,6 +42561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukak Makú", + Comment = null, }, new() { @@ -38699,6 +42572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarangani Manobo", + Comment = null, }, new() { @@ -38709,6 +42583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matigsalug Manobo", + Comment = null, }, new() { @@ -38719,6 +42594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbula-Bwazza", + Comment = null, }, new() { @@ -38729,6 +42605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbulungish", + Comment = null, }, new() { @@ -38739,6 +42616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maring", + Comment = null, }, new() { @@ -38749,6 +42627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mari (East Sepik Province)", + Comment = null, }, new() { @@ -38759,6 +42638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Memoni", + Comment = null, }, new() { @@ -38769,6 +42649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amoltepec Mixtec", + Comment = null, }, new() { @@ -38779,6 +42660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maca", + Comment = null, }, new() { @@ -38789,6 +42671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machiguenga", + Comment = null, }, new() { @@ -38799,6 +42682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bitur", + Comment = null, }, new() { @@ -38809,6 +42693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sharanahua", + Comment = null, }, new() { @@ -38819,6 +42704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itundujia Mixtec", + Comment = null, }, new() { @@ -38829,6 +42715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matsés", + Comment = null, }, new() { @@ -38839,6 +42726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapoyo", + Comment = null, }, new() { @@ -38849,6 +42737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maquiritari", + Comment = null, }, new() { @@ -38859,6 +42748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mese", + Comment = null, }, new() { @@ -38869,6 +42759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mvanip", + Comment = null, }, new() { @@ -38879,6 +42770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbunda", + Comment = null, }, new() { @@ -38889,6 +42781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Macaguaje", + Comment = null, }, new() { @@ -38899,6 +42792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaccan Creole Portuguese", + Comment = null, }, new() { @@ -38909,6 +42803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masana", + Comment = null, }, new() { @@ -38919,6 +42814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatlán Mixe", + Comment = null, }, new() { @@ -38929,6 +42825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makaa", + Comment = null, }, new() { @@ -38939,6 +42836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ese", + Comment = null, }, new() { @@ -38949,6 +42847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Menya", + Comment = null, }, new() { @@ -38959,6 +42858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mambai", + Comment = null, }, new() { @@ -38969,6 +42869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mengisa", + Comment = null, }, new() { @@ -38979,6 +42880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cameroon Mambila", + Comment = null, }, new() { @@ -38989,6 +42891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minanibai", + Comment = null, }, new() { @@ -38999,6 +42902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawa (Chad)", + Comment = null, }, new() { @@ -39009,6 +42913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpiemo", + Comment = null, }, new() { @@ -39019,6 +42924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Watut", + Comment = null, }, new() { @@ -39029,6 +42935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawan", + Comment = null, }, new() { @@ -39039,6 +42946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mada (Nigeria)", + Comment = null, }, new() { @@ -39049,6 +42957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morigi", + Comment = null, }, new() { @@ -39059,6 +42968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Male (Papua New Guinea)", + Comment = null, }, new() { @@ -39069,6 +42979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbum", + Comment = null, }, new() { @@ -39079,6 +42990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maba (Chad)", + Comment = null, }, new() { @@ -39089,6 +43001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moksha", + Comment = null, }, new() { @@ -39099,6 +43012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Massalat", + Comment = null, }, new() { @@ -39109,6 +43023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maguindanaon", + Comment = null, }, new() { @@ -39119,6 +43034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamvu", + Comment = null, }, new() { @@ -39129,6 +43045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangbetu", + Comment = null, }, new() { @@ -39139,6 +43056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangbutu", + Comment = null, }, new() { @@ -39149,6 +43067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maltese Sign Language", + Comment = null, }, new() { @@ -39159,6 +43078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayogo", + Comment = null, }, new() { @@ -39169,6 +43089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbati", + Comment = null, }, new() { @@ -39179,6 +43100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbala", + Comment = null, }, new() { @@ -39189,6 +43111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbole", + Comment = null, }, new() { @@ -39199,6 +43122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandar", + Comment = null, }, new() { @@ -39209,6 +43133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maria (Papua New Guinea)", + Comment = null, }, new() { @@ -39219,6 +43144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbere", + Comment = null, }, new() { @@ -39229,6 +43155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mboko", + Comment = null, }, new() { @@ -39239,6 +43166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Lucía Monteverde Mixtec", + Comment = null, }, new() { @@ -39249,6 +43177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbosi", + Comment = null, }, new() { @@ -39259,6 +43188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dizin", + Comment = null, }, new() { @@ -39269,6 +43199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Male (Ethiopia)", + Comment = null, }, new() { @@ -39279,6 +43210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suruí Do Pará", + Comment = null, }, new() { @@ -39289,6 +43221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Menka", + Comment = null, }, new() { @@ -39299,6 +43232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikobi", + Comment = null, }, new() { @@ -39309,6 +43243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marra", + Comment = null, }, new() { @@ -39319,6 +43254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Melpa", + Comment = null, }, new() { @@ -39329,6 +43265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mengen", + Comment = null, }, new() { @@ -39339,6 +43276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Megam", + Comment = null, }, new() { @@ -39349,6 +43287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Tlaxiaco Mixtec", + Comment = null, }, new() { @@ -39359,6 +43298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Midob", + Comment = null, }, new() { @@ -39369,6 +43309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meyah", + Comment = null, }, new() { @@ -39379,6 +43320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mekeo", + Comment = null, }, new() { @@ -39389,6 +43331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Melanau", + Comment = null, }, new() { @@ -39399,6 +43342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mangala", + Comment = null, }, new() { @@ -39409,6 +43353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mende (Sierra Leone)", + Comment = null, }, new() { @@ -39419,6 +43364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kedah Malay", + Comment = null, }, new() { @@ -39429,6 +43375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miriwoong", + Comment = null, }, new() { @@ -39439,6 +43386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merey", + Comment = null, }, new() { @@ -39449,6 +43397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meru", + Comment = null, }, new() { @@ -39459,6 +43408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masmaje", + Comment = null, }, new() { @@ -39469,6 +43419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mato", + Comment = null, }, new() { @@ -39479,6 +43430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Motu", + Comment = null, }, new() { @@ -39489,6 +43441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mano", + Comment = null, }, new() { @@ -39499,6 +43452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maaka", + Comment = null, }, new() { @@ -39509,6 +43463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hassaniyya", + Comment = null, }, new() { @@ -39519,6 +43474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Menominee", + Comment = null, }, new() { @@ -39529,6 +43485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pattani Malay", + Comment = null, }, new() { @@ -39539,6 +43496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangka", + Comment = null, }, new() { @@ -39549,6 +43507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mba", + Comment = null, }, new() { @@ -39559,6 +43518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mendankwe-Nkwen", + Comment = null, }, new() { @@ -39569,6 +43529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morisyen", + Comment = null, }, new() { @@ -39579,6 +43540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naki", + Comment = null, }, new() { @@ -39589,6 +43551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mogofin", + Comment = null, }, new() { @@ -39599,6 +43562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matal", + Comment = null, }, new() { @@ -39609,6 +43573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wandala", + Comment = null, }, new() { @@ -39619,6 +43584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mefele", + Comment = null, }, new() { @@ -39629,6 +43595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Mofu", + Comment = null, }, new() { @@ -39639,6 +43606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Putai", + Comment = null, }, new() { @@ -39649,6 +43617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marghi South", + Comment = null, }, new() { @@ -39659,6 +43628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cross River Mbembe", + Comment = null, }, new() { @@ -39669,6 +43639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbe", + Comment = null, }, new() { @@ -39679,6 +43650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makassar Malay", + Comment = null, }, new() { @@ -39689,6 +43661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moba", + Comment = null, }, new() { @@ -39699,6 +43672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marrithiyel", + Comment = null, }, new() { @@ -39709,6 +43683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mexican Sign Language", + Comment = null, }, new() { @@ -39719,6 +43694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokerang", + Comment = null, }, new() { @@ -39729,6 +43705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbwela", + Comment = null, }, new() { @@ -39739,6 +43716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandjak", + Comment = null, }, new() { @@ -39749,6 +43727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mulaha", + Comment = null, }, new() { @@ -39759,6 +43738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Melo", + Comment = null, }, new() { @@ -39769,6 +43749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayo", + Comment = null, }, new() { @@ -39779,6 +43760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabaan", + Comment = null, }, new() { @@ -39789,6 +43771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Irish (900-1200)", + Comment = null, }, new() { @@ -39799,6 +43782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mararit", + Comment = null, }, new() { @@ -39809,6 +43793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morokodo", + Comment = null, }, new() { @@ -39819,6 +43804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moru", + Comment = null, }, new() { @@ -39829,6 +43815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mango", + Comment = null, }, new() { @@ -39839,6 +43826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maklew", + Comment = null, }, new() { @@ -39849,6 +43837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpumpong", + Comment = null, }, new() { @@ -39859,6 +43848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Meetto", + Comment = null, }, new() { @@ -39869,6 +43859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lijili", + Comment = null, }, new() { @@ -39879,6 +43870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abureni", + Comment = null, }, new() { @@ -39889,6 +43881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawes", + Comment = null, }, new() { @@ -39899,6 +43892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maleu-Kilenge", + Comment = null, }, new() { @@ -39909,6 +43903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mambae", + Comment = null, }, new() { @@ -39919,6 +43914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbangi", + Comment = null, }, new() { @@ -39929,6 +43925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meta'", + Comment = null, }, new() { @@ -39939,6 +43936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Magar", + Comment = null, }, new() { @@ -39949,6 +43947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malila", + Comment = null, }, new() { @@ -39959,6 +43958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mambwe-Lungu", + Comment = null, }, new() { @@ -39969,6 +43969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manda (Tanzania)", + Comment = null, }, new() { @@ -39979,6 +43980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongol", + Comment = null, }, new() { @@ -39989,6 +43991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mailu", + Comment = null, }, new() { @@ -39999,6 +44002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matengo", + Comment = null, }, new() { @@ -40009,6 +44013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matumbi", + Comment = null, }, new() { @@ -40019,6 +44024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbunga", + Comment = null, }, new() { @@ -40029,6 +44035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbugwe", + Comment = null, }, new() { @@ -40039,6 +44046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manda (India)", + Comment = null, }, new() { @@ -40049,6 +44057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahongwe", + Comment = null, }, new() { @@ -40059,6 +44068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mocho", + Comment = null, }, new() { @@ -40069,6 +44079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbugu", + Comment = null, }, new() { @@ -40079,6 +44090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Besisi", + Comment = null, }, new() { @@ -40089,6 +44101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamaa", + Comment = null, }, new() { @@ -40099,6 +44112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Margu", + Comment = null, }, new() { @@ -40109,6 +44123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma'di", + Comment = null, }, new() { @@ -40119,6 +44134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mogholi", + Comment = null, }, new() { @@ -40129,6 +44145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mungaka", + Comment = null, }, new() { @@ -40139,6 +44156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mauwake", + Comment = null, }, new() { @@ -40149,6 +44167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Moniga", + Comment = null, }, new() { @@ -40159,6 +44178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mòcheno", + Comment = null, }, new() { @@ -40169,6 +44189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mashi (Zambia)", + Comment = null, }, new() { @@ -40179,6 +44200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balinese Malay", + Comment = null, }, new() { @@ -40189,6 +44211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandan", + Comment = null, }, new() { @@ -40199,6 +44222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Mari", + Comment = null, }, new() { @@ -40209,6 +44233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buru (Indonesia)", + Comment = null, }, new() { @@ -40219,6 +44244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandahuaca", + Comment = null, }, new() { @@ -40229,6 +44255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Digaro-Mishmi", + Comment = null, }, new() { @@ -40239,6 +44266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbukushu", + Comment = null, }, new() { @@ -40249,6 +44277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maru", + Comment = null, }, new() { @@ -40259,6 +44288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma'anyan", + Comment = null, }, new() { @@ -40269,6 +44299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mor (Mor Islands)", + Comment = null, }, new() { @@ -40279,6 +44310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miami", + Comment = null, }, new() { @@ -40289,6 +44321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atatláhuca Mixtec", + Comment = null, }, new() { @@ -40299,6 +44332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mi'kmaq", + Comment = null, }, new() { @@ -40309,6 +44343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandaic", + Comment = null, }, new() { @@ -40319,6 +44354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ocotepec Mixtec", + Comment = null, }, new() { @@ -40329,6 +44365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mofu-Gudur", + Comment = null, }, new() { @@ -40339,6 +44376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Miguel El Grande Mixtec", + Comment = null, }, new() { @@ -40349,6 +44387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chayuco Mixtec", + Comment = null, }, new() { @@ -40359,6 +44398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chigmecatitlán Mixtec", + Comment = null, }, new() { @@ -40369,6 +44409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abar", + Comment = null, }, new() { @@ -40379,6 +44420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mikasuki", + Comment = null, }, new() { @@ -40389,6 +44431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peñoles Mixtec", + Comment = null, }, new() { @@ -40399,6 +44442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alacatlatzala Mixtec", + Comment = null, }, new() { @@ -40409,6 +44453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minangkabau", + Comment = null, }, new() { @@ -40419,6 +44464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinotepa Nacional Mixtec", + Comment = null, }, new() { @@ -40429,6 +44475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apasco-Apoala Mixtec", + Comment = null, }, new() { @@ -40439,6 +44486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mískito", + Comment = null, }, new() { @@ -40449,6 +44497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus Mixe", + Comment = null, }, new() { @@ -40459,6 +44508,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "Uncoded languages", + Comment = null, }, new() { @@ -40469,6 +44519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Puebla Mixtec", + Comment = null, }, new() { @@ -40479,6 +44530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cacaloxtepec Mixtec", + Comment = null, }, new() { @@ -40489,6 +44541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akoye", + Comment = null, }, new() { @@ -40499,6 +44552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mixtepec Mixtec", + Comment = null, }, new() { @@ -40509,6 +44563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayutla Mixtec", + Comment = null, }, new() { @@ -40519,6 +44574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatzospan Mixtec", + Comment = null, }, new() { @@ -40529,6 +44585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makalero", + Comment = null, }, new() { @@ -40539,6 +44596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Juan Colorado Mixtec", + Comment = null, }, new() { @@ -40549,6 +44607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Maidu", + Comment = null, }, new() { @@ -40559,6 +44618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Muskum", + Comment = null, }, new() { @@ -40569,6 +44629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tu", + Comment = null, }, new() { @@ -40579,6 +44640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwera (Nyasa)", + Comment = null, }, new() { @@ -40589,6 +44651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kim Mun", + Comment = null, }, new() { @@ -40599,6 +44662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawak", + Comment = null, }, new() { @@ -40609,6 +44673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matukar", + Comment = null, }, new() { @@ -40619,6 +44684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandeali", + Comment = null, }, new() { @@ -40629,6 +44695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Medebur", + Comment = null, }, new() { @@ -40639,6 +44706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma (Papua New Guinea)", + Comment = null, }, new() { @@ -40649,6 +44717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malankuravan", + Comment = null, }, new() { @@ -40659,6 +44728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malapandaram", + Comment = null, }, new() { @@ -40669,6 +44739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Malaryan", + Comment = null, }, new() { @@ -40679,6 +44750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malavedan", + Comment = null, }, new() { @@ -40689,6 +44761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miship", + Comment = null, }, new() { @@ -40699,6 +44772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sauria Paharia", + Comment = null, }, new() { @@ -40709,6 +44783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manna-Dora", + Comment = null, }, new() { @@ -40719,6 +44794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mannan", + Comment = null, }, new() { @@ -40729,6 +44805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karbi", + Comment = null, }, new() { @@ -40739,6 +44816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahali", + Comment = null, }, new() { @@ -40749,6 +44827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mahican", + Comment = null, }, new() { @@ -40759,6 +44838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majhi", + Comment = null, }, new() { @@ -40769,6 +44849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbre", + Comment = null, }, new() { @@ -40779,6 +44860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mal Paharia", + Comment = null, }, new() { @@ -40789,6 +44871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siliput", + Comment = null, }, new() { @@ -40799,6 +44882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macedonian", + Comment = null, }, new() { @@ -40809,6 +44893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawchi", + Comment = null, }, new() { @@ -40819,6 +44904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miya", + Comment = null, }, new() { @@ -40829,6 +44915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mak (China)", + Comment = null, }, new() { @@ -40839,6 +44926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhatki", + Comment = null, }, new() { @@ -40849,6 +44937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokilese", + Comment = null, }, new() { @@ -40859,6 +44948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Byep", + Comment = null, }, new() { @@ -40869,6 +44959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokole", + Comment = null, }, new() { @@ -40879,6 +44970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moklen", + Comment = null, }, new() { @@ -40889,6 +44981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupang Malay", + Comment = null, }, new() { @@ -40899,6 +44992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mingang Doso", + Comment = null, }, new() { @@ -40909,6 +45003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moikodi", + Comment = null, }, new() { @@ -40919,6 +45014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bay Miwok", + Comment = null, }, new() { @@ -40929,6 +45025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malas", + Comment = null, }, new() { @@ -40939,6 +45036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silacayoapan Mixtec", + Comment = null, }, new() { @@ -40949,6 +45047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vamale", + Comment = null, }, new() { @@ -40959,6 +45058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konyanka Maninka", + Comment = null, }, new() { @@ -40969,6 +45069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mafea", + Comment = null, }, new() { @@ -40979,6 +45080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kituba (Congo)", + Comment = null, }, new() { @@ -40989,6 +45091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinamiging Manobo", + Comment = null, }, new() { @@ -40999,6 +45102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Makian", + Comment = null, }, new() { @@ -41009,6 +45113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makasae", + Comment = null, }, new() { @@ -41019,6 +45124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malo", + Comment = null, }, new() { @@ -41029,6 +45135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbule", + Comment = null, }, new() { @@ -41039,6 +45146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cao Lan", + Comment = null, }, new() { @@ -41049,6 +45157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manambu", + Comment = null, }, new() { @@ -41059,6 +45168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mal", + Comment = null, }, new() { @@ -41069,6 +45179,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Malagasy", + Comment = null, }, new() { @@ -41079,6 +45190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mape", + Comment = null, }, new() { @@ -41089,6 +45201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malimpung", + Comment = null, }, new() { @@ -41099,6 +45212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miltu", + Comment = null, }, new() { @@ -41109,6 +45223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilwana", + Comment = null, }, new() { @@ -41119,6 +45234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malua Bay", + Comment = null, }, new() { @@ -41129,6 +45245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mulam", + Comment = null, }, new() { @@ -41139,6 +45256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malango", + Comment = null, }, new() { @@ -41149,6 +45267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mlomp", + Comment = null, }, new() { @@ -41159,6 +45278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bargam", + Comment = null, }, new() { @@ -41169,6 +45289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Maninkakan", + Comment = null, }, new() { @@ -41179,6 +45300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vame", + Comment = null, }, new() { @@ -41189,6 +45311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masalit", + Comment = null, }, new() { @@ -41199,6 +45322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maltese", + Comment = null, }, new() { @@ -41209,6 +45333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "To'abaita", + Comment = null, }, new() { @@ -41219,6 +45344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Motlav", + Comment = null, }, new() { @@ -41229,6 +45355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moloko", + Comment = null, }, new() { @@ -41239,6 +45366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malfaxal", + Comment = null, }, new() { @@ -41249,6 +45377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaynon", + Comment = null, }, new() { @@ -41259,6 +45388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mama", + Comment = null, }, new() { @@ -41269,6 +45399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Momina", + Comment = null, }, new() { @@ -41279,6 +45410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Michoacán Mazahua", + Comment = null, }, new() { @@ -41289,6 +45421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maonan", + Comment = null, }, new() { @@ -41299,6 +45432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mae", + Comment = null, }, new() { @@ -41309,6 +45443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundat", + Comment = null, }, new() { @@ -41319,6 +45454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Ambrym", + Comment = null, }, new() { @@ -41329,6 +45465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mehináku", + Comment = null, }, new() { @@ -41339,6 +45476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hember Avu", + Comment = null, }, new() { @@ -41349,6 +45487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majhwar", + Comment = null, }, new() { @@ -41359,6 +45498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mukha-Dora", + Comment = null, }, new() { @@ -41369,6 +45509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Man Met", + Comment = null, }, new() { @@ -41379,6 +45520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maii", + Comment = null, }, new() { @@ -41389,6 +45531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamanwa", + Comment = null, }, new() { @@ -41399,6 +45542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangga Buang", + Comment = null, }, new() { @@ -41409,6 +45553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siawi", + Comment = null, }, new() { @@ -41419,6 +45564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musak", + Comment = null, }, new() { @@ -41429,6 +45575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Xiangxi Miao", + Comment = null, }, new() { @@ -41439,6 +45586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malalamai", + Comment = null, }, new() { @@ -41449,6 +45597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mmaala", + Comment = null, }, new() { @@ -41459,6 +45608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Miriti", + Comment = null, }, new() { @@ -41469,6 +45619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emae", + Comment = null, }, new() { @@ -41479,6 +45630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madak", + Comment = null, }, new() { @@ -41489,6 +45641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Migaama", + Comment = null, }, new() { @@ -41499,6 +45652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabaale", + Comment = null, }, new() { @@ -41509,6 +45663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbula", + Comment = null, }, new() { @@ -41519,6 +45674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muna", + Comment = null, }, new() { @@ -41529,6 +45685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manchu", + Comment = null, }, new() { @@ -41539,6 +45696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mondé", + Comment = null, }, new() { @@ -41549,6 +45707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naba", + Comment = null, }, new() { @@ -41559,6 +45718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundani", + Comment = null, }, new() { @@ -41569,6 +45729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Mnong", + Comment = null, }, new() { @@ -41579,6 +45740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -41589,6 +45751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manipuri", + Comment = null, }, new() { @@ -41599,6 +45762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munji", + Comment = null, }, new() { @@ -41609,6 +45773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandinka", + Comment = null, }, new() { @@ -41619,6 +45784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiale", + Comment = null, }, new() { @@ -41629,6 +45795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapena", + Comment = null, }, new() { @@ -41639,6 +45806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Mnong", + Comment = null, }, new() { @@ -41649,6 +45817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Bei Chinese", + Comment = null, }, new() { @@ -41659,6 +45828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minriq", + Comment = null, }, new() { @@ -41669,6 +45839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (USA)", + Comment = null, }, new() { @@ -41679,6 +45850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mansi", + Comment = null, }, new() { @@ -41689,6 +45861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mer", + Comment = null, }, new() { @@ -41699,6 +45872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rennell-Bellona", + Comment = null, }, new() { @@ -41709,6 +45883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mon", + Comment = null, }, new() { @@ -41719,6 +45894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manikion", + Comment = null, }, new() { @@ -41729,6 +45905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manyawa", + Comment = null, }, new() { @@ -41739,6 +45916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moni", + Comment = null, }, new() { @@ -41749,6 +45927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwan", + Comment = null, }, new() { @@ -41759,6 +45938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mocoví", + Comment = null, }, new() { @@ -41769,6 +45949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mobilian", + Comment = null, }, new() { @@ -41779,6 +45960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Innu", + Comment = null, }, new() { @@ -41789,6 +45971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongondow", + Comment = null, }, new() { @@ -41799,6 +45982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mohawk", + Comment = null, }, new() { @@ -41809,6 +45993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mboi", + Comment = null, }, new() { @@ -41819,6 +46004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monzombo", + Comment = null, }, new() { @@ -41829,6 +46015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morori", + Comment = null, }, new() { @@ -41839,6 +46026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mangue", + Comment = null, }, new() { @@ -41849,6 +46037,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Mongolian", + Comment = null, }, new() { @@ -41859,6 +46048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monom", + Comment = null, }, new() { @@ -41869,6 +46059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mopán Maya", + Comment = null, }, new() { @@ -41879,6 +46070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mor (Bomberai Peninsula)", + Comment = null, }, new() { @@ -41889,6 +46081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moro", + Comment = null, }, new() { @@ -41899,6 +46092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mossi", + Comment = null, }, new() { @@ -41909,6 +46103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barí", + Comment = null, }, new() { @@ -41919,6 +46114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mogum", + Comment = null, }, new() { @@ -41929,6 +46125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mohave", + Comment = null, }, new() { @@ -41939,6 +46136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moi (Congo)", + Comment = null, }, new() { @@ -41949,6 +46147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molima", + Comment = null, }, new() { @@ -41959,6 +46158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shekkacho", + Comment = null, }, new() { @@ -41969,6 +46169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mukulu", + Comment = null, }, new() { @@ -41979,6 +46180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpoto", + Comment = null, }, new() { @@ -41989,6 +46191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malak Malak", + Comment = null, }, new() { @@ -41999,6 +46202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangarrayi", + Comment = null, }, new() { @@ -42009,6 +46213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machinere", + Comment = null, }, new() { @@ -42019,6 +46224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majang", + Comment = null, }, new() { @@ -42029,6 +46235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marba", + Comment = null, }, new() { @@ -42039,6 +46246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maung", + Comment = null, }, new() { @@ -42049,6 +46257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpade", + Comment = null, }, new() { @@ -42059,6 +46268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Martu Wangka", + Comment = null, }, new() { @@ -42069,6 +46279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbara (Chad)", + Comment = null, }, new() { @@ -42079,6 +46290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Middle Watut", + Comment = null, }, new() { @@ -42089,6 +46301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yosondúa Mixtec", + Comment = null, }, new() { @@ -42099,6 +46312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mindiri", + Comment = null, }, new() { @@ -42109,6 +46323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miu", + Comment = null, }, new() { @@ -42119,6 +46334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Migabac", + Comment = null, }, new() { @@ -42129,6 +46345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matís", + Comment = null, }, new() { @@ -42139,6 +46356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vangunu", + Comment = null, }, new() { @@ -42149,6 +46367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dadibi", + Comment = null, }, new() { @@ -42159,6 +46378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mian", + Comment = null, }, new() { @@ -42169,6 +46389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makuráp", + Comment = null, }, new() { @@ -42179,6 +46400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mungkip", + Comment = null, }, new() { @@ -42189,6 +46411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapidian", + Comment = null, }, new() { @@ -42199,6 +46422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Misima-Panaeati", + Comment = null, }, new() { @@ -42209,6 +46433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapia", + Comment = null, }, new() { @@ -42219,6 +46444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpi", + Comment = null, }, new() { @@ -42229,6 +46455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maba (Indonesia)", + Comment = null, }, new() { @@ -42239,6 +46466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbuko", + Comment = null, }, new() { @@ -42249,6 +46477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangole", + Comment = null, }, new() { @@ -42259,6 +46488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matepi", + Comment = null, }, new() { @@ -42269,6 +46499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Momuna", + Comment = null, }, new() { @@ -42279,6 +46510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota Bangun Kutai Malay", + Comment = null, }, new() { @@ -42289,6 +46521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlazoyaltepec Mixtec", + Comment = null, }, new() { @@ -42299,6 +46532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mariri", + Comment = null, }, new() { @@ -42309,6 +46543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamasa", + Comment = null, }, new() { @@ -42319,6 +46554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajah Kabunsuwan Manobo", + Comment = null, }, new() { @@ -42329,6 +46565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbelime", + Comment = null, }, new() { @@ -42339,6 +46576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Marquesan", + Comment = null, }, new() { @@ -42349,6 +46587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moronene", + Comment = null, }, new() { @@ -42359,6 +46598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Modole", + Comment = null, }, new() { @@ -42369,6 +46609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manipa", + Comment = null, }, new() { @@ -42379,6 +46620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minokok", + Comment = null, }, new() { @@ -42389,6 +46631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mander", + Comment = null, }, new() { @@ -42399,6 +46642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Makian", + Comment = null, }, new() { @@ -42409,6 +46653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mok", + Comment = null, }, new() { @@ -42419,6 +46664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandari", + Comment = null, }, new() { @@ -42429,6 +46675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mosimo", + Comment = null, }, new() { @@ -42439,6 +46686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murupi", + Comment = null, }, new() { @@ -42449,6 +46697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamuju", + Comment = null, }, new() { @@ -42459,6 +46708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manggarai", + Comment = null, }, new() { @@ -42469,6 +46719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pano", + Comment = null, }, new() { @@ -42479,6 +46730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mlabri", + Comment = null, }, new() { @@ -42489,6 +46741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marino", + Comment = null, }, new() { @@ -42499,6 +46752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maricopa", + Comment = null, }, new() { @@ -42509,6 +46763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Magar", + Comment = null, }, new() { @@ -42519,6 +46774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Martha's Vineyard Sign Language", + Comment = null, }, new() { @@ -42529,6 +46785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elseng", + Comment = null, }, new() { @@ -42539,6 +46796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mising", + Comment = null, }, new() { @@ -42549,6 +46807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mara Chin", + Comment = null, }, new() { @@ -42559,6 +46818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maori", + Comment = null, }, new() { @@ -42569,6 +46829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Mari", + Comment = null, }, new() { @@ -42579,6 +46840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmwaveke", + Comment = null, }, new() { @@ -42589,6 +46851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mortlockese", + Comment = null, }, new() { @@ -42599,6 +46862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merlav", + Comment = null, }, new() { @@ -42609,6 +46873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cheke Holo", + Comment = null, }, new() { @@ -42619,6 +46884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mru", + Comment = null, }, new() { @@ -42629,6 +46895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morouas", + Comment = null, }, new() { @@ -42639,6 +46906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Marquesan", + Comment = null, }, new() { @@ -42649,6 +46917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maria (India)", + Comment = null, }, new() { @@ -42659,6 +46928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maragus", + Comment = null, }, new() { @@ -42669,6 +46939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marghi Central", + Comment = null, }, new() { @@ -42679,6 +46950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (Cameroon)", + Comment = null, }, new() { @@ -42689,6 +46961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangareva", + Comment = null, }, new() { @@ -42699,6 +46972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maranao", + Comment = null, }, new() { @@ -42709,6 +46983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maremgi", + Comment = null, }, new() { @@ -42719,6 +46994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandaya", + Comment = null, }, new() { @@ -42729,6 +47005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marind", + Comment = null, }, new() { @@ -42739,6 +47016,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Malay (macrolanguage)", + Comment = null, }, new() { @@ -42749,6 +47027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masbatenyo", + Comment = null, }, new() { @@ -42759,6 +47038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sankaran Maninka", + Comment = null, }, new() { @@ -42769,6 +47049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucatec Maya Sign Language", + Comment = null, }, new() { @@ -42779,6 +47060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musey", + Comment = null, }, new() { @@ -42789,6 +47071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mekwei", + Comment = null, }, new() { @@ -42799,6 +47082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moraid", + Comment = null, }, new() { @@ -42809,6 +47093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masikoro Malagasy", + Comment = null, }, new() { @@ -42819,6 +47104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabah Malay", + Comment = null, }, new() { @@ -42829,6 +47115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -42839,6 +47126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mansaka", + Comment = null, }, new() { @@ -42849,6 +47137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molof", + Comment = null, }, new() { @@ -42859,6 +47148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agusan Manobo", + Comment = null, }, new() { @@ -42869,6 +47159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vurës", + Comment = null, }, new() { @@ -42879,6 +47170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mombum", + Comment = null, }, new() { @@ -42889,6 +47181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Maritsauá", + Comment = null, }, new() { @@ -42899,6 +47192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caac", + Comment = null, }, new() { @@ -42909,6 +47203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongolian Sign Language", + Comment = null, }, new() { @@ -42919,6 +47214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Masela", + Comment = null, }, new() { @@ -42929,6 +47225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musom", + Comment = null, }, new() { @@ -42939,6 +47236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maslam", + Comment = null, }, new() { @@ -42949,6 +47247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mansoanka", + Comment = null, }, new() { @@ -42959,6 +47258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moresada", + Comment = null, }, new() { @@ -42969,6 +47269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruamu", + Comment = null, }, new() { @@ -42979,6 +47280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Momare", + Comment = null, }, new() { @@ -42989,6 +47291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cotabato Manobo", + Comment = null, }, new() { @@ -42999,6 +47302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anyin Morofo", + Comment = null, }, new() { @@ -43009,6 +47313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munit", + Comment = null, }, new() { @@ -43019,6 +47324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mualang", + Comment = null, }, new() { @@ -43029,6 +47335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (Solomon Islands)", + Comment = null, }, new() { @@ -43039,6 +47346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murik (Papua New Guinea)", + Comment = null, }, new() { @@ -43049,6 +47357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Una", + Comment = null, }, new() { @@ -43059,6 +47368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munggui", + Comment = null, }, new() { @@ -43069,6 +47379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiwa (Papua New Guinea)", + Comment = null, }, new() { @@ -43079,6 +47390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moskona", + Comment = null, }, new() { @@ -43089,6 +47401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbe'", + Comment = null, }, new() { @@ -43099,6 +47412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Montol", + Comment = null, }, new() { @@ -43109,6 +47423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mator", + Comment = null, }, new() { @@ -43119,6 +47434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Matagalpa", + Comment = null, }, new() { @@ -43129,6 +47445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totontepec Mixe", + Comment = null, }, new() { @@ -43139,6 +47456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Nocten", + Comment = null, }, new() { @@ -43149,6 +47467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muong", + Comment = null, }, new() { @@ -43159,6 +47478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mewari", + Comment = null, }, new() { @@ -43169,6 +47489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yora", + Comment = null, }, new() { @@ -43179,6 +47500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mota", + Comment = null, }, new() { @@ -43189,6 +47511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tututepec Mixtec", + Comment = null, }, new() { @@ -43199,6 +47522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asaro'o", + Comment = null, }, new() { @@ -43209,6 +47533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Binukidnon", + Comment = null, }, new() { @@ -43219,6 +47544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tidaá Mixtec", + Comment = null, }, new() { @@ -43229,6 +47555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nabi", + Comment = null, }, new() { @@ -43239,6 +47566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundang", + Comment = null, }, new() { @@ -43249,6 +47577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mubi", + Comment = null, }, new() { @@ -43259,6 +47588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ajumbu", + Comment = null, }, new() { @@ -43269,6 +47599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mednyj Aleut", + Comment = null, }, new() { @@ -43279,6 +47610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Media Lengua", + Comment = null, }, new() { @@ -43289,6 +47621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musgu", + Comment = null, }, new() { @@ -43299,6 +47632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mündü", + Comment = null, }, new() { @@ -43309,6 +47643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musi", + Comment = null, }, new() { @@ -43319,6 +47654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabire", + Comment = null, }, new() { @@ -43329,6 +47665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mugom", + Comment = null, }, new() { @@ -43339,6 +47676,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "Multiple languages", + Comment = null, }, new() { @@ -43349,6 +47687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiwala", + Comment = null, }, new() { @@ -43359,6 +47698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyong", + Comment = null, }, new() { @@ -43369,6 +47709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malvi", + Comment = null, }, new() { @@ -43379,6 +47720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Xiangxi Miao", + Comment = null, }, new() { @@ -43389,6 +47731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murle", + Comment = null, }, new() { @@ -43399,6 +47742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Creek", + Comment = null, }, new() { @@ -43409,6 +47753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Muria", + Comment = null, }, new() { @@ -43419,6 +47764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaaku", + Comment = null, }, new() { @@ -43429,6 +47775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muthuvan", + Comment = null, }, new() { @@ -43439,6 +47786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo-Ung", + Comment = null, }, new() { @@ -43449,6 +47797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muyang", + Comment = null, }, new() { @@ -43459,6 +47808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mursi", + Comment = null, }, new() { @@ -43469,6 +47819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manam", + Comment = null, }, new() { @@ -43479,6 +47830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mattole", + Comment = null, }, new() { @@ -43489,6 +47841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamboru", + Comment = null, }, new() { @@ -43499,6 +47852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marwari (Pakistan)", + Comment = null, }, new() { @@ -43509,6 +47863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peripheral Mongolian", + Comment = null, }, new() { @@ -43519,6 +47874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucuañe Mixtec", + Comment = null, }, new() { @@ -43529,6 +47885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mulgi", + Comment = null, }, new() { @@ -43539,6 +47896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miyako", + Comment = null, }, new() { @@ -43549,6 +47907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mekmek", + Comment = null, }, new() { @@ -43559,6 +47918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mbara (Australia)", + Comment = null, }, new() { @@ -43569,6 +47929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minaveha", + Comment = null, }, new() { @@ -43579,6 +47940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marovo", + Comment = null, }, new() { @@ -43589,6 +47951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duri", + Comment = null, }, new() { @@ -43599,6 +47962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moere", + Comment = null, }, new() { @@ -43609,6 +47973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marau", + Comment = null, }, new() { @@ -43619,6 +47984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Massep", + Comment = null, }, new() { @@ -43629,6 +47995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpotovoro", + Comment = null, }, new() { @@ -43639,6 +48006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marfa", + Comment = null, }, new() { @@ -43649,6 +48017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagal Murut", + Comment = null, }, new() { @@ -43659,6 +48028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machinga", + Comment = null, }, new() { @@ -43669,6 +48039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meoswar", + Comment = null, }, new() { @@ -43679,6 +48050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indus Kohistani", + Comment = null, }, new() { @@ -43689,6 +48061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesqan", + Comment = null, }, new() { @@ -43699,6 +48072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwatebu", + Comment = null, }, new() { @@ -43709,6 +48083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juwal", + Comment = null, }, new() { @@ -43719,6 +48094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Are", + Comment = null, }, new() { @@ -43729,6 +48105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwera (Chimwera)", + Comment = null, }, new() { @@ -43739,6 +48116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murrinh-Patha", + Comment = null, }, new() { @@ -43749,6 +48127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aiklep", + Comment = null, }, new() { @@ -43759,6 +48138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mouk-Aria", + Comment = null, }, new() { @@ -43769,6 +48149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labo", + Comment = null, }, new() { @@ -43779,6 +48160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kita Maninkakan", + Comment = null, }, new() { @@ -43789,6 +48171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mirandese", + Comment = null, }, new() { @@ -43799,6 +48182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sar", + Comment = null, }, new() { @@ -43809,6 +48193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamwanga", + Comment = null, }, new() { @@ -43819,6 +48204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Maewo", + Comment = null, }, new() { @@ -43829,6 +48215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kala Lagaw Ya", + Comment = null, }, new() { @@ -43839,6 +48226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mün Chin", + Comment = null, }, new() { @@ -43849,6 +48237,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Marwari", + Comment = null, }, new() { @@ -43859,6 +48248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwimbi-Muthambi", + Comment = null, }, new() { @@ -43869,6 +48259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moken", + Comment = null, }, new() { @@ -43879,6 +48270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mittu", + Comment = null, }, new() { @@ -43889,6 +48281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mentawai", + Comment = null, }, new() { @@ -43899,6 +48292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Daw", + Comment = null, }, new() { @@ -43909,6 +48303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moingi", + Comment = null, }, new() { @@ -43919,6 +48314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Oaxaca Mixtec", + Comment = null, }, new() { @@ -43929,6 +48325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tezoatlán Mixtec", + Comment = null, }, new() { @@ -43939,6 +48336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manyika", + Comment = null, }, new() { @@ -43949,6 +48347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Modang", + Comment = null, }, new() { @@ -43959,6 +48358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mele-Fila", + Comment = null, }, new() { @@ -43969,6 +48369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malgbe", + Comment = null, }, new() { @@ -43979,6 +48380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbangala", + Comment = null, }, new() { @@ -43989,6 +48391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mvuba", + Comment = null, }, new() { @@ -43999,6 +48402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Mozarabic", + Comment = null, }, new() { @@ -44009,6 +48413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miju-Mishmi", + Comment = null, }, new() { @@ -44019,6 +48424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monumbo", + Comment = null, }, new() { @@ -44029,6 +48435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maxi Gbe", + Comment = null, }, new() { @@ -44039,6 +48446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meramera", + Comment = null, }, new() { @@ -44049,6 +48457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moi (Indonesia)", + Comment = null, }, new() { @@ -44059,6 +48468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbowe", + Comment = null, }, new() { @@ -44069,6 +48479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlahuitoltepec Mixe", + Comment = null, }, new() { @@ -44079,6 +48490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juquila Mixe", + Comment = null, }, new() { @@ -44089,6 +48501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murik (Malaysia)", + Comment = null, }, new() { @@ -44099,6 +48512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huitepec Mixtec", + Comment = null, }, new() { @@ -44109,6 +48523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamiltepec Mixtec", + Comment = null, }, new() { @@ -44119,6 +48534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mada (Cameroon)", + Comment = null, }, new() { @@ -44129,6 +48545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Metlatónoc Mixtec", + Comment = null, }, new() { @@ -44139,6 +48556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namo", + Comment = null, }, new() { @@ -44149,6 +48567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahou", + Comment = null, }, new() { @@ -44159,6 +48578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Nochixtlán Mixtec", + Comment = null, }, new() { @@ -44169,6 +48589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Masela", + Comment = null, }, new() { @@ -44179,6 +48600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burmese", + Comment = null, }, new() { @@ -44189,6 +48611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbay", + Comment = null, }, new() { @@ -44199,6 +48622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayeka", + Comment = null, }, new() { @@ -44209,6 +48633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Myene", + Comment = null, }, new() { @@ -44219,6 +48644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambassi", + Comment = null, }, new() { @@ -44229,6 +48655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manta", + Comment = null, }, new() { @@ -44239,6 +48666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makah", + Comment = null, }, new() { @@ -44249,6 +48677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangayat", + Comment = null, }, new() { @@ -44259,6 +48688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamara Senoufo", + Comment = null, }, new() { @@ -44269,6 +48699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moma", + Comment = null, }, new() { @@ -44279,6 +48710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Me'en", + Comment = null, }, new() { @@ -44289,6 +48721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anfillo", + Comment = null, }, new() { @@ -44299,6 +48732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pirahã", + Comment = null, }, new() { @@ -44309,6 +48743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muniche", + Comment = null, }, new() { @@ -44319,6 +48754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mesmes", + Comment = null, }, new() { @@ -44329,6 +48765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundurukú", + Comment = null, }, new() { @@ -44339,6 +48776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erzya", + Comment = null, }, new() { @@ -44349,6 +48787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muyuw", + Comment = null, }, new() { @@ -44359,6 +48798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masaaba", + Comment = null, }, new() { @@ -44369,6 +48809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macuna", + Comment = null, }, new() { @@ -44379,6 +48820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Mandaic", + Comment = null, }, new() { @@ -44389,6 +48831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María Zacatepec Mixtec", + Comment = null, }, new() { @@ -44399,6 +48842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumzabt", + Comment = null, }, new() { @@ -44409,6 +48853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madagascar Sign Language", + Comment = null, }, new() { @@ -44419,6 +48864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malimba", + Comment = null, }, new() { @@ -44429,6 +48875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morawa", + Comment = null, }, new() { @@ -44439,6 +48886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monastic Sign Language", + Comment = null, }, new() { @@ -44449,6 +48897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Güisnay", + Comment = null, }, new() { @@ -44459,6 +48908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixcatlán Mazatec", + Comment = null, }, new() { @@ -44469,6 +48919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manya", + Comment = null, }, new() { @@ -44479,6 +48930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigeria Mambila", + Comment = null, }, new() { @@ -44489,6 +48941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazatlán Mixe", + Comment = null, }, new() { @@ -44499,6 +48952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mumuye", + Comment = null, }, new() { @@ -44509,6 +48963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazanderani", + Comment = null, }, new() { @@ -44519,6 +48974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Matipuhy", + Comment = null, }, new() { @@ -44529,6 +48985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Movima", + Comment = null, }, new() { @@ -44539,6 +48996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mori Atas", + Comment = null, }, new() { @@ -44549,6 +49007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marúbo", + Comment = null, }, new() { @@ -44559,6 +49018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macanese", + Comment = null, }, new() { @@ -44569,6 +49029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mintil", + Comment = null, }, new() { @@ -44579,6 +49040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inapang", + Comment = null, }, new() { @@ -44589,6 +49051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manza", + Comment = null, }, new() { @@ -44599,6 +49062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deg", + Comment = null, }, new() { @@ -44609,6 +49073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawayana", + Comment = null, }, new() { @@ -44619,6 +49084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mozambican Sign Language", + Comment = null, }, new() { @@ -44629,6 +49095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiadomu", + Comment = null, }, new() { @@ -44639,6 +49106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namla", + Comment = null, }, new() { @@ -44649,6 +49117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nambikuára", + Comment = null, }, new() { @@ -44659,6 +49128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narak", + Comment = null, }, new() { @@ -44669,6 +49139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Naka'ela", + Comment = null, }, new() { @@ -44679,6 +49150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nabak", + Comment = null, }, new() { @@ -44689,6 +49161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naga Pidgin", + Comment = null, }, new() { @@ -44699,6 +49172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalu", + Comment = null, }, new() { @@ -44709,6 +49183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakanai", + Comment = null, }, new() { @@ -44719,6 +49194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalik", + Comment = null, }, new() { @@ -44729,6 +49205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngan'gityemerri", + Comment = null, }, new() { @@ -44739,6 +49216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Nan Chinese", + Comment = null, }, new() { @@ -44749,6 +49227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naaba", + Comment = null, }, new() { @@ -44759,6 +49238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neapolitan", + Comment = null, }, new() { @@ -44769,6 +49249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khoekhoe", + Comment = null, }, new() { @@ -44779,6 +49260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iguta", + Comment = null, }, new() { @@ -44789,6 +49271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naasioi", + Comment = null, }, new() { @@ -44799,6 +49282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ca̱hungwa̱rya̱", + Comment = null, }, new() { @@ -44809,6 +49293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nauru", + Comment = null, }, new() { @@ -44819,6 +49304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Navajo", + Comment = null, }, new() { @@ -44829,6 +49315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nawuri", + Comment = null, }, new() { @@ -44839,6 +49326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakwi", + Comment = null, }, new() { @@ -44849,6 +49337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngarrindjeri", + Comment = null, }, new() { @@ -44859,6 +49348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatepec Nahuatl", + Comment = null, }, new() { @@ -44869,6 +49359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyemba", + Comment = null, }, new() { @@ -44879,6 +49370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndoe", + Comment = null, }, new() { @@ -44889,6 +49381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chang Naga", + Comment = null, }, new() { @@ -44899,6 +49392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbinda", + Comment = null, }, new() { @@ -44909,6 +49403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konyak Naga", + Comment = null, }, new() { @@ -44919,6 +49414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nagarchal", + Comment = null, }, new() { @@ -44929,6 +49425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngamo", + Comment = null, }, new() { @@ -44939,6 +49436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mao Naga", + Comment = null, }, new() { @@ -44949,6 +49447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarinyman", + Comment = null, }, new() { @@ -44959,6 +49458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nake", + Comment = null, }, new() { @@ -44969,6 +49469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Ndebele", + Comment = null, }, new() { @@ -44979,6 +49480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbaka Ma'bo", + Comment = null, }, new() { @@ -44989,6 +49491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuri", + Comment = null, }, new() { @@ -44999,6 +49502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkukoli", + Comment = null, }, new() { @@ -45009,6 +49513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nnam", + Comment = null, }, new() { @@ -45019,6 +49524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nggem", + Comment = null, }, new() { @@ -45029,6 +49535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numana", + Comment = null, }, new() { @@ -45039,6 +49546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namibian Sign Language", + Comment = null, }, new() { @@ -45049,6 +49557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Na", + Comment = null, }, new() { @@ -45059,6 +49568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rongmei Naga", + Comment = null, }, new() { @@ -45069,6 +49579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngamambo", + Comment = null, }, new() { @@ -45079,6 +49590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ngbandi", + Comment = null, }, new() { @@ -45089,6 +49601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ningera", + Comment = null, }, new() { @@ -45099,6 +49612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyo", + Comment = null, }, new() { @@ -45109,6 +49623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Nicobarese", + Comment = null, }, new() { @@ -45119,6 +49634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ponam", + Comment = null, }, new() { @@ -45129,6 +49645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nachering", + Comment = null, }, new() { @@ -45139,6 +49656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yale", + Comment = null, }, new() { @@ -45149,6 +49667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Notsi", + Comment = null, }, new() { @@ -45159,6 +49678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisga'a", + Comment = null, }, new() { @@ -45169,6 +49689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Huasteca Nahuatl", + Comment = null, }, new() { @@ -45179,6 +49700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Nahuatl", + Comment = null, }, new() { @@ -45189,6 +49711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Puebla Nahuatl", + Comment = null, }, new() { @@ -45199,6 +49722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Na-kara", + Comment = null, }, new() { @@ -45209,6 +49733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Michoacán Nahuatl", + Comment = null, }, new() { @@ -45219,6 +49744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nambo", + Comment = null, }, new() { @@ -45229,6 +49755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nauna", + Comment = null, }, new() { @@ -45239,6 +49766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sibe", + Comment = null, }, new() { @@ -45249,6 +49777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Katang", + Comment = null, }, new() { @@ -45259,6 +49788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ncane", + Comment = null, }, new() { @@ -45269,6 +49799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nicaraguan Sign Language", + Comment = null, }, new() { @@ -45279,6 +49810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chothe Naga", + Comment = null, }, new() { @@ -45289,6 +49821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chumburung", + Comment = null, }, new() { @@ -45299,6 +49832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Puebla Nahuatl", + Comment = null, }, new() { @@ -45309,6 +49843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Natchez", + Comment = null, }, new() { @@ -45319,6 +49854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndasa", + Comment = null, }, new() { @@ -45329,6 +49865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenswei Nsei", + Comment = null, }, new() { @@ -45339,6 +49876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndau", + Comment = null, }, new() { @@ -45349,6 +49887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nde-Nsele-Nta", + Comment = null, }, new() { @@ -45359,6 +49898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Ndebele", + Comment = null, }, new() { @@ -45369,6 +49909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Nadruvian", + Comment = null, }, new() { @@ -45379,6 +49920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndengereko", + Comment = null, }, new() { @@ -45389,6 +49931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndali", + Comment = null, }, new() { @@ -45399,6 +49942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samba Leko", + Comment = null, }, new() { @@ -45409,6 +49953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndamba", + Comment = null, }, new() { @@ -45419,6 +49964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndaka", + Comment = null, }, new() { @@ -45429,6 +49975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndolo", + Comment = null, }, new() { @@ -45439,6 +49986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndam", + Comment = null, }, new() { @@ -45449,6 +49997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngundi", + Comment = null, }, new() { @@ -45459,6 +50008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndonga", + Comment = null, }, new() { @@ -45469,6 +50019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndo", + Comment = null, }, new() { @@ -45479,6 +50030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndombe", + Comment = null, }, new() { @@ -45489,6 +50041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndoola", + Comment = null, }, new() { @@ -45499,6 +50052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Low German", + Comment = null, }, new() { @@ -45509,6 +50063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndunga", + Comment = null, }, new() { @@ -45519,6 +50074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dugun", + Comment = null, }, new() { @@ -45529,6 +50085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndut", + Comment = null, }, new() { @@ -45539,6 +50096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndobo", + Comment = null, }, new() { @@ -45549,6 +50107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nduga", + Comment = null, }, new() { @@ -45559,6 +50118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lutos", + Comment = null, }, new() { @@ -45569,6 +50129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndogo", + Comment = null, }, new() { @@ -45579,6 +50140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Ngad'a", + Comment = null, }, new() { @@ -45589,6 +50151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toura (Côte d'Ivoire)", + Comment = null, }, new() { @@ -45599,6 +50162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nedebang", + Comment = null, }, new() { @@ -45609,6 +50173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nde-Gbite", + Comment = null, }, new() { @@ -45619,6 +50184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nêlêmwa-Nixumwak", + Comment = null, }, new() { @@ -45629,6 +50195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nefamese", + Comment = null, }, new() { @@ -45639,6 +50206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Negidal", + Comment = null, }, new() { @@ -45649,6 +50217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyenkha", + Comment = null, }, new() { @@ -45659,6 +50228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Neo-Hittite", + Comment = null, }, new() { @@ -45669,6 +50239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neko", + Comment = null, }, new() { @@ -45679,6 +50250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neku", + Comment = null, }, new() { @@ -45689,6 +50261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nemi", + Comment = null, }, new() { @@ -45699,6 +50272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nengone", + Comment = null, }, new() { @@ -45709,6 +50283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ná-Meo", + Comment = null, }, new() { @@ -45719,6 +50294,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Nepali (macrolanguage)", + Comment = null, }, new() { @@ -45729,6 +50305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Central Mixe", + Comment = null, }, new() { @@ -45739,6 +50316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yahadian", + Comment = null, }, new() { @@ -45749,6 +50327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhoti Kinnauri", + Comment = null, }, new() { @@ -45759,6 +50338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nete", + Comment = null, }, new() { @@ -45769,6 +50349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Neo", + Comment = null, }, new() { @@ -45779,6 +50360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaheun", + Comment = null, }, new() { @@ -45789,6 +50371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nepal Bhasa", + Comment = null, }, new() { @@ -45799,6 +50382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neme", + Comment = null, }, new() { @@ -45809,6 +50393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neyo", + Comment = null, }, new() { @@ -45819,6 +50404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nez Perce", + Comment = null, }, new() { @@ -45829,6 +50415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhao", + Comment = null, }, new() { @@ -45839,6 +50426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahwai", + Comment = null, }, new() { @@ -45849,6 +50437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayiwo", + Comment = null, }, new() { @@ -45859,6 +50448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafaanra", + Comment = null, }, new() { @@ -45869,6 +50459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mfumte", + Comment = null, }, new() { @@ -45879,6 +50470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbaka", + Comment = null, }, new() { @@ -45889,6 +50481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ngbandi", + Comment = null, }, new() { @@ -45899,6 +50492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngombe (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -45909,6 +50503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngando (Central African Republic)", + Comment = null, }, new() { @@ -45919,6 +50514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngemba", + Comment = null, }, new() { @@ -45929,6 +50525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbaka Manza", + Comment = null, }, new() { @@ -45939,6 +50536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nǁng", + Comment = null, }, new() { @@ -45949,6 +50547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngizim", + Comment = null, }, new() { @@ -45959,6 +50558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngie", + Comment = null, }, new() { @@ -45969,6 +50569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dalabon", + Comment = null, }, new() { @@ -45979,6 +50580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lomwe", + Comment = null, }, new() { @@ -45989,6 +50591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngatik Men's Creole", + Comment = null, }, new() { @@ -45999,6 +50602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngwo", + Comment = null, }, new() { @@ -46009,6 +50613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngulu", + Comment = null, }, new() { @@ -46019,6 +50624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngurimi", + Comment = null, }, new() { @@ -46029,6 +50635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Engdewu", + Comment = null, }, new() { @@ -46039,6 +50646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gvoko", + Comment = null, }, new() { @@ -46049,6 +50657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kriang", + Comment = null, }, new() { @@ -46059,6 +50668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guerrero Nahuatl", + Comment = null, }, new() { @@ -46069,6 +50679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nagumi", + Comment = null, }, new() { @@ -46079,6 +50690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngwaba", + Comment = null, }, new() { @@ -46089,6 +50701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nggwahyi", + Comment = null, }, new() { @@ -46099,6 +50712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tibea", + Comment = null, }, new() { @@ -46109,6 +50723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngungwel", + Comment = null, }, new() { @@ -46119,6 +50734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nhanda", + Comment = null, }, new() { @@ -46129,6 +50745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beng", + Comment = null, }, new() { @@ -46139,6 +50756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tabasco Nahuatl", + Comment = null, }, new() { @@ -46149,6 +50767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiripá", + Comment = null, }, new() { @@ -46159,6 +50778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Huasteca Nahuatl", + Comment = null, }, new() { @@ -46169,6 +50789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nhuwala", + Comment = null, }, new() { @@ -46179,6 +50800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetelcingo Nahuatl", + Comment = null, }, new() { @@ -46189,6 +50811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nahari", + Comment = null, }, new() { @@ -46199,6 +50822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", + Comment = null, }, new() { @@ -46209,6 +50833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus-Cosoleacaque Nahuatl", + Comment = null, }, new() { @@ -46219,6 +50844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morelos Nahuatl", + Comment = null, }, new() { @@ -46229,6 +50855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Nahuatl", + Comment = null, }, new() { @@ -46239,6 +50866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takuu", + Comment = null, }, new() { @@ -46249,6 +50877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus-Pajapan Nahuatl", + Comment = null, }, new() { @@ -46259,6 +50888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaxcaleca Nahuatl", + Comment = null, }, new() { @@ -46269,6 +50899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naro", + Comment = null, }, new() { @@ -46279,6 +50910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ometepec Nahuatl", + Comment = null, }, new() { @@ -46289,6 +50921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noone", + Comment = null, }, new() { @@ -46299,6 +50932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temascaltepec Nahuatl", + Comment = null, }, new() { @@ -46309,6 +50943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Huasteca Nahuatl", + Comment = null, }, new() { @@ -46319,6 +50954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus-Mecayapan Nahuatl", + Comment = null, }, new() { @@ -46329,6 +50965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Oaxaca Nahuatl", + Comment = null, }, new() { @@ -46339,6 +50976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María La Alta Nahuatl", + Comment = null, }, new() { @@ -46349,6 +50987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nias", + Comment = null, }, new() { @@ -46359,6 +50998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakame", + Comment = null, }, new() { @@ -46369,6 +51009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngandi", + Comment = null, }, new() { @@ -46379,6 +51020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niellim", + Comment = null, }, new() { @@ -46389,6 +51031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nek", + Comment = null, }, new() { @@ -46399,6 +51042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngalakgan", + Comment = null, }, new() { @@ -46409,6 +51053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyiha (Tanzania)", + Comment = null, }, new() { @@ -46419,6 +51064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nii", + Comment = null, }, new() { @@ -46429,6 +51075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngaju", + Comment = null, }, new() { @@ -46439,6 +51086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nicobarese", + Comment = null, }, new() { @@ -46449,6 +51097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nila", + Comment = null, }, new() { @@ -46459,6 +51108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nilamba", + Comment = null, }, new() { @@ -46469,6 +51119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninzo", + Comment = null, }, new() { @@ -46479,6 +51130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nganasan", + Comment = null, }, new() { @@ -46489,6 +51141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nandi", + Comment = null, }, new() { @@ -46499,6 +51152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimboran", + Comment = null, }, new() { @@ -46509,6 +51163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimi", + Comment = null, }, new() { @@ -46519,6 +51174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Kolami", + Comment = null, }, new() { @@ -46529,6 +51185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niuean", + Comment = null, }, new() { @@ -46539,6 +51196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilyak", + Comment = null, }, new() { @@ -46549,6 +51207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimo", + Comment = null, }, new() { @@ -46559,6 +51218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hema", + Comment = null, }, new() { @@ -46569,6 +51229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngiti", + Comment = null, }, new() { @@ -46579,6 +51240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ningil", + Comment = null, }, new() { @@ -46589,6 +51251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzanyi", + Comment = null, }, new() { @@ -46599,6 +51262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nocte Naga", + Comment = null, }, new() { @@ -46609,6 +51273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndonde Hamba", + Comment = null, }, new() { @@ -46619,6 +51284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lotha Naga", + Comment = null, }, new() { @@ -46629,6 +51295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gudanji", + Comment = null, }, new() { @@ -46639,6 +51306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njen", + Comment = null, }, new() { @@ -46649,6 +51317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njalgulgule", + Comment = null, }, new() { @@ -46659,6 +51328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angami Naga", + Comment = null, }, new() { @@ -46669,6 +51339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liangmai Naga", + Comment = null, }, new() { @@ -46679,6 +51350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ao Naga", + Comment = null, }, new() { @@ -46689,6 +51361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njerep", + Comment = null, }, new() { @@ -46699,6 +51372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisa", + Comment = null, }, new() { @@ -46709,6 +51383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndyuka-Trio Pidgin", + Comment = null, }, new() { @@ -46719,6 +51394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngadjunmaya", + Comment = null, }, new() { @@ -46729,6 +51405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunyi", + Comment = null, }, new() { @@ -46739,6 +51416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njyem", + Comment = null, }, new() { @@ -46749,6 +51427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyishi", + Comment = null, }, new() { @@ -46759,6 +51438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkoya", + Comment = null, }, new() { @@ -46769,6 +51449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khoibu Naga", + Comment = null, }, new() { @@ -46779,6 +51460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkongho", + Comment = null, }, new() { @@ -46789,6 +51471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koireng", + Comment = null, }, new() { @@ -46799,6 +51482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duke", + Comment = null, }, new() { @@ -46809,6 +51493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inpui Naga", + Comment = null, }, new() { @@ -46819,6 +51504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nekgini", + Comment = null, }, new() { @@ -46829,6 +51515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khezha Naga", + Comment = null, }, new() { @@ -46839,6 +51526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thangal Naga", + Comment = null, }, new() { @@ -46849,6 +51537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakai", + Comment = null, }, new() { @@ -46859,6 +51548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nokuku", + Comment = null, }, new() { @@ -46869,6 +51559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namat", + Comment = null, }, new() { @@ -46879,6 +51570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkangala", + Comment = null, }, new() { @@ -46889,6 +51581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkonya", + Comment = null, }, new() { @@ -46899,6 +51592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Niuatoputapu", + Comment = null, }, new() { @@ -46909,6 +51603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkami", + Comment = null, }, new() { @@ -46919,6 +51614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukuoro", + Comment = null, }, new() { @@ -46929,6 +51625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Asmat", + Comment = null, }, new() { @@ -46939,6 +51636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyika (Tanzania)", + Comment = null, }, new() { @@ -46949,6 +51647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bouna Kulango", + Comment = null, }, new() { @@ -46959,6 +51658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyika (Malawi and Zambia)", + Comment = null, }, new() { @@ -46969,6 +51669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkutu", + Comment = null, }, new() { @@ -46979,6 +51680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkoroo", + Comment = null, }, new() { @@ -46989,6 +51691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkari", + Comment = null, }, new() { @@ -46999,6 +51702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngombale", + Comment = null, }, new() { @@ -47009,6 +51713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalca", + Comment = null, }, new() { @@ -47019,6 +51724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dutch", + Comment = null, }, new() { @@ -47029,6 +51735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Nyala", + Comment = null, }, new() { @@ -47039,6 +51746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gela", + Comment = null, }, new() { @@ -47049,6 +51757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Grangali", + Comment = null, }, new() { @@ -47059,6 +51768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyali", + Comment = null, }, new() { @@ -47069,6 +51779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninia Yali", + Comment = null, }, new() { @@ -47079,6 +51790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nihali", + Comment = null, }, new() { @@ -47089,6 +51801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mankiyali", + Comment = null, }, new() { @@ -47099,6 +51812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngul", + Comment = null, }, new() { @@ -47109,6 +51823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lao Naga", + Comment = null, }, new() { @@ -47119,6 +51834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nchumbulu", + Comment = null, }, new() { @@ -47129,6 +51845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orizaba Nahuatl", + Comment = null, }, new() { @@ -47139,6 +51856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Walangama", + Comment = null, }, new() { @@ -47149,6 +51867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nahali", + Comment = null, }, new() { @@ -47159,6 +51878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamal", + Comment = null, }, new() { @@ -47169,6 +51889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalögo", + Comment = null, }, new() { @@ -47179,6 +51900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maram Naga", + Comment = null, }, new() { @@ -47189,6 +51911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Big Nambas", + Comment = null, }, new() { @@ -47199,6 +51922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngam", + Comment = null, }, new() { @@ -47209,6 +51933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndumu", + Comment = null, }, new() { @@ -47219,6 +51944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mzieme Naga", + Comment = null, }, new() { @@ -47229,6 +51955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangkhul Naga (India)", + Comment = null, }, new() { @@ -47239,6 +51966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwasio", + Comment = null, }, new() { @@ -47249,6 +51977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monsang Naga", + Comment = null, }, new() { @@ -47259,6 +51988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyam", + Comment = null, }, new() { @@ -47269,6 +51999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngombe (Central African Republic)", + Comment = null, }, new() { @@ -47279,6 +52010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namakura", + Comment = null, }, new() { @@ -47289,6 +52021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndemli", + Comment = null, }, new() { @@ -47299,6 +52032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manangba", + Comment = null, }, new() { @@ -47309,6 +52043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǃXóõ", + Comment = null, }, new() { @@ -47319,6 +52054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moyon Naga", + Comment = null, }, new() { @@ -47329,6 +52065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nimanbur", + Comment = null, }, new() { @@ -47339,6 +52076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nambya", + Comment = null, }, new() { @@ -47349,6 +52087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nimbari", + Comment = null, }, new() { @@ -47359,6 +52098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Letemboi", + Comment = null, }, new() { @@ -47369,6 +52109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namonuito", + Comment = null, }, new() { @@ -47379,6 +52120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeast Maidu", + Comment = null, }, new() { @@ -47389,6 +52131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngamini", + Comment = null, }, new() { @@ -47399,6 +52142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimoa", + Comment = null, }, new() { @@ -47409,6 +52153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nama (Papua New Guinea)", + Comment = null, }, new() { @@ -47419,6 +52164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namuyi", + Comment = null, }, new() { @@ -47429,6 +52175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nawdm", + Comment = null, }, new() { @@ -47439,6 +52186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyangumarta", + Comment = null, }, new() { @@ -47449,6 +52197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nande", + Comment = null, }, new() { @@ -47459,6 +52208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nancere", + Comment = null, }, new() { @@ -47469,6 +52219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Ambae", + Comment = null, }, new() { @@ -47479,6 +52230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngandyera", + Comment = null, }, new() { @@ -47489,6 +52241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngaing", + Comment = null, }, new() { @@ -47499,6 +52252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maring Naga", + Comment = null, }, new() { @@ -47509,6 +52263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngiemboon", + Comment = null, }, new() { @@ -47519,6 +52274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Nuaulu", + Comment = null, }, new() { @@ -47529,6 +52285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyangatom", + Comment = null, }, new() { @@ -47539,6 +52296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nankina", + Comment = null, }, new() { @@ -47549,6 +52307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Rengma Naga", + Comment = null, }, new() { @@ -47559,6 +52318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namia", + Comment = null, }, new() { @@ -47569,6 +52329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngete", + Comment = null, }, new() { @@ -47579,6 +52340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Nynorsk", + Comment = null, }, new() { @@ -47589,6 +52351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wancho Naga", + Comment = null, }, new() { @@ -47599,6 +52362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngindo", + Comment = null, }, new() { @@ -47609,6 +52373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Narungga", + Comment = null, }, new() { @@ -47619,6 +52384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nanticoke", + Comment = null, }, new() { @@ -47629,6 +52395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dwang", + Comment = null, }, new() { @@ -47639,6 +52406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nugunu (Australia)", + Comment = null, }, new() { @@ -47649,6 +52417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nuni", + Comment = null, }, new() { @@ -47659,6 +52428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyangga", + Comment = null, }, new() { @@ -47669,6 +52439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nda'nda'", + Comment = null, }, new() { @@ -47679,6 +52450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woun Meu", + Comment = null, }, new() { @@ -47689,6 +52461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Bokmål", + Comment = null, }, new() { @@ -47699,6 +52472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nuk", + Comment = null, }, new() { @@ -47709,6 +52483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Thai", + Comment = null, }, new() { @@ -47719,6 +52494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimadi", + Comment = null, }, new() { @@ -47729,6 +52505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomane", + Comment = null, }, new() { @@ -47739,6 +52516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nogai", + Comment = null, }, new() { @@ -47749,6 +52527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomu", + Comment = null, }, new() { @@ -47759,6 +52538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noiri", + Comment = null, }, new() { @@ -47769,6 +52549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nonuya", + Comment = null, }, new() { @@ -47779,6 +52560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nooksack", + Comment = null, }, new() { @@ -47789,6 +52571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nomlaki", + Comment = null, }, new() { @@ -47799,6 +52582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Norse", + Comment = null, }, new() { @@ -47809,6 +52593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numanggang", + Comment = null, }, new() { @@ -47819,6 +52604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngongo", + Comment = null, }, new() { @@ -47829,6 +52615,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Norwegian", + Comment = null, }, new() { @@ -47839,6 +52626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Nisu", + Comment = null, }, new() { @@ -47849,6 +52637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomatsiguenga", + Comment = null, }, new() { @@ -47859,6 +52648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ewage-Notu", + Comment = null, }, new() { @@ -47869,6 +52659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Novial", + Comment = null, }, new() { @@ -47879,6 +52670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyambo", + Comment = null, }, new() { @@ -47889,6 +52681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noy", + Comment = null, }, new() { @@ -47899,6 +52692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nayi", + Comment = null, }, new() { @@ -47909,6 +52703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nar Phu", + Comment = null, }, new() { @@ -47919,6 +52714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nupbikha", + Comment = null, }, new() { @@ -47929,6 +52725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ponyo-Gongwang Naga", + Comment = null, }, new() { @@ -47939,6 +52736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phom Naga", + Comment = null, }, new() { @@ -47949,6 +52747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nepali (individual language)", + Comment = null, }, new() { @@ -47959,6 +52758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Puebla Nahuatl", + Comment = null, }, new() { @@ -47969,6 +52769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mondropolon", + Comment = null, }, new() { @@ -47979,6 +52780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pochuri Naga", + Comment = null, }, new() { @@ -47989,6 +52791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nipsan", + Comment = null, }, new() { @@ -47999,6 +52802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puimei Naga", + Comment = null, }, new() { @@ -48009,6 +52813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noipx", + Comment = null, }, new() { @@ -48019,6 +52824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Napu", + Comment = null, }, new() { @@ -48029,6 +52835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nago", + Comment = null, }, new() { @@ -48039,6 +52846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kura Ede Nago", + Comment = null, }, new() { @@ -48049,6 +52857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngendelengo", + Comment = null, }, new() { @@ -48059,6 +52868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndom", + Comment = null, }, new() { @@ -48069,6 +52879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nen", + Comment = null, }, new() { @@ -48079,6 +52890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "N'Ko", + Comment = null, }, new() { @@ -48089,6 +52901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyan-Karyaw Naga", + Comment = null, }, new() { @@ -48099,6 +52912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nteng", + Comment = null, }, new() { @@ -48109,6 +52923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akyaung Ari Naga", + Comment = null, }, new() { @@ -48119,6 +52934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngom", + Comment = null, }, new() { @@ -48129,6 +52945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nara", + Comment = null, }, new() { @@ -48139,6 +52956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Noric", + Comment = null, }, new() { @@ -48149,6 +52967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Rengma Naga", + Comment = null, }, new() { @@ -48159,6 +52978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jèrriais", + Comment = null, }, new() { @@ -48169,6 +52989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narango", + Comment = null, }, new() { @@ -48179,6 +53000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chokri Naga", + Comment = null, }, new() { @@ -48189,6 +53011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarla", + Comment = null, }, new() { @@ -48199,6 +53022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarluma", + Comment = null, }, new() { @@ -48209,6 +53033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narom", + Comment = null, }, new() { @@ -48219,6 +53044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Norn", + Comment = null, }, new() { @@ -48229,6 +53055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "North Picene", + Comment = null, }, new() { @@ -48239,6 +53066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Norra", + Comment = null, }, new() { @@ -48249,6 +53077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northern Kalapuya", + Comment = null, }, new() { @@ -48259,6 +53088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narua", + Comment = null, }, new() { @@ -48269,6 +53099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngurmbur", + Comment = null, }, new() { @@ -48279,6 +53110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lala", + Comment = null, }, new() { @@ -48289,6 +53121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangtam Naga", + Comment = null, }, new() { @@ -48299,6 +53132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Nossob", + Comment = null, }, new() { @@ -48309,6 +53143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nshi", + Comment = null, }, new() { @@ -48319,6 +53154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nisu", + Comment = null, }, new() { @@ -48329,6 +53165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nsenga", + Comment = null, }, new() { @@ -48339,6 +53176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Nisu", + Comment = null, }, new() { @@ -48349,6 +53187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngasa", + Comment = null, }, new() { @@ -48359,6 +53198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngoshie", + Comment = null, }, new() { @@ -48369,6 +53209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigerian Sign Language", + Comment = null, }, new() { @@ -48379,6 +53220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naskapi", + Comment = null, }, new() { @@ -48389,6 +53231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Sign Language", + Comment = null, }, new() { @@ -48399,6 +53242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumi Naga", + Comment = null, }, new() { @@ -48409,6 +53253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nehan", + Comment = null, }, new() { @@ -48419,6 +53264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pedi", + Comment = null, }, new() { @@ -48429,6 +53275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nepalese Sign Language", + Comment = null, }, new() { @@ -48439,6 +53286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Sierra Miwok", + Comment = null, }, new() { @@ -48449,6 +53297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maritime Sign Language", + Comment = null, }, new() { @@ -48459,6 +53308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nali", + Comment = null, }, new() { @@ -48469,6 +53319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tase Naga", + Comment = null, }, new() { @@ -48479,6 +53330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sierra Negra Nahuatl", + Comment = null, }, new() { @@ -48489,6 +53341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Nisu", + Comment = null, }, new() { @@ -48499,6 +53352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Navut", + Comment = null, }, new() { @@ -48509,6 +53363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nsongo", + Comment = null, }, new() { @@ -48519,6 +53374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nasal", + Comment = null, }, new() { @@ -48529,6 +53385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisenan", + Comment = null, }, new() { @@ -48539,6 +53396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tidung", + Comment = null, }, new() { @@ -48549,6 +53407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngantangarra", + Comment = null, }, new() { @@ -48559,6 +53418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Natioro", + Comment = null, }, new() { @@ -48569,6 +53429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngaanyatjarra", + Comment = null, }, new() { @@ -48579,6 +53440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikoma-Nata-Isenye", + Comment = null, }, new() { @@ -48589,6 +53451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nateni", + Comment = null, }, new() { @@ -48599,6 +53462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ntomba", + Comment = null, }, new() { @@ -48609,6 +53473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tepehuan", + Comment = null, }, new() { @@ -48619,6 +53484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Delo", + Comment = null, }, new() { @@ -48629,6 +53495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Natügu", + Comment = null, }, new() { @@ -48639,6 +53506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nottoway", + Comment = null, }, new() { @@ -48649,6 +53517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangkhul Naga (Myanmar)", + Comment = null, }, new() { @@ -48659,6 +53528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mantsi", + Comment = null, }, new() { @@ -48669,6 +53539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Natanzi", + Comment = null, }, new() { @@ -48679,6 +53550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuanga", + Comment = null, }, new() { @@ -48689,6 +53561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nukuini", + Comment = null, }, new() { @@ -48699,6 +53572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngala", + Comment = null, }, new() { @@ -48709,6 +53583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngundu", + Comment = null, }, new() { @@ -48719,6 +53594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nusu", + Comment = null, }, new() { @@ -48729,6 +53605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nungali", + Comment = null, }, new() { @@ -48739,6 +53616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndunda", + Comment = null, }, new() { @@ -48749,6 +53627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngumbi", + Comment = null, }, new() { @@ -48759,6 +53638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyole", + Comment = null, }, new() { @@ -48769,6 +53649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nuu-chah-nulth", + Comment = null, }, new() { @@ -48779,6 +53660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nusa Laut", + Comment = null, }, new() { @@ -48789,6 +53671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niuafo'ou", + Comment = null, }, new() { @@ -48799,6 +53682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anong", + Comment = null, }, new() { @@ -48809,6 +53693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nguôn", + Comment = null, }, new() { @@ -48819,6 +53704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nupe-Nupe-Tako", + Comment = null, }, new() { @@ -48829,6 +53715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukumanu", + Comment = null, }, new() { @@ -48839,6 +53726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukuria", + Comment = null, }, new() { @@ -48849,6 +53737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nuer", + Comment = null, }, new() { @@ -48859,6 +53748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nung (Viet Nam)", + Comment = null, }, new() { @@ -48869,6 +53759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbundu", + Comment = null, }, new() { @@ -48879,6 +53770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Nuni", + Comment = null, }, new() { @@ -48889,6 +53781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nguluwan", + Comment = null, }, new() { @@ -48899,6 +53792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mehek", + Comment = null, }, new() { @@ -48909,6 +53803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nunggubuyu", + Comment = null, }, new() { @@ -48919,6 +53814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlamacazapa Nahuatl", + Comment = null, }, new() { @@ -48929,6 +53825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nasarian", + Comment = null, }, new() { @@ -48939,6 +53836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namiae", + Comment = null, }, new() { @@ -48949,6 +53847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyokon", + Comment = null, }, new() { @@ -48959,6 +53858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nawathinehena", + Comment = null, }, new() { @@ -48969,6 +53869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyabwa", + Comment = null, }, new() { @@ -48979,6 +53880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Newari", + Comment = null, }, new() { @@ -48989,6 +53891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngwe", + Comment = null, }, new() { @@ -48999,6 +53902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngayawung", + Comment = null, }, new() { @@ -49009,6 +53913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Tanna", + Comment = null, }, new() { @@ -49019,6 +53924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamusa-Molo", + Comment = null, }, new() { @@ -49029,6 +53935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nauo", + Comment = null, }, new() { @@ -49039,6 +53946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nawaru", + Comment = null, }, new() { @@ -49049,6 +53957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndwewe", + Comment = null, }, new() { @@ -49059,6 +53968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Newar", + Comment = null, }, new() { @@ -49069,6 +53979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nottoway-Meherrin", + Comment = null, }, new() { @@ -49079,6 +53990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nauete", + Comment = null, }, new() { @@ -49089,6 +54001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngando (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -49099,6 +54012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nage", + Comment = null, }, new() { @@ -49109,6 +54023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngad'a", + Comment = null, }, new() { @@ -49119,6 +54034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nindi", + Comment = null, }, new() { @@ -49129,6 +54045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koki Naga", + Comment = null, }, new() { @@ -49139,6 +54056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Nuaulu", + Comment = null, }, new() { @@ -49149,6 +54067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Numidian", + Comment = null, }, new() { @@ -49159,6 +54078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngawun", + Comment = null, }, new() { @@ -49169,6 +54089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndambomo", + Comment = null, }, new() { @@ -49179,6 +54100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naxi", + Comment = null, }, new() { @@ -49189,6 +54111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninggerum", + Comment = null, }, new() { @@ -49199,6 +54122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafri", + Comment = null, }, new() { @@ -49209,6 +54133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chichewa", + Comment = null, }, new() { @@ -49219,6 +54144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyangbo", + Comment = null, }, new() { @@ -49229,6 +54155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyanga-li", + Comment = null, }, new() { @@ -49239,6 +54166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyore", + Comment = null, }, new() { @@ -49249,6 +54177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyengo", + Comment = null, }, new() { @@ -49259,6 +54188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giryama", + Comment = null, }, new() { @@ -49269,6 +54199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyindu", + Comment = null, }, new() { @@ -49279,6 +54210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyikina", + Comment = null, }, new() { @@ -49289,6 +54221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ama (Sudan)", + Comment = null, }, new() { @@ -49299,6 +54232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyanga", + Comment = null, }, new() { @@ -49309,6 +54243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaneka", + Comment = null, }, new() { @@ -49319,6 +54254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyeu", + Comment = null, }, new() { @@ -49329,6 +54265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamwezi", + Comment = null, }, new() { @@ -49339,6 +54276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyankole", + Comment = null, }, new() { @@ -49349,6 +54287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyoro", + Comment = null, }, new() { @@ -49359,6 +54298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyang'i", + Comment = null, }, new() { @@ -49369,6 +54309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nayini", + Comment = null, }, new() { @@ -49379,6 +54320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyiha (Malawi)", + Comment = null, }, new() { @@ -49389,6 +54331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyungar", + Comment = null, }, new() { @@ -49399,6 +54342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyawaygi", + Comment = null, }, new() { @@ -49409,6 +54353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyungwe", + Comment = null, }, new() { @@ -49419,6 +54364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyulnyul", + Comment = null, }, new() { @@ -49429,6 +54375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaw", + Comment = null, }, new() { @@ -49439,6 +54386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nganyaywana", + Comment = null, }, new() { @@ -49449,6 +54397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyakyusa-Ngonde", + Comment = null, }, new() { @@ -49459,6 +54408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigon Mbembe", + Comment = null, }, new() { @@ -49469,6 +54419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njebi", + Comment = null, }, new() { @@ -49479,6 +54430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzadi", + Comment = null, }, new() { @@ -49489,6 +54441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzima", + Comment = null, }, new() { @@ -49499,6 +54452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzakara", + Comment = null, }, new() { @@ -49509,6 +54463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zeme Naga", + Comment = null, }, new() { @@ -49519,6 +54474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dir-Nyamzak-Mbarimi", + Comment = null, }, new() { @@ -49529,6 +54485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "New Zealand Sign Language", + Comment = null, }, new() { @@ -49539,6 +54496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Nzikou", + Comment = null, }, new() { @@ -49549,6 +54507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzakambay", + Comment = null, }, new() { @@ -49559,6 +54518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanga Dama Dogon", + Comment = null, }, new() { @@ -49569,6 +54529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orok", + Comment = null, }, new() { @@ -49579,6 +54540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroch", + Comment = null, }, new() { @@ -49589,6 +54551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noakhali", + Comment = null, }, new() { @@ -49599,6 +54562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Aramaic (up to 700 BCE)", + Comment = null, }, new() { @@ -49609,6 +54573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Avar", + Comment = null, }, new() { @@ -49619,6 +54584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Obispeño", + Comment = null, }, new() { @@ -49629,6 +54595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Bontok", + Comment = null, }, new() { @@ -49639,6 +54606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oblo", + Comment = null, }, new() { @@ -49649,6 +54617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Moabite", + Comment = null, }, new() { @@ -49659,6 +54628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obo Manobo", + Comment = null, }, new() { @@ -49669,6 +54639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Burmese", + Comment = null, }, new() { @@ -49679,6 +54650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Breton", + Comment = null, }, new() { @@ -49689,6 +54661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obulom", + Comment = null, }, new() { @@ -49699,6 +54672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ocaina", + Comment = null, }, new() { @@ -49709,6 +54683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Chinese", + Comment = null, }, new() { @@ -49719,6 +54694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Occitan (post 1500)", + Comment = null, }, new() { @@ -49729,6 +54705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Cham", + Comment = null, }, new() { @@ -49739,6 +54716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Cornish", + Comment = null, }, new() { @@ -49749,6 +54727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atzingo Matlatzinca", + Comment = null, }, new() { @@ -49759,6 +54738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odut", + Comment = null, }, new() { @@ -49769,6 +54749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Od", + Comment = null, }, new() { @@ -49779,6 +54760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Dutch", + Comment = null, }, new() { @@ -49789,6 +54771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odual", + Comment = null, }, new() { @@ -49799,6 +54782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ofo", + Comment = null, }, new() { @@ -49809,6 +54793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Frisian", + Comment = null, }, new() { @@ -49819,6 +54804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efutop", + Comment = null, }, new() { @@ -49829,6 +54815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbia", + Comment = null, }, new() { @@ -49839,6 +54826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbah", + Comment = null, }, new() { @@ -49849,6 +54837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Georgian", + Comment = null, }, new() { @@ -49859,6 +54848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbogolo", + Comment = null, }, new() { @@ -49869,6 +54859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khana", + Comment = null, }, new() { @@ -49879,6 +54870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbronuagum", + Comment = null, }, new() { @@ -49889,6 +54881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Hittite", + Comment = null, }, new() { @@ -49899,6 +54892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Hungarian", + Comment = null, }, new() { @@ -49909,6 +54903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oirata", + Comment = null, }, new() { @@ -49919,6 +54914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okolie", + Comment = null, }, new() { @@ -49929,6 +54925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inebu One", + Comment = null, }, new() { @@ -49939,6 +54936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Ojibwa", + Comment = null, }, new() { @@ -49949,6 +54947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Ojibwa", + Comment = null, }, new() { @@ -49959,6 +54958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Ojibwa", + Comment = null, }, new() { @@ -49969,6 +54969,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Ojibwa", + Comment = null, }, new() { @@ -49979,6 +54980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Japanese", + Comment = null, }, new() { @@ -49989,6 +54991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Severn Ojibwa", + Comment = null, }, new() { @@ -49999,6 +55002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ontong Java", + Comment = null, }, new() { @@ -50009,6 +55013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Ojibwa", + Comment = null, }, new() { @@ -50019,6 +55024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okanagan", + Comment = null, }, new() { @@ -50029,6 +55035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okobo", + Comment = null, }, new() { @@ -50039,6 +55046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobo", + Comment = null, }, new() { @@ -50049,6 +55057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okodia", + Comment = null, }, new() { @@ -50059,6 +55068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okpe (Southwestern Edo)", + Comment = null, }, new() { @@ -50069,6 +55079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Koko Babangk", + Comment = null, }, new() { @@ -50079,6 +55090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koresh-e Rostam", + Comment = null, }, new() { @@ -50089,6 +55101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okiek", + Comment = null, }, new() { @@ -50099,6 +55112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Oko-Juwoi", + Comment = null, }, new() { @@ -50109,6 +55123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwamtim One", + Comment = null, }, new() { @@ -50119,6 +55134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Old Kentish Sign Language", + Comment = null, }, new() { @@ -50129,6 +55145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Korean (10th-16th cent.)", + Comment = null, }, new() { @@ -50139,6 +55156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oki-No-Erabu", + Comment = null, }, new() { @@ -50149,6 +55167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Korean (3rd-9th cent.)", + Comment = null, }, new() { @@ -50159,6 +55178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirike", + Comment = null, }, new() { @@ -50169,6 +55189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oko-Eni-Osayen", + Comment = null, }, new() { @@ -50179,6 +55200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oku", + Comment = null, }, new() { @@ -50189,6 +55211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orokaiva", + Comment = null, }, new() { @@ -50199,6 +55222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okpe (Northwestern Edo)", + Comment = null, }, new() { @@ -50209,6 +55233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Khmer", + Comment = null, }, new() { @@ -50219,6 +55244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walungge", + Comment = null, }, new() { @@ -50229,6 +55255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oli-Bodiman", + Comment = null, }, new() { @@ -50239,6 +55266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mochi", + Comment = null, }, new() { @@ -50249,6 +55277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olekha", + Comment = null, }, new() { @@ -50259,6 +55288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Olkol", + Comment = null, }, new() { @@ -50269,6 +55299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oloma", + Comment = null, }, new() { @@ -50279,6 +55310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Livvi", + Comment = null, }, new() { @@ -50289,6 +55321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olrat", + Comment = null, }, new() { @@ -50299,6 +55332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Lithuanian", + Comment = null, }, new() { @@ -50309,6 +55343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuvale", + Comment = null, }, new() { @@ -50319,6 +55354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omaha-Ponca", + Comment = null, }, new() { @@ -50329,6 +55365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Ambae", + Comment = null, }, new() { @@ -50339,6 +55376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mochica", + Comment = null, }, new() { @@ -50349,6 +55387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omagua", + Comment = null, }, new() { @@ -50359,6 +55398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omi", + Comment = null, }, new() { @@ -50369,6 +55409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Omok", + Comment = null, }, new() { @@ -50379,6 +55420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ombo", + Comment = null, }, new() { @@ -50389,6 +55431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Minoan", + Comment = null, }, new() { @@ -50399,6 +55442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Utarmbung", + Comment = null, }, new() { @@ -50409,6 +55453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Manipuri", + Comment = null, }, new() { @@ -50419,6 +55464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Marathi", + Comment = null, }, new() { @@ -50429,6 +55475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omotik", + Comment = null, }, new() { @@ -50439,6 +55486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Omurano", + Comment = null, }, new() { @@ -50449,6 +55497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Tairora", + Comment = null, }, new() { @@ -50459,6 +55508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Mon", + Comment = null, }, new() { @@ -50469,6 +55519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Malay", + Comment = null, }, new() { @@ -50479,6 +55530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ona", + Comment = null, }, new() { @@ -50489,6 +55541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lingao", + Comment = null, }, new() { @@ -50499,6 +55552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oneida", + Comment = null, }, new() { @@ -50509,6 +55563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olo", + Comment = null, }, new() { @@ -50519,6 +55574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onin", + Comment = null, }, new() { @@ -50529,6 +55585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onjob", + Comment = null, }, new() { @@ -50539,6 +55596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabore One", + Comment = null, }, new() { @@ -50549,6 +55607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onobasulu", + Comment = null, }, new() { @@ -50559,6 +55618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onondaga", + Comment = null, }, new() { @@ -50569,6 +55629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sartang", + Comment = null, }, new() { @@ -50579,6 +55640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern One", + Comment = null, }, new() { @@ -50589,6 +55651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ono", + Comment = null, }, new() { @@ -50599,6 +55662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ontenu", + Comment = null, }, new() { @@ -50609,6 +55673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unua", + Comment = null, }, new() { @@ -50619,6 +55684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Nubian", + Comment = null, }, new() { @@ -50629,6 +55695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onin Based Pidgin", + Comment = null, }, new() { @@ -50639,6 +55706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tohono O'odham", + Comment = null, }, new() { @@ -50649,6 +55717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ong", + Comment = null, }, new() { @@ -50659,6 +55728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Önge", + Comment = null, }, new() { @@ -50669,6 +55739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oorlams", + Comment = null, }, new() { @@ -50679,6 +55750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Ossetic", + Comment = null, }, new() { @@ -50689,6 +55761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okpamheri", + Comment = null, }, new() { @@ -50699,6 +55772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kopkaka", + Comment = null, }, new() { @@ -50709,6 +55783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oksapmin", + Comment = null, }, new() { @@ -50719,6 +55794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Opao", + Comment = null, }, new() { @@ -50729,6 +55805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Opata", + Comment = null, }, new() { @@ -50739,6 +55816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ofayé", + Comment = null, }, new() { @@ -50749,6 +55827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroha", + Comment = null, }, new() { @@ -50759,6 +55838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orma", + Comment = null, }, new() { @@ -50769,6 +55849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orejón", + Comment = null, }, new() { @@ -50779,6 +55860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oring", + Comment = null, }, new() { @@ -50789,6 +55871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroqen", + Comment = null, }, new() { @@ -50799,6 +55882,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Oriya (macrolanguage)", + Comment = null, }, new() { @@ -50809,6 +55893,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Oromo", + Comment = null, }, new() { @@ -50819,6 +55904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orang Kanaq", + Comment = null, }, new() { @@ -50829,6 +55915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orokolo", + Comment = null, }, new() { @@ -50839,6 +55926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oruma", + Comment = null, }, new() { @@ -50849,6 +55937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orang Seletar", + Comment = null, }, new() { @@ -50859,6 +55948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adivasi Oriya", + Comment = null, }, new() { @@ -50869,6 +55959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ormuri", + Comment = null, }, new() { @@ -50879,6 +55970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Russian", + Comment = null, }, new() { @@ -50889,6 +55981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oro Win", + Comment = null, }, new() { @@ -50899,6 +55992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oro", + Comment = null, }, new() { @@ -50909,6 +56003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odia", + Comment = null, }, new() { @@ -50919,6 +56014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ormu", + Comment = null, }, new() { @@ -50929,6 +56025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Osage", + Comment = null, }, new() { @@ -50939,6 +56036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Oscan", + Comment = null, }, new() { @@ -50949,6 +56047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Digor Ossetic", + Comment = null, }, new() { @@ -50959,6 +56058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Osing", + Comment = null, }, new() { @@ -50969,6 +56069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Sundanese", + Comment = null, }, new() { @@ -50979,6 +56080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ososo", + Comment = null, }, new() { @@ -50989,6 +56091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Spanish", + Comment = null, }, new() { @@ -50999,6 +56102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iron Ossetic", + Comment = null, }, new() { @@ -51009,6 +56113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Osatu", + Comment = null, }, new() { @@ -51019,6 +56124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern One", + Comment = null, }, new() { @@ -51029,6 +56135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Saxon", + Comment = null, }, new() { @@ -51039,6 +56146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ottoman Turkish (1500-1928)", + Comment = null, }, new() { @@ -51049,6 +56157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Tibetan", + Comment = null, }, new() { @@ -51059,6 +56168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ot Danum", + Comment = null, }, new() { @@ -51069,6 +56179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mezquital Otomi", + Comment = null, }, new() { @@ -51079,6 +56190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Oti", + Comment = null, }, new() { @@ -51089,6 +56201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Turkish", + Comment = null, }, new() { @@ -51099,6 +56212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tilapa Otomi", + Comment = null, }, new() { @@ -51109,6 +56223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Highland Otomi", + Comment = null, }, new() { @@ -51119,6 +56234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenango Otomi", + Comment = null, }, new() { @@ -51129,6 +56245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Querétaro Otomi", + Comment = null, }, new() { @@ -51139,6 +56256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Otoro", + Comment = null, }, new() { @@ -51149,6 +56267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Estado de México Otomi", + Comment = null, }, new() { @@ -51159,6 +56278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temoaya Otomi", + Comment = null, }, new() { @@ -51169,6 +56289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Otuke", + Comment = null, }, new() { @@ -51179,6 +56300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ottawa", + Comment = null, }, new() { @@ -51189,6 +56311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Texcatepec Otomi", + Comment = null, }, new() { @@ -51199,6 +56322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Tamil", + Comment = null, }, new() { @@ -51209,6 +56333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixtenco Otomi", + Comment = null, }, new() { @@ -51219,6 +56344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagargrent", + Comment = null, }, new() { @@ -51229,6 +56355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Glio-Oubi", + Comment = null, }, new() { @@ -51239,6 +56366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oune", + Comment = null, }, new() { @@ -51249,6 +56377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Uighur", + Comment = null, }, new() { @@ -51259,6 +56388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ouma", + Comment = null, }, new() { @@ -51269,6 +56399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elfdalian", + Comment = null, }, new() { @@ -51279,6 +56410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Owiniga", + Comment = null, }, new() { @@ -51289,6 +56421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Welsh", + Comment = null, }, new() { @@ -51299,6 +56432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oy", + Comment = null, }, new() { @@ -51309,6 +56443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oyda", + Comment = null, }, new() { @@ -51319,6 +56454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayampi", + Comment = null, }, new() { @@ -51329,6 +56465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oya'oya", + Comment = null, }, new() { @@ -51339,6 +56476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koonzime", + Comment = null, }, new() { @@ -51349,6 +56487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parecís", + Comment = null, }, new() { @@ -51359,6 +56498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacoh", + Comment = null, }, new() { @@ -51369,6 +56509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paumarí", + Comment = null, }, new() { @@ -51379,6 +56520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pagibete", + Comment = null, }, new() { @@ -51389,6 +56531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Paranawát", + Comment = null, }, new() { @@ -51399,6 +56542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangasinan", + Comment = null, }, new() { @@ -51409,6 +56553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenharim", + Comment = null, }, new() { @@ -51419,6 +56564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pe", + Comment = null, }, new() { @@ -51429,6 +56575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parakanã", + Comment = null, }, new() { @@ -51439,6 +56586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pahlavi", + Comment = null, }, new() { @@ -51449,6 +56597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pampanga", + Comment = null, }, new() { @@ -51459,6 +56608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panjabi", + Comment = null, }, new() { @@ -51469,6 +56619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Paiute", + Comment = null, }, new() { @@ -51479,6 +56630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papiamento", + Comment = null, }, new() { @@ -51489,6 +56641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parya", + Comment = null, }, new() { @@ -51499,6 +56652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panamint", + Comment = null, }, new() { @@ -51509,6 +56663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papasena", + Comment = null, }, new() { @@ -51519,6 +56674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palauan", + Comment = null, }, new() { @@ -51529,6 +56685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pakaásnovos", + Comment = null, }, new() { @@ -51539,6 +56696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pawnee", + Comment = null, }, new() { @@ -51549,6 +56707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pankararé", + Comment = null, }, new() { @@ -51559,6 +56718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pech", + Comment = null, }, new() { @@ -51569,6 +56729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pankararú", + Comment = null, }, new() { @@ -51579,6 +56740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Páez", + Comment = null, }, new() { @@ -51589,6 +56751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patamona", + Comment = null, }, new() { @@ -51599,6 +56762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mezontla Popoloca", + Comment = null, }, new() { @@ -51609,6 +56773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coyotepec Popoloca", + Comment = null, }, new() { @@ -51619,6 +56784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Paraujano", + Comment = null, }, new() { @@ -51629,6 +56795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "E'ñapa Woromaipu", + Comment = null, }, new() { @@ -51639,6 +56806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parkwa", + Comment = null, }, new() { @@ -51649,6 +56817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mak (Nigeria)", + Comment = null, }, new() { @@ -51659,6 +56828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puebla Mazatec", + Comment = null, }, new() { @@ -51669,6 +56839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpasam", + Comment = null, }, new() { @@ -51679,6 +56850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papel", + Comment = null, }, new() { @@ -51689,6 +56861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badyara", + Comment = null, }, new() { @@ -51699,6 +56872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangwa", + Comment = null, }, new() { @@ -51709,6 +56883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Pame", + Comment = null, }, new() { @@ -51719,6 +56894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pashto", + Comment = null, }, new() { @@ -51729,6 +56905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pashto", + Comment = null, }, new() { @@ -51739,6 +56916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pnar", + Comment = null, }, new() { @@ -51749,6 +56927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pyu (Papua New Guinea)", + Comment = null, }, new() { @@ -51759,6 +56938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Inés Ahuatempan Popoloca", + Comment = null, }, new() { @@ -51769,6 +56949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pear", + Comment = null, }, new() { @@ -51779,6 +56960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bouyei", + Comment = null, }, new() { @@ -51789,6 +56971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Picard", + Comment = null, }, new() { @@ -51799,6 +56982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruching Palaung", + Comment = null, }, new() { @@ -51809,6 +56993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paliyan", + Comment = null, }, new() { @@ -51819,6 +57004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paniya", + Comment = null, }, new() { @@ -51829,6 +57015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pardhan", + Comment = null, }, new() { @@ -51839,6 +57026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duruwa", + Comment = null, }, new() { @@ -51849,6 +57037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parenga", + Comment = null, }, new() { @@ -51859,6 +57048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paite Chin", + Comment = null, }, new() { @@ -51869,6 +57059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pardhi", + Comment = null, }, new() { @@ -51879,6 +57070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigerian Pidgin", + Comment = null, }, new() { @@ -51889,6 +57081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piti", + Comment = null, }, new() { @@ -51899,6 +57092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacahuara", + Comment = null, }, new() { @@ -51909,6 +57103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pyapun", + Comment = null, }, new() { @@ -51919,6 +57114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anam", + Comment = null, }, new() { @@ -51929,6 +57125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pennsylvania German", + Comment = null, }, new() { @@ -51939,6 +57136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa Di", + Comment = null, }, new() { @@ -51949,6 +57147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Podena", + Comment = null, }, new() { @@ -51959,6 +57158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Padoe", + Comment = null, }, new() { @@ -51969,6 +57169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plautdietsch", + Comment = null, }, new() { @@ -51979,6 +57180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayan", + Comment = null, }, new() { @@ -51989,6 +57191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peranakan Indonesian", + Comment = null, }, new() { @@ -51999,6 +57202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eastern Pomo", + Comment = null, }, new() { @@ -52009,6 +57213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mala (Papua New Guinea)", + Comment = null, }, new() { @@ -52019,6 +57224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taje", + Comment = null, }, new() { @@ -52029,6 +57235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northeastern Pomo", + Comment = null, }, new() { @@ -52039,6 +57246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pengo", + Comment = null, }, new() { @@ -52049,6 +57257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonan", + Comment = null, }, new() { @@ -52059,6 +57268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chichimeca-Jonaz", + Comment = null, }, new() { @@ -52069,6 +57279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northern Pomo", + Comment = null, }, new() { @@ -52079,6 +57290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Penchal", + Comment = null, }, new() { @@ -52089,6 +57301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pekal", + Comment = null, }, new() { @@ -52099,6 +57312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phende", + Comment = null, }, new() { @@ -52109,6 +57323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Persian (ca. 600-400 B.C.)", + Comment = null, }, new() { @@ -52119,6 +57334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunja", + Comment = null, }, new() { @@ -52129,6 +57345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pomo", + Comment = null, }, new() { @@ -52139,6 +57356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranian Persian", + Comment = null, }, new() { @@ -52149,6 +57367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pémono", + Comment = null, }, new() { @@ -52159,6 +57378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Petats", + Comment = null, }, new() { @@ -52169,6 +57389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Petjo", + Comment = null, }, new() { @@ -52179,6 +57400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Penan", + Comment = null, }, new() { @@ -52189,6 +57411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pááfang", + Comment = null, }, new() { @@ -52199,6 +57422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pere", + Comment = null, }, new() { @@ -52209,6 +57433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pfaelzisch", + Comment = null, }, new() { @@ -52219,6 +57444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sudanese Creole Arabic", + Comment = null, }, new() { @@ -52229,6 +57455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Gāndhārī", + Comment = null, }, new() { @@ -52239,6 +57466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangwali", + Comment = null, }, new() { @@ -52249,6 +57477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pagi", + Comment = null, }, new() { @@ -52259,6 +57488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rerep", + Comment = null, }, new() { @@ -52269,6 +57499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Primitive Irish", + Comment = null, }, new() { @@ -52279,6 +57510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Paelignian", + Comment = null, }, new() { @@ -52289,6 +57521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangseng", + Comment = null, }, new() { @@ -52299,6 +57532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pagu", + Comment = null, }, new() { @@ -52309,6 +57543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papua New Guinean Sign Language", + Comment = null, }, new() { @@ -52319,6 +57554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa-Hng", + Comment = null, }, new() { @@ -52329,6 +57565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phudagi", + Comment = null, }, new() { @@ -52339,6 +57576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuong", + Comment = null, }, new() { @@ -52349,6 +57587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phukha", + Comment = null, }, new() { @@ -52359,6 +57598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahari", + Comment = null, }, new() { @@ -52369,6 +57609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phake", + Comment = null, }, new() { @@ -52379,6 +57620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phalura", + Comment = null, }, new() { @@ -52389,6 +57631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phimbi", + Comment = null, }, new() { @@ -52399,6 +57642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Phoenician", + Comment = null, }, new() { @@ -52409,6 +57653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phunoi", + Comment = null, }, new() { @@ -52419,6 +57664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phana'", + Comment = null, }, new() { @@ -52429,6 +57675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahari-Potwari", + Comment = null, }, new() { @@ -52439,6 +57686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phu Thai", + Comment = null, }, new() { @@ -52449,6 +57697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuan", + Comment = null, }, new() { @@ -52459,6 +57708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahlavani", + Comment = null, }, new() { @@ -52469,6 +57719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phangduwali", + Comment = null, }, new() { @@ -52479,6 +57730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pima Bajo", + Comment = null, }, new() { @@ -52489,6 +57741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yine", + Comment = null, }, new() { @@ -52499,6 +57752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinji", + Comment = null, }, new() { @@ -52509,6 +57763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piaroa", + Comment = null, }, new() { @@ -52519,6 +57774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Piro", + Comment = null, }, new() { @@ -52529,6 +57785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pingelapese", + Comment = null, }, new() { @@ -52539,6 +57796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pisabo", + Comment = null, }, new() { @@ -52549,6 +57807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pitcairn-Norfolk", + Comment = null, }, new() { @@ -52559,6 +57818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pijao", + Comment = null, }, new() { @@ -52569,6 +57829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yom", + Comment = null, }, new() { @@ -52579,6 +57840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Powhatan", + Comment = null, }, new() { @@ -52589,6 +57851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piame", + Comment = null, }, new() { @@ -52599,6 +57862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piapoco", + Comment = null, }, new() { @@ -52609,6 +57873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pero", + Comment = null, }, new() { @@ -52619,6 +57884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piratapuyo", + Comment = null, }, new() { @@ -52629,6 +57895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pijin", + Comment = null, }, new() { @@ -52639,6 +57906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pitta Pitta", + Comment = null, }, new() { @@ -52649,6 +57917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pintupi-Luritja", + Comment = null, }, new() { @@ -52659,6 +57928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pileni", + Comment = null, }, new() { @@ -52669,6 +57939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pimbwe", + Comment = null, }, new() { @@ -52679,6 +57950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piu", + Comment = null, }, new() { @@ -52689,6 +57961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piya-Kwonci", + Comment = null, }, new() { @@ -52699,6 +57972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pije", + Comment = null, }, new() { @@ -52709,6 +57983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pitjantjatjara", + Comment = null, }, new() { @@ -52719,6 +57994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ardhamāgadhī Prākrit", + Comment = null, }, new() { @@ -52729,6 +58005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pokomo", + Comment = null, }, new() { @@ -52739,6 +58016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Paekche", + Comment = null, }, new() { @@ -52749,6 +58027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pak-Tong", + Comment = null, }, new() { @@ -52759,6 +58038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pankhu", + Comment = null, }, new() { @@ -52769,6 +58049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pakanha", + Comment = null, }, new() { @@ -52779,6 +58060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pökoot", + Comment = null, }, new() { @@ -52789,6 +58071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pukapuka", + Comment = null, }, new() { @@ -52799,6 +58082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Attapady Kurumba", + Comment = null, }, new() { @@ -52809,6 +58093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pakistan Sign Language", + Comment = null, }, new() { @@ -52819,6 +58104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maleng", + Comment = null, }, new() { @@ -52829,6 +58115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paku", + Comment = null, }, new() { @@ -52839,6 +58126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miani", + Comment = null, }, new() { @@ -52849,6 +58137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polonombauk", + Comment = null, }, new() { @@ -52859,6 +58148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Palawano", + Comment = null, }, new() { @@ -52869,6 +58159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polari", + Comment = null, }, new() { @@ -52879,6 +58170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palu'e", + Comment = null, }, new() { @@ -52889,6 +58181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pilagá", + Comment = null, }, new() { @@ -52899,6 +58192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paulohi", + Comment = null, }, new() { @@ -52909,6 +58203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pali", + Comment = null, }, new() { @@ -52919,6 +58214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kohistani Shina", + Comment = null, }, new() { @@ -52929,6 +58225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shwe Palaung", + Comment = null, }, new() { @@ -52939,6 +58236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palenquero", + Comment = null, }, new() { @@ -52949,6 +58247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oluta Popoluca", + Comment = null, }, new() { @@ -52959,6 +58258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Palaic", + Comment = null, }, new() { @@ -52969,6 +58269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palaka Senoufo", + Comment = null, }, new() { @@ -52979,6 +58280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Marcos Tlacoyalco Popoloca", + Comment = null, }, new() { @@ -52989,6 +58291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plateau Malagasy", + Comment = null, }, new() { @@ -52999,6 +58302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palikúr", + Comment = null, }, new() { @@ -53009,6 +58313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Palawano", + Comment = null, }, new() { @@ -53019,6 +58324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brooke's Point Palawano", + Comment = null, }, new() { @@ -53029,6 +58335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolyu", + Comment = null, }, new() { @@ -53039,6 +58346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paluan", + Comment = null, }, new() { @@ -53049,6 +58357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paama", + Comment = null, }, new() { @@ -53059,6 +58368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pambia", + Comment = null, }, new() { @@ -53069,6 +58379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pallanganmiddang", + Comment = null, }, new() { @@ -53079,6 +58390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwaamei", + Comment = null, }, new() { @@ -53089,6 +58401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pamona", + Comment = null, }, new() { @@ -53099,6 +58412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Māhārāṣṭri Prākrit", + Comment = null, }, new() { @@ -53109,6 +58423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pumi", + Comment = null, }, new() { @@ -53119,6 +58434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pumi", + Comment = null, }, new() { @@ -53129,6 +58445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lingua Franca", + Comment = null, }, new() { @@ -53139,6 +58456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pomo", + Comment = null, }, new() { @@ -53149,6 +58467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pam", + Comment = null, }, new() { @@ -53159,6 +58478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pom", + Comment = null, }, new() { @@ -53169,6 +58489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pame", + Comment = null, }, new() { @@ -53179,6 +58500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paynamar", + Comment = null, }, new() { @@ -53189,6 +58511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piemontese", + Comment = null, }, new() { @@ -53199,6 +58522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuamotuan", + Comment = null, }, new() { @@ -53209,6 +58533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plains Miwok", + Comment = null, }, new() { @@ -53219,6 +58544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poumei Naga", + Comment = null, }, new() { @@ -53229,6 +58555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papuan Malay", + Comment = null, }, new() { @@ -53239,6 +58566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southern Pame", + Comment = null, }, new() { @@ -53249,6 +58577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Bah-Biau", + Comment = null, }, new() { @@ -53259,6 +58588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Panjabi", + Comment = null, }, new() { @@ -53269,6 +58599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pannei", + Comment = null, }, new() { @@ -53279,6 +58610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpinda", + Comment = null, }, new() { @@ -53289,6 +58621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Penan", + Comment = null, }, new() { @@ -53299,6 +58632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangu", + Comment = null, }, new() { @@ -53309,6 +58643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Penrhyn", + Comment = null, }, new() { @@ -53319,6 +58654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aoheng", + Comment = null, }, new() { @@ -53329,6 +58665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pinjarup", + Comment = null, }, new() { @@ -53339,6 +58676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paunaka", + Comment = null, }, new() { @@ -53349,6 +58687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paleni", + Comment = null, }, new() { @@ -53359,6 +58698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Batu 1", + Comment = null, }, new() { @@ -53369,6 +58709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinai-Hagahai", + Comment = null, }, new() { @@ -53379,6 +58720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Panobo", + Comment = null, }, new() { @@ -53389,6 +58731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pancana", + Comment = null, }, new() { @@ -53399,6 +58742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pana (Burkina Faso)", + Comment = null, }, new() { @@ -53409,6 +58753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panim", + Comment = null, }, new() { @@ -53419,6 +58764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ponosakan", + Comment = null, }, new() { @@ -53429,6 +58775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pontic", + Comment = null, }, new() { @@ -53439,6 +58786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiongnai Bunu", + Comment = null, }, new() { @@ -53449,6 +58797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinigura", + Comment = null, }, new() { @@ -53459,6 +58808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banyjima", + Comment = null, }, new() { @@ -53469,6 +58819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phong-Kniang", + Comment = null, }, new() { @@ -53479,6 +58830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinyin", + Comment = null, }, new() { @@ -53489,6 +58841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pana (Central African Republic)", + Comment = null, }, new() { @@ -53499,6 +58852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poqomam", + Comment = null, }, new() { @@ -53509,6 +58863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Juan Atzingo Popoloca", + Comment = null, }, new() { @@ -53519,6 +58874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poke", + Comment = null, }, new() { @@ -53529,6 +58885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Potiguára", + Comment = null, }, new() { @@ -53539,6 +58896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poqomchi'", + Comment = null, }, new() { @@ -53549,6 +58907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Popoluca", + Comment = null, }, new() { @@ -53559,6 +58918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pokangá", + Comment = null, }, new() { @@ -53569,6 +58929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polish", + Comment = null, }, new() { @@ -53579,6 +58940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Pomo", + Comment = null, }, new() { @@ -53589,6 +58951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pohnpeian", + Comment = null, }, new() { @@ -53599,6 +58962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Central Pomo", + Comment = null, }, new() { @@ -53609,6 +58973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwapwâ", + Comment = null, }, new() { @@ -53619,6 +58984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Texistepec Popoluca", + Comment = null, }, new() { @@ -53629,6 +58995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Portuguese", + Comment = null, }, new() { @@ -53639,6 +59006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sayula Popoluca", + Comment = null, }, new() { @@ -53649,6 +59017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Potawatomi", + Comment = null, }, new() { @@ -53659,6 +59028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Guinea Crioulo", + Comment = null, }, new() { @@ -53669,6 +59039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Felipe Otlaltepec Popoloca", + Comment = null, }, new() { @@ -53679,6 +59050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Polabian", + Comment = null, }, new() { @@ -53689,6 +59061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pogolo", + Comment = null, }, new() { @@ -53699,6 +59072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papi", + Comment = null, }, new() { @@ -53709,6 +59083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paipai", + Comment = null, }, new() { @@ -53719,6 +59094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uma", + Comment = null, }, new() { @@ -53729,6 +59105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pipil", + Comment = null, }, new() { @@ -53739,6 +59116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papuma", + Comment = null, }, new() { @@ -53749,6 +59127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papapana", + Comment = null, }, new() { @@ -53759,6 +59138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Folopa", + Comment = null, }, new() { @@ -53769,6 +59149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pelende", + Comment = null, }, new() { @@ -53779,6 +59160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pei", + Comment = null, }, new() { @@ -53789,6 +59171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Luís Temalacayuca Popoloca", + Comment = null, }, new() { @@ -53799,6 +59182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pare", + Comment = null, }, new() { @@ -53809,6 +59193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Papora", + Comment = null, }, new() { @@ -53819,6 +59204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa'a", + Comment = null, }, new() { @@ -53829,6 +59215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malecite-Passamaquoddy", + Comment = null, }, new() { @@ -53839,6 +59226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parachi", + Comment = null, }, new() { @@ -53849,6 +59237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parsi-Dari", + Comment = null, }, new() { @@ -53859,6 +59248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Principense", + Comment = null, }, new() { @@ -53869,6 +59259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paranan", + Comment = null, }, new() { @@ -53879,6 +59270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Prussian", + Comment = null, }, new() { @@ -53889,6 +59281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Porohanon", + Comment = null, }, new() { @@ -53899,6 +59292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paicî", + Comment = null, }, new() { @@ -53909,6 +59303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parauk", + Comment = null, }, new() { @@ -53919,6 +59314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peruvian Sign Language", + Comment = null, }, new() { @@ -53929,6 +59325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kibiri", + Comment = null, }, new() { @@ -53939,6 +59336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Prasuni", + Comment = null, }, new() { @@ -53949,6 +59347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Provençal (to 1500)", + Comment = null, }, new() { @@ -53959,6 +59358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashéninka Perené", + Comment = null, }, new() { @@ -53969,6 +59369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Puri", + Comment = null, }, new() { @@ -53979,6 +59380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dari", + Comment = null, }, new() { @@ -53989,6 +59391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phai", + Comment = null, }, new() { @@ -53999,6 +59402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puragi", + Comment = null, }, new() { @@ -54009,6 +59413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parawen", + Comment = null, }, new() { @@ -54019,6 +59424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purik", + Comment = null, }, new() { @@ -54029,6 +59435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Providencia Sign Language", + Comment = null, }, new() { @@ -54039,6 +59446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asue Awyu", + Comment = null, }, new() { @@ -54049,6 +59457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranian Sign Language", + Comment = null, }, new() { @@ -54059,6 +59468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plains Indian Sign Language", + Comment = null, }, new() { @@ -54069,6 +59479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Malay", + Comment = null, }, new() { @@ -54079,6 +59490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Penang Sign Language", + Comment = null, }, new() { @@ -54089,6 +59501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Pashai", + Comment = null, }, new() { @@ -54099,6 +59512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Pashai", + Comment = null, }, new() { @@ -54109,6 +59523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puerto Rican Sign Language", + Comment = null, }, new() { @@ -54119,6 +59534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pauserna", + Comment = null, }, new() { @@ -54129,6 +59545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panasuan", + Comment = null, }, new() { @@ -54139,6 +59556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polish Sign Language", + Comment = null, }, new() { @@ -54149,6 +59567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Philippine Sign Language", + Comment = null, }, new() { @@ -54159,6 +59578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pasi", + Comment = null, }, new() { @@ -54169,6 +59589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Portuguese Sign Language", + Comment = null, }, new() { @@ -54179,6 +59600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaulong", + Comment = null, }, new() { @@ -54189,6 +59611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Pashto", + Comment = null, }, new() { @@ -54199,6 +59622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sauraseni Prākrit", + Comment = null, }, new() { @@ -54209,6 +59633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Port Sandwich", + Comment = null, }, new() { @@ -54219,6 +59644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Piscataway", + Comment = null, }, new() { @@ -54229,6 +59655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pai Tavytera", + Comment = null, }, new() { @@ -54239,6 +59666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pataxó Hã-Ha-Hãe", + Comment = null, }, new() { @@ -54249,6 +59677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pindiini", + Comment = null, }, new() { @@ -54259,6 +59688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patani", + Comment = null, }, new() { @@ -54269,6 +59699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zo'é", + Comment = null, }, new() { @@ -54279,6 +59710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patep", + Comment = null, }, new() { @@ -54289,6 +59721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pattapu", + Comment = null, }, new() { @@ -54299,6 +59732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piamatsina", + Comment = null, }, new() { @@ -54309,6 +59743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enrekang", + Comment = null, }, new() { @@ -54319,6 +59754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambam", + Comment = null, }, new() { @@ -54329,6 +59765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Port Vato", + Comment = null, }, new() { @@ -54339,6 +59776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pentlatch", + Comment = null, }, new() { @@ -54349,6 +59787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pathiya", + Comment = null, }, new() { @@ -54359,6 +59798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Highland Purepecha", + Comment = null, }, new() { @@ -54369,6 +59809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purum", + Comment = null, }, new() { @@ -54379,6 +59820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Merap", + Comment = null, }, new() { @@ -54389,6 +59831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Aput", + Comment = null, }, new() { @@ -54399,6 +59842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Puelche", + Comment = null, }, new() { @@ -54409,6 +59853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Merah", + Comment = null, }, new() { @@ -54419,6 +59864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuie", + Comment = null, }, new() { @@ -54429,6 +59875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puinave", + Comment = null, }, new() { @@ -54439,6 +59886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Tubu", + Comment = null, }, new() { @@ -54449,6 +59897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puma", + Comment = null, }, new() { @@ -54459,6 +59908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puoc", + Comment = null, }, new() { @@ -54469,6 +59919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pulabu", + Comment = null, }, new() { @@ -54479,6 +59930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Puquina", + Comment = null, }, new() { @@ -54489,6 +59941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puruborá", + Comment = null, }, new() { @@ -54499,6 +59952,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Pushto", + Comment = null, }, new() { @@ -54509,6 +59963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Putoh", + Comment = null, }, new() { @@ -54519,6 +59974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punu", + Comment = null, }, new() { @@ -54529,6 +59985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puluwatese", + Comment = null, }, new() { @@ -54539,6 +59996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puare", + Comment = null, }, new() { @@ -54549,6 +60007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Purisimeño", + Comment = null, }, new() { @@ -54559,6 +60018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pawaia", + Comment = null, }, new() { @@ -54569,6 +60029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panawa", + Comment = null, }, new() { @@ -54579,6 +60040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gapapaiwa", + Comment = null, }, new() { @@ -54589,6 +60051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Patwin", + Comment = null, }, new() { @@ -54599,6 +60062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molbog", + Comment = null, }, new() { @@ -54609,6 +60073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paiwan", + Comment = null, }, new() { @@ -54619,6 +60084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwo Western Karen", + Comment = null, }, new() { @@ -54629,6 +60095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Powari", + Comment = null, }, new() { @@ -54639,6 +60106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwo Northern Karen", + Comment = null, }, new() { @@ -54649,6 +60117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quetzaltepec Mixe", + Comment = null, }, new() { @@ -54659,6 +60128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pye Krumen", + Comment = null, }, new() { @@ -54669,6 +60139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fyam", + Comment = null, }, new() { @@ -54679,6 +60150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poyanáwa", + Comment = null, }, new() { @@ -54689,6 +60161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paraguayan Sign Language", + Comment = null, }, new() { @@ -54699,6 +60172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puyuma", + Comment = null, }, new() { @@ -54709,6 +60183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pyu (Myanmar)", + Comment = null, }, new() { @@ -54719,6 +60194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pyen", + Comment = null, }, new() { @@ -54729,6 +60205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pesse", + Comment = null, }, new() { @@ -54739,6 +60216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pazeh", + Comment = null, }, new() { @@ -54749,6 +60227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jejara Naga", + Comment = null, }, new() { @@ -54759,6 +60238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quapaw", + Comment = null, }, new() { @@ -54769,6 +60249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huallaga Huánuco Quechua", + Comment = null, }, new() { @@ -54779,6 +60260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "K'iche'", + Comment = null, }, new() { @@ -54789,6 +60271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Calderón Highland Quichua", + Comment = null, }, new() { @@ -54799,6 +60282,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Quechua", + Comment = null, }, new() { @@ -54809,6 +60293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambayeque Quechua", + Comment = null, }, new() { @@ -54819,6 +60304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chimborazo Highland Quichua", + Comment = null, }, new() { @@ -54829,6 +60315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Bolivian Quechua", + Comment = null, }, new() { @@ -54839,6 +60326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quileute", + Comment = null, }, new() { @@ -54849,6 +60337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chachapoyas Quechua", + Comment = null, }, new() { @@ -54859,6 +60348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Bolivian Quechua", + Comment = null, }, new() { @@ -54869,6 +60359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sipacapense", + Comment = null, }, new() { @@ -54879,6 +60370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Quinault", + Comment = null, }, new() { @@ -54889,6 +60381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pastaza Quechua", + Comment = null, }, new() { @@ -54899,6 +60392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quinqui", + Comment = null, }, new() { @@ -54909,6 +60403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanahuanca Pasco Quechua", + Comment = null, }, new() { @@ -54919,6 +60414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santiago del Estero Quichua", + Comment = null, }, new() { @@ -54929,6 +60425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sacapulteco", + Comment = null, }, new() { @@ -54939,6 +60436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tena Lowland Quichua", + Comment = null, }, new() { @@ -54949,6 +60447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yauyos Quechua", + Comment = null, }, new() { @@ -54959,6 +60458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayacucho Quechua", + Comment = null, }, new() { @@ -54969,6 +60469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cusco Quechua", + Comment = null, }, new() { @@ -54979,6 +60480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambo-Pasco Quechua", + Comment = null, }, new() { @@ -54989,6 +60491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajamarca Quechua", + Comment = null, }, new() { @@ -54999,6 +60502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Apurímac Quechua", + Comment = null, }, new() { @@ -55009,6 +60513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huamalíes-Dos de Mayo Huánuco Quechua", + Comment = null, }, new() { @@ -55019,6 +60524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imbabura Highland Quichua", + Comment = null, }, new() { @@ -55029,6 +60535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loja Highland Quichua", + Comment = null, }, new() { @@ -55039,6 +60546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajatambo North Lima Quechua", + Comment = null, }, new() { @@ -55049,6 +60557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Margos-Yarowilca-Lauricocha Quechua", + Comment = null, }, new() { @@ -55059,6 +60568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Junín Quechua", + Comment = null, }, new() { @@ -55069,6 +60579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Napo Lowland Quechua", + Comment = null, }, new() { @@ -55079,6 +60590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacaraos Quechua", + Comment = null, }, new() { @@ -55089,6 +60601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Martín Quechua", + Comment = null, }, new() { @@ -55099,6 +60612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaylla Wanca Quechua", + Comment = null, }, new() { @@ -55109,6 +60623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Queyu", + Comment = null, }, new() { @@ -55119,6 +60634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pastaza Quichua", + Comment = null, }, new() { @@ -55129,6 +60645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Corongo Ancash Quechua", + Comment = null, }, new() { @@ -55139,6 +60656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Quechua", + Comment = null, }, new() { @@ -55149,6 +60667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaylas Ancash Quechua", + Comment = null, }, new() { @@ -55159,6 +60678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuman (Russia)", + Comment = null, }, new() { @@ -55169,6 +60689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sihuas Ancash Quechua", + Comment = null, }, new() { @@ -55179,6 +60700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kwalhioqua-Tlatskanai", + Comment = null, }, new() { @@ -55189,6 +60711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiquián Ancash Quechua", + Comment = null, }, new() { @@ -55199,6 +60722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chincha Quechua", + Comment = null, }, new() { @@ -55209,6 +60733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panao Huánuco Quechua", + Comment = null, }, new() { @@ -55219,6 +60744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salasaca Highland Quichua", + Comment = null, }, new() { @@ -55229,6 +60755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Conchucos Ancash Quechua", + Comment = null, }, new() { @@ -55239,6 +60766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Conchucos Ancash Quechua", + Comment = null, }, new() { @@ -55249,6 +60777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puno Quechua", + Comment = null, }, new() { @@ -55259,6 +60788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qashqa'i", + Comment = null, }, new() { @@ -55269,6 +60799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cañar Highland Quichua", + Comment = null, }, new() { @@ -55279,6 +60810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Qiang", + Comment = null, }, new() { @@ -55289,6 +60821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Ana de Tusi Pasco Quechua", + Comment = null, }, new() { @@ -55299,6 +60832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arequipa-La Unión Quechua", + Comment = null, }, new() { @@ -55309,6 +60843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jauja Wanca Quechua", + Comment = null, }, new() { @@ -55319,6 +60854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Quenya", + Comment = null, }, new() { @@ -55329,6 +60865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Quiripi", + Comment = null, }, new() { @@ -55339,6 +60876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungmali", + Comment = null, }, new() { @@ -55349,6 +60887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Camling", + Comment = null, }, new() { @@ -55359,6 +60898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rasawa", + Comment = null, }, new() { @@ -55369,6 +60909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rade", + Comment = null, }, new() { @@ -55379,6 +60920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Meohang", + Comment = null, }, new() { @@ -55389,6 +60931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logooli", + Comment = null, }, new() { @@ -55399,6 +60942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rabha", + Comment = null, }, new() { @@ -55409,6 +60953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ramoaaina", + Comment = null, }, new() { @@ -55419,6 +60964,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Rajasthani", + Comment = null, }, new() { @@ -55429,6 +60975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulu-Bohuai", + Comment = null, }, new() { @@ -55439,6 +60986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ralte", + Comment = null, }, new() { @@ -55449,6 +60997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Canela", + Comment = null, }, new() { @@ -55459,6 +61008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riantana", + Comment = null, }, new() { @@ -55469,6 +61019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rao", + Comment = null, }, new() { @@ -55479,6 +61030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapanui", + Comment = null, }, new() { @@ -55489,6 +61041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saam", + Comment = null, }, new() { @@ -55499,6 +61052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rarotongan", + Comment = null, }, new() { @@ -55509,6 +61063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tegali", + Comment = null, }, new() { @@ -55519,6 +61074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Razajerdi", + Comment = null, }, new() { @@ -55529,6 +61085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Raute", + Comment = null, }, new() { @@ -55539,6 +61096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sampang", + Comment = null, }, new() { @@ -55549,6 +61107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawang", + Comment = null, }, new() { @@ -55559,6 +61118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rang", + Comment = null, }, new() { @@ -55569,6 +61129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapa", + Comment = null, }, new() { @@ -55579,6 +61140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rahambuu", + Comment = null, }, new() { @@ -55589,6 +61151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rumai Palaung", + Comment = null, }, new() { @@ -55599,6 +61162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Bontok", + Comment = null, }, new() { @@ -55609,6 +61173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miraya Bikol", + Comment = null, }, new() { @@ -55619,6 +61184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barababaraba", + Comment = null, }, new() { @@ -55629,6 +61195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Réunion Creole French", + Comment = null, }, new() { @@ -55639,6 +61206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rudbari", + Comment = null, }, new() { @@ -55649,6 +61217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rerau", + Comment = null, }, new() { @@ -55659,6 +61228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rembong", + Comment = null, }, new() { @@ -55669,6 +61239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rejang Kayan", + Comment = null, }, new() { @@ -55679,6 +61250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara (Tanzania)", + Comment = null, }, new() { @@ -55689,6 +61261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reli", + Comment = null, }, new() { @@ -55699,6 +61272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rejang", + Comment = null, }, new() { @@ -55709,6 +61283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rendille", + Comment = null, }, new() { @@ -55719,6 +61294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Remo", + Comment = null, }, new() { @@ -55729,6 +61305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rengao", + Comment = null, }, new() { @@ -55739,6 +61316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Rer Bare", + Comment = null, }, new() { @@ -55749,6 +61327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reshe", + Comment = null, }, new() { @@ -55759,6 +61338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Retta", + Comment = null, }, new() { @@ -55769,6 +61349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reyesano", + Comment = null, }, new() { @@ -55779,6 +61360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roria", + Comment = null, }, new() { @@ -55789,6 +61371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romano-Greek", + Comment = null, }, new() { @@ -55799,6 +61382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Rangkas", + Comment = null, }, new() { @@ -55809,6 +61393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romagnol", + Comment = null, }, new() { @@ -55819,6 +61404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Resígaro", + Comment = null, }, new() { @@ -55829,6 +61415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Roglai", + Comment = null, }, new() { @@ -55839,6 +61426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ringgou", + Comment = null, }, new() { @@ -55849,6 +61437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rohingya", + Comment = null, }, new() { @@ -55859,6 +61448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yahang", + Comment = null, }, new() { @@ -55869,6 +61459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riang (India)", + Comment = null, }, new() { @@ -55879,6 +61470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bribri Sign Language", + Comment = null, }, new() { @@ -55889,6 +61481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarifit", + Comment = null, }, new() { @@ -55899,6 +61492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riang Lang", + Comment = null, }, new() { @@ -55909,6 +61503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaturu", + Comment = null, }, new() { @@ -55919,6 +61514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nungu", + Comment = null, }, new() { @@ -55929,6 +61525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ribun", + Comment = null, }, new() { @@ -55939,6 +61536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ritharrngu", + Comment = null, }, new() { @@ -55949,6 +61547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riung", + Comment = null, }, new() { @@ -55959,6 +61558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajong", + Comment = null, }, new() { @@ -55969,6 +61569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Raji", + Comment = null, }, new() { @@ -55979,6 +61580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajbanshi", + Comment = null, }, new() { @@ -55989,6 +61591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kraol", + Comment = null, }, new() { @@ -55999,6 +61602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rikbaktsa", + Comment = null, }, new() { @@ -56009,6 +61613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rakahanga-Manihiki", + Comment = null, }, new() { @@ -56019,6 +61624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rakhine", + Comment = null, }, new() { @@ -56029,6 +61635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marka", + Comment = null, }, new() { @@ -56039,6 +61646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rangpuri", + Comment = null, }, new() { @@ -56049,6 +61657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arakwal", + Comment = null, }, new() { @@ -56059,6 +61668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rama", + Comment = null, }, new() { @@ -56069,6 +61679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rembarrnga", + Comment = null, }, new() { @@ -56079,6 +61690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carpathian Romani", + Comment = null, }, new() { @@ -56089,6 +61701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Traveller Danish", + Comment = null, }, new() { @@ -56099,6 +61712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angloromani", + Comment = null, }, new() { @@ -56109,6 +61723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalo Finnish Romani", + Comment = null, }, new() { @@ -56119,6 +61734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Traveller Norwegian", + Comment = null, }, new() { @@ -56129,6 +61745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murkim", + Comment = null, }, new() { @@ -56139,6 +61756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lomavren", + Comment = null, }, new() { @@ -56149,6 +61767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romkun", + Comment = null, }, new() { @@ -56159,6 +61778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baltic Romani", + Comment = null, }, new() { @@ -56169,6 +61789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roma", + Comment = null, }, new() { @@ -56179,6 +61800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balkan Romani", + Comment = null, }, new() { @@ -56189,6 +61811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinte Romani", + Comment = null, }, new() { @@ -56199,6 +61822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rempi", + Comment = null, }, new() { @@ -56209,6 +61833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caló", + Comment = null, }, new() { @@ -56219,6 +61844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romanian Sign Language", + Comment = null, }, new() { @@ -56229,6 +61855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domari", + Comment = null, }, new() { @@ -56239,6 +61866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tavringer Romani", + Comment = null, }, new() { @@ -56249,6 +61877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Romanova", + Comment = null, }, new() { @@ -56259,6 +61888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Welsh Romani", + Comment = null, }, new() { @@ -56269,6 +61899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romam", + Comment = null, }, new() { @@ -56279,6 +61910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vlax Romani", + Comment = null, }, new() { @@ -56289,6 +61921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marma", + Comment = null, }, new() { @@ -56299,6 +61932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brunca Sign Language", + Comment = null, }, new() { @@ -56309,6 +61943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruund", + Comment = null, }, new() { @@ -56319,6 +61954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ronga", + Comment = null, }, new() { @@ -56329,6 +61965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ranglong", + Comment = null, }, new() { @@ -56339,6 +61976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roon", + Comment = null, }, new() { @@ -56349,6 +61987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rongpo", + Comment = null, }, new() { @@ -56359,6 +61998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nari Nari", + Comment = null, }, new() { @@ -56369,6 +62009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rungwa", + Comment = null, }, new() { @@ -56379,6 +62020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tae'", + Comment = null, }, new() { @@ -56389,6 +62031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cacgia Roglai", + Comment = null, }, new() { @@ -56399,6 +62042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rogo", + Comment = null, }, new() { @@ -56409,6 +62053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ronji", + Comment = null, }, new() { @@ -56419,6 +62064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rombo", + Comment = null, }, new() { @@ -56429,6 +62075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Roglai", + Comment = null, }, new() { @@ -56439,6 +62086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romansh", + Comment = null, }, new() { @@ -56449,6 +62097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romblomanon", + Comment = null, }, new() { @@ -56459,6 +62108,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Romany", + Comment = null, }, new() { @@ -56469,6 +62119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romanian", + Comment = null, }, new() { @@ -56479,6 +62130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rotokas", + Comment = null, }, new() { @@ -56489,6 +62141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kriol", + Comment = null, }, new() { @@ -56499,6 +62152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rongga", + Comment = null, }, new() { @@ -56509,6 +62163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Runga", + Comment = null, }, new() { @@ -56519,6 +62174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dela-Oenale", + Comment = null, }, new() { @@ -56529,6 +62185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Repanbitip", + Comment = null, }, new() { @@ -56539,6 +62196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapting", + Comment = null, }, new() { @@ -56549,6 +62207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ririo", + Comment = null, }, new() { @@ -56559,6 +62218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Moriori", + Comment = null, }, new() { @@ -56569,6 +62229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waima", + Comment = null, }, new() { @@ -56579,6 +62240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arritinngithigh", + Comment = null, }, new() { @@ -56589,6 +62251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romano-Serbian", + Comment = null, }, new() { @@ -56599,6 +62262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruthenian", + Comment = null, }, new() { @@ -56609,6 +62273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Russian Sign Language", + Comment = null, }, new() { @@ -56619,6 +62284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miriwoong Sign Language", + Comment = null, }, new() { @@ -56629,6 +62295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rwandan Sign Language", + Comment = null, }, new() { @@ -56639,6 +62306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rishiwa", + Comment = null, }, new() { @@ -56649,6 +62317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rungtu Chin", + Comment = null, }, new() { @@ -56659,6 +62328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ratahan", + Comment = null, }, new() { @@ -56669,6 +62339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rotuman", + Comment = null, }, new() { @@ -56679,6 +62350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yurats", + Comment = null, }, new() { @@ -56689,6 +62361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rathawi", + Comment = null, }, new() { @@ -56699,6 +62372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gungu", + Comment = null, }, new() { @@ -56709,6 +62383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruuli", + Comment = null, }, new() { @@ -56719,6 +62394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rusyn", + Comment = null, }, new() { @@ -56729,6 +62405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luguru", + Comment = null, }, new() { @@ -56739,6 +62416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roviana", + Comment = null, }, new() { @@ -56749,6 +62427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruga", + Comment = null, }, new() { @@ -56759,6 +62438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rufiji", + Comment = null, }, new() { @@ -56769,6 +62449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Che", + Comment = null, }, new() { @@ -56779,6 +62460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rundi", + Comment = null, }, new() { @@ -56789,6 +62471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Istro Romanian", + Comment = null, }, new() { @@ -56799,6 +62482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macedo-Romanian", + Comment = null, }, new() { @@ -56809,6 +62493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Megleno Romanian", + Comment = null, }, new() { @@ -56819,6 +62504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Russian", + Comment = null, }, new() { @@ -56829,6 +62515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rutul", + Comment = null, }, new() { @@ -56839,6 +62526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lanas Lobu", + Comment = null, }, new() { @@ -56849,6 +62537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mala (Nigeria)", + Comment = null, }, new() { @@ -56859,6 +62548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruma", + Comment = null, }, new() { @@ -56869,6 +62559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawo", + Comment = null, }, new() { @@ -56879,6 +62570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rwa", + Comment = null, }, new() { @@ -56889,6 +62581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruwila", + Comment = null, }, new() { @@ -56899,6 +62592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amba (Uganda)", + Comment = null, }, new() { @@ -56909,6 +62603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawa", + Comment = null, }, new() { @@ -56919,6 +62614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marwari (India)", + Comment = null, }, new() { @@ -56929,6 +62625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngardi", + Comment = null, }, new() { @@ -56939,6 +62636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karuwali", + Comment = null, }, new() { @@ -56949,6 +62647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Amami-Oshima", + Comment = null, }, new() { @@ -56959,6 +62658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaeyama", + Comment = null, }, new() { @@ -56969,6 +62669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Okinawan", + Comment = null, }, new() { @@ -56979,6 +62680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rāziḥī", + Comment = null, }, new() { @@ -56989,6 +62691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saba", + Comment = null, }, new() { @@ -56999,6 +62702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buglere", + Comment = null, }, new() { @@ -57009,6 +62713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meskwaki", + Comment = null, }, new() { @@ -57019,6 +62724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sandawe", + Comment = null, }, new() { @@ -57029,6 +62735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabanê", + Comment = null, }, new() { @@ -57039,6 +62746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Safaliba", + Comment = null, }, new() { @@ -57049,6 +62757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sango", + Comment = null, }, new() { @@ -57059,6 +62768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakut", + Comment = null, }, new() { @@ -57069,6 +62779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sahu", + Comment = null, }, new() { @@ -57079,6 +62790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sake", + Comment = null, }, new() { @@ -57089,6 +62801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Samaritan Aramaic", + Comment = null, }, new() { @@ -57099,6 +62812,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "H", RefName = "Sanskrit", + Comment = null, }, new() { @@ -57109,6 +62823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sause", + Comment = null, }, new() { @@ -57119,6 +62834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samburu", + Comment = null, }, new() { @@ -57129,6 +62845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Saraveca", + Comment = null, }, new() { @@ -57139,6 +62856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sasak", + Comment = null, }, new() { @@ -57149,6 +62867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santali", + Comment = null, }, new() { @@ -57159,6 +62878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saleman", + Comment = null, }, new() { @@ -57169,6 +62889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saafi-Saafi", + Comment = null, }, new() { @@ -57179,6 +62900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawi", + Comment = null, }, new() { @@ -57189,6 +62911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa", + Comment = null, }, new() { @@ -57199,6 +62922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saya", + Comment = null, }, new() { @@ -57209,6 +62933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saurashtra", + Comment = null, }, new() { @@ -57219,6 +62944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngambay", + Comment = null, }, new() { @@ -57229,6 +62955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simbo", + Comment = null, }, new() { @@ -57239,6 +62966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kele (Papua New Guinea)", + Comment = null, }, new() { @@ -57249,6 +62977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Samo", + Comment = null, }, new() { @@ -57259,6 +62988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saliba", + Comment = null, }, new() { @@ -57269,6 +62999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chabu", + Comment = null, }, new() { @@ -57279,6 +63010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seget", + Comment = null, }, new() { @@ -57289,6 +63021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sori-Harengan", + Comment = null, }, new() { @@ -57299,6 +63032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seti", + Comment = null, }, new() { @@ -57309,6 +63043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surbakhal", + Comment = null, }, new() { @@ -57319,6 +63054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Safwa", + Comment = null, }, new() { @@ -57329,6 +63065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Botolan Sambal", + Comment = null, }, new() { @@ -57339,6 +63076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sagala", + Comment = null, }, new() { @@ -57349,6 +63087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sindhi Bhil", + Comment = null, }, new() { @@ -57359,6 +63098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabüm", + Comment = null, }, new() { @@ -57369,6 +63109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangu (Tanzania)", + Comment = null, }, new() { @@ -57379,6 +63120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sileibi", + Comment = null, }, new() { @@ -57389,6 +63131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sembakung Murut", + Comment = null, }, new() { @@ -57399,6 +63142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Subiya", + Comment = null, }, new() { @@ -57409,6 +63153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimki", + Comment = null, }, new() { @@ -57419,6 +63164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Stod Bhoti", + Comment = null, }, new() { @@ -57429,6 +63175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sabine", + Comment = null, }, new() { @@ -57439,6 +63186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simba", + Comment = null, }, new() { @@ -57449,6 +63197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seberuang", + Comment = null, }, new() { @@ -57459,6 +63208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soli", + Comment = null, }, new() { @@ -57469,6 +63219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara Kaba", + Comment = null, }, new() { @@ -57479,6 +63230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chut", + Comment = null, }, new() { @@ -57489,6 +63241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongxiang", + Comment = null, }, new() { @@ -57499,6 +63252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Miguel Creole French", + Comment = null, }, new() { @@ -57509,6 +63263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanggau", + Comment = null, }, new() { @@ -57519,6 +63274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakachep", + Comment = null, }, new() { @@ -57529,6 +63285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sri Lankan Creole Malay", + Comment = null, }, new() { @@ -57539,6 +63296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sadri", + Comment = null, }, new() { @@ -57549,6 +63307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shina", + Comment = null, }, new() { @@ -57559,6 +63318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sicilian", + Comment = null, }, new() { @@ -57569,6 +63329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Scots", + Comment = null, }, new() { @@ -57579,6 +63340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hyolmo", + Comment = null, }, new() { @@ -57589,6 +63351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa'och", + Comment = null, }, new() { @@ -57599,6 +63362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Slavey", + Comment = null, }, new() { @@ -57609,6 +63373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Katang", + Comment = null, }, new() { @@ -57619,6 +63384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shumcho", + Comment = null, }, new() { @@ -57629,6 +63395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sheni", + Comment = null, }, new() { @@ -57639,6 +63406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sha", + Comment = null, }, new() { @@ -57649,6 +63417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sicel", + Comment = null, }, new() { @@ -57659,6 +63428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shaetlan", + Comment = null, }, new() { @@ -57669,6 +63439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toraja-Sa'dan", + Comment = null, }, new() { @@ -57679,6 +63450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shabak", + Comment = null, }, new() { @@ -57689,6 +63461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sassarese Sardinian", + Comment = null, }, new() { @@ -57699,6 +63472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surubu", + Comment = null, }, new() { @@ -57709,6 +63483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarli", + Comment = null, }, new() { @@ -57719,6 +63494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Savi", + Comment = null, }, new() { @@ -57729,6 +63505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kurdish", + Comment = null, }, new() { @@ -57739,6 +63516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suundi", + Comment = null, }, new() { @@ -57749,6 +63527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sos Kundi", + Comment = null, }, new() { @@ -57759,6 +63538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saudi Arabian Sign Language", + Comment = null, }, new() { @@ -57769,6 +63549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gallurese Sardinian", + Comment = null, }, new() { @@ -57779,6 +63560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukar-Sadung Bidayuh", + Comment = null, }, new() { @@ -57789,6 +63571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sherdukpen", + Comment = null, }, new() { @@ -57799,6 +63582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semandang", + Comment = null, }, new() { @@ -57809,6 +63593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oraon Sadri", + Comment = null, }, new() { @@ -57819,6 +63604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sened", + Comment = null, }, new() { @@ -57829,6 +63615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Shuadit", + Comment = null, }, new() { @@ -57839,6 +63626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarudu", + Comment = null, }, new() { @@ -57849,6 +63637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sibu Melanau", + Comment = null, }, new() { @@ -57859,6 +63648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sallands", + Comment = null, }, new() { @@ -57869,6 +63659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semai", + Comment = null, }, new() { @@ -57879,6 +63670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shempire Senoufo", + Comment = null, }, new() { @@ -57889,6 +63681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sechelt", + Comment = null, }, new() { @@ -57899,6 +63692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sedang", + Comment = null, }, new() { @@ -57909,6 +63703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seneca", + Comment = null, }, new() { @@ -57919,6 +63714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cebaara Senoufo", + Comment = null, }, new() { @@ -57929,6 +63725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Segeju", + Comment = null, }, new() { @@ -57939,6 +63736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sena", + Comment = null, }, new() { @@ -57949,6 +63747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seri", + Comment = null, }, new() { @@ -57959,6 +63758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sene", + Comment = null, }, new() { @@ -57969,6 +63769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekani", + Comment = null, }, new() { @@ -57979,6 +63780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selkup", + Comment = null, }, new() { @@ -57989,6 +63791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanerigé Sénoufo", + Comment = null, }, new() { @@ -57999,6 +63802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suarmin", + Comment = null, }, new() { @@ -58009,6 +63813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sìcìté Sénoufo", + Comment = null, }, new() { @@ -58019,6 +63824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senara Sénoufo", + Comment = null, }, new() { @@ -58029,6 +63835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serrano", + Comment = null, }, new() { @@ -58039,6 +63846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyraboro Senni Songhai", + Comment = null, }, new() { @@ -58049,6 +63857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sentani", + Comment = null, }, new() { @@ -58059,6 +63868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serui-Laut", + Comment = null, }, new() { @@ -58069,6 +63879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyarafolo Senoufo", + Comment = null, }, new() { @@ -58079,6 +63890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sewa Bay", + Comment = null, }, new() { @@ -58089,6 +63901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Secoya", + Comment = null, }, new() { @@ -58099,6 +63912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senthang Chin", + Comment = null, }, new() { @@ -58109,6 +63923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langue des signes de Belgique Francophone", + Comment = null, }, new() { @@ -58119,6 +63934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Subanen", + Comment = null, }, new() { @@ -58129,6 +63945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Small Flowery Miao", + Comment = null, }, new() { @@ -58139,6 +63956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South African Sign Language", + Comment = null, }, new() { @@ -58149,6 +63967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sehwi", + Comment = null, }, new() { @@ -58159,6 +63978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Irish (to 900)", + Comment = null, }, new() { @@ -58169,6 +63989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mag-antsi Ayta", + Comment = null, }, new() { @@ -58179,6 +64000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kipsigis", + Comment = null, }, new() { @@ -58189,6 +64011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surigaonon", + Comment = null, }, new() { @@ -58199,6 +64022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Segai", + Comment = null, }, new() { @@ -58209,6 +64033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss-German Sign Language", + Comment = null, }, new() { @@ -58219,6 +64044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shughni", + Comment = null, }, new() { @@ -58229,6 +64055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suga", + Comment = null, }, new() { @@ -58239,6 +64066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surgujia", + Comment = null, }, new() { @@ -58249,6 +64077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangkong", + Comment = null, }, new() { @@ -58259,6 +64088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Singa", + Comment = null, }, new() { @@ -58269,6 +64099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Singpho", + Comment = null, }, new() { @@ -58279,6 +64110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangisari", + Comment = null, }, new() { @@ -58289,6 +64121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samogitian", + Comment = null, }, new() { @@ -58299,6 +64132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brokpake", + Comment = null, }, new() { @@ -58309,6 +64143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salas", + Comment = null, }, new() { @@ -58319,6 +64154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sebat Bet Gurage", + Comment = null, }, new() { @@ -58329,6 +64165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sierra Leone Sign Language", + Comment = null, }, new() { @@ -58339,6 +64176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanglechi", + Comment = null, }, new() { @@ -58349,6 +64187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sursurunga", + Comment = null, }, new() { @@ -58359,6 +64198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shall-Zwall", + Comment = null, }, new() { @@ -58369,6 +64209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninam", + Comment = null, }, new() { @@ -58379,6 +64220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonde", + Comment = null, }, new() { @@ -58389,6 +64231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kundal Shahi", + Comment = null, }, new() { @@ -58399,6 +64242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sheko", + Comment = null, }, new() { @@ -58409,6 +64253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shua", + Comment = null, }, new() { @@ -58419,6 +64264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shoshoni", + Comment = null, }, new() { @@ -58429,6 +64275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tachelhit", + Comment = null, }, new() { @@ -58439,6 +64286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shatt", + Comment = null, }, new() { @@ -58449,6 +64297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shilluk", + Comment = null, }, new() { @@ -58459,6 +64308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shendu", + Comment = null, }, new() { @@ -58469,6 +64319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shahrudi", + Comment = null, }, new() { @@ -58479,6 +64330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shan", + Comment = null, }, new() { @@ -58489,6 +64341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shanga", + Comment = null, }, new() { @@ -58499,6 +64352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shipibo-Conibo", + Comment = null, }, new() { @@ -58509,6 +64363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sala", + Comment = null, }, new() { @@ -58519,6 +64374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shi", + Comment = null, }, new() { @@ -58529,6 +64385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shuswap", + Comment = null, }, new() { @@ -58539,6 +64396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Shasta", + Comment = null, }, new() { @@ -58549,6 +64407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chadian Arabic", + Comment = null, }, new() { @@ -58559,6 +64418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shehri", + Comment = null, }, new() { @@ -58569,6 +64429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shwai", + Comment = null, }, new() { @@ -58579,6 +64440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "She", + Comment = null, }, new() { @@ -58589,6 +64451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tachawit", + Comment = null, }, new() { @@ -58599,6 +64462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Syenara Senoufo", + Comment = null, }, new() { @@ -58609,6 +64473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Akkala Sami", + Comment = null, }, new() { @@ -58619,6 +64484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sebop", + Comment = null, }, new() { @@ -58629,6 +64495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sidamo", + Comment = null, }, new() { @@ -58639,6 +64506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simaa", + Comment = null, }, new() { @@ -58649,6 +64517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siamou", + Comment = null, }, new() { @@ -58659,6 +64528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paasaal", + Comment = null, }, new() { @@ -58669,6 +64539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zire", + Comment = null, }, new() { @@ -58679,6 +64550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shom Peng", + Comment = null, }, new() { @@ -58689,6 +64561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numbami", + Comment = null, }, new() { @@ -58699,6 +64572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikiana", + Comment = null, }, new() { @@ -58709,6 +64583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumulung Sisaala", + Comment = null, }, new() { @@ -58719,6 +64594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mende (Papua New Guinea)", + Comment = null, }, new() { @@ -58729,6 +64605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinhala", + Comment = null, }, new() { @@ -58739,6 +64616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikkimese", + Comment = null, }, new() { @@ -58749,6 +64627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonia", + Comment = null, }, new() { @@ -58759,6 +64638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siri", + Comment = null, }, new() { @@ -58769,6 +64649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Siuslaw", + Comment = null, }, new() { @@ -58779,6 +64660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinagen", + Comment = null, }, new() { @@ -58789,6 +64671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumariup", + Comment = null, }, new() { @@ -58799,6 +64682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siwai", + Comment = null, }, new() { @@ -58809,6 +64693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumau", + Comment = null, }, new() { @@ -58819,6 +64704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sivandi", + Comment = null, }, new() { @@ -58829,6 +64715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siwi", + Comment = null, }, new() { @@ -58839,6 +64726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Epena", + Comment = null, }, new() { @@ -58849,6 +64737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sajau Basap", + Comment = null, }, new() { @@ -58859,6 +64748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shaojiang Chinese", + Comment = null, }, new() { @@ -58869,6 +64759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kildin Sami", + Comment = null, }, new() { @@ -58879,6 +64770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pite Sami", + Comment = null, }, new() { @@ -58889,6 +64781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assangori", + Comment = null, }, new() { @@ -58899,6 +64792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kemi Sami", + Comment = null, }, new() { @@ -58909,6 +64803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sajalong", + Comment = null, }, new() { @@ -58919,6 +64814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapun", + Comment = null, }, new() { @@ -58929,6 +64825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Sindarin", + Comment = null, }, new() { @@ -58939,6 +64836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xibe", + Comment = null, }, new() { @@ -58949,6 +64847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surjapuri", + Comment = null, }, new() { @@ -58959,6 +64858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siar-Lak", + Comment = null, }, new() { @@ -58969,6 +64869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Senhaja De Srair", + Comment = null, }, new() { @@ -58979,6 +64880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ter Sami", + Comment = null, }, new() { @@ -58989,6 +64891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ume Sami", + Comment = null, }, new() { @@ -58999,6 +64902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shawnee", + Comment = null, }, new() { @@ -59009,6 +64913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Skagit", + Comment = null, }, new() { @@ -59019,6 +64924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saek", + Comment = null, }, new() { @@ -59029,6 +64935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma Manda", + Comment = null, }, new() { @@ -59039,6 +64946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sierra Miwok", + Comment = null, }, new() { @@ -59049,6 +64957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seke (Vanuatu)", + Comment = null, }, new() { @@ -59059,6 +64968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakirabiá", + Comment = null, }, new() { @@ -59069,6 +64979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakalava Malagasy", + Comment = null, }, new() { @@ -59079,6 +64990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikule", + Comment = null, }, new() { @@ -59089,6 +65001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sika", + Comment = null, }, new() { @@ -59099,6 +65012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seke (Nepal)", + Comment = null, }, new() { @@ -59109,6 +65023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutong", + Comment = null, }, new() { @@ -59119,6 +65034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kolibugan Subanon", + Comment = null, }, new() { @@ -59129,6 +65045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seko Tengah", + Comment = null, }, new() { @@ -59139,6 +65056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekapan", + Comment = null, }, new() { @@ -59149,6 +65067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sininkere", + Comment = null, }, new() { @@ -59159,6 +65078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saraiki", + Comment = null, }, new() { @@ -59169,6 +65089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maia", + Comment = null, }, new() { @@ -59179,6 +65100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakata", + Comment = null, }, new() { @@ -59189,6 +65111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakao", + Comment = null, }, new() { @@ -59199,6 +65122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Skou", + Comment = null, }, new() { @@ -59209,6 +65133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Skepi Creole Dutch", + Comment = null, }, new() { @@ -59219,6 +65144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seko Padang", + Comment = null, }, new() { @@ -59229,6 +65155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikaiana", + Comment = null, }, new() { @@ -59239,6 +65166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekar", + Comment = null, }, new() { @@ -59249,6 +65177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sáliba", + Comment = null, }, new() { @@ -59259,6 +65188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sissala", + Comment = null, }, new() { @@ -59269,6 +65199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sholaga", + Comment = null, }, new() { @@ -59279,6 +65210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss-Italian Sign Language", + Comment = null, }, new() { @@ -59289,6 +65221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selungai Murut", + Comment = null, }, new() { @@ -59299,6 +65232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Puget Sound Salish", + Comment = null, }, new() { @@ -59309,6 +65243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Silesian", + Comment = null, }, new() { @@ -59319,6 +65254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salumá", + Comment = null, }, new() { @@ -59329,6 +65265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovak", + Comment = null, }, new() { @@ -59339,6 +65276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salt-Yui", + Comment = null, }, new() { @@ -59349,6 +65287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangutaran Sama", + Comment = null, }, new() { @@ -59359,6 +65298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Salinan", + Comment = null, }, new() { @@ -59369,6 +65309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamaholot", + Comment = null, }, new() { @@ -59379,6 +65320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salar", + Comment = null, }, new() { @@ -59389,6 +65331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Singapore Sign Language", + Comment = null, }, new() { @@ -59399,6 +65342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sila", + Comment = null, }, new() { @@ -59409,6 +65353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selaru", + Comment = null, }, new() { @@ -59419,6 +65364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovenian", + Comment = null, }, new() { @@ -59429,6 +65375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sialum", + Comment = null, }, new() { @@ -59439,6 +65386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salampasu", + Comment = null, }, new() { @@ -59449,6 +65397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selayar", + Comment = null, }, new() { @@ -59459,6 +65408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma'ya", + Comment = null, }, new() { @@ -59469,6 +65419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sami", + Comment = null, }, new() { @@ -59479,6 +65430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simbari", + Comment = null, }, new() { @@ -59489,6 +65441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Som", + Comment = null, }, new() { @@ -59499,6 +65452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Sami", + Comment = null, }, new() { @@ -59509,6 +65463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Auwe", + Comment = null, }, new() { @@ -59519,6 +65474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simbali", + Comment = null, }, new() { @@ -59529,6 +65485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samei", + Comment = null, }, new() { @@ -59539,6 +65496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lule Sami", + Comment = null, }, new() { @@ -59549,6 +65507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolinao", + Comment = null, }, new() { @@ -59559,6 +65518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Sama", + Comment = null, }, new() { @@ -59569,6 +65529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musasa", + Comment = null, }, new() { @@ -59579,6 +65540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inari Sami", + Comment = null, }, new() { @@ -59589,6 +65551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samoan", + Comment = null, }, new() { @@ -59599,6 +65562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Samaritan", + Comment = null, }, new() { @@ -59609,6 +65573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samo", + Comment = null, }, new() { @@ -59619,6 +65584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simeulue", + Comment = null, }, new() { @@ -59629,6 +65595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Skolt Sami", + Comment = null, }, new() { @@ -59639,6 +65606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simte", + Comment = null, }, new() { @@ -59649,6 +65617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Somray", + Comment = null, }, new() { @@ -59659,6 +65628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samvedi", + Comment = null, }, new() { @@ -59669,6 +65639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumbawa", + Comment = null, }, new() { @@ -59679,6 +65650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samba", + Comment = null, }, new() { @@ -59689,6 +65661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semnani", + Comment = null, }, new() { @@ -59699,6 +65672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simeku", + Comment = null, }, new() { @@ -59709,6 +65683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shona", + Comment = null, }, new() { @@ -59719,6 +65694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinaugoro", + Comment = null, }, new() { @@ -59729,6 +65705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sindhi", + Comment = null, }, new() { @@ -59739,6 +65716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bau Bidayuh", + Comment = null, }, new() { @@ -59749,6 +65727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noon", + Comment = null, }, new() { @@ -59759,6 +65738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanga (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -59769,6 +65749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sensi", + Comment = null, }, new() { @@ -59779,6 +65760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riverain Sango", + Comment = null, }, new() { @@ -59789,6 +65771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soninke", + Comment = null, }, new() { @@ -59799,6 +65782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangil", + Comment = null, }, new() { @@ -59809,6 +65793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ma'di", + Comment = null, }, new() { @@ -59819,6 +65804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siona", + Comment = null, }, new() { @@ -59829,6 +65815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Snohomish", + Comment = null, }, new() { @@ -59839,6 +65826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siane", + Comment = null, }, new() { @@ -59849,6 +65837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangu (Gabon)", + Comment = null, }, new() { @@ -59859,6 +65848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sihan", + Comment = null, }, new() { @@ -59869,6 +65859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South West Bay", + Comment = null, }, new() { @@ -59879,6 +65870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senggi", + Comment = null, }, new() { @@ -59889,6 +65881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa'ban", + Comment = null, }, new() { @@ -59899,6 +65892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selee", + Comment = null, }, new() { @@ -59909,6 +65903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sam", + Comment = null, }, new() { @@ -59919,6 +65914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saniyo-Hiyewe", + Comment = null, }, new() { @@ -59929,6 +65925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kou", + Comment = null, }, new() { @@ -59939,6 +65936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thai Song", + Comment = null, }, new() { @@ -59949,6 +65947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sobei", + Comment = null, }, new() { @@ -59959,6 +65958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "So (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -59969,6 +65969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songoora", + Comment = null, }, new() { @@ -59979,6 +65980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songomeno", + Comment = null, }, new() { @@ -59989,6 +65991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sogdian", + Comment = null, }, new() { @@ -59999,6 +66002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aka", + Comment = null, }, new() { @@ -60009,6 +66013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonha", + Comment = null, }, new() { @@ -60019,6 +66024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soi", + Comment = null, }, new() { @@ -60029,6 +66035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sokoro", + Comment = null, }, new() { @@ -60039,6 +66046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Solos", + Comment = null, }, new() { @@ -60049,6 +66057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somali", + Comment = null, }, new() { @@ -60059,6 +66068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songo", + Comment = null, }, new() { @@ -60069,6 +66079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songe", + Comment = null, }, new() { @@ -60079,6 +66090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanasi", + Comment = null, }, new() { @@ -60089,6 +66101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somrai", + Comment = null, }, new() { @@ -60099,6 +66112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seeku", + Comment = null, }, new() { @@ -60109,6 +66123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sotho", + Comment = null, }, new() { @@ -60119,6 +66134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Thai", + Comment = null, }, new() { @@ -60129,6 +66145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonsorol", + Comment = null, }, new() { @@ -60139,6 +66156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sowanda", + Comment = null, }, new() { @@ -60149,6 +66167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swo", + Comment = null, }, new() { @@ -60159,6 +66178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miyobe", + Comment = null, }, new() { @@ -60169,6 +66189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temi", + Comment = null, }, new() { @@ -60179,6 +66200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spanish", + Comment = null, }, new() { @@ -60189,6 +66211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sepa (Indonesia)", + Comment = null, }, new() { @@ -60199,6 +66222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sapé", + Comment = null, }, new() { @@ -60209,6 +66233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saep", + Comment = null, }, new() { @@ -60219,6 +66244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sepa (Papua New Guinea)", + Comment = null, }, new() { @@ -60229,6 +66255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sian", + Comment = null, }, new() { @@ -60239,6 +66266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saponi", + Comment = null, }, new() { @@ -60249,6 +66277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sengo", + Comment = null, }, new() { @@ -60259,6 +66288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selepet", + Comment = null, }, new() { @@ -60269,6 +66299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akukem", + Comment = null, }, new() { @@ -60279,6 +66310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanapaná", + Comment = null, }, new() { @@ -60289,6 +66321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spokane", + Comment = null, }, new() { @@ -60299,6 +66332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Supyire Senoufo", + Comment = null, }, new() { @@ -60309,6 +66343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loreto-Ucayali Spanish", + Comment = null, }, new() { @@ -60319,6 +66354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saparua", + Comment = null, }, new() { @@ -60329,6 +66365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saposa", + Comment = null, }, new() { @@ -60339,6 +66376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spiti Bhoti", + Comment = null, }, new() { @@ -60349,6 +66387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sapuan", + Comment = null, }, new() { @@ -60359,6 +66398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sambalpuri", + Comment = null, }, new() { @@ -60369,6 +66409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "South Picene", + Comment = null, }, new() { @@ -60379,6 +66420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabaot", + Comment = null, }, new() { @@ -60389,6 +66431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shama-Sambuga", + Comment = null, }, new() { @@ -60399,6 +66442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shau", + Comment = null, }, new() { @@ -60409,6 +66453,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Albanian", + Comment = null, }, new() { @@ -60419,6 +66464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Albanian Sign Language", + Comment = null, }, new() { @@ -60429,6 +66475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suma", + Comment = null, }, new() { @@ -60439,6 +66486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Susquehannock", + Comment = null, }, new() { @@ -60449,6 +66497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sorkhei", + Comment = null, }, new() { @@ -60459,6 +66508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sou", + Comment = null, }, new() { @@ -60469,6 +66519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Siculo Arabic", + Comment = null, }, new() { @@ -60479,6 +66530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sri Lankan Sign Language", + Comment = null, }, new() { @@ -60489,6 +66541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soqotri", + Comment = null, }, new() { @@ -60499,6 +66552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Squamish", + Comment = null, }, new() { @@ -60509,6 +66563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kufr Qassem Sign Language (KQSL)", + Comment = null, }, new() { @@ -60519,6 +66574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saruga", + Comment = null, }, new() { @@ -60529,6 +66585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sora", + Comment = null, }, new() { @@ -60539,6 +66596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logudorese Sardinian", + Comment = null, }, new() { @@ -60549,6 +66607,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Sardinian", + Comment = null, }, new() { @@ -60559,6 +66618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara", + Comment = null, }, new() { @@ -60569,6 +66629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafi", + Comment = null, }, new() { @@ -60579,6 +66640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sulod", + Comment = null, }, new() { @@ -60589,6 +66651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarikoli", + Comment = null, }, new() { @@ -60599,6 +66662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siriano", + Comment = null, }, new() { @@ -60609,6 +66673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serudung Murut", + Comment = null, }, new() { @@ -60619,6 +66684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isirawa", + Comment = null, }, new() { @@ -60629,6 +66695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saramaccan", + Comment = null, }, new() { @@ -60639,6 +66706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sranan Tongo", + Comment = null, }, new() { @@ -60649,6 +66717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Campidanese Sardinian", + Comment = null, }, new() { @@ -60659,6 +66728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serbian", + Comment = null, }, new() { @@ -60669,6 +66739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sirionó", + Comment = null, }, new() { @@ -60679,6 +66750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serer", + Comment = null, }, new() { @@ -60689,6 +66761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarsi", + Comment = null, }, new() { @@ -60699,6 +66772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sauri", + Comment = null, }, new() { @@ -60709,6 +66783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suruí", + Comment = null, }, new() { @@ -60719,6 +66794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sorsoganon", + Comment = null, }, new() { @@ -60729,6 +66805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serua", + Comment = null, }, new() { @@ -60739,6 +66816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sirmauri", + Comment = null, }, new() { @@ -60749,6 +66827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sera", + Comment = null, }, new() { @@ -60759,6 +66838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shahmirzadi", + Comment = null, }, new() { @@ -60769,6 +66849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sama", + Comment = null, }, new() { @@ -60779,6 +66860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suba-Simbiti", + Comment = null, }, new() { @@ -60789,6 +66871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siroi", + Comment = null, }, new() { @@ -60799,6 +66882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balangingi", + Comment = null, }, new() { @@ -60809,6 +66893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thao", + Comment = null, }, new() { @@ -60819,6 +66904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seimat", + Comment = null, }, new() { @@ -60829,6 +66915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shihhi Arabic", + Comment = null, }, new() { @@ -60839,6 +66926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sansi", + Comment = null, }, new() { @@ -60849,6 +66937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sausi", + Comment = null, }, new() { @@ -60859,6 +66948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sunam", + Comment = null, }, new() { @@ -60869,6 +66959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Sisaala", + Comment = null, }, new() { @@ -60879,6 +66970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semnam", + Comment = null, }, new() { @@ -60889,6 +66981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waata", + Comment = null, }, new() { @@ -60899,6 +66992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sissano", + Comment = null, }, new() { @@ -60909,6 +67003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spanish Sign Language", + Comment = null, }, new() { @@ -60919,6 +67014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "So'a", + Comment = null, }, new() { @@ -60929,6 +67025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss-French Sign Language", + Comment = null, }, new() { @@ -60939,6 +67036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sô", + Comment = null, }, new() { @@ -60949,6 +67047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinasina", + Comment = null, }, new() { @@ -60959,6 +67058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Susuami", + Comment = null, }, new() { @@ -60969,6 +67069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shark Bay", + Comment = null, }, new() { @@ -60979,6 +67080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swati", + Comment = null, }, new() { @@ -60989,6 +67091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samberigi", + Comment = null, }, new() { @@ -60999,6 +67102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saho", + Comment = null, }, new() { @@ -61009,6 +67113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sengseng", + Comment = null, }, new() { @@ -61019,6 +67124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Settla", + Comment = null, }, new() { @@ -61029,6 +67135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Subanen", + Comment = null, }, new() { @@ -61039,6 +67146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sentinel", + Comment = null, }, new() { @@ -61049,6 +67157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liana-Seti", + Comment = null, }, new() { @@ -61059,6 +67168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seta", + Comment = null, }, new() { @@ -61069,6 +67179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trieng", + Comment = null, }, new() { @@ -61079,6 +67190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shelta", + Comment = null, }, new() { @@ -61089,6 +67201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulo Stieng", + Comment = null, }, new() { @@ -61099,6 +67212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matya Samo", + Comment = null, }, new() { @@ -61109,6 +67223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arammba", + Comment = null, }, new() { @@ -61119,6 +67234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Stellingwerfs", + Comment = null, }, new() { @@ -61129,6 +67245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Setaman", + Comment = null, }, new() { @@ -61139,6 +67256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Owa", + Comment = null, }, new() { @@ -61149,6 +67267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Stoney", + Comment = null, }, new() { @@ -61159,6 +67278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Tepehuan", + Comment = null, }, new() { @@ -61169,6 +67289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saterfriesisch", + Comment = null, }, new() { @@ -61179,6 +67300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Straits Salish", + Comment = null, }, new() { @@ -61189,6 +67311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shumashti", + Comment = null, }, new() { @@ -61199,6 +67322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budeh Stieng", + Comment = null, }, new() { @@ -61209,6 +67333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samtao", + Comment = null, }, new() { @@ -61219,6 +67344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silt'e", + Comment = null, }, new() { @@ -61229,6 +67355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Satawalese", + Comment = null, }, new() { @@ -61239,6 +67366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siberian Tatar", + Comment = null, }, new() { @@ -61249,6 +67377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sulka", + Comment = null, }, new() { @@ -61259,6 +67388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suku", + Comment = null, }, new() { @@ -61269,6 +67399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Subanon", + Comment = null, }, new() { @@ -61279,6 +67410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suena", + Comment = null, }, new() { @@ -61289,6 +67421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suganga", + Comment = null, }, new() { @@ -61299,6 +67432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suki", + Comment = null, }, new() { @@ -61309,6 +67443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shubi", + Comment = null, }, new() { @@ -61319,6 +67454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sukuma", + Comment = null, }, new() { @@ -61329,6 +67465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sundanese", + Comment = null, }, new() { @@ -61339,6 +67476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bouni", + Comment = null, }, new() { @@ -61349,6 +67487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tirmaga-Chai Suri", + Comment = null, }, new() { @@ -61359,6 +67498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwaghavul", + Comment = null, }, new() { @@ -61369,6 +67509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Susu", + Comment = null, }, new() { @@ -61379,6 +67520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Subtiaba", + Comment = null, }, new() { @@ -61389,6 +67531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puroik", + Comment = null, }, new() { @@ -61399,6 +67542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumbwa", + Comment = null, }, new() { @@ -61409,6 +67553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sumerian", + Comment = null, }, new() { @@ -61419,6 +67564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suyá", + Comment = null, }, new() { @@ -61429,6 +67575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sunwar", + Comment = null, }, new() { @@ -61439,6 +67586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Svan", + Comment = null, }, new() { @@ -61449,6 +67597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulau-Suain", + Comment = null, }, new() { @@ -61459,6 +67608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vincentian Creole English", + Comment = null, }, new() { @@ -61469,6 +67619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serili", + Comment = null, }, new() { @@ -61479,6 +67630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovakian Sign Language", + Comment = null, }, new() { @@ -61489,6 +67641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slavomolisano", + Comment = null, }, new() { @@ -61499,6 +67652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Savosavo", + Comment = null, }, new() { @@ -61509,6 +67663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Skalvian", + Comment = null, }, new() { @@ -61519,6 +67674,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Swahili (macrolanguage)", + Comment = null, }, new() { @@ -61529,6 +67685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maore Comorian", + Comment = null, }, new() { @@ -61539,6 +67696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Congo Swahili", + Comment = null, }, new() { @@ -61549,6 +67707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swedish", + Comment = null, }, new() { @@ -61559,6 +67718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sere", + Comment = null, }, new() { @@ -61569,6 +67729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swabian", + Comment = null, }, new() { @@ -61579,6 +67740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swahili (individual language)", + Comment = null, }, new() { @@ -61589,6 +67751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sui", + Comment = null, }, new() { @@ -61599,6 +67762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sira", + Comment = null, }, new() { @@ -61609,6 +67773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malawi Sena", + Comment = null, }, new() { @@ -61619,6 +67784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swedish Sign Language", + Comment = null, }, new() { @@ -61629,6 +67795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samosa", + Comment = null, }, new() { @@ -61639,6 +67806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawknah", + Comment = null, }, new() { @@ -61649,6 +67817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shanenawa", + Comment = null, }, new() { @@ -61659,6 +67828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suau", + Comment = null, }, new() { @@ -61669,6 +67839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sharwa", + Comment = null, }, new() { @@ -61679,6 +67850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saweru", + Comment = null, }, new() { @@ -61689,6 +67861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seluwasan", + Comment = null, }, new() { @@ -61699,6 +67872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawila", + Comment = null, }, new() { @@ -61709,6 +67883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suwawa", + Comment = null, }, new() { @@ -61719,6 +67894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shekhawati", + Comment = null, }, new() { @@ -61729,6 +67905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sowa", + Comment = null, }, new() { @@ -61739,6 +67916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suruahá", + Comment = null, }, new() { @@ -61749,6 +67927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarua", + Comment = null, }, new() { @@ -61759,6 +67938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suba", + Comment = null, }, new() { @@ -61769,6 +67949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sicanian", + Comment = null, }, new() { @@ -61779,6 +67960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sighu", + Comment = null, }, new() { @@ -61789,6 +67971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shuhi", + Comment = null, }, new() { @@ -61799,6 +67982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southern Kalapuya", + Comment = null, }, new() { @@ -61809,6 +67993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Selian", + Comment = null, }, new() { @@ -61819,6 +68004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samre", + Comment = null, }, new() { @@ -61829,6 +68015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangir", + Comment = null, }, new() { @@ -61839,6 +68026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sorothaptic", + Comment = null, }, new() { @@ -61849,6 +68037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saaroa", + Comment = null, }, new() { @@ -61859,6 +68048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sasaru", + Comment = null, }, new() { @@ -61869,6 +68059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Saxon", + Comment = null, }, new() { @@ -61879,6 +68070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saxwe Gbe", + Comment = null, }, new() { @@ -61889,6 +68081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siang", + Comment = null, }, new() { @@ -61899,6 +68092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Subanen", + Comment = null, }, new() { @@ -61909,6 +68103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Syriac", + Comment = null, }, new() { @@ -61919,6 +68114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seki", + Comment = null, }, new() { @@ -61929,6 +68125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sukur", + Comment = null, }, new() { @@ -61939,6 +68136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sylheti", + Comment = null, }, new() { @@ -61949,6 +68147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maya Samo", + Comment = null, }, new() { @@ -61959,6 +68158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senaya", + Comment = null, }, new() { @@ -61969,6 +68169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suoy", + Comment = null, }, new() { @@ -61979,6 +68180,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Syriac", + Comment = null, }, new() { @@ -61989,6 +68191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinyar", + Comment = null, }, new() { @@ -61999,6 +68202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagate", + Comment = null, }, new() { @@ -62009,6 +68213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samay", + Comment = null, }, new() { @@ -62019,6 +68224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Al-Sayyid Bedouin Sign Language", + Comment = null, }, new() { @@ -62029,6 +68235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semelai", + Comment = null, }, new() { @@ -62039,6 +68246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngalum", + Comment = null, }, new() { @@ -62049,6 +68257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semaq Beri", + Comment = null, }, new() { @@ -62059,6 +68268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seze", + Comment = null, }, new() { @@ -62069,6 +68279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sengele", + Comment = null, }, new() { @@ -62079,6 +68290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silesian", + Comment = null, }, new() { @@ -62089,6 +68301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sula", + Comment = null, }, new() { @@ -62099,6 +68312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suabo", + Comment = null, }, new() { @@ -62109,6 +68323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Solomon Islands Sign Language", + Comment = null, }, new() { @@ -62119,6 +68334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isu (Fako Division)", + Comment = null, }, new() { @@ -62129,6 +68345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawai", + Comment = null, }, new() { @@ -62139,6 +68356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakizaya", + Comment = null, }, new() { @@ -62149,6 +68367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Tanana", + Comment = null, }, new() { @@ -62159,6 +68378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabassaran", + Comment = null, }, new() { @@ -62169,6 +68389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lowland Tarahumara", + Comment = null, }, new() { @@ -62179,6 +68400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tause", + Comment = null, }, new() { @@ -62189,6 +68411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tariana", + Comment = null, }, new() { @@ -62199,6 +68422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tapirapé", + Comment = null, }, new() { @@ -62209,6 +68433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagoi", + Comment = null, }, new() { @@ -62219,6 +68444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tahitian", + Comment = null, }, new() { @@ -62229,6 +68455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Tamang", + Comment = null, }, new() { @@ -62239,6 +68466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tala", + Comment = null, }, new() { @@ -62249,6 +68477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tal", + Comment = null, }, new() { @@ -62259,6 +68488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamil", + Comment = null, }, new() { @@ -62269,6 +68499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangale", + Comment = null, }, new() { @@ -62279,6 +68510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yami", + Comment = null, }, new() { @@ -62289,6 +68521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taabwa", + Comment = null, }, new() { @@ -62299,6 +68532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamasheq", + Comment = null, }, new() { @@ -62309,6 +68543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Tarahumara", + Comment = null, }, new() { @@ -62319,6 +68554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tay Boi", + Comment = null, }, new() { @@ -62329,6 +68565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tatar", + Comment = null, }, new() { @@ -62339,6 +68576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Tanana", + Comment = null, }, new() { @@ -62349,6 +68587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tatuyo", + Comment = null, }, new() { @@ -62359,6 +68598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai", + Comment = null, }, new() { @@ -62369,6 +68609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamki", + Comment = null, }, new() { @@ -62379,6 +68620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atayal", + Comment = null, }, new() { @@ -62389,6 +68631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tocho", + Comment = null, }, new() { @@ -62399,6 +68642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aikanã", + Comment = null, }, new() { @@ -62409,6 +68653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takia", + Comment = null, }, new() { @@ -62419,6 +68664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaki Ae", + Comment = null, }, new() { @@ -62429,6 +68675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanimbili", + Comment = null, }, new() { @@ -62439,6 +68686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandara", + Comment = null, }, new() { @@ -62449,6 +68697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Tairora", + Comment = null, }, new() { @@ -62459,6 +68708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dharawal", + Comment = null, }, new() { @@ -62469,6 +68719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaam", + Comment = null, }, new() { @@ -62479,6 +68730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiang", + Comment = null, }, new() { @@ -62489,6 +68741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Calamian Tagbanwa", + Comment = null, }, new() { @@ -62499,6 +68752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tboli", + Comment = null, }, new() { @@ -62509,6 +68763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagbu", + Comment = null, }, new() { @@ -62519,6 +68774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barro Negro Tunebo", + Comment = null, }, new() { @@ -62529,6 +68785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawala", + Comment = null, }, new() { @@ -62539,6 +68796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taworta", + Comment = null, }, new() { @@ -62549,6 +68807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumtum", + Comment = null, }, new() { @@ -62559,6 +68818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanguat", + Comment = null, }, new() { @@ -62569,6 +68829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tembo (Kitembo)", + Comment = null, }, new() { @@ -62579,6 +68840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tubar", + Comment = null, }, new() { @@ -62589,6 +68851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobo", + Comment = null, }, new() { @@ -62599,6 +68862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagbanwa", + Comment = null, }, new() { @@ -62609,6 +68873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapin", + Comment = null, }, new() { @@ -62619,6 +68884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabaru", + Comment = null, }, new() { @@ -62629,6 +68895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ditammari", + Comment = null, }, new() { @@ -62639,6 +68906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ticuna", + Comment = null, }, new() { @@ -62649,6 +68917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanacross", + Comment = null, }, new() { @@ -62659,6 +68928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Datooga", + Comment = null, }, new() { @@ -62669,6 +68939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tafi", + Comment = null, }, new() { @@ -62679,6 +68950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tutchone", + Comment = null, }, new() { @@ -62689,6 +68961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malinaltepec Me'phaa", + Comment = null, }, new() { @@ -62699,6 +68972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamagario", + Comment = null, }, new() { @@ -62709,6 +68983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turks And Caicos Creole English", + Comment = null, }, new() { @@ -62719,6 +68994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wára", + Comment = null, }, new() { @@ -62729,6 +69005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tchitchege", + Comment = null, }, new() { @@ -62739,6 +69016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Taman (Myanmar)", + Comment = null, }, new() { @@ -62749,6 +69027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanahmerah", + Comment = null, }, new() { @@ -62759,6 +69038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tichurong", + Comment = null, }, new() { @@ -62769,6 +69049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taungyo", + Comment = null, }, new() { @@ -62779,6 +69060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawr Chin", + Comment = null, }, new() { @@ -62789,6 +69071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaiy", + Comment = null, }, new() { @@ -62799,6 +69082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torres Strait Creole", + Comment = null, }, new() { @@ -62809,6 +69093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "T'en", + Comment = null, }, new() { @@ -62819,6 +69104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Tarahumara", + Comment = null, }, new() { @@ -62829,6 +69115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tecpatlán Totonac", + Comment = null, }, new() { @@ -62839,6 +69126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toda", + Comment = null, }, new() { @@ -62849,6 +69137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulu", + Comment = null, }, new() { @@ -62859,6 +69148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thado Chin", + Comment = null, }, new() { @@ -62869,6 +69159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagdal", + Comment = null, }, new() { @@ -62879,6 +69170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panchpargania", + Comment = null, }, new() { @@ -62889,6 +69181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Tadó", + Comment = null, }, new() { @@ -62899,6 +69192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Nüa", + Comment = null, }, new() { @@ -62909,6 +69203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiranige Diga Dogon", + Comment = null, }, new() { @@ -62919,6 +69214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talieng", + Comment = null, }, new() { @@ -62929,6 +69225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tamang", + Comment = null, }, new() { @@ -62939,6 +69236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thulung", + Comment = null, }, new() { @@ -62949,6 +69247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomadino", + Comment = null, }, new() { @@ -62959,6 +69258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajio", + Comment = null, }, new() { @@ -62969,6 +69269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tambas", + Comment = null, }, new() { @@ -62979,6 +69280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sur", + Comment = null, }, new() { @@ -62989,6 +69291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taruma", + Comment = null, }, new() { @@ -62999,6 +69302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tondano", + Comment = null, }, new() { @@ -63009,6 +69313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teme", + Comment = null, }, new() { @@ -63019,6 +69324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tita", + Comment = null, }, new() { @@ -63029,6 +69335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Todrah", + Comment = null, }, new() { @@ -63039,6 +69346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doutai", + Comment = null, }, new() { @@ -63049,6 +69357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetun Dili", + Comment = null, }, new() { @@ -63059,6 +69368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toro", + Comment = null, }, new() { @@ -63069,6 +69379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tandroy-Mahafaly Malagasy", + Comment = null, }, new() { @@ -63079,6 +69390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tadyawan", + Comment = null, }, new() { @@ -63089,6 +69401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temiar", + Comment = null, }, new() { @@ -63099,6 +69412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tetete", + Comment = null, }, new() { @@ -63109,6 +69423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Terik", + Comment = null, }, new() { @@ -63119,6 +69434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepo Krumen", + Comment = null, }, new() { @@ -63129,6 +69445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huehuetla Tepehua", + Comment = null, }, new() { @@ -63139,6 +69456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teressa", + Comment = null, }, new() { @@ -63149,6 +69467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Tege", + Comment = null, }, new() { @@ -63159,6 +69478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tehuelche", + Comment = null, }, new() { @@ -63169,6 +69489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torricelli", + Comment = null, }, new() { @@ -63179,6 +69500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibali Teke", + Comment = null, }, new() { @@ -63189,6 +69511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Telugu", + Comment = null, }, new() { @@ -63199,6 +69522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Timne", + Comment = null, }, new() { @@ -63209,6 +69533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tama (Colombia)", + Comment = null, }, new() { @@ -63219,6 +69544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teso", + Comment = null, }, new() { @@ -63229,6 +69555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tepecano", + Comment = null, }, new() { @@ -63239,6 +69566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temein", + Comment = null, }, new() { @@ -63249,6 +69577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tereno", + Comment = null, }, new() { @@ -63259,6 +69588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tengger", + Comment = null, }, new() { @@ -63269,6 +69599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetum", + Comment = null, }, new() { @@ -63279,6 +69610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soo", + Comment = null, }, new() { @@ -63289,6 +69621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teor", + Comment = null, }, new() { @@ -63299,6 +69632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tewa (USA)", + Comment = null, }, new() { @@ -63309,6 +69643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tennet", + Comment = null, }, new() { @@ -63319,6 +69654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulishi", + Comment = null, }, new() { @@ -63329,6 +69665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetserret", + Comment = null, }, new() { @@ -63339,6 +69676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tofin Gbe", + Comment = null, }, new() { @@ -63349,6 +69687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanaina", + Comment = null, }, new() { @@ -63359,6 +69698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tefaro", + Comment = null, }, new() { @@ -63369,6 +69709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teribe", + Comment = null, }, new() { @@ -63379,6 +69720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ternate", + Comment = null, }, new() { @@ -63389,6 +69731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sagalla", + Comment = null, }, new() { @@ -63399,6 +69742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobilung", + Comment = null, }, new() { @@ -63409,6 +69753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigak", + Comment = null, }, new() { @@ -63419,6 +69764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ciwogai", + Comment = null, }, new() { @@ -63429,6 +69775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Gorkha Tamang", + Comment = null, }, new() { @@ -63439,6 +69786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chalikha", + Comment = null, }, new() { @@ -63449,6 +69797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobagonian Creole English", + Comment = null, }, new() { @@ -63459,6 +69808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lawunuia", + Comment = null, }, new() { @@ -63469,6 +69819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagin", + Comment = null, }, new() { @@ -63479,6 +69830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajik", + Comment = null, }, new() { @@ -63489,6 +69841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagalog", + Comment = null, }, new() { @@ -63499,6 +69852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tandaganon", + Comment = null, }, new() { @@ -63509,6 +69863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sudest", + Comment = null, }, new() { @@ -63519,6 +69874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangoa", + Comment = null, }, new() { @@ -63529,6 +69885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tring", + Comment = null, }, new() { @@ -63539,6 +69896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tareng", + Comment = null, }, new() { @@ -63549,6 +69907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nume", + Comment = null, }, new() { @@ -63559,6 +69918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Tagbanwa", + Comment = null, }, new() { @@ -63569,6 +69929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanggu", + Comment = null, }, new() { @@ -63579,6 +69940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tingui-Boto", + Comment = null, }, new() { @@ -63589,6 +69951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagwana Senoufo", + Comment = null, }, new() { @@ -63599,6 +69962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagish", + Comment = null, }, new() { @@ -63609,6 +69973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Togoyo", + Comment = null, }, new() { @@ -63619,6 +69984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tagalaka", + Comment = null, }, new() { @@ -63629,6 +69995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thai", + Comment = null, }, new() { @@ -63639,6 +70006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuuk Thaayorre", + Comment = null, }, new() { @@ -63649,6 +70017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chitwania Tharu", + Comment = null, }, new() { @@ -63659,6 +70028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thangmi", + Comment = null, }, new() { @@ -63669,6 +70039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tarahumara", + Comment = null, }, new() { @@ -63679,6 +70050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Long", + Comment = null, }, new() { @@ -63689,6 +70061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tharaka", + Comment = null, }, new() { @@ -63699,6 +70072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dangaura Tharu", + Comment = null, }, new() { @@ -63709,6 +70083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aheu", + Comment = null, }, new() { @@ -63719,6 +70094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thachanadan", + Comment = null, }, new() { @@ -63729,6 +70105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thompson", + Comment = null, }, new() { @@ -63739,6 +70116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kochila Tharu", + Comment = null, }, new() { @@ -63749,6 +70127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rana Tharu", + Comment = null, }, new() { @@ -63759,6 +70138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thakali", + Comment = null, }, new() { @@ -63769,6 +70149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tahltan", + Comment = null, }, new() { @@ -63779,6 +70160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thuri", + Comment = null, }, new() { @@ -63789,6 +70171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tahaggart Tamahaq", + Comment = null, }, new() { @@ -63799,6 +70182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tha", + Comment = null, }, new() { @@ -63809,6 +70193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tayart Tamajeq", + Comment = null, }, new() { @@ -63819,6 +70204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tidikelt Tamazight", + Comment = null, }, new() { @@ -63829,6 +70215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tira", + Comment = null, }, new() { @@ -63839,6 +70226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tifal", + Comment = null, }, new() { @@ -63849,6 +70237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigre", + Comment = null, }, new() { @@ -63859,6 +70248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Timugon Murut", + Comment = null, }, new() { @@ -63869,6 +70259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiene", + Comment = null, }, new() { @@ -63879,6 +70270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tilung", + Comment = null, }, new() { @@ -63889,6 +70281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tikar", + Comment = null, }, new() { @@ -63899,6 +70292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tillamook", + Comment = null, }, new() { @@ -63909,6 +70303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Timbe", + Comment = null, }, new() { @@ -63919,6 +70314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tindi", + Comment = null, }, new() { @@ -63929,6 +70325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teop", + Comment = null, }, new() { @@ -63939,6 +70336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trimuris", + Comment = null, }, new() { @@ -63949,6 +70347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiéfo", + Comment = null, }, new() { @@ -63959,6 +70358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigrinya", + Comment = null, }, new() { @@ -63969,6 +70369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masadiit Itneg", + Comment = null, }, new() { @@ -63979,6 +70380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tinigua", + Comment = null, }, new() { @@ -63989,6 +70391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adasen", + Comment = null, }, new() { @@ -63999,6 +70402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiv", + Comment = null, }, new() { @@ -64009,6 +70413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiwi", + Comment = null, }, new() { @@ -64019,6 +70424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tiwa", + Comment = null, }, new() { @@ -64029,6 +70435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiruray", + Comment = null, }, new() { @@ -64039,6 +70446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Hongjin", + Comment = null, }, new() { @@ -64049,6 +70457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajuasohn", + Comment = null, }, new() { @@ -64059,6 +70468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunjung", + Comment = null, }, new() { @@ -64069,6 +70479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tujia", + Comment = null, }, new() { @@ -64079,6 +70490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tjungundji", + Comment = null, }, new() { @@ -64089,6 +70501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Laing", + Comment = null, }, new() { @@ -64099,6 +70512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Timucua", + Comment = null, }, new() { @@ -64109,6 +70523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tonjon", + Comment = null, }, new() { @@ -64119,6 +70534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temacine Tamazight", + Comment = null, }, new() { @@ -64129,6 +70545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tjupany", + Comment = null, }, new() { @@ -64139,6 +70556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tujia", + Comment = null, }, new() { @@ -64149,6 +70567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tjurruru", + Comment = null, }, new() { @@ -64159,6 +70578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djabwurrung", + Comment = null, }, new() { @@ -64169,6 +70589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Truká", + Comment = null, }, new() { @@ -64179,6 +70600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buksa", + Comment = null, }, new() { @@ -64189,6 +70611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukudede", + Comment = null, }, new() { @@ -64199,6 +70622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takwane", + Comment = null, }, new() { @@ -64209,6 +70633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tukumanféd", + Comment = null, }, new() { @@ -64219,6 +70644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tesaka Malagasy", + Comment = null, }, new() { @@ -64229,6 +70655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tokelau", + Comment = null, }, new() { @@ -64239,6 +70666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Takelma", + Comment = null, }, new() { @@ -64249,6 +70677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toku-No-Shima", + Comment = null, }, new() { @@ -64259,6 +70688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tikopia", + Comment = null, }, new() { @@ -64269,6 +70699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tee", + Comment = null, }, new() { @@ -64279,6 +70710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsakhur", + Comment = null, }, new() { @@ -64289,6 +70721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takestani", + Comment = null, }, new() { @@ -64299,6 +70732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kathoriya Tharu", + Comment = null, }, new() { @@ -64309,6 +70743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Necaxa Totonac", + Comment = null, }, new() { @@ -64319,6 +70754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mur Pano", + Comment = null, }, new() { @@ -64329,6 +70765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teanu", + Comment = null, }, new() { @@ -64339,6 +70776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangko", + Comment = null, }, new() { @@ -64349,6 +70787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takua", + Comment = null, }, new() { @@ -64359,6 +70798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Tepehuan", + Comment = null, }, new() { @@ -64369,6 +70809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobelo", + Comment = null, }, new() { @@ -64379,6 +70820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yecuatla Totonac", + Comment = null, }, new() { @@ -64389,6 +70831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talaud", + Comment = null, }, new() { @@ -64399,6 +70842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Telefol", + Comment = null, }, new() { @@ -64409,6 +70853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tofanma", + Comment = null, }, new() { @@ -64419,6 +70864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Klingon", + Comment = null, }, new() { @@ -64429,6 +70875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlingit", + Comment = null, }, new() { @@ -64439,6 +70886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talinga-Bwisi", + Comment = null, }, new() { @@ -64449,6 +70897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taloki", + Comment = null, }, new() { @@ -64459,6 +70908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetela", + Comment = null, }, new() { @@ -64469,6 +70919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tolomako", + Comment = null, }, new() { @@ -64479,6 +70930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talondo'", + Comment = null, }, new() { @@ -64489,6 +70941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talodi", + Comment = null, }, new() { @@ -64499,6 +70952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Filomena Mata-Coahuitlán Totonac", + Comment = null, }, new() { @@ -64509,6 +70963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Loi", + Comment = null, }, new() { @@ -64519,6 +70974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talise", + Comment = null, }, new() { @@ -64529,6 +70985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tambotalo", + Comment = null, }, new() { @@ -64539,6 +70996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sou Nama", + Comment = null, }, new() { @@ -64549,6 +71007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulehu", + Comment = null, }, new() { @@ -64559,6 +71018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taliabu", + Comment = null, }, new() { @@ -64569,6 +71029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khehek", + Comment = null, }, new() { @@ -64579,6 +71040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talysh", + Comment = null, }, new() { @@ -64589,6 +71051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tama (Chad)", + Comment = null, }, new() { @@ -64599,6 +71062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katbol", + Comment = null, }, new() { @@ -64609,6 +71073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumak", + Comment = null, }, new() { @@ -64619,6 +71084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haruai", + Comment = null, }, new() { @@ -64629,6 +71095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tremembé", + Comment = null, }, new() { @@ -64639,6 +71106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toba-Maskoy", + Comment = null, }, new() { @@ -64649,6 +71117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ternateño", + Comment = null, }, new() { @@ -64659,6 +71128,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Tamashek", + Comment = null, }, new() { @@ -64669,6 +71139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tutuba", + Comment = null, }, new() { @@ -64679,6 +71150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samarokena", + Comment = null, }, new() { @@ -64689,6 +71161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamnim Citak", + Comment = null, }, new() { @@ -64699,6 +71172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Thanh", + Comment = null, }, new() { @@ -64709,6 +71183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taman (Indonesia)", + Comment = null, }, new() { @@ -64719,6 +71194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temoq", + Comment = null, }, new() { @@ -64729,6 +71205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumleo", + Comment = null, }, new() { @@ -64739,6 +71216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)", + Comment = null, }, new() { @@ -64749,6 +71227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tima", + Comment = null, }, new() { @@ -64759,6 +71238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tasmate", + Comment = null, }, new() { @@ -64769,6 +71249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iau", + Comment = null, }, new() { @@ -64779,6 +71260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tembo (Motembo)", + Comment = null, }, new() { @@ -64789,6 +71271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temuan", + Comment = null, }, new() { @@ -64799,6 +71282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tami", + Comment = null, }, new() { @@ -64809,6 +71293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tamanaku", + Comment = null, }, new() { @@ -64819,6 +71304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tacana", + Comment = null, }, new() { @@ -64829,6 +71315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tunebo", + Comment = null, }, new() { @@ -64839,6 +71326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanimuca-Retuarã", + Comment = null, }, new() { @@ -64849,6 +71337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angosturas Tunebo", + Comment = null, }, new() { @@ -64859,6 +71348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobanga", + Comment = null, }, new() { @@ -64869,6 +71359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiani", + Comment = null, }, new() { @@ -64879,6 +71370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tandia", + Comment = null, }, new() { @@ -64889,6 +71381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwamera", + Comment = null, }, new() { @@ -64899,6 +71392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenakel", + Comment = null, }, new() { @@ -64909,6 +71403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabla", + Comment = null, }, new() { @@ -64919,6 +71414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Tanna", + Comment = null, }, new() { @@ -64929,6 +71425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toromono", + Comment = null, }, new() { @@ -64939,6 +71436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Whitesands", + Comment = null, }, new() { @@ -64949,6 +71447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Taino", + Comment = null, }, new() { @@ -64959,6 +71458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ménik", + Comment = null, }, new() { @@ -64969,6 +71469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenis", + Comment = null, }, new() { @@ -64979,6 +71480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tontemboan", + Comment = null, }, new() { @@ -64989,6 +71491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tay Khang", + Comment = null, }, new() { @@ -64999,6 +71502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangchangya", + Comment = null, }, new() { @@ -65009,6 +71513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonsawang", + Comment = null, }, new() { @@ -65019,6 +71524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanema", + Comment = null, }, new() { @@ -65029,6 +71535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tongwe", + Comment = null, }, new() { @@ -65039,6 +71546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ten'edn", + Comment = null, }, new() { @@ -65049,6 +71557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toba", + Comment = null, }, new() { @@ -65059,6 +71568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coyutla Totonac", + Comment = null, }, new() { @@ -65069,6 +71579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toma", + Comment = null, }, new() { @@ -65079,6 +71590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gizrra", + Comment = null, }, new() { @@ -65089,6 +71601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonga (Nyasa)", + Comment = null, }, new() { @@ -65099,6 +71612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gitonga", + Comment = null, }, new() { @@ -65109,6 +71623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonga (Zambia)", + Comment = null, }, new() { @@ -65119,6 +71634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tojolabal", + Comment = null, }, new() { @@ -65129,6 +71645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Toki Pona", + Comment = null, }, new() { @@ -65139,6 +71656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tolowa", + Comment = null, }, new() { @@ -65149,6 +71667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tombulu", + Comment = null, }, new() { @@ -65159,6 +71678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonga (Tonga Islands)", + Comment = null, }, new() { @@ -65169,6 +71689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xicotepec De Juárez Totonac", + Comment = null, }, new() { @@ -65179,6 +71700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papantla Totonac", + Comment = null, }, new() { @@ -65189,6 +71711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toposa", + Comment = null, }, new() { @@ -65199,6 +71722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Togbo-Vara Banda", + Comment = null, }, new() { @@ -65209,6 +71733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Totonac", + Comment = null, }, new() { @@ -65219,6 +71744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tho", + Comment = null, }, new() { @@ -65229,6 +71755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Taromi", + Comment = null, }, new() { @@ -65239,6 +71766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jemez", + Comment = null, }, new() { @@ -65249,6 +71777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobian", + Comment = null, }, new() { @@ -65259,6 +71788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Topoiyo", + Comment = null, }, new() { @@ -65269,6 +71799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "To", + Comment = null, }, new() { @@ -65279,6 +71810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taupota", + Comment = null, }, new() { @@ -65289,6 +71821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Azoyú Me'phaa", + Comment = null, }, new() { @@ -65299,6 +71832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tippera", + Comment = null, }, new() { @@ -65309,6 +71843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarpia", + Comment = null, }, new() { @@ -65319,6 +71854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kula", + Comment = null, }, new() { @@ -65329,6 +71865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tok Pisin", + Comment = null, }, new() { @@ -65339,6 +71876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tapieté", + Comment = null, }, new() { @@ -65349,6 +71887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tupinikin", + Comment = null, }, new() { @@ -65359,6 +71898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlacoapa Me'phaa", + Comment = null, }, new() { @@ -65369,6 +71909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tampulma", + Comment = null, }, new() { @@ -65379,6 +71920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tupinambá", + Comment = null, }, new() { @@ -65389,6 +71931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Pao", + Comment = null, }, new() { @@ -65399,6 +71942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pisaflores Tepehua", + Comment = null, }, new() { @@ -65409,6 +71953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukpa", + Comment = null, }, new() { @@ -65419,6 +71964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuparí", + Comment = null, }, new() { @@ -65429,6 +71975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlachichilco Tepehua", + Comment = null, }, new() { @@ -65439,6 +71986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tampuan", + Comment = null, }, new() { @@ -65449,6 +71997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanapag", + Comment = null, }, new() { @@ -65459,6 +72008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Acatepec Me'phaa", + Comment = null, }, new() { @@ -65469,6 +72019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trumai", + Comment = null, }, new() { @@ -65479,6 +72030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tinputz", + Comment = null, }, new() { @@ -65489,6 +72041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tembé", + Comment = null, }, new() { @@ -65499,6 +72052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lehali", + Comment = null, }, new() { @@ -65509,6 +72063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turumsa", + Comment = null, }, new() { @@ -65519,6 +72074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenino", + Comment = null, }, new() { @@ -65529,6 +72085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toaripi", + Comment = null, }, new() { @@ -65539,6 +72096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomoip", + Comment = null, }, new() { @@ -65549,6 +72107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunni", + Comment = null, }, new() { @@ -65559,6 +72118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Torona", + Comment = null, }, new() { @@ -65569,6 +72129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Totonac", + Comment = null, }, new() { @@ -65579,6 +72140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Touo", + Comment = null, }, new() { @@ -65589,6 +72151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tonkawa", + Comment = null, }, new() { @@ -65599,6 +72162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tirahi", + Comment = null, }, new() { @@ -65609,6 +72173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Terebu", + Comment = null, }, new() { @@ -65619,6 +72184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Copala Triqui", + Comment = null, }, new() { @@ -65629,6 +72195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turi", + Comment = null, }, new() { @@ -65639,6 +72206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Tarangan", + Comment = null, }, new() { @@ -65649,6 +72217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trinidadian Creole English", + Comment = null, }, new() { @@ -65659,6 +72228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lishán Didán", + Comment = null, }, new() { @@ -65669,6 +72239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turaka", + Comment = null, }, new() { @@ -65679,6 +72250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trió", + Comment = null, }, new() { @@ -65689,6 +72261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toram", + Comment = null, }, new() { @@ -65699,6 +72272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Traveller Scottish", + Comment = null, }, new() { @@ -65709,6 +72283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tregami", + Comment = null, }, new() { @@ -65719,6 +72294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trinitario", + Comment = null, }, new() { @@ -65729,6 +72305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarao Naga", + Comment = null, }, new() { @@ -65739,6 +72316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kok Borok", + Comment = null, }, new() { @@ -65749,6 +72327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Martín Itunyoso Triqui", + Comment = null, }, new() { @@ -65759,6 +72338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taushiro", + Comment = null, }, new() { @@ -65769,6 +72349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chicahuaxtla Triqui", + Comment = null, }, new() { @@ -65779,6 +72360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunggare", + Comment = null, }, new() { @@ -65789,6 +72371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turoyo", + Comment = null, }, new() { @@ -65799,6 +72382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sediq", + Comment = null, }, new() { @@ -65809,6 +72393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torwali", + Comment = null, }, new() { @@ -65819,6 +72404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tringgus-Sembaan Bidayuh", + Comment = null, }, new() { @@ -65829,6 +72415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Turung", + Comment = null, }, new() { @@ -65839,6 +72426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Torá", + Comment = null, }, new() { @@ -65849,6 +72437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsaangi", + Comment = null, }, new() { @@ -65859,6 +72448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsamai", + Comment = null, }, new() { @@ -65869,6 +72459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tswa", + Comment = null, }, new() { @@ -65879,6 +72470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsakonian", + Comment = null, }, new() { @@ -65889,6 +72481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunisian Sign Language", + Comment = null, }, new() { @@ -65899,6 +72492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tausug", + Comment = null, }, new() { @@ -65909,6 +72503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsuvan", + Comment = null, }, new() { @@ -65919,6 +72514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsimshian", + Comment = null, }, new() { @@ -65929,6 +72525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tshangla", + Comment = null, }, new() { @@ -65939,6 +72536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tseku", + Comment = null, }, new() { @@ -65949,6 +72547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ts'ün-Lao", + Comment = null, }, new() { @@ -65959,6 +72558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkish Sign Language", + Comment = null, }, new() { @@ -65969,6 +72569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tswana", + Comment = null, }, new() { @@ -65979,6 +72580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsonga", + Comment = null, }, new() { @@ -65989,6 +72591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Toussian", + Comment = null, }, new() { @@ -65999,6 +72602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thai Sign Language", + Comment = null, }, new() { @@ -66009,6 +72613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akei", + Comment = null, }, new() { @@ -66019,6 +72624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taiwan Sign Language", + Comment = null, }, new() { @@ -66029,6 +72635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tondi Songway Kiini", + Comment = null, }, new() { @@ -66039,6 +72646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsou", + Comment = null, }, new() { @@ -66049,6 +72657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsogo", + Comment = null, }, new() { @@ -66059,6 +72668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsishingini", + Comment = null, }, new() { @@ -66069,6 +72679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mubami", + Comment = null, }, new() { @@ -66079,6 +72690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tebul Sign Language", + Comment = null, }, new() { @@ -66089,6 +72701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purepecha", + Comment = null, }, new() { @@ -66099,6 +72712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tutelo", + Comment = null, }, new() { @@ -66109,6 +72723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaa", + Comment = null, }, new() { @@ -66119,6 +72734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tektiteko", + Comment = null, }, new() { @@ -66129,6 +72745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tauade", + Comment = null, }, new() { @@ -66139,6 +72756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwanabwana", + Comment = null, }, new() { @@ -66149,6 +72767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuotomb", + Comment = null, }, new() { @@ -66159,6 +72778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tutong", + Comment = null, }, new() { @@ -66169,6 +72789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Ta'oih", + Comment = null, }, new() { @@ -66179,6 +72800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobati", + Comment = null, }, new() { @@ -66189,6 +72811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tooro", + Comment = null, }, new() { @@ -66199,6 +72822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totoro", + Comment = null, }, new() { @@ -66209,6 +72833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totela", + Comment = null, }, new() { @@ -66219,6 +72844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tutchone", + Comment = null, }, new() { @@ -66229,6 +72855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Towei", + Comment = null, }, new() { @@ -66239,6 +72866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Ta'oih", + Comment = null, }, new() { @@ -66249,6 +72877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tombelala", + Comment = null, }, new() { @@ -66259,6 +72888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawallammat Tamajaq", + Comment = null, }, new() { @@ -66269,6 +72899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tera", + Comment = null, }, new() { @@ -66279,6 +72910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeastern Thai", + Comment = null, }, new() { @@ -66289,6 +72921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muslim Tat", + Comment = null, }, new() { @@ -66299,6 +72932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torau", + Comment = null, }, new() { @@ -66309,6 +72943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Titan", + Comment = null, }, new() { @@ -66319,6 +72954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Long Wat", + Comment = null, }, new() { @@ -66329,6 +72965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikaritai", + Comment = null, }, new() { @@ -66339,6 +72976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsum", + Comment = null, }, new() { @@ -66349,6 +72987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wiarumus", + Comment = null, }, new() { @@ -66359,6 +72998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tübatulabal", + Comment = null, }, new() { @@ -66369,6 +73009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mutu", + Comment = null, }, new() { @@ -66379,6 +73020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tuxá", + Comment = null, }, new() { @@ -66389,6 +73031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuyuca", + Comment = null, }, new() { @@ -66399,6 +73042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Tunebo", + Comment = null, }, new() { @@ -66409,6 +73053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunia", + Comment = null, }, new() { @@ -66419,6 +73064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taulil", + Comment = null, }, new() { @@ -66429,6 +73075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tupuri", + Comment = null, }, new() { @@ -66439,6 +73086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tugutil", + Comment = null, }, new() { @@ -66449,6 +73097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkmen", + Comment = null, }, new() { @@ -66459,6 +73108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tula", + Comment = null, }, new() { @@ -66469,6 +73119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumbuka", + Comment = null, }, new() { @@ -66479,6 +73130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunica", + Comment = null, }, new() { @@ -66489,6 +73141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tucano", + Comment = null, }, new() { @@ -66499,6 +73152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tedaga", + Comment = null, }, new() { @@ -66509,6 +73163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkish", + Comment = null, }, new() { @@ -66519,6 +73174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuscarora", + Comment = null, }, new() { @@ -66529,6 +73185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tututni", + Comment = null, }, new() { @@ -66539,6 +73196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkana", + Comment = null, }, new() { @@ -66549,6 +73207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tuxináwa", + Comment = null, }, new() { @@ -66559,6 +73218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tugen", + Comment = null, }, new() { @@ -66569,6 +73229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turka", + Comment = null, }, new() { @@ -66579,6 +73240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaghua", + Comment = null, }, new() { @@ -66589,6 +73251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsuvadi", + Comment = null, }, new() { @@ -66599,6 +73262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Te'un", + Comment = null, }, new() { @@ -66609,6 +73273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulai", + Comment = null, }, new() { @@ -66619,6 +73284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Ambrym", + Comment = null, }, new() { @@ -66629,6 +73295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuvalu", + Comment = null, }, new() { @@ -66639,6 +73306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tela-Masbuar", + Comment = null, }, new() { @@ -66649,6 +73317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tavoyan", + Comment = null, }, new() { @@ -66659,6 +73328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tidore", + Comment = null, }, new() { @@ -66669,6 +73339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taveta", + Comment = null, }, new() { @@ -66679,6 +73350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tutsa Naga", + Comment = null, }, new() { @@ -66689,6 +73361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunen", + Comment = null, }, new() { @@ -66699,6 +73372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sedoa", + Comment = null, }, new() { @@ -66709,6 +73383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Taivoan", + Comment = null, }, new() { @@ -66719,6 +73394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Timor Pidgin", + Comment = null, }, new() { @@ -66729,6 +73405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Twana", + Comment = null, }, new() { @@ -66739,6 +73416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tawbuid", + Comment = null, }, new() { @@ -66749,6 +73427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Teshenawa", + Comment = null, }, new() { @@ -66759,6 +73438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Twents", + Comment = null, }, new() { @@ -66769,6 +73449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tewa (Indonesia)", + Comment = null, }, new() { @@ -66779,6 +73460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tiwa", + Comment = null, }, new() { @@ -66789,6 +73471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tereweng", + Comment = null, }, new() { @@ -66799,6 +73482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Dón", + Comment = null, }, new() { @@ -66809,6 +73493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Twi", + Comment = null, }, new() { @@ -66819,6 +73504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawara", + Comment = null, }, new() { @@ -66829,6 +73515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawang Monpa", + Comment = null, }, new() { @@ -66839,6 +73526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Twendi", + Comment = null, }, new() { @@ -66849,6 +73537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tswapong", + Comment = null, }, new() { @@ -66859,6 +73548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ere", + Comment = null, }, new() { @@ -66869,6 +73559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tasawaq", + Comment = null, }, new() { @@ -66879,6 +73570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Tarahumara", + Comment = null, }, new() { @@ -66889,6 +73581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Turiwára", + Comment = null, }, new() { @@ -66899,6 +73592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Termanu", + Comment = null, }, new() { @@ -66909,6 +73603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuwari", + Comment = null, }, new() { @@ -66919,6 +73614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tewe", + Comment = null, }, new() { @@ -66929,6 +73625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawoyan", + Comment = null, }, new() { @@ -66939,6 +73636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tombonuo", + Comment = null, }, new() { @@ -66949,6 +73647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tokharian B", + Comment = null, }, new() { @@ -66959,6 +73658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tsetsaut", + Comment = null, }, new() { @@ -66969,6 +73669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totoli", + Comment = null, }, new() { @@ -66979,6 +73680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tangut", + Comment = null, }, new() { @@ -66989,6 +73691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Thracian", + Comment = null, }, new() { @@ -66999,6 +73702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikpeng", + Comment = null, }, new() { @@ -67009,6 +73713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarjumo", + Comment = null, }, new() { @@ -67019,6 +73724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomini", + Comment = null, }, new() { @@ -67029,6 +73735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Tarangan", + Comment = null, }, new() { @@ -67039,6 +73746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toto", + Comment = null, }, new() { @@ -67049,6 +73757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tii", + Comment = null, }, new() { @@ -67059,6 +73768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tartessian", + Comment = null, }, new() { @@ -67069,6 +73779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonsea", + Comment = null, }, new() { @@ -67079,6 +73790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Citak", + Comment = null, }, new() { @@ -67089,6 +73801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayapó", + Comment = null, }, new() { @@ -67099,6 +73812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tatana", + Comment = null, }, new() { @@ -67109,6 +73823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanosy Malagasy", + Comment = null, }, new() { @@ -67119,6 +73834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tauya", + Comment = null, }, new() { @@ -67129,6 +73845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyanga", + Comment = null, }, new() { @@ -67139,6 +73856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "O'du", + Comment = null, }, new() { @@ -67149,6 +73867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Tsaayi", + Comment = null, }, new() { @@ -67159,6 +73878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Do", + Comment = null, }, new() { @@ -67169,6 +73889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thu Lao", + Comment = null, }, new() { @@ -67179,6 +73900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kombai", + Comment = null, }, new() { @@ -67189,6 +73911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Thaypan", + Comment = null, }, new() { @@ -67199,6 +73922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Daeng", + Comment = null, }, new() { @@ -67209,6 +73933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tày Sa Pa", + Comment = null, }, new() { @@ -67219,6 +73944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tày Tac", + Comment = null, }, new() { @@ -67229,6 +73955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kua", + Comment = null, }, new() { @@ -67239,6 +73966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuvinian", + Comment = null, }, new() { @@ -67249,6 +73977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Tyee", + Comment = null, }, new() { @@ -67259,6 +73988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiyaa", + Comment = null, }, new() { @@ -67269,6 +73999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tày", + Comment = null, }, new() { @@ -67279,6 +74010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanzanian Sign Language", + Comment = null, }, new() { @@ -67289,6 +74021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tzeltal", + Comment = null, }, new() { @@ -67299,6 +74032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tz'utujil", + Comment = null, }, new() { @@ -67309,6 +74043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Talossan", + Comment = null, }, new() { @@ -67319,6 +74054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Atlas Tamazight", + Comment = null, }, new() { @@ -67329,6 +74065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tugun", + Comment = null, }, new() { @@ -67339,6 +74076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tzotzil", + Comment = null, }, new() { @@ -67349,6 +74087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabriak", + Comment = null, }, new() { @@ -67359,6 +74098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Uamué", + Comment = null, }, new() { @@ -67369,6 +74109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuan", + Comment = null, }, new() { @@ -67379,6 +74120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tairuma", + Comment = null, }, new() { @@ -67389,6 +74131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubang", + Comment = null, }, new() { @@ -67399,6 +74142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubi", + Comment = null, }, new() { @@ -67409,6 +74153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buhi'non Bikol", + Comment = null, }, new() { @@ -67419,6 +74164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubir", + Comment = null, }, new() { @@ -67429,6 +74175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umbu-Ungu", + Comment = null, }, new() { @@ -67439,6 +74186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ubykh", + Comment = null, }, new() { @@ -67449,6 +74197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uda", + Comment = null, }, new() { @@ -67459,6 +74208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Udihe", + Comment = null, }, new() { @@ -67469,6 +74219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muduga", + Comment = null, }, new() { @@ -67479,6 +74230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Udi", + Comment = null, }, new() { @@ -67489,6 +74241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ujir", + Comment = null, }, new() { @@ -67499,6 +74252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wuzlam", + Comment = null, }, new() { @@ -67509,6 +74263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Udmurt", + Comment = null, }, new() { @@ -67519,6 +74274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uduk", + Comment = null, }, new() { @@ -67529,6 +74285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kioko", + Comment = null, }, new() { @@ -67539,6 +74296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ufim", + Comment = null, }, new() { @@ -67549,6 +74307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ugaritic", + Comment = null, }, new() { @@ -67559,6 +74318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuku-Ugbanh", + Comment = null, }, new() { @@ -67569,6 +74329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ughele", + Comment = null, }, new() { @@ -67579,6 +74340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kubachi", + Comment = null, }, new() { @@ -67589,6 +74351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ugandan Sign Language", + Comment = null, }, new() { @@ -67599,6 +74362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ugong", + Comment = null, }, new() { @@ -67609,6 +74373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uruguayan Sign Language", + Comment = null, }, new() { @@ -67619,6 +74384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uhami", + Comment = null, }, new() { @@ -67629,6 +74395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Damal", + Comment = null, }, new() { @@ -67639,6 +74406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uighur", + Comment = null, }, new() { @@ -67649,6 +74417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uisai", + Comment = null, }, new() { @@ -67659,6 +74428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyive", + Comment = null, }, new() { @@ -67669,6 +74439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanjijili", + Comment = null, }, new() { @@ -67679,6 +74450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaburi", + Comment = null, }, new() { @@ -67689,6 +74461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukuriguma", + Comment = null, }, new() { @@ -67699,6 +74472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukhwejo", + Comment = null, }, new() { @@ -67709,6 +74483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kui (India)", + Comment = null, }, new() { @@ -67719,6 +74494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muak Sa-aak", + Comment = null, }, new() { @@ -67729,6 +74505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukrainian Sign Language", + Comment = null, }, new() { @@ -67739,6 +74516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukpe-Bayobiri", + Comment = null, }, new() { @@ -67749,6 +74527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukwa", + Comment = null, }, new() { @@ -67759,6 +74538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukrainian", + Comment = null, }, new() { @@ -67769,6 +74549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urubú-Kaapor Sign Language", + Comment = null, }, new() { @@ -67779,6 +74560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukue", + Comment = null, }, new() { @@ -67789,6 +74571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuku", + Comment = null, }, new() { @@ -67799,6 +74582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukwuani-Aboh-Ndoni", + Comment = null, }, new() { @@ -67809,6 +74593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuuk-Yak", + Comment = null, }, new() { @@ -67819,6 +74604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fungwa", + Comment = null, }, new() { @@ -67829,6 +74615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulukwumi", + Comment = null, }, new() { @@ -67839,6 +74626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulch", + Comment = null, }, new() { @@ -67849,6 +74637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lule", + Comment = null, }, new() { @@ -67859,6 +74648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usku", + Comment = null, }, new() { @@ -67869,6 +74659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulithian", + Comment = null, }, new() { @@ -67879,6 +74670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meriam Mir", + Comment = null, }, new() { @@ -67889,6 +74681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ullatan", + Comment = null, }, new() { @@ -67899,6 +74692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulumanda'", + Comment = null, }, new() { @@ -67909,6 +74703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unserdeutsch", + Comment = null, }, new() { @@ -67919,6 +74714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uma' Lung", + Comment = null, }, new() { @@ -67929,6 +74725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulwa", + Comment = null, }, new() { @@ -67939,6 +74736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buli", + Comment = null, }, new() { @@ -67949,6 +74747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umatilla", + Comment = null, }, new() { @@ -67959,6 +74758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umbundu", + Comment = null, }, new() { @@ -67969,6 +74769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Marrucinian", + Comment = null, }, new() { @@ -67979,6 +74780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umbindhamu", + Comment = null, }, new() { @@ -67989,6 +74791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Morrobalama", + Comment = null, }, new() { @@ -67999,6 +74802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukit", + Comment = null, }, new() { @@ -68009,6 +74813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umon", + Comment = null, }, new() { @@ -68019,6 +74824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makyan Naga", + Comment = null, }, new() { @@ -68029,6 +74835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umotína", + Comment = null, }, new() { @@ -68039,6 +74846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umpila", + Comment = null, }, new() { @@ -68049,6 +74857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umbugarla", + Comment = null, }, new() { @@ -68059,6 +74868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pendau", + Comment = null, }, new() { @@ -68069,6 +74879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munsee", + Comment = null, }, new() { @@ -68079,6 +74890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Watut", + Comment = null, }, new() { @@ -68089,6 +74901,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "Undetermined", + Comment = null, }, new() { @@ -68099,6 +74912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uneme", + Comment = null, }, new() { @@ -68109,6 +74923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarinyin", + Comment = null, }, new() { @@ -68119,6 +74934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uni", + Comment = null, }, new() { @@ -68129,6 +74945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enawené-Nawé", + Comment = null, }, new() { @@ -68139,6 +74956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Unami", + Comment = null, }, new() { @@ -68149,6 +74967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurnai", + Comment = null, }, new() { @@ -68159,6 +74978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundari", + Comment = null, }, new() { @@ -68169,6 +74989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unubahe", + Comment = null, }, new() { @@ -68179,6 +75000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munda", + Comment = null, }, new() { @@ -68189,6 +75011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unde Kaili", + Comment = null, }, new() { @@ -68199,6 +75022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kulon", + Comment = null, }, new() { @@ -68209,6 +75033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umeda", + Comment = null, }, new() { @@ -68219,6 +75044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uripiv-Wala-Rano-Atchin", + Comment = null, }, new() { @@ -68229,6 +75055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urarina", + Comment = null, }, new() { @@ -68239,6 +75066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urubú-Kaapor", + Comment = null, }, new() { @@ -68249,6 +75077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Urningangg", + Comment = null, }, new() { @@ -68259,6 +75088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urdu", + Comment = null, }, new() { @@ -68269,6 +75099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uru", + Comment = null, }, new() { @@ -68279,6 +75110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Uradhi", + Comment = null, }, new() { @@ -68289,6 +75121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urigina", + Comment = null, }, new() { @@ -68299,6 +75132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urhobo", + Comment = null, }, new() { @@ -68309,6 +75143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urim", + Comment = null, }, new() { @@ -68319,6 +75154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urak Lawoi'", + Comment = null, }, new() { @@ -68329,6 +75165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urali", + Comment = null, }, new() { @@ -68339,6 +75176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urapmin", + Comment = null, }, new() { @@ -68349,6 +75187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uruangnirin", + Comment = null, }, new() { @@ -68359,6 +75198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ura (Papua New Guinea)", + Comment = null, }, new() { @@ -68369,6 +75209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uru-Pa-In", + Comment = null, }, new() { @@ -68379,6 +75220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lehalurup", + Comment = null, }, new() { @@ -68389,6 +75231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urat", + Comment = null, }, new() { @@ -68399,6 +75242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Urumi", + Comment = null, }, new() { @@ -68409,6 +75253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Uruava", + Comment = null, }, new() { @@ -68419,6 +75264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sop", + Comment = null, }, new() { @@ -68429,6 +75275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urimo", + Comment = null, }, new() { @@ -68439,6 +75286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orya", + Comment = null, }, new() { @@ -68449,6 +75297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uru-Eu-Wau-Wau", + Comment = null, }, new() { @@ -68459,6 +75308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usarufa", + Comment = null, }, new() { @@ -68469,6 +75319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ushojo", + Comment = null, }, new() { @@ -68479,6 +75330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usui", + Comment = null, }, new() { @@ -68489,6 +75341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usaghade", + Comment = null, }, new() { @@ -68499,6 +75352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uspanteco", + Comment = null, }, new() { @@ -68509,6 +75363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "us-Saare", + Comment = null, }, new() { @@ -68519,6 +75374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uya", + Comment = null, }, new() { @@ -68529,6 +75385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Otank", + Comment = null, }, new() { @@ -68539,6 +75396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ute-Southern Paiute", + Comment = null, }, new() { @@ -68549,6 +75407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ut-Hun", + Comment = null, }, new() { @@ -68559,6 +75418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amba (Solomon Islands)", + Comment = null, }, new() { @@ -68569,6 +75429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Etulo", + Comment = null, }, new() { @@ -68579,6 +75440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Utu", + Comment = null, }, new() { @@ -68589,6 +75451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urum", + Comment = null, }, new() { @@ -68599,6 +75462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ura (Vanuatu)", + Comment = null, }, new() { @@ -68609,6 +75473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "U", + Comment = null, }, new() { @@ -68619,6 +75484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Uvean", + Comment = null, }, new() { @@ -68629,6 +75495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uri", + Comment = null, }, new() { @@ -68639,6 +75506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lote", + Comment = null, }, new() { @@ -68649,6 +75517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuku-Uwanh", + Comment = null, }, new() { @@ -68659,6 +75528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doko-Uyanga", + Comment = null, }, new() { @@ -68669,6 +75539,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Uzbek", + Comment = null, }, new() { @@ -68679,6 +75550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Uzbek", + Comment = null, }, new() { @@ -68689,6 +75561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Uzbek", + Comment = null, }, new() { @@ -68699,6 +75572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaagri Booli", + Comment = null, }, new() { @@ -68709,6 +75583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vale", + Comment = null, }, new() { @@ -68719,6 +75594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vafsi", + Comment = null, }, new() { @@ -68729,6 +75605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vagla", + Comment = null, }, new() { @@ -68739,6 +75616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Varhadi-Nagpuri", + Comment = null, }, new() { @@ -68749,6 +75627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vai", + Comment = null, }, new() { @@ -68759,6 +75638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekele", + Comment = null, }, new() { @@ -68769,6 +75649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vehes", + Comment = null, }, new() { @@ -68779,6 +75660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vanimo", + Comment = null, }, new() { @@ -68789,6 +75671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valman", + Comment = null, }, new() { @@ -68799,6 +75682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vao", + Comment = null, }, new() { @@ -68809,6 +75693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaiphei", + Comment = null, }, new() { @@ -68819,6 +75704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huarijio", + Comment = null, }, new() { @@ -68829,6 +75715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vasavi", + Comment = null, }, new() { @@ -68839,6 +75726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vanuma", + Comment = null, }, new() { @@ -68849,6 +75737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Varli", + Comment = null, }, new() { @@ -68859,6 +75748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayu", + Comment = null, }, new() { @@ -68869,6 +75759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Babar", + Comment = null, }, new() { @@ -68879,6 +75770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Bontok", + Comment = null, }, new() { @@ -68889,6 +75781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Venetian", + Comment = null, }, new() { @@ -68899,6 +75792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Veddah", + Comment = null, }, new() { @@ -68909,6 +75803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Veluws", + Comment = null, }, new() { @@ -68919,6 +75814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vemgo-Mabas", + Comment = null, }, new() { @@ -68929,6 +75825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Venda", + Comment = null, }, new() { @@ -68939,6 +75836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ventureño", + Comment = null, }, new() { @@ -68949,6 +75847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Veps", + Comment = null, }, new() { @@ -68959,6 +75858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mom Jango", + Comment = null, }, new() { @@ -68969,6 +75869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaghri", + Comment = null, }, new() { @@ -68979,6 +75880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vlaamse Gebarentaal", + Comment = null, }, new() { @@ -68989,6 +75891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Virgin Islands Creole English", + Comment = null, }, new() { @@ -68999,6 +75902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vidunda", + Comment = null, }, new() { @@ -69009,6 +75913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vietnamese", + Comment = null, }, new() { @@ -69019,6 +75924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vili", + Comment = null, }, new() { @@ -69029,6 +75935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Viemo", + Comment = null, }, new() { @@ -69039,6 +75946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vilela", + Comment = null, }, new() { @@ -69049,6 +75957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vinza", + Comment = null, }, new() { @@ -69059,6 +75968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vishavan", + Comment = null, }, new() { @@ -69069,6 +75979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Viti", + Comment = null, }, new() { @@ -69079,6 +75990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iduna", + Comment = null, }, new() { @@ -69089,6 +76001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bajjika", + Comment = null, }, new() { @@ -69099,6 +76012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kariyarra", + Comment = null, }, new() { @@ -69109,6 +76023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kujarge", + Comment = null, }, new() { @@ -69119,6 +76034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaur", + Comment = null, }, new() { @@ -69129,6 +76045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulisusu", + Comment = null, }, new() { @@ -69139,6 +76056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamakan", + Comment = null, }, new() { @@ -69149,6 +76067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro Nulu", + Comment = null, }, new() { @@ -69159,6 +76078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodeoha", + Comment = null, }, new() { @@ -69169,6 +76089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korlai Creole Portuguese", + Comment = null, }, new() { @@ -69179,6 +76100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenggarong Kutai Malay", + Comment = null, }, new() { @@ -69189,6 +76111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurrama", + Comment = null, }, new() { @@ -69199,6 +76122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro Zuba", + Comment = null, }, new() { @@ -69209,6 +76133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valpei", + Comment = null, }, new() { @@ -69219,6 +76144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vlaams", + Comment = null, }, new() { @@ -69229,6 +76155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Martuyhunira", + Comment = null, }, new() { @@ -69239,6 +76166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barbaram", + Comment = null, }, new() { @@ -69249,6 +76177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juxtlahuaca Mixtec", + Comment = null, }, new() { @@ -69259,6 +76188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mudu Koraga", + Comment = null, }, new() { @@ -69269,6 +76199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Masela", + Comment = null, }, new() { @@ -69279,6 +76210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mainfränkisch", + Comment = null, }, new() { @@ -69289,6 +76221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lungalunga", + Comment = null, }, new() { @@ -69299,6 +76232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maraghei", + Comment = null, }, new() { @@ -69309,6 +76243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Miwa", + Comment = null, }, new() { @@ -69319,6 +76254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixtayutla Mixtec", + Comment = null, }, new() { @@ -69329,6 +76265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Shirima", + Comment = null, }, new() { @@ -69339,6 +76276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Malgana", + Comment = null, }, new() { @@ -69349,6 +76287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mitlatongo Mixtec", + Comment = null, }, new() { @@ -69359,6 +76298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soyaltepec Mazatec", + Comment = null, }, new() { @@ -69369,6 +76309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soyaltepec Mixtec", + Comment = null, }, new() { @@ -69379,6 +76320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marenje", + Comment = null, }, new() { @@ -69389,6 +76331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Moksela", + Comment = null, }, new() { @@ -69399,6 +76342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Muluridyi", + Comment = null, }, new() { @@ -69409,6 +76353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Valley Maidu", + Comment = null, }, new() { @@ -69419,6 +76364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa", + Comment = null, }, new() { @@ -69429,6 +76375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamazola Mixtec", + Comment = null, }, new() { @@ -69439,6 +76386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayautla Mazatec", + Comment = null, }, new() { @@ -69449,6 +76397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazatlán Mazatec", + Comment = null, }, new() { @@ -69459,6 +76408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vano", + Comment = null, }, new() { @@ -69469,6 +76419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vinmavis", + Comment = null, }, new() { @@ -69479,6 +76430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vunapu", + Comment = null, }, new() { @@ -69489,6 +76441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Volapük", + Comment = null, }, new() { @@ -69499,6 +76452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Voro", + Comment = null, }, new() { @@ -69509,6 +76463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Votic", + Comment = null, }, new() { @@ -69519,6 +76474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vera'a", + Comment = null, }, new() { @@ -69529,6 +76485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Võro", + Comment = null, }, new() { @@ -69539,6 +76496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Varisi", + Comment = null, }, new() { @@ -69549,6 +76507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burmbar", + Comment = null, }, new() { @@ -69559,6 +76518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moldova Sign Language", + Comment = null, }, new() { @@ -69569,6 +76529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Venezuelan Sign Language", + Comment = null, }, new() { @@ -69579,6 +76540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Vedic Sanskrit", + Comment = null, }, new() { @@ -69589,6 +76551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valencian Sign Language", + Comment = null, }, new() { @@ -69599,6 +76562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vitou", + Comment = null, }, new() { @@ -69609,6 +76573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vumbu", + Comment = null, }, new() { @@ -69619,6 +76584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vunjo", + Comment = null, }, new() { @@ -69629,6 +76595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vute", + Comment = null, }, new() { @@ -69639,6 +76606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awa (China)", + Comment = null, }, new() { @@ -69649,6 +76617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walla Walla", + Comment = null, }, new() { @@ -69659,6 +76628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wab", + Comment = null, }, new() { @@ -69669,6 +76639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wasco-Wishram", + Comment = null, }, new() { @@ -69679,6 +76650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wamesa", + Comment = null, }, new() { @@ -69689,6 +76661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walser", + Comment = null, }, new() { @@ -69699,6 +76672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wakoná", + Comment = null, }, new() { @@ -69709,6 +76683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wa'ema", + Comment = null, }, new() { @@ -69719,6 +76694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watubela", + Comment = null, }, new() { @@ -69729,6 +76705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wares", + Comment = null, }, new() { @@ -69739,6 +76716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waffa", + Comment = null, }, new() { @@ -69749,6 +76727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolaytta", + Comment = null, }, new() { @@ -69759,6 +76738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wampanoag", + Comment = null, }, new() { @@ -69769,6 +76749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wan", + Comment = null, }, new() { @@ -69779,6 +76760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wappo", + Comment = null, }, new() { @@ -69789,6 +76771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wapishana", + Comment = null, }, new() { @@ -69799,6 +76782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagiman", + Comment = null, }, new() { @@ -69809,6 +76793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waray (Philippines)", + Comment = null, }, new() { @@ -69819,6 +76804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Washo", + Comment = null, }, new() { @@ -69829,6 +76815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaninuwa", + Comment = null, }, new() { @@ -69839,6 +76826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waurá", + Comment = null, }, new() { @@ -69849,6 +76837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waka", + Comment = null, }, new() { @@ -69859,6 +76848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waiwai", + Comment = null, }, new() { @@ -69869,6 +76859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watam", + Comment = null, }, new() { @@ -69879,6 +76870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayana", + Comment = null, }, new() { @@ -69889,6 +76881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wampur", + Comment = null, }, new() { @@ -69899,6 +76892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warao", + Comment = null, }, new() { @@ -69909,6 +76903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wabo", + Comment = null, }, new() { @@ -69919,6 +76914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waritai", + Comment = null, }, new() { @@ -69929,6 +76925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wara", + Comment = null, }, new() { @@ -69939,6 +76936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanda", + Comment = null, }, new() { @@ -69949,6 +76947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vwanji", + Comment = null, }, new() { @@ -69959,6 +76958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alagwa", + Comment = null, }, new() { @@ -69969,6 +76969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waigali", + Comment = null, }, new() { @@ -69979,6 +76980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wakhi", + Comment = null, }, new() { @@ -69989,6 +76991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wa", + Comment = null, }, new() { @@ -69999,6 +77002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warlpiri", + Comment = null, }, new() { @@ -70009,6 +77013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waddar", + Comment = null, }, new() { @@ -70019,6 +77024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagdi", + Comment = null, }, new() { @@ -70029,6 +77035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Bengal Sign Language", + Comment = null, }, new() { @@ -70039,6 +77046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warnman", + Comment = null, }, new() { @@ -70049,6 +77057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wajarri", + Comment = null, }, new() { @@ -70059,6 +77068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woi", + Comment = null, }, new() { @@ -70069,6 +77079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanomámi", + Comment = null, }, new() { @@ -70079,6 +77090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waci Gbe", + Comment = null, }, new() { @@ -70089,6 +77101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wandji", + Comment = null, }, new() { @@ -70099,6 +77112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wadaginam", + Comment = null, }, new() { @@ -70109,6 +77123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wadjiginy", + Comment = null, }, new() { @@ -70119,6 +77134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadikali", + Comment = null, }, new() { @@ -70129,6 +77145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wendat", + Comment = null, }, new() { @@ -70139,6 +77156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadjigu", + Comment = null, }, new() { @@ -70149,6 +77167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadjabangayi", + Comment = null, }, new() { @@ -70159,6 +77178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wewaw", + Comment = null, }, new() { @@ -70169,6 +77189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wè Western", + Comment = null, }, new() { @@ -70179,6 +77200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wedau", + Comment = null, }, new() { @@ -70189,6 +77211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wergaia", + Comment = null, }, new() { @@ -70199,6 +77222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weh", + Comment = null, }, new() { @@ -70209,6 +77233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiunum", + Comment = null, }, new() { @@ -70219,6 +77244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weme Gbe", + Comment = null, }, new() { @@ -70229,6 +77255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wemale", + Comment = null, }, new() { @@ -70239,6 +77266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Westphalien", + Comment = null, }, new() { @@ -70249,6 +77277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weri", + Comment = null, }, new() { @@ -70259,6 +77288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cameroon Pidgin", + Comment = null, }, new() { @@ -70269,6 +77299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Perai", + Comment = null, }, new() { @@ -70279,6 +77310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawngtu Chin", + Comment = null, }, new() { @@ -70289,6 +77321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wejewa", + Comment = null, }, new() { @@ -70299,6 +77332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yafi", + Comment = null, }, new() { @@ -70309,6 +77343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wagaya", + Comment = null, }, new() { @@ -70319,6 +77354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagawaga", + Comment = null, }, new() { @@ -70329,6 +77365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wangkangurru", + Comment = null, }, new() { @@ -70339,6 +77376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wahgi", + Comment = null, }, new() { @@ -70349,6 +77387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waigeo", + Comment = null, }, new() { @@ -70359,6 +77398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wirangu", + Comment = null, }, new() { @@ -70369,6 +77409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warrgamay", + Comment = null, }, new() { @@ -70379,6 +77420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sou Upaa", + Comment = null, }, new() { @@ -70389,6 +77431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Wahgi", + Comment = null, }, new() { @@ -70399,6 +77442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wahau Kenyah", + Comment = null, }, new() { @@ -70409,6 +77453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wahau Kayan", + Comment = null, }, new() { @@ -70419,6 +77464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Toussian", + Comment = null, }, new() { @@ -70429,6 +77475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wichita", + Comment = null, }, new() { @@ -70439,6 +77486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wik-Epa", + Comment = null, }, new() { @@ -70449,6 +77497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wik-Keyangan", + Comment = null, }, new() { @@ -70459,6 +77508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik Ngathan", + Comment = null, }, new() { @@ -70469,6 +77519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik-Me'anha", + Comment = null, }, new() { @@ -70479,6 +77530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minidien", + Comment = null, }, new() { @@ -70489,6 +77541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik-Iiyanh", + Comment = null, }, new() { @@ -70499,6 +77552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wikalkan", + Comment = null, }, new() { @@ -70509,6 +77563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wilawila", + Comment = null, }, new() { @@ -70519,6 +77574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik-Mungkan", + Comment = null, }, new() { @@ -70529,6 +77585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ho-Chunk", + Comment = null, }, new() { @@ -70539,6 +77596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wiraféd", + Comment = null, }, new() { @@ -70549,6 +77607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wiru", + Comment = null, }, new() { @@ -70559,6 +77618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vitu", + Comment = null, }, new() { @@ -70569,6 +77629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wiyot", + Comment = null, }, new() { @@ -70579,6 +77640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waja", + Comment = null, }, new() { @@ -70589,6 +77651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warji", + Comment = null, }, new() { @@ -70599,6 +77662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kw'adza", + Comment = null, }, new() { @@ -70609,6 +77673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumbaran", + Comment = null, }, new() { @@ -70619,6 +77684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wakde", + Comment = null, }, new() { @@ -70629,6 +77695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalanadi", + Comment = null, }, new() { @@ -70639,6 +77706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keerray-Woorroong", + Comment = null, }, new() { @@ -70649,6 +77717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunduvadi", + Comment = null, }, new() { @@ -70659,6 +77728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wakawaka", + Comment = null, }, new() { @@ -70669,6 +77739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wangkayutyuru", + Comment = null, }, new() { @@ -70679,6 +77750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walio", + Comment = null, }, new() { @@ -70689,6 +77761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwali Comorian", + Comment = null, }, new() { @@ -70699,6 +77772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolane", + Comment = null, }, new() { @@ -70709,6 +77783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunbarlang", + Comment = null, }, new() { @@ -70719,6 +77794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Welaun", + Comment = null, }, new() { @@ -70729,6 +77805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waioli", + Comment = null, }, new() { @@ -70739,6 +77816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wailaki", + Comment = null, }, new() { @@ -70749,6 +77827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wali (Sudan)", + Comment = null, }, new() { @@ -70759,6 +77838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Welsh", + Comment = null, }, new() { @@ -70769,6 +77849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walloon", + Comment = null, }, new() { @@ -70779,6 +77860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolio", + Comment = null, }, new() { @@ -70789,6 +77871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wailapa", + Comment = null, }, new() { @@ -70799,6 +77882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wallisian", + Comment = null, }, new() { @@ -70809,6 +77893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wuliwuli", + Comment = null, }, new() { @@ -70819,6 +77904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Vejoz", + Comment = null, }, new() { @@ -70829,6 +77915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walak", + Comment = null, }, new() { @@ -70839,6 +77926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wali (Ghana)", + Comment = null, }, new() { @@ -70849,6 +77937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waling", + Comment = null, }, new() { @@ -70859,6 +77948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mawa (Nigeria)", + Comment = null, }, new() { @@ -70869,6 +77959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wambaya", + Comment = null, }, new() { @@ -70879,6 +77970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wamas", + Comment = null, }, new() { @@ -70889,6 +77981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamaindé", + Comment = null, }, new() { @@ -70899,6 +77992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wambule", + Comment = null, }, new() { @@ -70909,6 +78003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Minyag", + Comment = null, }, new() { @@ -70919,6 +78014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waima'a", + Comment = null, }, new() { @@ -70929,6 +78025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wamin", + Comment = null, }, new() { @@ -70939,6 +78036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiwa (Indonesia)", + Comment = null, }, new() { @@ -70949,6 +78047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waamwang", + Comment = null, }, new() { @@ -70959,6 +78058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wom (Papua New Guinea)", + Comment = null, }, new() { @@ -70969,6 +78069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wambon", + Comment = null, }, new() { @@ -70979,6 +78080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walmajarri", + Comment = null, }, new() { @@ -70989,6 +78091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwani", + Comment = null, }, new() { @@ -70999,6 +78102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Womo", + Comment = null, }, new() { @@ -71009,6 +78113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokati", + Comment = null, }, new() { @@ -71019,6 +78124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wantoat", + Comment = null, }, new() { @@ -71029,6 +78135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wandarang", + Comment = null, }, new() { @@ -71039,6 +78146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waneci", + Comment = null, }, new() { @@ -71049,6 +78157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanggom", + Comment = null, }, new() { @@ -71059,6 +78168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndzwani Comorian", + Comment = null, }, new() { @@ -71069,6 +78179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanukaka", + Comment = null, }, new() { @@ -71079,6 +78190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wanggamala", + Comment = null, }, new() { @@ -71089,6 +78201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wunumara", + Comment = null, }, new() { @@ -71099,6 +78212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wano", + Comment = null, }, new() { @@ -71109,6 +78223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanap", + Comment = null, }, new() { @@ -71119,6 +78234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usan", + Comment = null, }, new() { @@ -71129,6 +78245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wintu", + Comment = null, }, new() { @@ -71139,6 +78256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanyi", + Comment = null, }, new() { @@ -71149,6 +78267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuwema", + Comment = null, }, new() { @@ -71159,6 +78278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wè Northern", + Comment = null, }, new() { @@ -71169,6 +78289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wogeo", + Comment = null, }, new() { @@ -71179,6 +78300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolani", + Comment = null, }, new() { @@ -71189,6 +78311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woleaian", + Comment = null, }, new() { @@ -71199,6 +78322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gambian Wolof", + Comment = null, }, new() { @@ -71209,6 +78333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wogamusin", + Comment = null, }, new() { @@ -71219,6 +78344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamang", + Comment = null, }, new() { @@ -71229,6 +78355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Longto", + Comment = null, }, new() { @@ -71239,6 +78366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolof", + Comment = null, }, new() { @@ -71249,6 +78377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wom (Nigeria)", + Comment = null, }, new() { @@ -71259,6 +78388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wongo", + Comment = null, }, new() { @@ -71269,6 +78399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manombai", + Comment = null, }, new() { @@ -71279,6 +78410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woria", + Comment = null, }, new() { @@ -71289,6 +78421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanga Hundi", + Comment = null, }, new() { @@ -71299,6 +78432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wawonii", + Comment = null, }, new() { @@ -71309,6 +78443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Weyto", + Comment = null, }, new() { @@ -71319,6 +78454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maco", + Comment = null, }, new() { @@ -71329,6 +78465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waluwarra", + Comment = null, }, new() { @@ -71339,6 +78476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Warungu", + Comment = null, }, new() { @@ -71349,6 +78487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wiradjuri", + Comment = null, }, new() { @@ -71359,6 +78498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wariyangga", + Comment = null, }, new() { @@ -71369,6 +78509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garrwa", + Comment = null, }, new() { @@ -71379,6 +78520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warlmanpa", + Comment = null, }, new() { @@ -71389,6 +78531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warumungu", + Comment = null, }, new() { @@ -71399,6 +78542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warnang", + Comment = null, }, new() { @@ -71409,6 +78553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Worrorra", + Comment = null, }, new() { @@ -71419,6 +78564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waropen", + Comment = null, }, new() { @@ -71429,6 +78575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wardaman", + Comment = null, }, new() { @@ -71439,6 +78586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waris", + Comment = null, }, new() { @@ -71449,6 +78597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waru", + Comment = null, }, new() { @@ -71459,6 +78608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waruna", + Comment = null, }, new() { @@ -71469,6 +78619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gugu Warra", + Comment = null, }, new() { @@ -71479,6 +78630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wae Rana", + Comment = null, }, new() { @@ -71489,6 +78641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merwari", + Comment = null, }, new() { @@ -71499,6 +78652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waray (Australia)", + Comment = null, }, new() { @@ -71509,6 +78663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warembori", + Comment = null, }, new() { @@ -71519,6 +78674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adilabad Gondi", + Comment = null, }, new() { @@ -71529,6 +78685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wusi", + Comment = null, }, new() { @@ -71539,6 +78696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waskia", + Comment = null, }, new() { @@ -71549,6 +78707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Owenia", + Comment = null, }, new() { @@ -71559,6 +78718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wasa", + Comment = null, }, new() { @@ -71569,6 +78729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wasu", + Comment = null, }, new() { @@ -71579,6 +78740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wotapuri-Katarqalai", + Comment = null, }, new() { @@ -71589,6 +78751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matambwe", + Comment = null, }, new() { @@ -71599,6 +78762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watiwa", + Comment = null, }, new() { @@ -71609,6 +78773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wathawurrung", + Comment = null, }, new() { @@ -71619,6 +78784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berta", + Comment = null, }, new() { @@ -71629,6 +78795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watakataui", + Comment = null, }, new() { @@ -71639,6 +78806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mewati", + Comment = null, }, new() { @@ -71649,6 +78817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wotu", + Comment = null, }, new() { @@ -71659,6 +78828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wikngenchera", + Comment = null, }, new() { @@ -71669,6 +78839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wunambal", + Comment = null, }, new() { @@ -71679,6 +78850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wudu", + Comment = null, }, new() { @@ -71689,6 +78861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wutunhua", + Comment = null, }, new() { @@ -71699,6 +78872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silimo", + Comment = null, }, new() { @@ -71709,6 +78883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wumbvu", + Comment = null, }, new() { @@ -71719,6 +78894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bungu", + Comment = null, }, new() { @@ -71729,6 +78905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wurrugu", + Comment = null, }, new() { @@ -71739,6 +78916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wutung", + Comment = null, }, new() { @@ -71749,6 +78927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wu Chinese", + Comment = null, }, new() { @@ -71759,6 +78938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wuvulu-Aua", + Comment = null, }, new() { @@ -71769,6 +78949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wulna", + Comment = null, }, new() { @@ -71779,6 +78960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wauyai", + Comment = null, }, new() { @@ -71789,6 +78971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waama", + Comment = null, }, new() { @@ -71799,6 +78982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wakabunga", + Comment = null, }, new() { @@ -71809,6 +78993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wetamut", + Comment = null, }, new() { @@ -71819,6 +79004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Warrwa", + Comment = null, }, new() { @@ -71829,6 +79015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wawa", + Comment = null, }, new() { @@ -71839,6 +79026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waxianghua", + Comment = null, }, new() { @@ -71849,6 +79037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wardandi", + Comment = null, }, new() { @@ -71859,6 +79048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wangaaybuwan-Ngiyambaa", + Comment = null, }, new() { @@ -71869,6 +79059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Woiwurrung", + Comment = null, }, new() { @@ -71879,6 +79070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wymysorys", + Comment = null, }, new() { @@ -71889,6 +79081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wyandot", + Comment = null, }, new() { @@ -71899,6 +79092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayoró", + Comment = null, }, new() { @@ -71909,6 +79103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Fijian", + Comment = null, }, new() { @@ -71919,6 +79114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Andalusian Arabic", + Comment = null, }, new() { @@ -71929,6 +79125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sambe", + Comment = null, }, new() { @@ -71939,6 +79136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachari", + Comment = null, }, new() { @@ -71949,6 +79147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Adai", + Comment = null, }, new() { @@ -71959,6 +79158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Aequian", + Comment = null, }, new() { @@ -71969,6 +79169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Aghwan", + Comment = null, }, new() { @@ -71979,6 +79180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kaimbé", + Comment = null, }, new() { @@ -71989,6 +79191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ararandewára", + Comment = null, }, new() { @@ -71999,6 +79202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Máku", + Comment = null, }, new() { @@ -72009,6 +79213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalmyk", + Comment = null, }, new() { @@ -72019,6 +79224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "ǀXam", + Comment = null, }, new() { @@ -72029,6 +79235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xamtanga", + Comment = null, }, new() { @@ -72039,6 +79246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khao", + Comment = null, }, new() { @@ -72049,6 +79257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Apalachee", + Comment = null, }, new() { @@ -72059,6 +79268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Aquitanian", + Comment = null, }, new() { @@ -72069,6 +79279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karami", + Comment = null, }, new() { @@ -72079,6 +79290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamas", + Comment = null, }, new() { @@ -72089,6 +79301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katawixi", + Comment = null, }, new() { @@ -72099,6 +79312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kauwera", + Comment = null, }, new() { @@ -72109,6 +79323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xavánte", + Comment = null, }, new() { @@ -72119,6 +79334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kawaiisu", + Comment = null, }, new() { @@ -72129,6 +79345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayan Mahakam", + Comment = null, }, new() { @@ -72139,6 +79356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Burdekin", + Comment = null, }, new() { @@ -72149,6 +79367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Bactrian", + Comment = null, }, new() { @@ -72159,6 +79378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bindal", + Comment = null, }, new() { @@ -72169,6 +79389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bigambal", + Comment = null, }, new() { @@ -72179,6 +79400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bunganditj", + Comment = null, }, new() { @@ -72189,6 +79411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kombio", + Comment = null, }, new() { @@ -72199,6 +79422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Birrpayi", + Comment = null, }, new() { @@ -72209,6 +79433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Breton", + Comment = null, }, new() { @@ -72219,6 +79444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kenaboi", + Comment = null, }, new() { @@ -72229,6 +79455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Bolgarian", + Comment = null, }, new() { @@ -72239,6 +79466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bibbulman", + Comment = null, }, new() { @@ -72249,6 +79477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kambera", + Comment = null, }, new() { @@ -72259,6 +79488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kambiwá", + Comment = null, }, new() { @@ -72269,6 +79499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batjala", + Comment = null, }, new() { @@ -72279,6 +79510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Cumbric", + Comment = null, }, new() { @@ -72289,6 +79521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Camunic", + Comment = null, }, new() { @@ -72299,6 +79532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Celtiberian", + Comment = null, }, new() { @@ -72309,6 +79543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Cisalpine Gaulish", + Comment = null, }, new() { @@ -72319,6 +79554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chemakum", + Comment = null, }, new() { @@ -72329,6 +79565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Armenian", + Comment = null, }, new() { @@ -72339,6 +79576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Comecrudo", + Comment = null, }, new() { @@ -72349,6 +79587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cotoname", + Comment = null, }, new() { @@ -72359,6 +79598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Chorasmian", + Comment = null, }, new() { @@ -72369,6 +79609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Carian", + Comment = null, }, new() { @@ -72379,6 +79620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Tibetan", + Comment = null, }, new() { @@ -72389,6 +79631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Curonian", + Comment = null, }, new() { @@ -72399,6 +79642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chuvantsy", + Comment = null, }, new() { @@ -72409,6 +79653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coahuilteco", + Comment = null, }, new() { @@ -72419,6 +79664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cayuse", + Comment = null, }, new() { @@ -72429,6 +79675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darkinyung", + Comment = null, }, new() { @@ -72439,6 +79686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Dacian", + Comment = null, }, new() { @@ -72449,6 +79697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dharuk", + Comment = null, }, new() { @@ -72459,6 +79708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Edomite", + Comment = null, }, new() { @@ -72469,6 +79719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwandu", + Comment = null, }, new() { @@ -72479,6 +79730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaitag", + Comment = null, }, new() { @@ -72489,6 +79741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malayic Dayak", + Comment = null, }, new() { @@ -72499,6 +79752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Eblan", + Comment = null, }, new() { @@ -72509,6 +79763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hdi", + Comment = null, }, new() { @@ -72519,6 +79774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "ǁXegwi", + Comment = null, }, new() { @@ -72529,6 +79785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kelo", + Comment = null, }, new() { @@ -72539,6 +79796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kembayan", + Comment = null, }, new() { @@ -72549,6 +79807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Epi-Olmec", + Comment = null, }, new() { @@ -72559,6 +79818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xerénte", + Comment = null, }, new() { @@ -72569,6 +79829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kesawai", + Comment = null, }, new() { @@ -72579,6 +79840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xetá", + Comment = null, }, new() { @@ -72589,6 +79851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keoru-Ahia", + Comment = null, }, new() { @@ -72599,6 +79862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Faliscan", + Comment = null, }, new() { @@ -72609,6 +79873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Galatian", + Comment = null, }, new() { @@ -72619,6 +79884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gbin", + Comment = null, }, new() { @@ -72629,6 +79895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gudang", + Comment = null, }, new() { @@ -72639,6 +79906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gabrielino-Fernandeño", + Comment = null, }, new() { @@ -72649,6 +79917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Goreng", + Comment = null, }, new() { @@ -72659,6 +79928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garingbal", + Comment = null, }, new() { @@ -72669,6 +79939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Galindan", + Comment = null, }, new() { @@ -72679,6 +79950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dharumbal", + Comment = null, }, new() { @@ -72689,6 +79961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garza", + Comment = null, }, new() { @@ -72699,6 +79972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unggumi", + Comment = null, }, new() { @@ -72709,6 +79983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guwa", + Comment = null, }, new() { @@ -72719,6 +79994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Harami", + Comment = null, }, new() { @@ -72729,6 +80005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hunnic", + Comment = null, }, new() { @@ -72739,6 +80016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hadrami", + Comment = null, }, new() { @@ -72749,6 +80027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khetrani", + Comment = null, }, new() { @@ -72759,6 +80038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Khmer (1400 to 1850 CE)", + Comment = null, }, new() { @@ -72769,6 +80049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xhosa", + Comment = null, }, new() { @@ -72779,6 +80060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hernican", + Comment = null, }, new() { @@ -72789,6 +80071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hattic", + Comment = null, }, new() { @@ -72799,6 +80082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hurrian", + Comment = null, }, new() { @@ -72809,6 +80093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khua", + Comment = null, }, new() { @@ -72819,6 +80104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Iberian", + Comment = null, }, new() { @@ -72829,6 +80115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xiri", + Comment = null, }, new() { @@ -72839,6 +80126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Illyrian", + Comment = null, }, new() { @@ -72849,6 +80137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xinca", + Comment = null, }, new() { @@ -72859,6 +80148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xiriâna", + Comment = null, }, new() { @@ -72869,6 +80159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisan", + Comment = null, }, new() { @@ -72879,6 +80170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Indus Valley Language", + Comment = null, }, new() { @@ -72889,6 +80181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xipaya", + Comment = null, }, new() { @@ -72899,6 +80192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Minjungbal", + Comment = null, }, new() { @@ -72909,6 +80203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jaitmatang", + Comment = null, }, new() { @@ -72919,6 +80214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalkoti", + Comment = null, }, new() { @@ -72929,6 +80225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Nago", + Comment = null, }, new() { @@ -72939,6 +80236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kho'ini", + Comment = null, }, new() { @@ -72949,6 +80247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mendalam Kayan", + Comment = null, }, new() { @@ -72959,6 +80258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kereho", + Comment = null, }, new() { @@ -72969,6 +80269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khengkha", + Comment = null, }, new() { @@ -72979,6 +80280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagoro", + Comment = null, }, new() { @@ -72989,6 +80291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenyan Sign Language", + Comment = null, }, new() { @@ -72999,6 +80302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kajali", + Comment = null, }, new() { @@ -73009,6 +80313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachok", + Comment = null, }, new() { @@ -73019,6 +80324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mainstream Kenyah", + Comment = null, }, new() { @@ -73029,6 +80335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayan River Kayan", + Comment = null, }, new() { @@ -73039,6 +80346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiorr", + Comment = null, }, new() { @@ -73049,6 +80357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabatei", + Comment = null, }, new() { @@ -73059,6 +80368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koroni", + Comment = null, }, new() { @@ -73069,6 +80379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xakriabá", + Comment = null, }, new() { @@ -73079,6 +80390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumbewaha", + Comment = null, }, new() { @@ -73089,6 +80401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kantosi", + Comment = null, }, new() { @@ -73099,6 +80412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaamba", + Comment = null, }, new() { @@ -73109,6 +80423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kgalagadi", + Comment = null, }, new() { @@ -73119,6 +80434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kembra", + Comment = null, }, new() { @@ -73129,6 +80445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karore", + Comment = null, }, new() { @@ -73139,6 +80456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uma' Lasan", + Comment = null, }, new() { @@ -73149,6 +80467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurtokha", + Comment = null, }, new() { @@ -73159,6 +80478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamula", + Comment = null, }, new() { @@ -73169,6 +80489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Loup B", + Comment = null, }, new() { @@ -73179,6 +80500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lycian", + Comment = null, }, new() { @@ -73189,6 +80511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lydian", + Comment = null, }, new() { @@ -73199,6 +80522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lemnian", + Comment = null, }, new() { @@ -73209,6 +80533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ligurian (Ancient)", + Comment = null, }, new() { @@ -73219,6 +80544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Liburnian", + Comment = null, }, new() { @@ -73229,6 +80555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Alanic", + Comment = null, }, new() { @@ -73239,6 +80566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Loup A", + Comment = null, }, new() { @@ -73249,6 +80577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lepontic", + Comment = null, }, new() { @@ -73259,6 +80588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lusitanian", + Comment = null, }, new() { @@ -73269,6 +80599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Cuneiform Luwian", + Comment = null, }, new() { @@ -73279,6 +80610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Elymian", + Comment = null, }, new() { @@ -73289,6 +80621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mushungulu", + Comment = null, }, new() { @@ -73299,6 +80632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbonga", + Comment = null, }, new() { @@ -73309,6 +80643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Marrevone", + Comment = null, }, new() { @@ -73319,6 +80654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbudum", + Comment = null, }, new() { @@ -73329,6 +80665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Median", + Comment = null, }, new() { @@ -73339,6 +80676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mingrelian", + Comment = null, }, new() { @@ -73349,6 +80687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mengaka", + Comment = null, }, new() { @@ -73359,6 +80698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kugu-Muminh", + Comment = null, }, new() { @@ -73369,6 +80709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majera", + Comment = null, }, new() { @@ -73379,6 +80720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Macedonian", + Comment = null, }, new() { @@ -73389,6 +80731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaysian Sign Language", + Comment = null, }, new() { @@ -73399,6 +80742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manado Malay", + Comment = null, }, new() { @@ -73409,6 +80753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Manichaean Middle Persian", + Comment = null, }, new() { @@ -73419,6 +80764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morerebi", + Comment = null, }, new() { @@ -73429,6 +80775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuku-Mu'inh", + Comment = null, }, new() { @@ -73439,6 +80786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuku-Mangk", + Comment = null, }, new() { @@ -73449,6 +80797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Meroitic", + Comment = null, }, new() { @@ -73459,6 +80808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moroccan Sign Language", + Comment = null, }, new() { @@ -73469,6 +80819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matbat", + Comment = null, }, new() { @@ -73479,6 +80830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamu", + Comment = null, }, new() { @@ -73489,6 +80841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Antankarana Malagasy", + Comment = null, }, new() { @@ -73499,6 +80852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsimihety Malagasy", + Comment = null, }, new() { @@ -73509,6 +80863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salawati", + Comment = null, }, new() { @@ -73519,6 +80874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayaguduna", + Comment = null, }, new() { @@ -73529,6 +80885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mori Bawah", + Comment = null, }, new() { @@ -73539,6 +80896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient North Arabian", + Comment = null, }, new() { @@ -73549,6 +80907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanakanabu", + Comment = null, }, new() { @@ -73559,6 +80918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Mongolian", + Comment = null, }, new() { @@ -73569,6 +80929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuanhua", + Comment = null, }, new() { @@ -73579,6 +80940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngarigu", + Comment = null, }, new() { @@ -73589,6 +80951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngoni (Tanzania)", + Comment = null, }, new() { @@ -73599,6 +80962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nganakarti", + Comment = null, }, new() { @@ -73609,6 +80973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngumbarl", + Comment = null, }, new() { @@ -73619,6 +80984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Kankanay", + Comment = null, }, new() { @@ -73629,6 +80995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Anglo-Norman", + Comment = null, }, new() { @@ -73639,6 +81006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngoni (Mozambique)", + Comment = null, }, new() { @@ -73649,6 +81017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kangri", + Comment = null, }, new() { @@ -73659,6 +81028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanashi", + Comment = null, }, new() { @@ -73669,6 +81039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Narragansett", + Comment = null, }, new() { @@ -73679,6 +81050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nukunul", + Comment = null, }, new() { @@ -73689,6 +81061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyiyaparli", + Comment = null, }, new() { @@ -73699,6 +81072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenzi", + Comment = null, }, new() { @@ -73709,6 +81083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "O'chi'chi'", + Comment = null, }, new() { @@ -73719,6 +81094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokoda", + Comment = null, }, new() { @@ -73729,6 +81105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soga", + Comment = null, }, new() { @@ -73739,6 +81116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kominimung", + Comment = null, }, new() { @@ -73749,6 +81127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xokleng", + Comment = null, }, new() { @@ -73759,6 +81138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komo (Sudan)", + Comment = null, }, new() { @@ -73769,6 +81149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konkomba", + Comment = null, }, new() { @@ -73779,6 +81160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xukurú", + Comment = null, }, new() { @@ -73789,6 +81171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kopar", + Comment = null, }, new() { @@ -73799,6 +81182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korubo", + Comment = null, }, new() { @@ -73809,6 +81193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kowaki", + Comment = null, }, new() { @@ -73819,6 +81204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pirriya", + Comment = null, }, new() { @@ -73829,6 +81215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northeastern Tasmanian", + Comment = null, }, new() { @@ -73839,6 +81226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pecheneg", + Comment = null, }, new() { @@ -73849,6 +81237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Oyster Bay Tasmanian", + Comment = null, }, new() { @@ -73859,6 +81248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liberia Kpelle", + Comment = null, }, new() { @@ -73869,6 +81259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southeast Tasmanian", + Comment = null, }, new() { @@ -73879,6 +81270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Phrygian", + Comment = null, }, new() { @@ -73889,6 +81281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "North Midlands Tasmanian", + Comment = null, }, new() { @@ -73899,6 +81292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pictish", + Comment = null, }, new() { @@ -73909,6 +81303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mpalitjanh", + Comment = null, }, new() { @@ -73919,6 +81314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulina Pano", + Comment = null, }, new() { @@ -73929,6 +81325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Port Sorell Tasmanian", + Comment = null, }, new() { @@ -73939,6 +81336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pumpokol", + Comment = null, }, new() { @@ -73949,6 +81347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kapinawá", + Comment = null, }, new() { @@ -73959,6 +81358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pochutec", + Comment = null, }, new() { @@ -73969,6 +81369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Puyo-Paekche", + Comment = null, }, new() { @@ -73979,6 +81380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mohegan-Pequot", + Comment = null, }, new() { @@ -73989,6 +81391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Parthian", + Comment = null, }, new() { @@ -73999,6 +81402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pisidian", + Comment = null, }, new() { @@ -74009,6 +81413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Punthamara", + Comment = null, }, new() { @@ -74019,6 +81424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Punic", + Comment = null, }, new() { @@ -74029,6 +81435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northern Tasmanian", + Comment = null, }, new() { @@ -74039,6 +81446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northwestern Tasmanian", + Comment = null, }, new() { @@ -74049,6 +81457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southwestern Tasmanian", + Comment = null, }, new() { @@ -74059,6 +81468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Puyo", + Comment = null, }, new() { @@ -74069,6 +81479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bruny Island Tasmanian", + Comment = null, }, new() { @@ -74079,6 +81490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Karakhanid", + Comment = null, }, new() { @@ -74089,6 +81501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Qatabanian", + Comment = null, }, new() { @@ -74099,6 +81512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krahô", + Comment = null, }, new() { @@ -74109,6 +81523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Karaboro", + Comment = null, }, new() { @@ -74119,6 +81534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gundungurra", + Comment = null, }, new() { @@ -74129,6 +81545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kreye", + Comment = null, }, new() { @@ -74139,6 +81556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Minang", + Comment = null, }, new() { @@ -74149,6 +81567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krikati-Timbira", + Comment = null, }, new() { @@ -74159,6 +81578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Armazic", + Comment = null, }, new() { @@ -74169,6 +81589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arin", + Comment = null, }, new() { @@ -74179,6 +81600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Raetic", + Comment = null, }, new() { @@ -74189,6 +81611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aranama-Tamique", + Comment = null, }, new() { @@ -74199,6 +81622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marriammu", + Comment = null, }, new() { @@ -74209,6 +81633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karawa", + Comment = null, }, new() { @@ -74219,6 +81644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sabaean", + Comment = null, }, new() { @@ -74229,6 +81655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sambal", + Comment = null, }, new() { @@ -74239,6 +81666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Scythian", + Comment = null, }, new() { @@ -74249,6 +81677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sidetic", + Comment = null, }, new() { @@ -74259,6 +81688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sempan", + Comment = null, }, new() { @@ -74269,6 +81699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shamang", + Comment = null, }, new() { @@ -74279,6 +81710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sio", + Comment = null, }, new() { @@ -74289,6 +81721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Subi", + Comment = null, }, new() { @@ -74299,6 +81732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Slavey", + Comment = null, }, new() { @@ -74309,6 +81743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasem", + Comment = null, }, new() { @@ -74319,6 +81754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanga (Nigeria)", + Comment = null, }, new() { @@ -74329,6 +81765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Solano", + Comment = null, }, new() { @@ -74339,6 +81776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silopi", + Comment = null, }, new() { @@ -74349,6 +81787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Saka", + Comment = null, }, new() { @@ -74359,6 +81798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sherpa", + Comment = null, }, new() { @@ -74369,6 +81809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanumá", + Comment = null, }, new() { @@ -74379,6 +81820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sudovian", + Comment = null, }, new() { @@ -74389,6 +81831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saisiyat", + Comment = null, }, new() { @@ -74399,6 +81842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alcozauca Mixtec", + Comment = null, }, new() { @@ -74409,6 +81853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chazumba Mixtec", + Comment = null, }, new() { @@ -74419,6 +81864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katcha-Kadugli-Miri", + Comment = null, }, new() { @@ -74429,6 +81875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diuxi-Tilantongo Mixtec", + Comment = null, }, new() { @@ -74439,6 +81886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ketengban", + Comment = null, }, new() { @@ -74449,6 +81897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Transalpine Gaulish", + Comment = null, }, new() { @@ -74459,6 +81908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yitha Yitha", + Comment = null, }, new() { @@ -74469,6 +81919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinicahua Mixtec", + Comment = null, }, new() { @@ -74479,6 +81930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Juan Teita Mixtec", + Comment = null, }, new() { @@ -74489,6 +81941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tijaltepec Mixtec", + Comment = null, }, new() { @@ -74499,6 +81952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magdalena Peñasco Mixtec", + Comment = null, }, new() { @@ -74509,6 +81963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tlaxiaco Mixtec", + Comment = null, }, new() { @@ -74519,6 +81974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tokharian A", + Comment = null, }, new() { @@ -74529,6 +81985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Miguel Piedras Mixtec", + Comment = null, }, new() { @@ -74539,6 +81996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tumshuqese", + Comment = null, }, new() { @@ -74549,6 +82007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Early Tripuri", + Comment = null, }, new() { @@ -74559,6 +82018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sindihui Mixtec", + Comment = null, }, new() { @@ -74569,6 +82029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tacahua Mixtec", + Comment = null, }, new() { @@ -74579,6 +82040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuyamecalco Mixtec", + Comment = null, }, new() { @@ -74589,6 +82051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Thawa", + Comment = null, }, new() { @@ -74599,6 +82062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawandê", + Comment = null, }, new() { @@ -74609,6 +82073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoloxochitl Mixtec", + Comment = null, }, new() { @@ -74619,6 +82084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alu Kurumba", + Comment = null, }, new() { @@ -74629,6 +82095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Betta Kurumba", + Comment = null, }, new() { @@ -74639,6 +82106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umiida", + Comment = null, }, new() { @@ -74649,6 +82117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunigami", + Comment = null, }, new() { @@ -74659,6 +82128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jennu Kurumba", + Comment = null, }, new() { @@ -74669,6 +82139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngunawal", + Comment = null, }, new() { @@ -74679,6 +82150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Umbrian", + Comment = null, }, new() { @@ -74689,6 +82161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Unggaranggu", + Comment = null, }, new() { @@ -74699,6 +82172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuo", + Comment = null, }, new() { @@ -74709,6 +82183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Upper Umpqua", + Comment = null, }, new() { @@ -74719,6 +82194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Urartian", + Comment = null, }, new() { @@ -74729,6 +82205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuthant", + Comment = null, }, new() { @@ -74739,6 +82216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kxoe", + Comment = null, }, new() { @@ -74749,6 +82227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Venetic", + Comment = null, }, new() { @@ -74759,6 +82238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamviri", + Comment = null, }, new() { @@ -74769,6 +82249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Vandalic", + Comment = null, }, new() { @@ -74779,6 +82260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Volscian", + Comment = null, }, new() { @@ -74789,6 +82271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Vestinian", + Comment = null, }, new() { @@ -74799,6 +82282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaza", + Comment = null, }, new() { @@ -74809,6 +82293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Woccon", + Comment = null, }, new() { @@ -74819,6 +82304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadi Wadi", + Comment = null, }, new() { @@ -74829,6 +82315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xwela Gbe", + Comment = null, }, new() { @@ -74839,6 +82326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwegu", + Comment = null, }, new() { @@ -74849,6 +82337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wajuk", + Comment = null, }, new() { @@ -74859,6 +82348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wangkumara", + Comment = null, }, new() { @@ -74869,6 +82359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Xwla Gbe", + Comment = null, }, new() { @@ -74879,6 +82370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Written Oirat", + Comment = null, }, new() { @@ -74889,6 +82381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwerba Mamberamo", + Comment = null, }, new() { @@ -74899,6 +82392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wotjobaluk", + Comment = null, }, new() { @@ -74909,6 +82403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wemba Wemba", + Comment = null, }, new() { @@ -74919,6 +82414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Boro (Ghana)", + Comment = null, }, new() { @@ -74929,6 +82425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ke'o", + Comment = null, }, new() { @@ -74939,6 +82436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Minkin", + Comment = null, }, new() { @@ -74949,6 +82447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Koropó", + Comment = null, }, new() { @@ -74959,6 +82458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tambora", + Comment = null, }, new() { @@ -74969,6 +82469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yaygir", + Comment = null, }, new() { @@ -74979,6 +82480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yandjibara", + Comment = null, }, new() { @@ -74989,6 +82491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayi-Yapi", + Comment = null, }, new() { @@ -74999,6 +82502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayi-Kulan", + Comment = null, }, new() { @@ -75009,6 +82513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yalakalore", + Comment = null, }, new() { @@ -75019,6 +82524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayi-Thakurti", + Comment = null, }, new() { @@ -75029,6 +82535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yorta Yorta", + Comment = null, }, new() { @@ -75039,6 +82546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Zhang-Zhung", + Comment = null, }, new() { @@ -75049,6 +82557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Zemgalian", + Comment = null, }, new() { @@ -75059,6 +82568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Zapotec", + Comment = null, }, new() { @@ -75069,6 +82579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaminahua", + Comment = null, }, new() { @@ -75079,6 +82590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuhup", + Comment = null, }, new() { @@ -75089,6 +82601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pass Valley Yali", + Comment = null, }, new() { @@ -75099,6 +82612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagua", + Comment = null, }, new() { @@ -75109,6 +82623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pumé", + Comment = null, }, new() { @@ -75119,6 +82634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaka (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -75129,6 +82645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yámana", + Comment = null, }, new() { @@ -75139,6 +82656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yazgulyam", + Comment = null, }, new() { @@ -75149,6 +82667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagnobi", + Comment = null, }, new() { @@ -75159,6 +82678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Yangere", + Comment = null, }, new() { @@ -75169,6 +82689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakama", + Comment = null, }, new() { @@ -75179,6 +82700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yalunka", + Comment = null, }, new() { @@ -75189,6 +82711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamba", + Comment = null, }, new() { @@ -75199,6 +82722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayangna", + Comment = null, }, new() { @@ -75209,6 +82733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yao", + Comment = null, }, new() { @@ -75219,6 +82744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yapese", + Comment = null, }, new() { @@ -75229,6 +82755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaqui", + Comment = null, }, new() { @@ -75239,6 +82766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yabarana", + Comment = null, }, new() { @@ -75249,6 +82777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nugunu (Cameroon)", + Comment = null, }, new() { @@ -75259,6 +82788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yambeta", + Comment = null, }, new() { @@ -75269,6 +82799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuwana", + Comment = null, }, new() { @@ -75279,6 +82810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangben", + Comment = null, }, new() { @@ -75289,6 +82821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawalapití", + Comment = null, }, new() { @@ -75299,6 +82832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yauma", + Comment = null, }, new() { @@ -75309,6 +82843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agwagwune", + Comment = null, }, new() { @@ -75319,6 +82854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lokaa", + Comment = null, }, new() { @@ -75329,6 +82865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yala", + Comment = null, }, new() { @@ -75339,6 +82876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yemba", + Comment = null, }, new() { @@ -75349,6 +82887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Yugur", + Comment = null, }, new() { @@ -75359,6 +82898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakha", + Comment = null, }, new() { @@ -75369,6 +82909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamphu", + Comment = null, }, new() { @@ -75379,6 +82920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hasha", + Comment = null, }, new() { @@ -75389,6 +82931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokha", + Comment = null, }, new() { @@ -75399,6 +82942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yukuben", + Comment = null, }, new() { @@ -75409,6 +82953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaben", + Comment = null, }, new() { @@ -75419,6 +82964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yabaâna", + Comment = null, }, new() { @@ -75429,6 +82975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yabong", + Comment = null, }, new() { @@ -75439,6 +82986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawiyo", + Comment = null, }, new() { @@ -75449,6 +82997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaweyuha", + Comment = null, }, new() { @@ -75459,6 +83008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chesu", + Comment = null, }, new() { @@ -75469,6 +83019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lolopo", + Comment = null, }, new() { @@ -75479,6 +83030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucuna", + Comment = null, }, new() { @@ -75489,6 +83041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chepya", + Comment = null, }, new() { @@ -75499,6 +83052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yilan Creole", + Comment = null, }, new() { @@ -75509,6 +83063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yanda", + Comment = null, }, new() { @@ -75519,6 +83074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Yiddish", + Comment = null, }, new() { @@ -75529,6 +83085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangum Dey", + Comment = null, }, new() { @@ -75539,6 +83096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yidgha", + Comment = null, }, new() { @@ -75549,6 +83107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoidik", + Comment = null, }, new() { @@ -75559,6 +83118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ravula", + Comment = null, }, new() { @@ -75569,6 +83129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yeniche", + Comment = null, }, new() { @@ -75579,6 +83140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yimas", + Comment = null, }, new() { @@ -75589,6 +83151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yeni", + Comment = null, }, new() { @@ -75599,6 +83162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yevanic", + Comment = null, }, new() { @@ -75609,6 +83173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yela", + Comment = null, }, new() { @@ -75619,6 +83184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarok", + Comment = null, }, new() { @@ -75629,6 +83195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyankpa", + Comment = null, }, new() { @@ -75639,6 +83206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yetfa", + Comment = null, }, new() { @@ -75649,6 +83217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yerukula", + Comment = null, }, new() { @@ -75659,6 +83228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yapunda", + Comment = null, }, new() { @@ -75669,6 +83239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yeyi", + Comment = null, }, new() { @@ -75679,6 +83250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Malyangapa", + Comment = null, }, new() { @@ -75689,6 +83261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yiningayi", + Comment = null, }, new() { @@ -75699,6 +83272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangum Gel", + Comment = null, }, new() { @@ -75709,6 +83283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagomi", + Comment = null, }, new() { @@ -75719,6 +83294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gepo", + Comment = null, }, new() { @@ -75729,6 +83305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagaria", + Comment = null, }, new() { @@ -75739,6 +83316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yolŋu Sign Language", + Comment = null, }, new() { @@ -75749,6 +83327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yugul", + Comment = null, }, new() { @@ -75759,6 +83338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagwoia", + Comment = null, }, new() { @@ -75769,6 +83349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baha Buyang", + Comment = null, }, new() { @@ -75779,6 +83360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Iraqi Arabic", + Comment = null, }, new() { @@ -75789,6 +83371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hlepho Phowa", + Comment = null, }, new() { @@ -75799,6 +83382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yan-nhaŋu Sign Language", + Comment = null, }, new() { @@ -75809,6 +83393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yinggarda", + Comment = null, }, new() { @@ -75819,6 +83404,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Yiddish", + Comment = null, }, new() { @@ -75829,6 +83415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ache", + Comment = null, }, new() { @@ -75839,6 +83426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wusa Nasu", + Comment = null, }, new() { @@ -75849,6 +83437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Western Yiddish", + Comment = null, }, new() { @@ -75859,6 +83448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yidiny", + Comment = null, }, new() { @@ -75869,6 +83459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yindjibarndi", + Comment = null, }, new() { @@ -75879,6 +83470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongshanba Lalo", + Comment = null, }, new() { @@ -75889,6 +83481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yindjilandji", + Comment = null, }, new() { @@ -75899,6 +83492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yimchungru Naga", + Comment = null, }, new() { @@ -75909,6 +83503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riang Lai", + Comment = null, }, new() { @@ -75919,6 +83514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pholo", + Comment = null, }, new() { @@ -75929,6 +83525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miqie", + Comment = null, }, new() { @@ -75939,6 +83536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Awyu", + Comment = null, }, new() { @@ -75949,6 +83547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yis", + Comment = null, }, new() { @@ -75959,6 +83558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Lalu", + Comment = null, }, new() { @@ -75969,6 +83569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awu", + Comment = null, }, new() { @@ -75979,6 +83580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Nisu", + Comment = null, }, new() { @@ -75989,6 +83591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Axi Yi", + Comment = null, }, new() { @@ -75999,6 +83602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Azhe", + Comment = null, }, new() { @@ -76009,6 +83613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakan", + Comment = null, }, new() { @@ -76019,6 +83624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Yukaghir", + Comment = null, }, new() { @@ -76029,6 +83635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamnigan Mongol", + Comment = null, }, new() { @@ -76039,6 +83646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoke", + Comment = null, }, new() { @@ -76049,6 +83657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakaikeke", + Comment = null, }, new() { @@ -76059,6 +83668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khlula", + Comment = null, }, new() { @@ -76069,6 +83679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kap", + Comment = null, }, new() { @@ -76079,6 +83690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kua-nsi", + Comment = null, }, new() { @@ -76089,6 +83701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yasa", + Comment = null, }, new() { @@ -76099,6 +83712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yekora", + Comment = null, }, new() { @@ -76109,6 +83723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kathu", + Comment = null, }, new() { @@ -76119,6 +83734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuamasi", + Comment = null, }, new() { @@ -76129,6 +83745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakoma", + Comment = null, }, new() { @@ -76139,6 +83756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaul", + Comment = null, }, new() { @@ -76149,6 +83767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaleba", + Comment = null, }, new() { @@ -76159,6 +83778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yele", + Comment = null, }, new() { @@ -76169,6 +83789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yelogu", + Comment = null, }, new() { @@ -76179,6 +83800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angguruk Yali", + Comment = null, }, new() { @@ -76189,6 +83811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yil", + Comment = null, }, new() { @@ -76199,6 +83822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limi", + Comment = null, }, new() { @@ -76209,6 +83833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langnian Buyang", + Comment = null, }, new() { @@ -76219,6 +83844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naluo Yi", + Comment = null, }, new() { @@ -76229,6 +83855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yalarnnga", + Comment = null, }, new() { @@ -76239,6 +83866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aribwaung", + Comment = null, }, new() { @@ -76249,6 +83877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyâlayu", + Comment = null, }, new() { @@ -76259,6 +83888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yambes", + Comment = null, }, new() { @@ -76269,6 +83899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Muji", + Comment = null, }, new() { @@ -76279,6 +83910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muda", + Comment = null, }, new() { @@ -76289,6 +83921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yameo", + Comment = null, }, new() { @@ -76299,6 +83932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamongeri", + Comment = null, }, new() { @@ -76309,6 +83943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mili", + Comment = null, }, new() { @@ -76319,6 +83954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moji", + Comment = null, }, new() { @@ -76329,6 +83965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makwe", + Comment = null, }, new() { @@ -76339,6 +83976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iamalele", + Comment = null, }, new() { @@ -76349,6 +83987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maay", + Comment = null, }, new() { @@ -76359,6 +83998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamna", + Comment = null, }, new() { @@ -76369,6 +84009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangum Mon", + Comment = null, }, new() { @@ -76379,6 +84020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamap", + Comment = null, }, new() { @@ -76389,6 +84031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qila Muji", + Comment = null, }, new() { @@ -76399,6 +84042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malasar", + Comment = null, }, new() { @@ -76409,6 +84053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Mysian", + Comment = null, }, new() { @@ -76419,6 +84064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Muji", + Comment = null, }, new() { @@ -76429,6 +84075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muzi", + Comment = null, }, new() { @@ -76439,6 +84086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aluo", + Comment = null, }, new() { @@ -76449,6 +84097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamben", + Comment = null, }, new() { @@ -76459,6 +84108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yandruwandha", + Comment = null, }, new() { @@ -76469,6 +84119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lang'e", + Comment = null, }, new() { @@ -76479,6 +84130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yango", + Comment = null, }, new() { @@ -76489,6 +84141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naukan Yupik", + Comment = null, }, new() { @@ -76499,6 +84152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangulam", + Comment = null, }, new() { @@ -76509,6 +84163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yana", + Comment = null, }, new() { @@ -76519,6 +84174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yong", + Comment = null, }, new() { @@ -76529,6 +84185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yendang", + Comment = null, }, new() { @@ -76539,6 +84196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yansi", + Comment = null, }, new() { @@ -76549,6 +84207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yahuna", + Comment = null, }, new() { @@ -76559,6 +84218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yoba", + Comment = null, }, new() { @@ -76569,6 +84229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yogad", + Comment = null, }, new() { @@ -76579,6 +84240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yonaguni", + Comment = null, }, new() { @@ -76589,6 +84251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yokuts", + Comment = null, }, new() { @@ -76599,6 +84262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yombe", + Comment = null, }, new() { @@ -76609,6 +84273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yongkom", + Comment = null, }, new() { @@ -76619,6 +84284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoruba", + Comment = null, }, new() { @@ -76629,6 +84295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yotti", + Comment = null, }, new() { @@ -76639,6 +84306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoron", + Comment = null, }, new() { @@ -76649,6 +84317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoy", + Comment = null, }, new() { @@ -76659,6 +84328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phala", + Comment = null, }, new() { @@ -76669,6 +84339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labo Phowa", + Comment = null, }, new() { @@ -76679,6 +84350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phola", + Comment = null, }, new() { @@ -76689,6 +84361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phupha", + Comment = null, }, new() { @@ -76699,6 +84372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuma", + Comment = null, }, new() { @@ -76709,6 +84383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ani Phowa", + Comment = null, }, new() { @@ -76719,6 +84394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alo Phola", + Comment = null, }, new() { @@ -76729,6 +84405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phupa", + Comment = null, }, new() { @@ -76739,6 +84416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuza", + Comment = null, }, new() { @@ -76749,6 +84427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yerakai", + Comment = null, }, new() { @@ -76759,6 +84438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yareba", + Comment = null, }, new() { @@ -76769,6 +84449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaouré", + Comment = null, }, new() { @@ -76779,6 +84460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nenets", + Comment = null, }, new() { @@ -76789,6 +84471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nhengatu", + Comment = null, }, new() { @@ -76799,6 +84482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yirrk-Mel", + Comment = null, }, new() { @@ -76809,6 +84493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yerong", + Comment = null, }, new() { @@ -76819,6 +84504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaroamë", + Comment = null, }, new() { @@ -76829,6 +84515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yarsun", + Comment = null, }, new() { @@ -76839,6 +84526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yarawata", + Comment = null, }, new() { @@ -76849,6 +84537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yarluyandi", + Comment = null, }, new() { @@ -76859,6 +84548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yassic", + Comment = null, }, new() { @@ -76869,6 +84559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samatao", + Comment = null, }, new() { @@ -76879,6 +84570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonaga", + Comment = null, }, new() { @@ -76889,6 +84581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yugoslavian Sign Language", + Comment = null, }, new() { @@ -76899,6 +84592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Myanmar Sign Language", + Comment = null, }, new() { @@ -76909,6 +84603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sani", + Comment = null, }, new() { @@ -76919,6 +84614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisi (China)", + Comment = null, }, new() { @@ -76929,6 +84625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Lolopo", + Comment = null, }, new() { @@ -76939,6 +84636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sirenik Yupik", + Comment = null, }, new() { @@ -76949,6 +84647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yessan-Mayo", + Comment = null, }, new() { @@ -76959,6 +84658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanie", + Comment = null, }, new() { @@ -76969,6 +84669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talu", + Comment = null, }, new() { @@ -76979,6 +84680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanglang", + Comment = null, }, new() { @@ -76989,6 +84691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thopho", + Comment = null, }, new() { @@ -76999,6 +84702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yout Wam", + Comment = null, }, new() { @@ -77009,6 +84713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yatay", + Comment = null, }, new() { @@ -77019,6 +84724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucateco", + Comment = null, }, new() { @@ -77029,6 +84735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yugambal", + Comment = null, }, new() { @@ -77039,6 +84746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuchi", + Comment = null, }, new() { @@ -77049,6 +84757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Tripolitanian Arabic", + Comment = null, }, new() { @@ -77059,6 +84768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yue Chinese", + Comment = null, }, new() { @@ -77069,6 +84779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Havasupai-Walapai-Yavapai", + Comment = null, }, new() { @@ -77079,6 +84790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yug", + Comment = null, }, new() { @@ -77089,6 +84801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yurutí", + Comment = null, }, new() { @@ -77099,6 +84812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karkar-Yuri", + Comment = null, }, new() { @@ -77109,6 +84823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yuki", + Comment = null, }, new() { @@ -77119,6 +84834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yulu", + Comment = null, }, new() { @@ -77129,6 +84845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quechan", + Comment = null, }, new() { @@ -77139,6 +84856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bena (Nigeria)", + Comment = null, }, new() { @@ -77149,6 +84867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yukpa", + Comment = null, }, new() { @@ -77159,6 +84878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuqui", + Comment = null, }, new() { @@ -77169,6 +84889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yurok", + Comment = null, }, new() { @@ -77179,6 +84900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yopno", + Comment = null, }, new() { @@ -77189,6 +84911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yau (Morobe Province)", + Comment = null, }, new() { @@ -77199,6 +84922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Yukaghir", + Comment = null, }, new() { @@ -77209,6 +84933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Yugur", + Comment = null, }, new() { @@ -77219,6 +84944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuracare", + Comment = null, }, new() { @@ -77229,6 +84955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawa", + Comment = null, }, new() { @@ -77239,6 +84966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yavitero", + Comment = null, }, new() { @@ -77249,6 +84977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalou", + Comment = null, }, new() { @@ -77259,6 +84988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yinhawangka", + Comment = null, }, new() { @@ -77269,6 +84999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Lalu", + Comment = null, }, new() { @@ -77279,6 +85010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawanawa", + Comment = null, }, new() { @@ -77289,6 +85021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wuding-Luquan Yi", + Comment = null, }, new() { @@ -77299,6 +85032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawuru", + Comment = null, }, new() { @@ -77309,6 +85043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xishanba Lalo", + Comment = null, }, new() { @@ -77319,6 +85054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wumeng Nasu", + Comment = null, }, new() { @@ -77329,6 +85065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yawarawarga", + Comment = null, }, new() { @@ -77339,6 +85076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayawali", + Comment = null, }, new() { @@ -77349,6 +85087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yagara", + Comment = null, }, new() { @@ -77359,6 +85098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yardliyawarra", + Comment = null, }, new() { @@ -77369,6 +85109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yinwum", + Comment = null, }, new() { @@ -77379,6 +85120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yuyu", + Comment = null, }, new() { @@ -77389,6 +85131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yabula Yabula", + Comment = null, }, new() { @@ -77399,6 +85142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yir Yoront", + Comment = null, }, new() { @@ -77409,6 +85153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yau (Sandaun Province)", + Comment = null, }, new() { @@ -77419,6 +85164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayizi", + Comment = null, }, new() { @@ -77429,6 +85175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "E'ma Buyang", + Comment = null, }, new() { @@ -77439,6 +85186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zokhuo", + Comment = null, }, new() { @@ -77449,6 +85197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sierra de Juárez Zapotec", + Comment = null, }, new() { @@ -77459,6 +85208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tlacolula Valley Zapotec", + Comment = null, }, new() { @@ -77469,6 +85219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ocotlán Zapotec", + Comment = null, }, new() { @@ -77479,6 +85230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajonos Zapotec", + Comment = null, }, new() { @@ -77489,6 +85241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yareni Zapotec", + Comment = null, }, new() { @@ -77499,6 +85252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayoquesco Zapotec", + Comment = null, }, new() { @@ -77509,6 +85263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaghawa", + Comment = null, }, new() { @@ -77519,6 +85274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zangwal", + Comment = null, }, new() { @@ -77529,6 +85285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus Zapotec", + Comment = null, }, new() { @@ -77539,6 +85296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaramo", + Comment = null, }, new() { @@ -77549,6 +85307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zanaki", + Comment = null, }, new() { @@ -77559,6 +85318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zauzou", + Comment = null, }, new() { @@ -77569,6 +85329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miahuatlán Zapotec", + Comment = null, }, new() { @@ -77579,6 +85340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ozolotepec Zapotec", + Comment = null, }, new() { @@ -77589,6 +85351,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Zapotec", + Comment = null, }, new() { @@ -77599,6 +85362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aloápam Zapotec", + Comment = null, }, new() { @@ -77609,6 +85373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rincón Zapotec", + Comment = null, }, new() { @@ -77619,6 +85384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santo Domingo Albarradas Zapotec", + Comment = null, }, new() { @@ -77629,6 +85395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabaa Zapotec", + Comment = null, }, new() { @@ -77639,6 +85406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zangskari", + Comment = null, }, new() { @@ -77649,6 +85417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yatzachi Zapotec", + Comment = null, }, new() { @@ -77659,6 +85428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mitla Zapotec", + Comment = null, }, new() { @@ -77669,6 +85439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xadani Zapotec", + Comment = null, }, new() { @@ -77679,6 +85450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zayse-Zergulla", + Comment = null, }, new() { @@ -77689,6 +85461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zari", + Comment = null, }, new() { @@ -77699,6 +85472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Balaibalan", + Comment = null, }, new() { @@ -77709,6 +85483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Berawan", + Comment = null, }, new() { @@ -77719,6 +85494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Berawan", + Comment = null, }, new() { @@ -77729,6 +85505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Blissymbols", + Comment = null, }, new() { @@ -77739,6 +85516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batui", + Comment = null, }, new() { @@ -77749,6 +85527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bu (Bauchi State)", + Comment = null, }, new() { @@ -77759,6 +85538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Berawan", + Comment = null, }, new() { @@ -77769,6 +85549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatecas Altas Zapotec", + Comment = null, }, new() { @@ -77779,6 +85560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Las Delicias Zapotec", + Comment = null, }, new() { @@ -77789,6 +85571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Hongshuihe Zhuang", + Comment = null, }, new() { @@ -77799,6 +85582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngazidja Comorian", + Comment = null, }, new() { @@ -77809,6 +85593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zeeuws", + Comment = null, }, new() { @@ -77819,6 +85604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zenag", + Comment = null, }, new() { @@ -77829,6 +85615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Hongshuihe Zhuang", + Comment = null, }, new() { @@ -77839,6 +85626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zeem", + Comment = null, }, new() { @@ -77849,6 +85637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zenaga", + Comment = null, }, new() { @@ -77859,6 +85648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinga", + Comment = null, }, new() { @@ -77869,6 +85659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guibei Zhuang", + Comment = null, }, new() { @@ -77879,6 +85670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Moroccan Tamazight", + Comment = null, }, new() { @@ -77889,6 +85681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minz Zhuang", + Comment = null, }, new() { @@ -77899,6 +85692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guibian Zhuang", + Comment = null, }, new() { @@ -77909,6 +85703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magori", + Comment = null, }, new() { @@ -77919,6 +85714,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Zhuang", + Comment = null, }, new() { @@ -77929,6 +85725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zhaba", + Comment = null, }, new() { @@ -77939,6 +85736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dai Zhuang", + Comment = null, }, new() { @@ -77949,6 +85747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zhire", + Comment = null, }, new() { @@ -77959,6 +85758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nong Zhuang", + Comment = null, }, new() { @@ -77969,6 +85769,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Chinese", + Comment = null, }, new() { @@ -77979,6 +85780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zhoa", + Comment = null, }, new() { @@ -77989,6 +85791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zia", + Comment = null, }, new() { @@ -77999,6 +85802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zimbabwe Sign Language", + Comment = null, }, new() { @@ -78009,6 +85813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zimakani", + Comment = null, }, new() { @@ -78019,6 +85824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zialo", + Comment = null, }, new() { @@ -78029,6 +85835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesme", + Comment = null, }, new() { @@ -78039,6 +85846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zinza", + Comment = null, }, new() { @@ -78049,6 +85857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zigula", + Comment = null, }, new() { @@ -78059,6 +85868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zizilivakan", + Comment = null, }, new() { @@ -78069,6 +85879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaimbulawa", + Comment = null, }, new() { @@ -78079,6 +85890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadu", + Comment = null, }, new() { @@ -78089,6 +85901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Koguryo", + Comment = null, }, new() { @@ -78099,6 +85912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Khorezmian", + Comment = null, }, new() { @@ -78109,6 +85923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karankawa", + Comment = null, }, new() { @@ -78119,6 +85934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanan", + Comment = null, }, new() { @@ -78129,6 +85945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kott", + Comment = null, }, new() { @@ -78139,6 +85956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "São Paulo Kaingáng", + Comment = null, }, new() { @@ -78149,6 +85967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zakhring", + Comment = null, }, new() { @@ -78159,6 +85978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kitan", + Comment = null, }, new() { @@ -78169,6 +85989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaurna", + Comment = null, }, new() { @@ -78179,6 +86000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Krevinian", + Comment = null, }, new() { @@ -78189,6 +86011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Khazar", + Comment = null, }, new() { @@ -78199,6 +86022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zula", + Comment = null, }, new() { @@ -78209,6 +86033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liujiang Zhuang", + Comment = null, }, new() { @@ -78219,6 +86044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malay (individual language)", + Comment = null, }, new() { @@ -78229,6 +86055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lianshan Zhuang", + Comment = null, }, new() { @@ -78239,6 +86066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liuqian Zhuang", + Comment = null, }, new() { @@ -78249,6 +86077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zul", + Comment = null, }, new() { @@ -78259,6 +86088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manda (Australia)", + Comment = null, }, new() { @@ -78269,6 +86099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zimba", + Comment = null, }, new() { @@ -78279,6 +86110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Margany", + Comment = null, }, new() { @@ -78289,6 +86121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maridan", + Comment = null, }, new() { @@ -78299,6 +86132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mangerr", + Comment = null, }, new() { @@ -78309,6 +86143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mfinu", + Comment = null, }, new() { @@ -78319,6 +86154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marti Ke", + Comment = null, }, new() { @@ -78329,6 +86165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Makolkol", + Comment = null, }, new() { @@ -78339,6 +86176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Negeri Sembilan Malay", + Comment = null, }, new() { @@ -78349,6 +86187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maridjabin", + Comment = null, }, new() { @@ -78359,6 +86198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mandandanyi", + Comment = null, }, new() { @@ -78369,6 +86209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Matngala", + Comment = null, }, new() { @@ -78379,6 +86220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marimanindji", + Comment = null, }, new() { @@ -78389,6 +86231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbangwe", + Comment = null, }, new() { @@ -78399,6 +86242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molo", + Comment = null, }, new() { @@ -78409,6 +86253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbuun", + Comment = null, }, new() { @@ -78419,6 +86264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mituku", + Comment = null, }, new() { @@ -78429,6 +86275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maranunggu", + Comment = null, }, new() { @@ -78439,6 +86286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbesa", + Comment = null, }, new() { @@ -78449,6 +86297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maringarr", + Comment = null, }, new() { @@ -78459,6 +86308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Muruwari", + Comment = null, }, new() { @@ -78469,6 +86319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mbariman-Gudhinma", + Comment = null, }, new() { @@ -78479,6 +86330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbo (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -78489,6 +86341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomitaba", + Comment = null, }, new() { @@ -78499,6 +86352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mariyedi", + Comment = null, }, new() { @@ -78509,6 +86363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbandja", + Comment = null, }, new() { @@ -78519,6 +86374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zan Gula", + Comment = null, }, new() { @@ -78529,6 +86385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zande (individual language)", + Comment = null, }, new() { @@ -78539,6 +86396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mang", + Comment = null, }, new() { @@ -78549,6 +86407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Manangkari", + Comment = null, }, new() { @@ -78559,6 +86418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangas", + Comment = null, }, new() { @@ -78569,6 +86429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Copainalá Zoque", + Comment = null, }, new() { @@ -78579,6 +86440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chimalapa Zoque", + Comment = null, }, new() { @@ -78589,6 +86451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zou", + Comment = null, }, new() { @@ -78599,6 +86462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asunción Mixtepec Zapotec", + Comment = null, }, new() { @@ -78609,6 +86473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabasco Zoque", + Comment = null, }, new() { @@ -78619,6 +86484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rayón Zoque", + Comment = null, }, new() { @@ -78629,6 +86495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Francisco León Zoque", + Comment = null, }, new() { @@ -78639,6 +86506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lachiguiri Zapotec", + Comment = null, }, new() { @@ -78649,6 +86517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yautepec Zapotec", + Comment = null, }, new() { @@ -78659,6 +86528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Choapan Zapotec", + Comment = null, }, new() { @@ -78669,6 +86539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Ixtlán Zapotec", + Comment = null, }, new() { @@ -78679,6 +86550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Petapa Zapotec", + Comment = null, }, new() { @@ -78689,6 +86561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Pedro Quiatoni Zapotec", + Comment = null, }, new() { @@ -78699,6 +86572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guevea De Humboldt Zapotec", + Comment = null, }, new() { @@ -78709,6 +86583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totomachapan Zapotec", + Comment = null, }, new() { @@ -78719,6 +86594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María Quiegolani Zapotec", + Comment = null, }, new() { @@ -78729,6 +86605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quiavicuzas Zapotec", + Comment = null, }, new() { @@ -78739,6 +86616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlacolulita Zapotec", + Comment = null, }, new() { @@ -78749,6 +86627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lachixío Zapotec", + Comment = null, }, new() { @@ -78759,6 +86638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mixtepec Zapotec", + Comment = null, }, new() { @@ -78769,6 +86649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Inés Yatzechi Zapotec", + Comment = null, }, new() { @@ -78779,6 +86660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amatlán Zapotec", + Comment = null, }, new() { @@ -78789,6 +86671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Alto Zapotec", + Comment = null, }, new() { @@ -78799,6 +86682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zoogocho Zapotec", + Comment = null, }, new() { @@ -78809,6 +86693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santiago Xanica Zapotec", + Comment = null, }, new() { @@ -78819,6 +86704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatlán Zapotec", + Comment = null, }, new() { @@ -78829,6 +86715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Vicente Coatlán Zapotec", + Comment = null, }, new() { @@ -78839,6 +86726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yalálag Zapotec", + Comment = null, }, new() { @@ -78849,6 +86737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chichicapan Zapotec", + Comment = null, }, new() { @@ -78859,6 +86748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaniza Zapotec", + Comment = null, }, new() { @@ -78869,6 +86759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Baltazar Loxicha Zapotec", + Comment = null, }, new() { @@ -78879,6 +86770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazaltepec Zapotec", + Comment = null, }, new() { @@ -78889,6 +86781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Texmelucan Zapotec", + Comment = null, }, new() { @@ -78899,6 +86792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qiubei Zhuang", + Comment = null, }, new() { @@ -78909,6 +86803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kara (Korea)", + Comment = null, }, new() { @@ -78919,6 +86814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mirgan", + Comment = null, }, new() { @@ -78929,6 +86825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zerenkel", + Comment = null, }, new() { @@ -78939,6 +86836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Záparo", + Comment = null, }, new() { @@ -78949,6 +86847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Zarphatic", + Comment = null, }, new() { @@ -78959,6 +86858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mairasi", + Comment = null, }, new() { @@ -78969,6 +86869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarasira", + Comment = null, }, new() { @@ -78979,6 +86880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kaskean", + Comment = null, }, new() { @@ -78989,6 +86891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zambian Sign Language", + Comment = null, }, new() { @@ -78999,6 +86902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Malay", + Comment = null, }, new() { @@ -79009,6 +86913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Rincon Zapotec", + Comment = null, }, new() { @@ -79019,6 +86924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sukurum", + Comment = null, }, new() { @@ -79029,6 +86935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elotepec Zapotec", + Comment = null, }, new() { @@ -79039,6 +86946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xanaguía Zapotec", + Comment = null, }, new() { @@ -79049,6 +86957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lapaguía-Guivini Zapotec", + Comment = null, }, new() { @@ -79059,6 +86968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Agustín Mixtepec Zapotec", + Comment = null, }, new() { @@ -79069,6 +86979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Catarina Albarradas Zapotec", + Comment = null, }, new() { @@ -79079,6 +86990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loxicha Zapotec", + Comment = null, }, new() { @@ -79089,6 +87001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quioquitani-Quierí Zapotec", + Comment = null, }, new() { @@ -79099,6 +87012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tilquiapan Zapotec", + Comment = null, }, new() { @@ -79109,6 +87023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tejalapan Zapotec", + Comment = null, }, new() { @@ -79119,6 +87034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Güilá Zapotec", + Comment = null, }, new() { @@ -79129,6 +87045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaachila Zapotec", + Comment = null, }, new() { @@ -79139,6 +87056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yatee Zapotec", + Comment = null, }, new() { @@ -79149,6 +87067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tokano", + Comment = null, }, new() { @@ -79159,6 +87078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zulu", + Comment = null, }, new() { @@ -79169,6 +87089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumzari", + Comment = null, }, new() { @@ -79179,6 +87100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zuni", + Comment = null, }, new() { @@ -79189,6 +87111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zumaya", + Comment = null, }, new() { @@ -79199,6 +87122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zay", + Comment = null, }, new() { @@ -79209,6 +87133,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "No linguistic content", + Comment = null, }, new() { @@ -79219,6 +87144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yongbei Zhuang", + Comment = null, }, new() { @@ -79229,6 +87155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yang Zhuang", + Comment = null, }, new() { @@ -79239,6 +87166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Youjiang Zhuang", + Comment = null, }, new() { @@ -79249,6 +87177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yongnan Zhuang", + Comment = null, }, new() { @@ -79259,6 +87188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zyphe Chin", + Comment = null, }, new() { @@ -79269,6 +87199,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Zaza", + Comment = null, }, new() { @@ -79279,6 +87210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zuojiang Zhuang", + Comment = null, }, ], }; diff --git a/LanguageTags/LanguageLookup.cs b/LanguageTags/LanguageLookup.cs index bb67b2f..421f77c 100644 --- a/LanguageTags/LanguageLookup.cs +++ b/LanguageTags/LanguageLookup.cs @@ -3,15 +3,15 @@ namespace ptr727.LanguageTags; /// /// Provides language code lookup and conversion functionality between IETF and ISO standards. /// -/// The options used to configure logging. -public sealed class LanguageLookup(Options? options = null) +public sealed class LanguageLookup { /// /// The language code for undetermined languages ("und"). /// public const string Undetermined = "und"; - private readonly ILogger _logger = LogOptions.CreateLogger(options); + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; private readonly Iso6392Data _iso6392 = Iso6392Data.Create(); private readonly Iso6393Data _iso6393 = Iso6393Data.Create(); private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); @@ -84,8 +84,14 @@ public string GetIetfFromIso(string languageTag) if (iso6393 != null) { // Find a matching subtag record from the ISO 639-3 or ISO 639-1 tag - subtag = _rfc5646.Find(iso6393.Id, false); - subtag ??= _rfc5646.Find(iso6393.Part1, false); + if (!string.IsNullOrEmpty(iso6393.Id)) + { + subtag = _rfc5646.Find(iso6393.Id, false); + } + if (subtag == null && !string.IsNullOrEmpty(iso6393.Part1)) + { + subtag = _rfc5646.Find(iso6393.Part1, false); + } if (subtag != null) { return subtag.TagValue; @@ -97,8 +103,14 @@ public string GetIetfFromIso(string languageTag) if (iso6392 != null) { // Find a matching RFC 5646 record from the ISO 639-2 or ISO 639-1 tag - subtag = _rfc5646.Find(iso6392.Part2B, false); - subtag ??= _rfc5646.Find(iso6392.Part1, false); + if (!string.IsNullOrEmpty(iso6392.Part2B)) + { + subtag = _rfc5646.Find(iso6392.Part2B, false); + } + if (subtag == null && !string.IsNullOrEmpty(iso6392.Part1)) + { + subtag = _rfc5646.Find(iso6392.Part1, false); + } if (subtag != null) { return subtag.TagValue; @@ -112,7 +124,7 @@ public string GetIetfFromIso(string languageTag) return cultureInfo.IetfLanguageTag; } - _logger.LogUndeterminedFallback(languageTag, nameof(GetIetfFromIso)); + Log.LogUndeterminedFallback(languageTag, nameof(GetIetfFromIso)); return Undetermined; } @@ -120,7 +132,7 @@ public string GetIetfFromIso(string languageTag) /// 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. + /// The ISO 639-2/B language code, or "und" if the conversion fails. public string GetIsoFromIetf(string languageTag) { // Undetermined @@ -177,7 +189,7 @@ public string GetIsoFromIetf(string languageTag) CultureInfo? cultureInfo = CreateCultureInfo(languageTag); if (cultureInfo == null) { - _logger.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); + Log.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); return Undetermined; } @@ -188,7 +200,8 @@ public string GetIsoFromIetf(string languageTag) // Return the Part 2B code return iso6393.Part2B!; } - _logger.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); + + Log.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); return Undetermined; } @@ -252,7 +265,7 @@ public bool IsMatch(string prefix, string languageTag) } // No match - _logger.LogPrefixMatchFailed(originalPrefix, originalTag); + Log.LogPrefixMatchFailed(originalPrefix, originalTag); return false; } } @@ -260,12 +273,18 @@ public bool IsMatch(string prefix, string languageTag) /// /// Determines if two language tags are equivalent (case-insensitive). /// + /// The first language tag. + /// The second language tag. + /// true when the tags are equal ignoring case; otherwise, false. public static bool AreEquivalent(string tag1, string tag2) => string.Equals(tag1, tag2, StringComparison.OrdinalIgnoreCase); /// /// Normalizes and compares two language tags for equivalence. /// + /// The first language tag. + /// The second language tag. + /// true when both tags can be parsed and normalize to the same value; otherwise, false. public static bool AreEquivalentNormalized(string tag1, string tag2) { LanguageTag? parsed1 = LanguageTag.Parse(tag1)?.Normalize(); diff --git a/LanguageTags/LanguageSchema.cs b/LanguageTags/LanguageSchema.cs index 0bfd5b2..995d171 100644 --- a/LanguageTags/LanguageSchema.cs +++ b/LanguageTags/LanguageSchema.cs @@ -4,20 +4,6 @@ namespace ptr727.LanguageTags; internal static class LanguageSchema { - internal static async Task WriteFileAsync(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"; - await File.WriteAllTextAsync(fileName, value).ConfigureAwait(false); - } - internal static string GetCodeGenString(string? text) => string.IsNullOrEmpty(text) ? "null" : $"\"{text}\""; diff --git a/LanguageTags/LanguageTag.cs b/LanguageTags/LanguageTag.cs index b0a04a2..6b5fffa 100644 --- a/LanguageTags/LanguageTag.cs +++ b/LanguageTags/LanguageTag.cs @@ -68,27 +68,18 @@ internal LanguageTag(LanguageTag languageTag) public PrivateUseTag PrivateUse { get; internal set; } /// - /// Parses a language tag string into a LanguageTag object. + /// Parses a language tag string into a instance. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// A parsed and normalized LanguageTag object, or null if parsing fails. + /// The parsed language tag, or null if parsing fails. public static LanguageTag? Parse(string tag) => new LanguageTagParser().Parse(tag); - /// - /// Parses a language tag string into a LanguageTag object using the specified options. - /// - /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// The options used to configure logging. - /// A parsed and normalized LanguageTag object, or null if parsing fails. - public static LanguageTag? Parse(string tag, Options? options) => - new LanguageTagParser(options).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. + /// The parsed tag, the supplied default tag, or "und" if parsing fails and no default is provided. public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = null) { LanguageTag? parsed = Parse(tag); @@ -99,44 +90,22 @@ public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = n /// 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(); - - /// - /// Parses and normalizes a language tag string using the specified options. - /// - /// The language tag string. - /// The options used to configure logging. - /// A normalized language tag or null if parsing/normalization fails. - public static LanguageTag? ParseAndNormalize(string tag, Options? options) => - Parse(tag, options)?.Normalize(options); - - /// - /// 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) + /// A normalized language tag, or null if parsing fails. + public static LanguageTag? ParseAndNormalize(string tag) { - result = Parse(tag); - return result != null; + LanguageTag? parsed = Parse(tag); + return parsed == null ? null : new LanguageTagParser().Normalize(parsed); } /// - /// Tries to parse a language tag string into a LanguageTag object using the specified options. + /// Tries to parse a language tag string into a instance. /// /// 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. - /// The options used to configure logging. + /// When this method returns, contains the parsed language tag 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, - Options? options - ) + public static bool TryParse(string tag, [NotNullWhen(true)] out LanguageTag? result) { - result = Parse(tag, options); + result = Parse(tag); return result != null; } @@ -147,13 +116,16 @@ public static bool TryParse( public static LanguageTagBuilder CreateBuilder() => new(); /// - /// Validates this language tag. + /// Validates this language tag for RFC 5646 structural correctness. /// - /// true if the tag is valid; otherwise, false. + /// + /// This method validates structure and duplication rules only; it does not validate subtags against the registry. + /// + /// true if the tag is structurally valid; otherwise, false. public bool Validate() => LanguageTagParser.Validate(this); /// - /// Gets whether this language tag is valid according to RFC 5646 rules. + /// Gets whether this language tag is structurally valid according to RFC 5646 rules. /// public bool IsValid => Validate(); @@ -161,20 +133,15 @@ public static bool TryParse( /// Normalizes this language tag according to RFC 5646 rules. /// /// A normalized copy of this language tag. - public LanguageTag? Normalize() => new LanguageTagParser().Normalize(this); - - /// - /// Normalizes this language tag according to RFC 5646 rules using the specified options. - /// - /// The options used to configure logging. - /// A normalized copy of this language tag. - public LanguageTag? Normalize(Options? options) => - new LanguageTagParser(options).Normalize(this); + 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"). + /// + /// A string representation of the language tag (e.g., "en-US", "zh-Hans-CN"), or an empty string + /// when no subtags are present. + /// public override string ToString() { StringBuilder stringBuilder = new(); @@ -214,7 +181,7 @@ public override string ToString() { _ = stringBuilder.Append('-'); } - _ = stringBuilder.Append(PrivateUse.ToString()); + _ = stringBuilder.Append(PrivateUse); } return stringBuilder.ToString(); } @@ -316,7 +283,7 @@ public ExtensionTag() /// /// Converts this extension tag to its string representation. /// - /// A string representation of the extension tag (e.g., "u-ca-buddhist"). + /// A string representation of the extension tag (e.g., "u-ca-buddhist"), or an empty string when no tags are present. public override string ToString() => Tags.IsEmpty ? string.Empty : $"{Prefix}-{string.Join('-', Tags)}"; @@ -387,7 +354,7 @@ public PrivateUseTag() /// /// Converts this private use tag to its string representation. /// - /// A string representation of the private use tag (e.g., "x-private"). + /// A string representation of the private use tag (e.g., "x-private"), or an empty string when no tags are present. public override string ToString() => Tags.IsEmpty ? string.Empty : $"{Prefix}-{string.Join('-', Tags)}"; diff --git a/LanguageTags/LanguageTagBuilder.cs b/LanguageTags/LanguageTagBuilder.cs index 8e9fd78..c5f53bf 100644 --- a/LanguageTags/LanguageTagBuilder.cs +++ b/LanguageTags/LanguageTagBuilder.cs @@ -8,7 +8,7 @@ public sealed class LanguageTagBuilder private readonly LanguageTag _languageTag = new(); /// - /// Sets the primary language subtag. + /// Sets the primary language subtag without validation. /// /// The language code (e.g., "en", "zh"). /// The builder instance for method chaining. @@ -19,7 +19,7 @@ public LanguageTagBuilder Language(string value) } /// - /// Sets the extended language subtag. + /// Sets the extended language subtag without validation. /// /// The extended language code (e.g., "yue" for zh-yue). /// The builder instance for method chaining. @@ -30,7 +30,7 @@ public LanguageTagBuilder ExtendedLanguage(string value) } /// - /// Sets the script subtag. + /// Sets the script subtag without validation. /// /// The ISO 15924 script code (e.g., "Hans", "Latn"). /// The builder instance for method chaining. @@ -41,7 +41,7 @@ public LanguageTagBuilder Script(string value) } /// - /// Sets the region subtag. + /// Sets the region subtag without validation. /// /// The ISO 3166-1 country code or UN M.49 region code (e.g., "US", "CN"). /// The builder instance for method chaining. @@ -52,7 +52,7 @@ public LanguageTagBuilder Region(string value) } /// - /// Adds a variant subtag. + /// Adds a variant subtag without validation. /// /// The variant code to add. /// The builder instance for method chaining. @@ -63,7 +63,7 @@ public LanguageTagBuilder VariantAdd(string value) } /// - /// Adds multiple variant subtags. + /// Adds multiple variant subtags without validation. /// /// The variant codes to add. /// The builder instance for method chaining. @@ -76,7 +76,7 @@ public LanguageTagBuilder VariantAddRange(IEnumerable values) } /// - /// Adds an extension subtag with the specified prefix and values. + /// Adds an extension subtag with the specified prefix and values without validation. /// /// The single-character extension prefix (e.g., 'u' for Unicode extensions). /// The extension values. @@ -97,7 +97,7 @@ public LanguageTagBuilder ExtensionAdd(char prefix, IEnumerable values) } /// - /// Adds a private use subtag. + /// Adds a private use subtag without validation. /// /// The private use value to add. /// The builder instance for method chaining. @@ -109,7 +109,7 @@ public LanguageTagBuilder PrivateUseAdd(string value) } /// - /// Adds multiple private use subtags. + /// Adds multiple private use subtags without validation. /// /// The private use values to add. /// The builder instance for method chaining. @@ -123,22 +123,17 @@ public LanguageTagBuilder PrivateUseAddRange(IEnumerable values) } /// - /// Builds and returns the constructed language tag. + /// Builds and returns the constructed language tag without validation or normalization. /// - /// The constructed . + /// The constructed instance; the builder continues to mutate this instance. public LanguageTag Build() => _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); - - /// - /// Builds and normalizes the constructed language tag according to RFC 5646 rules using the specified options. - /// - /// The options used to configure logging. - /// A normalized or null if normalization fails. - public LanguageTag? Normalize(Options? options) => - new LanguageTagParser(options).Normalize(_languageTag); + /// + /// Normalization does not validate the tag; call on the result if needed. + /// + /// A normalized . + public LanguageTag Normalize() => new LanguageTagParser().Normalize(_languageTag); } diff --git a/LanguageTags/LanguageTagParser.cs b/LanguageTags/LanguageTagParser.cs index e489098..909b638 100644 --- a/LanguageTags/LanguageTagParser.cs +++ b/LanguageTags/LanguageTagParser.cs @@ -19,14 +19,12 @@ namespace ptr727.LanguageTags; internal sealed class LanguageTagParser { - private readonly ILogger _logger; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); private readonly List _tagList = []; private LanguageTag _languageTag = new(); - internal LanguageTagParser(Options? options = null) => - _logger = LogOptions.CreateLogger(options); - private string ParseGrandfathered(string languageTag) { // Grandfathered and Redundant Registrations @@ -365,7 +363,7 @@ private bool ParseExtension() private static bool ValidatePrivateUsePrefix(string tag) => // x - !string.IsNullOrEmpty(tag) && tag.Length == 1 && tag[0] == PrivateUseTag.Prefix; + !string.IsNullOrEmpty(tag) && tag is [PrivateUseTag.Prefix]; private static bool ValidatePrivateUse(string tag) => // 1 to 8 chars @@ -466,14 +464,14 @@ private bool ParsePrivateUse() // Must be non-empty if (string.IsNullOrEmpty(languageTag)) { - _logger.LogParseFailure(originalTag, "Tag is null or empty."); + Log.LogParseFailure(originalTag, "Tag is null or empty."); return null; } // Must be all ASCII if (languageTag.Any(c => !char.IsAscii(c))) { - _logger.LogParseFailure(originalTag, "Tag contains non-ASCII characters."); + Log.LogParseFailure(originalTag, "Tag contains non-ASCII characters."); return null; } @@ -484,21 +482,21 @@ private bool ParsePrivateUse() _tagList.AddRange([.. languageTag.Split('-')]); if (_tagList.Count == 0) { - _logger.LogParseFailure(originalTag, "Tag split resulted in no segments."); + Log.LogParseFailure(originalTag, "Tag split resulted in no segments."); return null; } // All parts must be non-empty if (_tagList.Any(string.IsNullOrEmpty)) { - _logger.LogParseFailure(originalTag, "Tag contains empty segments."); + Log.LogParseFailure(originalTag, "Tag contains empty segments."); return null; } // Private use if (!ParsePrivateUse()) { - _logger.LogParseFailure(originalTag, "Invalid private use section."); + Log.LogParseFailure(originalTag, "Invalid private use section."); return null; } if (_tagList.Count == 0) @@ -509,7 +507,7 @@ private bool ParsePrivateUse() // Language if (!ParseLanguage()) { - _logger.LogParseFailure(originalTag, "Invalid primary language subtag."); + Log.LogParseFailure(originalTag, "Invalid primary language subtag."); return null; } if (_tagList.Count == 0) @@ -520,7 +518,7 @@ private bool ParsePrivateUse() // Extended language if (!ParseExtendedLanguage()) { - _logger.LogParseFailure(originalTag, "Invalid extended language subtag."); + Log.LogParseFailure(originalTag, "Invalid extended language subtag."); return null; } if (_tagList.Count == 0) @@ -531,7 +529,7 @@ private bool ParsePrivateUse() // Script if (!ParseScript()) { - _logger.LogParseFailure(originalTag, "Invalid script subtag."); + Log.LogParseFailure(originalTag, "Invalid script subtag."); return null; } if (_tagList.Count == 0) @@ -542,7 +540,7 @@ private bool ParsePrivateUse() // Region if (!ParseRegion()) { - _logger.LogParseFailure(originalTag, "Invalid region subtag."); + Log.LogParseFailure(originalTag, "Invalid region subtag."); return null; } if (_tagList.Count == 0) @@ -553,7 +551,7 @@ private bool ParsePrivateUse() // Variant if (!ParseVariant()) { - _logger.LogParseFailure(originalTag, "Invalid variant subtag."); + Log.LogParseFailure(originalTag, "Invalid variant subtag."); return null; } if (_tagList.Count == 0) @@ -564,7 +562,7 @@ private bool ParsePrivateUse() // Extension if (!ParseExtension()) { - _logger.LogParseFailure(originalTag, "Invalid extension subtag."); + Log.LogParseFailure(originalTag, "Invalid extension subtag."); return null; } if (_tagList.Count == 0) @@ -575,7 +573,7 @@ private bool ParsePrivateUse() // Private use if (!ParsePrivateUse()) { - _logger.LogParseFailure(originalTag, "Invalid private use subtag."); + Log.LogParseFailure(originalTag, "Invalid private use subtag."); return null; } if (_tagList.Count == 0) @@ -584,7 +582,7 @@ private bool ParsePrivateUse() } // Should be done - _logger.LogParseFailure(originalTag, "Unexpected trailing segments."); + Log.LogParseFailure(originalTag, "Unexpected trailing segments."); return null; } @@ -594,19 +592,15 @@ private bool ParsePrivateUse() return parsedTag == null ? null : Normalize(parsedTag); } - internal LanguageTag? Normalize(LanguageTag languageTag) + internal LanguageTag Normalize(LanguageTag languageTag) { + ArgumentNullException.ThrowIfNull(languageTag); + // Canonicalization of Language Tags // https://www.rfc-editor.org/rfc/rfc5646#section-4.5 - if (languageTag == null) - { - return null; - } - - string originalTag = languageTag.ToString(); - // Create a copy and do not modify the original + string originalTag = languageTag.ToString(); LanguageTag normalizeTag = new(languageTag); // Language with preferred value @@ -747,7 +741,7 @@ .. _rfc5646.RecordList.Where(record => string normalizedTag = normalizeTag.ToString(); if (!string.Equals(originalTag, normalizedTag, StringComparison.OrdinalIgnoreCase)) { - _logger.LogNormalizedTag(originalTag, normalizedTag); + Log.LogNormalizedTag(originalTag, normalizedTag); } // Done @@ -756,14 +750,11 @@ .. _rfc5646.RecordList.Where(record => internal static bool Validate(LanguageTag languageTag) { + ArgumentNullException.ThrowIfNull(languageTag); + // Classes of Conformance // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.9 - if (languageTag == null) - { - return false; - } - // Validate tags if (!string.IsNullOrEmpty(languageTag.Language) && !ValidateLanguage(languageTag.Language)) { diff --git a/LanguageTags/LogOptions.cs b/LanguageTags/LogOptions.cs index cd6a85b..55c0c66 100644 --- a/LanguageTags/LogOptions.cs +++ b/LanguageTags/LogOptions.cs @@ -5,74 +5,48 @@ namespace ptr727.LanguageTags; /// /// Provides global logging configuration for the library. /// +/// +/// +/// This class manages static logger configuration used by all library classes. +/// When a logger is requested, it is resolved using the following priority order: +/// +/// +/// +/// - The global logger factory, when set to a non- instance. Creates a logger for the requested category. +/// +/// +/// - The default fallback when no logger factory is configured. +/// +/// +/// +/// Note that loggers are created and cached at the time of use by each class instance. Changes to +/// after a logger has been created will not affect existing cached loggers—only new logger requests will use the updated configuration. +/// +/// public static class LogOptions { private static ILoggerFactory s_loggerFactory = NullLoggerFactory.Instance; - private static ILogger s_logger = NullLogger.Instance; /// /// Gets or sets the logger factory used to create category loggers. /// + /// + /// Changes to this property after loggers have been created will not affect existing cached loggers. + /// public static ILoggerFactory LoggerFactory { get => Volatile.Read(ref s_loggerFactory); set => _ = Interlocked.Exchange(ref s_loggerFactory, value ?? NullLoggerFactory.Instance); } - /// - /// Gets or sets the global fallback logger. - /// - public static ILogger Logger - { - get => Volatile.Read(ref s_logger); - set => _ = Interlocked.Exchange(ref s_logger, value ?? NullLogger.Instance); - } - - /// - /// Creates a logger for the specified type using the current factory or fallback logger. - /// - /// The type used to derive the logger category. - /// The configured logger for the category. - public static ILogger CreateLogger() => CreateLogger(typeof(T).FullName ?? typeof(T).Name); - - /// - /// Creates a logger for the specified type using the provided options or global configuration. - /// - /// The type used to derive the logger category. - /// The options used to configure logging. - /// The configured logger for the category. - public static ILogger CreateLogger(Options? options) => - CreateLogger(typeof(T).FullName ?? typeof(T).Name, options); - - /// - /// Creates a logger for the specified category using the current factory or fallback logger. - /// - /// The category name for the logger. - /// The configured logger for the category. - public static ILogger CreateLogger(string categoryName) - { - ILoggerFactory loggerFactory = LoggerFactory; - return !ReferenceEquals(loggerFactory, NullLoggerFactory.Instance) - ? loggerFactory.CreateLogger(categoryName) - : Logger; - } - - /// - /// Creates a logger for the specified category using the provided options or global configuration. - /// - /// The category name for the logger. - /// The options used to configure logging. - /// The configured logger for the category. - public static ILogger CreateLogger(string categoryName, Options? options) => - options is null ? CreateLogger(categoryName) - : options.LoggerFactory is not null ? options.LoggerFactory.CreateLogger(categoryName) - : options.Logger is not null ? options.Logger - : CreateLogger(categoryName); - /// /// Configures the library to use the specified logger factory. /// /// The factory to use for new loggers. + /// + /// This will only affect loggers created after this call. + /// Existing cached loggers remain unchanged. + /// public static void SetFactory(ILoggerFactory loggerFactory) => LoggerFactory = loggerFactory; /// @@ -82,6 +56,9 @@ public static ILogger CreateLogger(string categoryName, Options? options) => /// /// true when the factory was set because no factory was configured; otherwise, false. /// + /// + /// Use this method for one-time initialization to avoid overwriting an existing factory. + /// public static bool TrySetFactory(ILoggerFactory loggerFactory) { ILoggerFactory candidate = loggerFactory ?? NullLoggerFactory.Instance; @@ -94,28 +71,15 @@ public static bool TrySetFactory(ILoggerFactory loggerFactory) return ReferenceEquals(original, NullLoggerFactory.Instance); } - /// - /// Configures the library to use the specified global logger. - /// - /// The logger used as the global fallback. - public static void SetLogger(ILogger logger) => Logger = logger; + internal static ILogger CreateLogger() => CreateLogger(typeof(T).FullName ?? typeof(T).Name); - /// - /// Attempts to configure the library to use the specified global logger if none is set. - /// - /// The logger used as the global fallback. - /// - /// true when the logger was set because no logger was configured; otherwise, false. - /// - public static bool TrySetLogger(ILogger logger) + internal static ILogger CreateLogger(string categoryName) { - ILogger candidate = logger ?? NullLogger.Instance; - ILogger original = Interlocked.CompareExchange( - ref s_logger, - candidate, - NullLogger.Instance - ); + ArgumentException.ThrowIfNullOrWhiteSpace(categoryName); - return ReferenceEquals(original, NullLogger.Instance); + // LoggerFactory -> NullLogger + return !ReferenceEquals(LoggerFactory, NullLoggerFactory.Instance) + ? LoggerFactory.CreateLogger(categoryName) + : NullLogger.Instance; } } diff --git a/LanguageTags/Options.cs b/LanguageTags/Options.cs deleted file mode 100644 index 1dcd641..0000000 --- a/LanguageTags/Options.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Options used to configure the library. -/// -public sealed class Options -{ - /// - /// Gets the logger factory used to create per-instance loggers. - /// - public ILoggerFactory? LoggerFactory { get; init; } - - /// - /// Gets the logger used by the library. - /// - public ILogger? Logger { get; init; } -} diff --git a/LanguageTags/Rfc5646Data.cs b/LanguageTags/Rfc5646Data.cs index 95ee1ba..1362104 100644 --- a/LanguageTags/Rfc5646Data.cs +++ b/LanguageTags/Rfc5646Data.cs @@ -12,31 +12,44 @@ public sealed partial class Rfc5646Data "https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry"; internal const string DataFileName = "rfc5646"; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; + + [JsonConstructor] + internal Rfc5646Data() { } + /// - /// Loads RFC 5646 data from a file asynchronously. + /// Gets the file date of the language subtag registry. /// - /// The path to the data file. - /// The loaded . - /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName) => - LoadDataAsync(fileName, LogOptions.CreateLogger()); + [JsonInclude] + public DateOnly? FileDate { get; internal set; } + + /// + /// Gets the collection of RFC 5646 language subtag records. + /// + [JsonInclude] + public ImmutableArray RecordList { get; internal set; } = []; /// - /// Loads RFC 5646 data from a file asynchronously using the specified options. + /// Creates a instance from a data file asynchronously. /// /// The path to the data file. - /// The options used to configure logging. /// The loaded . + /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options) => - LoadDataAsync(fileName, LogOptions.CreateLogger(options)); + public static async Task FromDataAsync(string fileName) + { + Rfc5646Data rfc5646Data = new(); + await rfc5646Data.LoadDataAsync(fileName).ConfigureAwait(false); + return rfc5646Data; + } [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadDataAsync(string fileName, ILogger logger) + private async Task LoadDataAsync(string fileName) { // File Format // https://www.rfc-editor.org/rfc/rfc5646#section-3.1 @@ -71,52 +84,37 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (recordList.Count == 0) { - logger.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); + Log.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); + throw new InvalidDataException($"No data found in RFC 5646 file: {fileName}"); } - Rfc5646Data data = new() { FileDate = fileDate, RecordList = [.. recordList] }; - logger.LogDataLoaded(nameof(Rfc5646Data), fileName, data.RecordList.Length); - return data; + FileDate = fileDate; + RecordList = [.. recordList]; + Log.LogDataLoaded(nameof(Rfc5646Data), fileName, RecordList.Length); } catch (Exception exception) { - logger.LogDataLoadFailed(nameof(Rfc5646Data), fileName, exception); + Log.LogDataLoadFailed(nameof(Rfc5646Data), fileName, exception); throw; } } /// - /// Loads RFC 5646 data from a JSON file asynchronously. - /// - /// The path to the JSON file. - /// - /// The loaded , or null when deserialization yields no data. - /// - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName) => - LoadJsonAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads RFC 5646 data from a JSON file asynchronously using the specified options. + /// Creates a instance from a JSON file asynchronously. /// /// The path to the JSON file. - /// The options used to configure logging. - /// - /// The loaded , or null when deserialization yields no data. - /// + /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName, Options? options) => - LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); - + /// Thrown when the file contains invalid data. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + public static async Task FromJsonAsync(string fileName) { + ILogger logger = LogOptions.CreateLogger(); try { await using FileStream fileStream = new( @@ -133,12 +131,10 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (data == null) { logger.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); - } - else - { - logger.LogDataLoaded(nameof(Rfc5646Data), fileName, data.RecordList.Length); + throw new InvalidDataException($"No data found in RFC 5646 file: {fileName}"); } + logger.LogDataLoaded(nameof(Rfc5646Data), fileName, data.RecordList.Length); return data; } catch (Exception exception) @@ -153,7 +149,7 @@ private static async Task LoadDataAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - internal static async Task SaveJsonAsync(string fileName, Rfc5646Data rfc5646) + internal async Task SaveJsonAsync(string fileName) { await using FileStream fileStream = new( fileName, @@ -164,20 +160,13 @@ internal static async Task SaveJsonAsync(string fileName, Rfc5646Data rfc5646) FileOptions.Asynchronous | FileOptions.SequentialScan ); await JsonSerializer - .SerializeAsync(fileStream, rfc5646, LanguageJsonContext.Default.Rfc5646Data) + .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Rfc5646Data) .ConfigureAwait(false); } - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - internal static async Task GenCodeAsync(string fileName, Rfc5646Data rfc5646) + internal async Task SaveCodeAsync(string fileName) { - ArgumentNullException.ThrowIfNull(rfc5646); - - StreamWriter writer = new( + using StreamWriter writer = new( new FileStream( fileName, FileMode.Create, @@ -191,10 +180,6 @@ internal static async Task GenCodeAsync(string fileName, Rfc5646Data rfc5646) { NewLine = "\r\n", }; - await using ConfiguredAsyncDisposable writerScope = writer.ConfigureAwait(false); - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); await WriteLineAsync("namespace ptr727.LanguageTags;"); await WriteLineAsync(string.Empty); @@ -203,18 +188,29 @@ await WriteLineAsync( "/// Provides access to RFC 5646 / BCP 47 language subtag registry data." ); await WriteLineAsync("/// "); + await WriteLineAsync( + $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Rfc5646Data).FullName}\", \"1.0\")]" + ); await WriteLineAsync("public sealed partial class Rfc5646Data"); await WriteLineAsync("{"); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// Creates an instance loaded from the embedded RFC 5646 subtag registry dataset." + ); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// The populated instance." + ); await WriteLineAsync(" public static Rfc5646Data Create() =>"); await WriteLineAsync(" new()"); await WriteLineAsync(" {"); await WriteLineAsync( - $" FileDate = {LanguageSchema.GetCodeGenString(rfc5646.FileDate)}," + $" FileDate = {LanguageSchema.GetCodeGenString(FileDate)}," ); await WriteLineAsync(" RecordList ="); await WriteLineAsync(" ["); - foreach (Rfc5646Record record in rfc5646.RecordList) + foreach (Rfc5646Record record in RecordList) { await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -260,6 +256,10 @@ await WriteLineAsync( await WriteLineAsync(" ],"); await WriteLineAsync(" };"); await WriteLineAsync("}"); + return; + + ConfiguredTaskAwaitable WriteLineAsync(string value) => + writer.WriteLineAsync(value).ConfigureAwait(false); } internal sealed class Parser @@ -297,7 +297,7 @@ public async Task ReadAttributesAsync(StreamReader lineReader) } // Multiline record starts with two spaces - // Peek at the next line an look for a space + // Peek at the next line and look for a space while (true) { // Read next line to check for multiline continuation @@ -459,16 +459,6 @@ private static DateOnly DateFromString(string value) => DateOnly.ParseExact(value, "yyyy-MM-dd", CultureInfo.InvariantCulture); } - /// - /// Gets the file date of the language subtag registry. - /// - public required DateOnly? FileDate { get; init; } - - /// - /// Gets the collection of RFC 5646 language subtag records. - /// - public ImmutableArray RecordList { get; init; } - private static Rfc5646Record.RecordType TypeFromString(string value) => value.ToUpperInvariant() switch { @@ -495,27 +485,18 @@ private static Rfc5646Record.RecordScope ScopeFromString(string value) => /// /// Finds a language subtag record by tag, subtag, preferred value, or description. /// + /// + /// Matching is case-insensitive and checks Tag, SubTag, PreferredValue, then (optionally) Description. + /// Null or empty values return null. + /// /// 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) => - Find(languageTag, includeDescription, LogOptions.CreateLogger()); - - /// - /// Finds a language subtag record by tag, subtag, preferred value, or description using the specified options. - /// - /// The language tag, subtag, or description to search for. - /// If true, searches in the description field; otherwise, only searches tags and subtags. - /// The options used to configure logging. - /// The matching or null if not found. - public Rfc5646Record? Find(string? languageTag, bool includeDescription, Options? options) => - Find(languageTag, includeDescription, LogOptions.CreateLogger(options)); - - private Rfc5646Record? Find(string? languageTag, bool includeDescription, ILogger logger) + public Rfc5646Record? Find(string languageTag, bool includeDescription) { if (string.IsNullOrEmpty(languageTag)) { - logger.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); return null; } @@ -529,7 +510,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -540,7 +521,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -551,7 +532,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -566,7 +547,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -578,13 +559,13 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } } // Not found - logger.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); return null; } } diff --git a/LanguageTags/Rfc5646DataGen.cs b/LanguageTags/Rfc5646DataGen.cs index b0c3175..813e964 100644 --- a/LanguageTags/Rfc5646DataGen.cs +++ b/LanguageTags/Rfc5646DataGen.cs @@ -3,8 +3,13 @@ namespace ptr727.LanguageTags; /// /// Provides access to RFC 5646 / BCP 47 language subtag registry data. /// +[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Rfc5646Data", "1.0")] public sealed partial class Rfc5646Data { + /// + /// Creates an instance loaded from the embedded RFC 5646 subtag registry dataset. + /// + /// The populated instance. public static Rfc5646Data Create() => new() { diff --git a/LanguageTagsCreate/CommandLine.cs b/LanguageTagsCreate/CommandLine.cs index 1501e0f..f2eee13 100644 --- a/LanguageTagsCreate/CommandLine.cs +++ b/LanguageTagsCreate/CommandLine.cs @@ -12,7 +12,8 @@ internal sealed class CommandLine private static readonly FrozenSet s_cliBypassList = FrozenSet.Create( StringComparer.OrdinalIgnoreCase, - ["--help", "--version"] + "--help", + "--version" ); internal CommandLine(string[] args) diff --git a/LanguageTagsCreate/CreateTagData.cs b/LanguageTagsCreate/CreateTagData.cs index fceea1e..c0ab7a2 100644 --- a/LanguageTagsCreate/CreateTagData.cs +++ b/LanguageTagsCreate/CreateTagData.cs @@ -1,5 +1,3 @@ -using System.Runtime.CompilerServices; - namespace ptr727.LanguageTags.Create; internal sealed class CreateTagData( @@ -46,39 +44,39 @@ await DownloadFileAsync(new Uri(Rfc5646Data.DataUri), _rfc5646DataFile) internal async Task CreateJsonDataAsync() { - ArgumentNullException.ThrowIfNull(_iso6392DataFile, nameof(_iso6392DataFile)); - ArgumentNullException.ThrowIfNull(_iso6393DataFile, nameof(_iso6393DataFile)); - ArgumentNullException.ThrowIfNull(_rfc5646DataFile, nameof(_rfc5646DataFile)); + ArgumentNullException.ThrowIfNull(_iso6392DataFile); + ArgumentNullException.ThrowIfNull(_iso6393DataFile); + ArgumentNullException.ThrowIfNull(_rfc5646DataFile); // Convert data files to JSON Log.Information("Converting data files to JSON ..."); Log.Information("Converting ISO 639-2 data to JSON ..."); - _iso6392 = await Iso6392Data.LoadDataAsync(_iso6392DataFile).ConfigureAwait(false); + _iso6392 = await Iso6392Data.FromDataAsync(_iso6392DataFile).ConfigureAwait(false); _iso6392JsonFile = Path.Combine(dataDirectory, Iso6392Data.DataFileName + ".json"); Log.Information("Writing ISO 639-2 data to {JsonPath}", _iso6392JsonFile); - await Iso6392Data.SaveJsonAsync(_iso6392JsonFile, _iso6392).ConfigureAwait(false); + await _iso6392.SaveJsonAsync(_iso6392JsonFile).ConfigureAwait(false); Log.Information("Converting ISO 639-3 data to JSON ..."); - _iso6393 = await Iso6393Data.LoadDataAsync(_iso6393DataFile).ConfigureAwait(false); + _iso6393 = await Iso6393Data.FromDataAsync(_iso6393DataFile).ConfigureAwait(false); _iso6393JsonFile = Path.Combine(dataDirectory, Iso6393Data.DataFileName + ".json"); Log.Information("Writing ISO 639-3 data to {JsonPath}", _iso6393JsonFile); - await Iso6393Data.SaveJsonAsync(_iso6393JsonFile, _iso6393).ConfigureAwait(false); + await _iso6393.SaveJsonAsync(_iso6393JsonFile).ConfigureAwait(false); Log.Information("Converting RFC 5646 data to JSON ..."); - _rfc5646 = await Rfc5646Data.LoadDataAsync(_rfc5646DataFile).ConfigureAwait(false); + _rfc5646 = await Rfc5646Data.FromDataAsync(_rfc5646DataFile).ConfigureAwait(false); _rfc5646JsonFile = Path.Combine(dataDirectory, Rfc5646Data.DataFileName + ".json"); Log.Information("Writing RFC 5646 data to {JsonPath}", _rfc5646JsonFile); - await Rfc5646Data.SaveJsonAsync(_rfc5646JsonFile, _rfc5646).ConfigureAwait(false); + await _rfc5646.SaveJsonAsync(_rfc5646JsonFile).ConfigureAwait(false); Log.Information("Data files converted to JSON successfully."); } internal async Task GenerateCodeAsync() { - ArgumentNullException.ThrowIfNull(_iso6392, nameof(_iso6392)); - ArgumentNullException.ThrowIfNull(_iso6393, nameof(_iso6393)); - ArgumentNullException.ThrowIfNull(_rfc5646, nameof(_rfc5646)); + ArgumentNullException.ThrowIfNull(_iso6392); + ArgumentNullException.ThrowIfNull(_iso6393); + ArgumentNullException.ThrowIfNull(_rfc5646); // Generate code files Log.Information("Generating code files ..."); @@ -86,35 +84,34 @@ internal async Task GenerateCodeAsync() Log.Information("Generating ISO 639-2 code ..."); _iso6392CodeFile = Path.Combine(codeDirectory, nameof(Iso6392Data) + "Gen.cs"); Log.Information("Writing ISO 639-2 code to {CodePath}", _iso6392CodeFile); - await Iso6392Data.GenCodeAsync(_iso6392CodeFile, _iso6392).ConfigureAwait(false); + await _iso6392.SaveCodeAsync(_iso6392CodeFile).ConfigureAwait(false); Log.Information("Generating ISO 639-3 code ..."); _iso6393CodeFile = Path.Combine(codeDirectory, nameof(Iso6393Data) + "Gen.cs"); Log.Information("Writing ISO 639-3 code to {CodePath}", _iso6393CodeFile); - await Iso6393Data.GenCodeAsync(_iso6393CodeFile, _iso6393).ConfigureAwait(false); + await _iso6393.SaveCodeAsync(_iso6393CodeFile).ConfigureAwait(false); Log.Information("Generating RFC 5646 code ..."); _rfc5646CodeFile = Path.Combine(codeDirectory, nameof(Rfc5646Data) + "Gen.cs"); Log.Information("Writing RFC 5646 code to {CodePath}", _rfc5646CodeFile); - await Rfc5646Data.GenCodeAsync(_rfc5646CodeFile, _rfc5646).ConfigureAwait(false); + await _rfc5646.SaveCodeAsync(_rfc5646CodeFile).ConfigureAwait(false); Log.Information("Code files generated successfully."); } private async Task DownloadFileAsync(Uri uri, string fileName) { - ArgumentNullException.ThrowIfNull(uri, nameof(uri)); - ArgumentException.ThrowIfNullOrWhiteSpace(fileName, nameof(fileName)); + ArgumentNullException.ThrowIfNull(uri); + ArgumentException.ThrowIfNullOrWhiteSpace(fileName); Log.Information("Downloading \"{Uri}\" to \"{FileName}\" ...", uri.ToString(), fileName); - Stream httpStream = await HttpClientFactory + using Stream httpStream = await HttpClientFactory .GetHttpClient() .GetStreamAsync(uri, cancellationToken) .ConfigureAwait(false); - await using ConfiguredAsyncDisposable httpStreamScope = httpStream.ConfigureAwait(false); - FileStream fileStream = new( + using FileStream fileStream = new( fileName, FileMode.Create, FileAccess.Write, @@ -122,7 +119,6 @@ private async Task DownloadFileAsync(Uri uri, string fileName) 8192, FileOptions.Asynchronous | FileOptions.SequentialScan ); - await using ConfiguredAsyncDisposable fileStreamScope = fileStream.ConfigureAwait(false); await httpStream.CopyToAsync(fileStream, cancellationToken).ConfigureAwait(false); } diff --git a/LanguageTagsCreate/Extensions.cs b/LanguageTagsCreate/Extensions.cs index f55b44d..b7a4c34 100644 --- a/LanguageTagsCreate/Extensions.cs +++ b/LanguageTagsCreate/Extensions.cs @@ -34,7 +34,7 @@ internal bool LogAndPropagate( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return false; } @@ -43,7 +43,7 @@ internal bool LogAndHandle( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return true; } } diff --git a/LanguageTagsCreate/HttpClientFactory.cs b/LanguageTagsCreate/HttpClientFactory.cs index db37c50..f84cb7a 100644 --- a/LanguageTagsCreate/HttpClientFactory.cs +++ b/LanguageTagsCreate/HttpClientFactory.cs @@ -29,10 +29,7 @@ private static ResilienceHandler CreateResilienceHandler() => ShouldHandle = args => ValueTask.FromResult( args.Outcome.Exception != null - || ( - args.Outcome.Result != null - && !args.Outcome.Result.IsSuccessStatusCode - ) + || args.Outcome.Result is { IsSuccessStatusCode: false } ), } ) @@ -46,10 +43,7 @@ private static ResilienceHandler CreateResilienceHandler() => ShouldHandle = args => ValueTask.FromResult( args.Outcome.Exception != null - || ( - args.Outcome.Result != null - && !args.Outcome.Result.IsSuccessStatusCode - ) + || args.Outcome.Result is { IsSuccessStatusCode: false } ), } ) diff --git a/LanguageTagsCreate/LoggerFactory.cs b/LanguageTagsCreate/LoggerFactory.cs index bf604a4..41ca455 100644 --- a/LanguageTagsCreate/LoggerFactory.cs +++ b/LanguageTagsCreate/LoggerFactory.cs @@ -1,4 +1,3 @@ -using Serilog.Debugging; using Serilog.Extensions.Logging; using Serilog.Sinks.SystemConsole.Themes; @@ -7,27 +6,34 @@ namespace ptr727.LanguageTags.Create; internal static class LoggerFactory { private static readonly Lazy s_serilogLoggerFactory = new(() => - new SerilogLoggerFactory(Log.Logger, dispose: false) - ); + { + // Use already configured Log.Logger if set, else create a new logger factory + Serilog.ILogger logger = ReferenceEquals(Log.Logger, Serilog.Core.Logger.None) + ? Create() + : Log.Logger; + bool disposeLogger = !ReferenceEquals(logger, Log.Logger); + return new SerilogLoggerFactory(logger, dispose: disposeLogger); + }); - internal static Serilog.ILogger Create(Options options) + internal static Serilog.ILogger Create(Options? options = null) { - // Enable Serilog debug output to the console - SelfLog.Enable(Console.Error); + // Log to the console LoggerConfiguration loggerConfiguration = new LoggerConfiguration() - .MinimumLevel.Is(options.Level) + .MinimumLevel.Is(options?.Level ?? LogEventLevel.Information) .MinimumLevel.Override( typeof(LogExtensions.LogOverride).FullName!, LogEventLevel.Verbose ) .Enrich.WithThreadId() + .Enrich.WithThreadName() .WriteTo.Console( theme: AnsiConsoleTheme.Code, - formatProvider: CultureInfo.InvariantCulture + formatProvider: CultureInfo.InvariantCulture, + outputTemplate: "[{Timestamp:HH:mm:ss} {Level:u3}] [t:{ThreadId}{ThreadName}] {Message:lj}{NewLine}{Exception}" ); - // Add file sink if logFile is specified - if (!string.IsNullOrEmpty(options.File)) + // Log to file + if (!string.IsNullOrEmpty(options?.File)) { if (options.FileClear && File.Exists(options.File)) { @@ -35,13 +41,13 @@ internal static Serilog.ILogger Create(Options options) } _ = loggerConfiguration.WriteTo.File( options.File, - formatProvider: CultureInfo.InvariantCulture + formatProvider: CultureInfo.InvariantCulture, + outputTemplate: "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} {Level:u3}] [t:{ThreadId}{ThreadName}] {Message:lj}{NewLine}{Exception}" ); } // Create logger - Log.Logger = loggerConfiguration.CreateLogger(); - return Log.Logger; + return loggerConfiguration.CreateLogger(); } internal static ILoggerFactory CreateLoggerFactory() => s_serilogLoggerFactory.Value; diff --git a/LanguageTagsCreate/Program.cs b/LanguageTagsCreate/Program.cs index c904236..66e8812 100644 --- a/LanguageTagsCreate/Program.cs +++ b/LanguageTagsCreate/Program.cs @@ -10,24 +10,37 @@ CancellationToken cancellationToken internal static async Task Main(string[] args) { - // Parse commandline - CommandLine commandLine = new(args); - - // Bypass startup for errors or help and version commands - if (CommandLine.BypassStartup(commandLine.Result)) + try { - return await commandLine.Result.InvokeAsync().ConfigureAwait(false); - } + // Parse commandline + CommandLine commandLine = new(args); + commandLine.Result.InvocationConfiguration.EnableDefaultExceptionHandler = false; + commandLine.Result.InvocationConfiguration.ProcessTerminationTimeout = null; - // Create logger - _ = LoggerFactory.Create(commandLine.CreateOptions(commandLine.Result).LogOptions); - Log.Logger.LogOverrideContext().Information("Starting: {Args}", args); + // Bypass startup for errors or help and version commands + if (CommandLine.BypassStartup(commandLine.Result)) + { + return await commandLine.Result.InvokeAsync().ConfigureAwait(false); + } - // Initialize library with static logger - LogOptions.SetFactory(LoggerFactory.CreateLoggerFactory()); + // Create logger + Log.Logger = LoggerFactory.Create( + commandLine.CreateOptions(commandLine.Result).LogOptions + ); + LogOptions.SetFactory(LoggerFactory.CreateLoggerFactory()); - // Invoke command - return await commandLine.Result.InvokeAsync().ConfigureAwait(false); + // Invoke command + Log.Logger.LogOverrideContext().Information("Starting: {Args}", args); + return await commandLine.Result.InvokeAsync().ConfigureAwait(false); + } + catch (Exception ex) when (Log.Logger.LogAndHandle(ex)) + { + return 1; + } + finally + { + await Log.CloseAndFlushAsync().ConfigureAwait(false); + } } internal async Task ExecuteAsync() diff --git a/LanguageTagsTests/.editorconfig b/LanguageTagsTests/.editorconfig index 9acafa5..1b0e933 100644 --- a/LanguageTagsTests/.editorconfig +++ b/LanguageTagsTests/.editorconfig @@ -8,3 +8,12 @@ dotnet_diagnostic.CA1707.severity = none # Ignore unused private members dotnet_diagnostic.IDE0052.severity = none + +# Ignore expression value is never used +dotnet_diagnostic.IDE0058.severity = none + +# Ignore missing XML docs for public test APIs +dotnet_diagnostic.CS1591.severity = none + +# Ignore making public types internal +dotnet_diagnostic.CA1515.severity = none diff --git a/LanguageTagsTests/Fixture.cs b/LanguageTagsTests/Fixture.cs index 5e35a36..357c775 100644 --- a/LanguageTagsTests/Fixture.cs +++ b/LanguageTagsTests/Fixture.cs @@ -1,18 +1,22 @@ +// Single instance for all tests in assembly +[assembly: AssemblyFixture(typeof(ptr727.LanguageTags.Tests.SingleInstanceFixture))] + namespace ptr727.LanguageTags.Tests; -[CollectionDefinition("DisableParallelDefinition", DisableParallelization = true)] +// Sequential execution fixture +[CollectionDefinition("Sequential Test Collection", DisableParallelization = true)] +public class SequentialCollectionDefinition; + [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Maintainability", - "CA1515:Consider making public types internal", - Justification = "https://xunit.net/docs/running-tests-in-parallel" + "Design", + "CA1063:Implement IDisposable Correctly", + Justification = "No unmanaged resources to dispose" )] -public sealed class DisableParallelDefinition { } - -internal static class Fixture // : IDisposable +public class SingleInstanceFixture : IDisposable { - // public void Dispose() => GC.SuppressFinalize(this); + public void Dispose() => GC.SuppressFinalize(this); - public static string GetDataFilePath(string fileName) => + protected static string GetDataFilePath(string fileName) => Path.GetFullPath( Path.Combine(AppContext.BaseDirectory, "../../../../LanguageData", fileName) ); diff --git a/LanguageTagsTests/Iso6392Tests.cs b/LanguageTagsTests/Iso6392Tests.cs index d12b6bf..c311251 100644 --- a/LanguageTagsTests/Iso6392Tests.cs +++ b/LanguageTagsTests/Iso6392Tests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class Iso6392Tests +public sealed class Iso6392Tests : SingleInstanceFixture { [Fact] public void Create() @@ -11,22 +11,42 @@ public void Create() } [Fact] - public async Task LoadData() + public async Task FromData() { - Iso6392Data iso6392 = await Iso6392Data.LoadDataAsync( - Fixture.GetDataFilePath(Iso6392Data.DataFileName) + Iso6392Data iso6392 = await Iso6392Data.FromDataAsync( + GetDataFilePath(Iso6392Data.DataFileName) ); _ = iso6392.Should().NotBeNull(); _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); } [Fact] - public async Task LoadJson() + public async Task FromJson() { - Iso6392Data? iso6392 = await Iso6392Data.LoadJsonAsync( - Fixture.GetDataFilePath(Iso6392Data.DataFileName + ".json") + Iso6392Data iso6392 = await Iso6392Data.FromJsonAsync( + GetDataFilePath(Iso6392Data.DataFileName + ".json") ); _ = iso6392.Should().NotBeNull(); + _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); + } + + [Fact] + public async Task Create_FromData_FromJson_RecordsMatch() + { + Iso6392Data created = Iso6392Data.Create(); + Iso6392Data fromData = await Iso6392Data.FromDataAsync( + GetDataFilePath(Iso6392Data.DataFileName) + ); + Iso6392Data fromJson = await Iso6392Data.FromJsonAsync( + GetDataFilePath(Iso6392Data.DataFileName + ".json") + ); + + _ = created.RecordList.Length.Should().BeGreaterThan(0); + _ = fromData.RecordList.Length.Should().BeGreaterThan(0); + _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); + + _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); + _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); } [Fact] @@ -38,10 +58,10 @@ public async Task SaveJsonAsync_RoundTrip() string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); try { - await Iso6392Data.SaveJsonAsync(tempFile, iso6392); - Iso6392Data? roundTrip = await Iso6392Data.LoadJsonAsync(tempFile); + await iso6392.SaveJsonAsync(tempFile); + Iso6392Data roundTrip = await Iso6392Data.FromJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); - _ = roundTrip!.RecordList.Length.Should().Be(iso6392.RecordList.Length); + _ = roundTrip.RecordList.Length.Should().Be(iso6392.RecordList.Length); } finally { @@ -91,13 +111,19 @@ public void Find_Fail(string input) _ = record.Should().BeNull(); } - [Theory] - [InlineData(null)] - [InlineData("")] - public void Find_NullOrEmpty_ReturnsNull(string? input) + [Fact] + public void Find_Null_ReturnsNull() { Iso6392Data iso6392 = Iso6392Data.Create(); - Iso6392Record? record = iso6392.Find(input, false); + Iso6392Record? record = iso6392.Find(null!, false); + _ = record.Should().BeNull(); + } + + [Fact] + public void Find_Empty_ReturnsNull() + { + Iso6392Data iso6392 = Iso6392Data.Create(); + Iso6392Record? record = iso6392.Find(string.Empty, false); _ = record.Should().BeNull(); } } diff --git a/LanguageTagsTests/Iso6393Tests.cs b/LanguageTagsTests/Iso6393Tests.cs index ecd914e..bae6d67 100644 --- a/LanguageTagsTests/Iso6393Tests.cs +++ b/LanguageTagsTests/Iso6393Tests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class Iso6393Tests +public sealed class Iso6393Tests : SingleInstanceFixture { [Fact] public void Create() @@ -11,22 +11,42 @@ public void Create() } [Fact] - public async Task LoadData() + public async Task FromData() { - Iso6393Data iso6393 = await Iso6393Data.LoadDataAsync( - Fixture.GetDataFilePath(Iso6393Data.DataFileName) + Iso6393Data iso6393 = await Iso6393Data.FromDataAsync( + GetDataFilePath(Iso6393Data.DataFileName) ); _ = iso6393.Should().NotBeNull(); _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); } [Fact] - public async Task LoadJson() + public async Task FromJson() { - Iso6393Data? iso6393 = await Iso6393Data.LoadJsonAsync( - Fixture.GetDataFilePath(Iso6393Data.DataFileName + ".json") + Iso6393Data iso6393 = await Iso6393Data.FromJsonAsync( + GetDataFilePath(Iso6393Data.DataFileName + ".json") ); _ = iso6393.Should().NotBeNull(); + _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); + } + + [Fact] + public async Task Create_FromData_FromJson_RecordsMatch() + { + Iso6393Data created = Iso6393Data.Create(); + Iso6393Data fromData = await Iso6393Data.FromDataAsync( + GetDataFilePath(Iso6393Data.DataFileName) + ); + Iso6393Data fromJson = await Iso6393Data.FromJsonAsync( + GetDataFilePath(Iso6393Data.DataFileName + ".json") + ); + + _ = created.RecordList.Length.Should().BeGreaterThan(0); + _ = fromData.RecordList.Length.Should().BeGreaterThan(0); + _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); + + _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); + _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); } [Fact] @@ -38,10 +58,10 @@ public async Task SaveJsonAsync_RoundTrip() string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); try { - await Iso6393Data.SaveJsonAsync(tempFile, iso6393); - Iso6393Data? roundTrip = await Iso6393Data.LoadJsonAsync(tempFile); + await iso6393.SaveJsonAsync(tempFile); + Iso6393Data roundTrip = await Iso6393Data.FromJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); - _ = roundTrip!.RecordList.Length.Should().Be(iso6393.RecordList.Length); + _ = roundTrip.RecordList.Length.Should().Be(iso6393.RecordList.Length); } finally { @@ -91,13 +111,19 @@ public void Find_Fail(string input) _ = record.Should().BeNull(); } - [Theory] - [InlineData(null)] - [InlineData("")] - public void Find_NullOrEmpty_ReturnsNull(string? input) + [Fact] + public void Find_Null_ReturnsNull() { Iso6393Data iso6393 = Iso6393Data.Create(); - Iso6393Record? record = iso6393.Find(input, false); + Iso6393Record? record = iso6393.Find(null!, false); + _ = record.Should().BeNull(); + } + + [Fact] + public void Find_Empty_ReturnsNull() + { + Iso6393Data iso6393 = Iso6393Data.Create(); + Iso6393Record? record = iso6393.Find(string.Empty, false); _ = record.Should().BeNull(); } } diff --git a/LanguageTagsTests/LanguageLookupTests.cs b/LanguageTagsTests/LanguageLookupTests.cs index 6cacae0..55c4d57 100644 --- a/LanguageTagsTests/LanguageLookupTests.cs +++ b/LanguageTagsTests/LanguageLookupTests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class LanguageLookupTests +public sealed class LanguageLookupTests : SingleInstanceFixture { [Theory] [InlineData("afr", "af")] diff --git a/LanguageTagsTests/LanguageTagBuilderTests.cs b/LanguageTagsTests/LanguageTagBuilderTests.cs index 1455ff8..cb91560 100644 --- a/LanguageTagsTests/LanguageTagBuilderTests.cs +++ b/LanguageTagsTests/LanguageTagBuilderTests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class LanguageTagBuilderTests +public sealed class LanguageTagBuilderTests : SingleInstanceFixture { [Fact] public void Build_Pass() @@ -91,25 +91,6 @@ public void Normalize_Pass() _ = languageTag.ToString().Should().Be("en-a-aaa-bbb-b-ccc-x-a-ccc"); } - [Fact] - public void Normalize_WithOptions_Pass() - { - Options options = new(); - - // en-Latn-GB-boont-r-extended-sequence-x-private - LanguageTag? languageTag = new LanguageTagBuilder() - .Language("en") - .Script("latn") - .Region("gb") - .VariantAdd("boont") - .ExtensionAdd('r', ["extended", "sequence"]) - .PrivateUseAdd("private") - .Normalize(options); - _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-GB-boont-r-extended-sequence-x-private"); - } - [Fact] public void Build_Fail() { diff --git a/LanguageTagsTests/LanguageTagParserTests.cs b/LanguageTagsTests/LanguageTagParserTests.cs index eb51c1c..47a23b0 100644 --- a/LanguageTagsTests/LanguageTagParserTests.cs +++ b/LanguageTagsTests/LanguageTagParserTests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public class LanguageTagParserTests +public class LanguageTagParserTests : SingleInstanceFixture { [Theory] [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] diff --git a/LanguageTagsTests/LanguageTagTests.cs b/LanguageTagsTests/LanguageTagTests.cs index bc30cd2..63b9914 100644 --- a/LanguageTagsTests/LanguageTagTests.cs +++ b/LanguageTagsTests/LanguageTagTests.cs @@ -2,7 +2,7 @@ namespace ptr727.LanguageTags.Tests; -public class LanguageTagTests +public class LanguageTagTests : SingleInstanceFixture { [Theory] [InlineData("en-US")] @@ -13,21 +13,7 @@ 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("en-US")] - [InlineData("zh-Hans-CN")] - [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] - [InlineData("x-all-private")] - public void Parse_WithOptions_Pass(string tag) - { - Options options = new(); - LanguageTag? languageTag = LanguageTag.Parse(tag, options); - _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(tag); } @@ -45,21 +31,6 @@ public void Parse_Static_ReturnsNull(string tag) _ = languageTag.Should().BeNull(); } - [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_WithOptions_ReturnsNull(string tag) - { - Options options = new(); - LanguageTag? languageTag = LanguageTag.Parse(tag, options); - _ = languageTag.Should().BeNull(); - } - [Theory] [InlineData("en-US")] [InlineData("zh-Hans-CN")] @@ -69,21 +40,7 @@ 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("en-US")] - [InlineData("zh-Hans-CN")] - [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] - public void TryParse_WithOptions_Success(string tag) - { - Options options = new(); - bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag, options); - _ = result.Should().BeTrue(); - _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(tag); } @@ -103,23 +60,6 @@ public void TryParse_Failure(string tag) _ = languageTag.Should().BeNull(); } - [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_WithOptions_Failure(string tag) - { - Options options = new(); - bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag, options); - _ = result.Should().BeFalse(); - _ = languageTag.Should().BeNull(); - } - [Fact] public void CreateBuilder_Pass() { @@ -144,9 +84,9 @@ public void Normalize_Instance_Pass(string tag, string normalized) LanguageTag? languageTag = LanguageTag.Parse(tag); _ = languageTag.Should().NotBeNull(); - LanguageTag? normalizedTag = languageTag!.Normalize(); + LanguageTag? normalizedTag = languageTag.Normalize(); _ = normalizedTag.Should().NotBeNull(); - _ = normalizedTag!.Validate().Should().BeTrue(); + _ = normalizedTag.Validate().Should().BeTrue(); _ = normalizedTag.ToString().Should().Be(normalized); } @@ -176,7 +116,7 @@ public void Parse_Normalize_Roundtrip() LanguageTag? parsed = LanguageTag.Parse(original); _ = parsed.Should().NotBeNull(); - LanguageTag? normalized = parsed!.Normalize(); + LanguageTag? normalized = parsed.Normalize(); _ = normalized.Should().NotBeNull(); _ = normalized.ToString().Should().Be("en-GB-boont"); @@ -212,7 +152,7 @@ public void ParseAndNormalize_ValidTag_ReturnsNormalized(string tag, string expe { LanguageTag? result = LanguageTag.ParseAndNormalize(tag); _ = result.Should().NotBeNull(); - _ = result!.ToString().Should().Be(expected); + _ = result.ToString().Should().Be(expected); } [Fact] @@ -222,34 +162,12 @@ public void ParseAndNormalize_InvalidTag_ReturnsNull() _ = result.Should().BeNull(); } - [Theory] - [InlineData("en-latn-us", "en-US")] - [InlineData("zh-cmn-Hans-CN", "cmn-Hans-CN")] - public void ParseAndNormalize_WithOptions_ValidTag_ReturnsNormalized( - string tag, - string expected - ) - { - Options options = new(); - LanguageTag? result = LanguageTag.ParseAndNormalize(tag, options); - _ = result.Should().NotBeNull(); - _ = result!.ToString().Should().Be(expected); - } - - [Fact] - public void ParseAndNormalize_WithOptions_InvalidTag_ReturnsNull() - { - Options options = new(); - LanguageTag? result = LanguageTag.ParseAndNormalize("invalid-tag", options); - _ = result.Should().BeNull(); - } - [Fact] public void IsValid_Property_ValidTag_ReturnsTrue() { LanguageTag? tag = LanguageTag.Parse("en-US"); _ = tag.Should().NotBeNull(); - _ = tag!.IsValid.Should().BeTrue(); + _ = tag.IsValid.Should().BeTrue(); } [Theory] @@ -311,7 +229,7 @@ public void Equals_SameTags_ReturnsTrue() _ = tag1.Should().NotBeNull(); _ = tag2.Should().NotBeNull(); - _ = tag1!.Equals(tag2).Should().BeTrue(); + _ = tag1.Equals(tag2).Should().BeTrue(); _ = tag1.Equals((object?)tag2).Should().BeTrue(); } @@ -323,7 +241,7 @@ public void Equals_DifferentTags_ReturnsFalse() _ = tag1.Should().NotBeNull(); _ = tag2.Should().NotBeNull(); - _ = tag1!.Equals(tag2).Should().BeFalse(); + _ = tag1.Equals(tag2).Should().BeFalse(); } [Fact] @@ -498,7 +416,7 @@ public void LanguageTag_PropertiesAreReadable(string tag) _ = languageTag.Should().NotBeNull(); // Verify all properties are accessible - _ = languageTag!.Language.Should().NotBeNull(); + _ = languageTag.Language.Should().NotBeNull(); _ = languageTag.ExtendedLanguage.Should().NotBeNull(); _ = languageTag.Script.Should().NotBeNull(); _ = languageTag.Region.Should().NotBeNull(); diff --git a/LanguageTagsTests/LogOptionsTests.cs b/LanguageTagsTests/LogOptionsTests.cs index df5806c..4a06069 100644 --- a/LanguageTagsTests/LogOptionsTests.cs +++ b/LanguageTagsTests/LogOptionsTests.cs @@ -3,132 +3,57 @@ namespace ptr727.LanguageTags.Tests; -[Collection("DisableParallelDefinition")] -public sealed class LogOptionsTests +[Collection("Sequential Test Collection")] +public sealed class LogOptionsTests : SingleInstanceFixture { [Fact] public void CreateLogger_UsesFactory_WhenFactorySet() { ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; using TestLoggerFactory testFactory = new(); - TestLogger testLogger = new(); try { LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = testLogger; ILogger logger = LogOptions.CreateLogger("category"); - _ = logger.Should().BeSameAs(testFactory.Logger); + _ = LogOptions.LoggerFactory.Should().BeSameAs(testFactory); _ = testFactory.LastCategory.Should().Be("category"); + _ = logger.Should().NotBeNull(); } finally { LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; } } [Fact] - public void CreateLogger_UsesLogger_WhenFactoryDefault() + public void CreateLogger_UsesNullLogger_WhenFactoryDefault() { ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); try { LogOptions.LoggerFactory = NullLoggerFactory.Instance; - LogOptions.Logger = testLogger; ILogger logger = LogOptions.CreateLogger("category"); - _ = logger.Should().BeSameAs(testLogger); + _ = logger.Should().BeSameAs(NullLogger.Instance); } finally { LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; } } [Fact] - public void CreateLogger_WithOptions_UsesOptionsFactory() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - using TestLoggerFactory testFactory = new(); - TestLogger testLogger = new(); - Options options = new() { LoggerFactory = testFactory, Logger = testLogger }; - - try - { - LogOptions.LoggerFactory = NullLoggerFactory.Instance; - LogOptions.Logger = NullLogger.Instance; - - ILogger logger = LogOptions.CreateLogger("category", options); - - _ = logger.Should().BeSameAs(testFactory.Logger); - _ = testFactory.LastCategory.Should().Be("category"); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } + public void CreateLogger_WithNullCategory_ThrowsArgumentNullException() => + _ = Assert.Throws(() => LogOptions.CreateLogger(null!)); [Fact] - public void CreateLogger_WithOptions_UsesOptionsLoggerWhenNoFactory() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); - Options options = new() { Logger = testLogger }; - - try - { - using TestLoggerFactory testFactory = new(); - LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = new TestLogger(); - - ILogger logger = LogOptions.CreateLogger("category", options); - - _ = logger.Should().BeSameAs(testLogger); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void CreateLogger_WithOptions_FallsBackToGlobal() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - using TestLoggerFactory testFactory = new(); - Options options = new(); - - try - { - LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = new TestLogger(); - - ILogger logger = LogOptions.CreateLogger("category", options); - - _ = logger.Should().BeSameAs(testFactory.Logger); - _ = testFactory.LastCategory.Should().Be("category"); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } + public void CreateLogger_WithEmptyCategory_ThrowsArgumentException() => + _ = Assert.Throws(() => LogOptions.CreateLogger(" ")); [Fact] public void TrySetFactory_WhenUnset_ReturnsTrueAndSets() @@ -173,49 +98,6 @@ public void TrySetFactory_WhenAlreadySet_ReturnsFalseAndDoesNotOverwrite() } } - [Fact] - public void TrySetLogger_WhenUnset_ReturnsTrueAndSets() - { - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); - - try - { - LogOptions.Logger = NullLogger.Instance; - - bool result = LogOptions.TrySetLogger(testLogger); - - _ = result.Should().BeTrue(); - _ = LogOptions.Logger.Should().BeSameAs(testLogger); - } - finally - { - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void TrySetLogger_WhenAlreadySet_ReturnsFalseAndDoesNotOverwrite() - { - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); - TestLogger otherLogger = new(); - - try - { - LogOptions.Logger = testLogger; - - bool result = LogOptions.TrySetLogger(otherLogger); - - _ = result.Should().BeFalse(); - _ = LogOptions.Logger.Should().BeSameAs(testLogger); - } - finally - { - LogOptions.Logger = originalLogger; - } - } - private sealed class TestLoggerFactory : ILoggerFactory { public ILogger Logger { get; } = new TestLogger(); diff --git a/LanguageTagsTests/Rfc5646Tests.cs b/LanguageTagsTests/Rfc5646Tests.cs index ca98999..987b68f 100644 --- a/LanguageTagsTests/Rfc5646Tests.cs +++ b/LanguageTagsTests/Rfc5646Tests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public class Rfc5646Tests +public class Rfc5646Tests : SingleInstanceFixture { [Fact] public void Create() @@ -12,25 +12,44 @@ public void Create() } [Fact] - public async Task LoadData() + public async Task FromData() { - Rfc5646Data rfc5646 = await Rfc5646Data.LoadDataAsync( - Fixture.GetDataFilePath(Rfc5646Data.DataFileName) + Rfc5646Data rfc5646 = await Rfc5646Data.FromDataAsync( + GetDataFilePath(Rfc5646Data.DataFileName) ); _ = rfc5646.Should().NotBeNull(); _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); } [Fact] - public async Task LoadJson() + public async Task FromJson() { - Rfc5646Data? rfc5646 = await Rfc5646Data.LoadJsonAsync( - Fixture.GetDataFilePath(Rfc5646Data.DataFileName + ".json") + Rfc5646Data rfc5646 = await Rfc5646Data.FromJsonAsync( + GetDataFilePath(Rfc5646Data.DataFileName + ".json") ); _ = rfc5646.Should().NotBeNull(); _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); } + [Fact] + public async Task Create_FromData_FromJson_RecordsMatch() + { + Rfc5646Data created = Rfc5646Data.Create(); + Rfc5646Data fromData = await Rfc5646Data.FromDataAsync( + GetDataFilePath(Rfc5646Data.DataFileName) + ); + Rfc5646Data fromJson = await Rfc5646Data.FromJsonAsync( + GetDataFilePath(Rfc5646Data.DataFileName + ".json") + ); + + _ = created.RecordList.Length.Should().BeGreaterThan(0); + _ = fromData.RecordList.Length.Should().BeGreaterThan(0); + _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); + + _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); + _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); + } + [Fact] public async Task SaveJsonAsync_RoundTrip() { @@ -40,10 +59,10 @@ public async Task SaveJsonAsync_RoundTrip() string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); try { - await Rfc5646Data.SaveJsonAsync(tempFile, rfc5646); - Rfc5646Data? roundTrip = await Rfc5646Data.LoadJsonAsync(tempFile); + await rfc5646.SaveJsonAsync(tempFile); + Rfc5646Data roundTrip = await Rfc5646Data.FromJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); - _ = roundTrip!.RecordList.Length.Should().Be(rfc5646.RecordList.Length); + _ = roundTrip.RecordList.Length.Should().Be(rfc5646.RecordList.Length); } finally { @@ -100,13 +119,19 @@ public void Find_Fail(string input) _ = record.Should().BeNull(); } - [Theory] - [InlineData(null)] - [InlineData("")] - public void Find_NullOrEmpty_ReturnsNull(string? input) + [Fact] + public void Find_Null_ReturnsNull() { Rfc5646Data rfc5646 = Rfc5646Data.Create(); - Rfc5646Record? record = rfc5646.Find(input, false); + Rfc5646Record? record = rfc5646.Find(null!, false); + _ = record.Should().BeNull(); + } + + [Fact] + public void Find_Empty_ReturnsNull() + { + Rfc5646Data rfc5646 = Rfc5646Data.Create(); + Rfc5646Record? record = rfc5646.Find(string.Empty, false); _ = record.Should().BeNull(); } diff --git a/README.md b/README.md index 6c869c1..67ee29b 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,13 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. **Summary**: -- Refactored the project to follow standard patterns across other projects. -- IO APIs are now async-only (`LoadDataAsync`, `LoadJsonAsync`, `SaveJsonAsync`, `GenCodeAsync`). -- Added logging support for `ILogger` or `ILoggerFactory` per class instance or statically. +- Refactored the project to follow standard patterns used across other projects. +- Added logging support configured through `LogOptions.SetFactory(ILoggerFactory)`. + +> **⚠️ Breaking Changes**: +> +> - IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`. +> - Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync()`. See [Release History](./HISTORY.md) for complete release notes and older versions. @@ -115,7 +119,8 @@ See [Usage](#usage) for detailed usage instructions. ### Tag Lookup -Tag records can be constructed by calling `Create()`, or loaded from data `LoadDataAsync()`, or loaded from JSON `LoadJsonAsync()`.\ +Tag records can be created from embedded data by calling `Create()`, or loaded from data `FromDataAsync()`, or loaded from JSON `FromJsonAsync()`.\ +`FromDataAsync()` and `FromJsonAsync()` are static methods that return populated data instances. The records and record collections are immutable and can safely be reused and shared across threads. Each class implements a `Find(string languageTag, bool includeDescription)` method that will search all tags in all records for a matching tag.\ @@ -132,7 +137,7 @@ record = iso6392.Find("zulu", true); ``` ```csharp -Iso6393Data iso6393 = await Iso6393Data.LoadDataAsync("iso6393"); +Iso6393Data iso6393 = await Iso6393Data.FromDataAsync("iso6393"); Iso6393Record? record = iso6393.Find("zh", false); // record.Id = "zho" // record.Part1 = "zh" @@ -143,7 +148,7 @@ record = iso6393.Find("yue chinese", true); ``` ```csharp -Rfc5646Data rfc5646 = await Rfc5646Data.LoadJsonAsync("rfc5646.json"); +Rfc5646Data rfc5646 = await Rfc5646Data.FromJsonAsync("rfc5646.json"); Rfc5646Record? record = rfc5646.Find("de", false); // record.SubTag = "de" // record.Description[0] = "German" @@ -212,8 +217,8 @@ The `LanguageTagBuilder` class supports fluent builder style tag construction, a The `Build()` method will construct the tag, but will not perform any correctness validation or normalization.\ Use the `Validate()` method to test for shape correctness. See [Tag Validation](#tag-validation) for details. -The `Normalize()` method will build the tag and perform validation and normalization.\ -See [Tag Normalization](#tag-normalization) for details. +The `Normalize()` method will build the tag and perform normalization only.\ +Use `Validate()` to check structural correctness. See [Tag Normalization](#tag-normalization) for details. ```csharp LanguageTag languageTag = LanguageTag.CreateBuilder() @@ -235,7 +240,7 @@ string tag = languageTag.ToString(); // "x-private-use" ``` ```csharp -LanguageTag? languageTag = LanguageTag.CreateBuilder() +LanguageTag languageTag = LanguageTag.CreateBuilder() .Language("ar") .ExtendedLanguage("arb") .Script("latn") @@ -243,7 +248,7 @@ LanguageTag? languageTag = LanguageTag.CreateBuilder() .VariantAdd("nedis") .VariantAdd("foobar") .Normalize(); -string tag = languageTag?.ToString(); // "arb-Latn-DE-foobar-nedis" +string tag = languageTag.ToString(); // "arb-Latn-DE-foobar-nedis" ``` ### Tag Parser @@ -255,7 +260,7 @@ Parsing will validate all subtags for correctness in type, length, and position, Grandfathered tags will be converted to their current preferred form and parsed as such.\ E.g. `en-gb-oed` -> `en-GB-oxendict`, `i-klingon` -> `tlh`. -The `Normalize()` method will parse the text tag, and perform validation and normalization.\ +The `ParseAndNormalize()` method will parse the text tag and perform normalization.\ See [Tag Normalization](#tag-normalization) for details. ```csharp @@ -290,7 +295,7 @@ Normalization includes the following: - E.g. `iw` -> `he`, `in` -> `id` - Replace extended language subtags with their preferred language subtag values. - E.g. `ar-afb` -> `afb`, `zh-yue` -> `yue` -- Remove or replace redundant subtags their preferred values. +- Remove or replace redundant subtags with their preferred values. - E.g. `zh-cmn-Hant` -> `cmn-Hant`, `zh-gan` -> `gan`, `sgn-CO` -> `csn` - Remove redundant script subtags. - E.g. `af-Latn` -> `af`, `en-Latn` -> `en` @@ -304,13 +309,13 @@ Normalization includes the following: - Sort private use subtags by value. ```csharp -LanguageTag? languageTag = LanguageTag.CreateBuilder() +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(); -string tag = 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 @@ -337,7 +342,7 @@ Validation includes the following: - Subtag shape correctness, see [Format](#format) for a summary. - No duplicate variants, extension prefixes, extension tags, or private tags. -- No missing subtags. +- Does not validate subtag values against the registry or enforce the full grammar beyond these checks. ```csharp LanguageTag languageTag = LanguageTag.CreateBuilder() @@ -366,7 +371,7 @@ using ptr727.LanguageTags; **Debug log configuration**: ```csharp -// Configure global logging (static fallback) +// Configure global logging (static override/factory) using Microsoft.Extensions.Logging; using ptr727.LanguageTags; using Serilog; @@ -381,25 +386,6 @@ ILoggerFactory loggerFactory = new SerilogLoggerFactory(Log.Logger, dispose: tru LogOptions.SetFactory(loggerFactory); ``` -```csharp -// Configure per-call logging (instance logger or factory) -using Microsoft.Extensions.Logging; -using ptr727.LanguageTags; -using Serilog; -using Serilog.Extensions.Logging; - -Log.Logger = new LoggerConfiguration() - .MinimumLevel.Debug() - .WriteTo.Debug() - .CreateLogger(); - -ILoggerFactory loggerFactory = new SerilogLoggerFactory(Log.Logger, dispose: true); -Options options = new() { LoggerFactory = loggerFactory }; - -LanguageTag? tag = LanguageTag.Parse("en-US", options); -LanguageLookup lookup = new(options); -``` - ## Questions or Issues **Tag testing**: @@ -428,7 +414,7 @@ LanguageLookup lookup = new(options); - **[`LanguageData`](./LanguageData/) directory**: - ISO 639-2: [Source](https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt), [Data](./LanguageData/iso6392), [JSON](./LanguageData/iso6392.json), [Code](./LanguageTags/Iso6392DataGen.cs) - ISO 639-3: [Source](https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab), [Data](./LanguageData/iso6393), [JSON](./LanguageData/iso6393.json), [Code](./LanguageTags/Iso6393DataGen.cs) - - RFC 5646 : [Source](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry), [Data](./LanguageData/rfc5646), [JSON](./LanguageData/rfc5646.json), [Code](./LanguageTags/rfc5646DataGen.cs) + - RFC 5646 : [Source](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry), [Data](./LanguageData/rfc5646), [JSON](./LanguageData/rfc5646.json), [Code](./LanguageTags/Rfc5646DataGen.cs) - A weekly [GitHub Actions](./.github/workflows/run-periodic-codegen-pull-request.yml) job keeps the data files up to date and automatically publishes new releases. ## Tag Theory From 696a74d819736cda37162a5f4ce4c2764346b342 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Thu, 12 Feb 2026 03:51:17 -0500 Subject: [PATCH 3/6] Squashmerge (#82) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ptr727 <2061579+ptr727@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/merge-bot-pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/merge-bot-pull-request.yml b/.github/workflows/merge-bot-pull-request.yml index 615ed52..e62689d 100644 --- a/.github/workflows/merge-bot-pull-request.yml +++ b/.github/workflows/merge-bot-pull-request.yml @@ -27,7 +27,7 @@ jobs: - name: Merge pull request step if: steps.metadata.outputs.update-type != 'version-update:semver-major' - run: gh pr merge --auto --merge "$PR_URL" + run: gh pr merge --auto --squash "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}} GH_TOKEN: ${{secrets.GITHUB_TOKEN}} @@ -43,7 +43,7 @@ jobs: steps: - name: Merge pull request step - run: gh pr merge --auto --merge "$PR_URL" + run: gh pr merge --auto --squash "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}} GH_TOKEN: ${{secrets.GITHUB_TOKEN}} From c7be469c7d722527a82d4b2b951a7ef823385d41 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Thu, 12 Feb 2026 04:14:50 -0500 Subject: [PATCH 4/6] Signcommit (#84) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ptr727 <2061579+ptr727@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/run-codegen-pull-request-task.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run-codegen-pull-request-task.yml b/.github/workflows/run-codegen-pull-request-task.yml index 08efd05..cc68985 100644 --- a/.github/workflows/run-codegen-pull-request-task.yml +++ b/.github/workflows/run-codegen-pull-request-task.yml @@ -40,3 +40,4 @@ jobs: body: 'This PR updates the codegen files.' commit-message: 'Update codegen files' delete-branch: true + sign-commits: true From e75cfe34e4240e201a2839bf0b7d167b1625af04 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Thu, 12 Feb 2026 04:55:50 -0500 Subject: [PATCH 5/6] Cleanup (#86) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ptr727 <2061579+ptr727@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/dotnet-tools.json | 4 ++-- LanguageTags/LanguageTags.csproj | 4 ++-- LanguageTagsCreate/LanguageTagsCreate.csproj | 10 +++++----- LanguageTagsCreate/Properties/launchSettings.json | 8 -------- 4 files changed, 9 insertions(+), 17 deletions(-) delete mode 100644 LanguageTagsCreate/Properties/launchSettings.json diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index a6dbde4..2f1a910 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "1.2.5", + "version": "1.2.6", "commands": [ "csharpier" ], @@ -24,4 +24,4 @@ "rollForward": false } } -} +} \ No newline at end of file diff --git a/LanguageTags/LanguageTags.csproj b/LanguageTags/LanguageTags.csproj index a69358d..a9407fa 100644 --- a/LanguageTags/LanguageTags.csproj +++ b/LanguageTags/LanguageTags.csproj @@ -31,10 +31,10 @@ 1.0.0.0 - + diff --git a/LanguageTagsCreate/LanguageTagsCreate.csproj b/LanguageTagsCreate/LanguageTagsCreate.csproj index 2e172c3..e05294b 100644 --- a/LanguageTagsCreate/LanguageTagsCreate.csproj +++ b/LanguageTagsCreate/LanguageTagsCreate.csproj @@ -20,18 +20,18 @@ - + - + - - + + diff --git a/LanguageTagsCreate/Properties/launchSettings.json b/LanguageTagsCreate/Properties/launchSettings.json deleted file mode 100644 index d22c5bd..0000000 --- a/LanguageTagsCreate/Properties/launchSettings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "profiles": { - "LanguageTagsCreate": { - "commandName": "Project", - "commandLineArgs": "$(SolutionDir)" - } - } -} \ No newline at end of file From dd5944914c44f786fcc590698668034f5bdfd20a Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Fri, 13 Feb 2026 09:59:37 -0500 Subject: [PATCH 6/6] Noenv (#88) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ptr727 <2061579+ptr727@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/run-codegen-pull-request-task.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-codegen-pull-request-task.yml b/.github/workflows/run-codegen-pull-request-task.yml index cc68985..c897b94 100644 --- a/.github/workflows/run-codegen-pull-request-task.yml +++ b/.github/workflows/run-codegen-pull-request-task.yml @@ -1,8 +1,5 @@ name: Run codegen and pull request task -env: - PROJECT_FILE: ./LanguageTagsCreate/LanguageTagsCreate.csproj - on: workflow_call: @@ -23,7 +20,9 @@ jobs: uses: actions/checkout@v6 - name: Run codegen step - run: dotnet run --project ${{ env.PROJECT_FILE }} -- --codepath . + run: >- + dotnet run --project ./LanguageTagsCreate/LanguageTagsCreate.csproj -- + --codepath . - name: Format code step run: |