From fb2733b1a2621ea92ad378d8bc98464a08d357aa Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 3 Jun 2019 22:27:17 +0100 Subject: [PATCH] Add ISO-639 codes. --- .../20190603165746_AddIso639.Designer.cs | 61853 +++++++++++++++ .../Migrations/20190603165746_AddIso639.cs | 8154 ++ .../Migrations/cicmContextModelSnapshot.cs | 65323 +++++++++++++++- Cicm.Database/Models/Iso639.cs | 33 + Cicm.Database/Models/cicmContext.cs | 25 + Cicm.Database/Seeders/Iso639.cs | 40 + Cicm.Database/Seeders/Iso639Split/A.cs | 807 + Cicm.Database/Seeders/Iso639Split/B.cs | 907 + Cicm.Database/Seeders/Iso639Split/C.cs | 619 + Cicm.Database/Seeders/Iso639Split/D.cs | 463 + Cicm.Database/Seeders/Iso639Split/E.cs | 249 + Cicm.Database/Seeders/Iso639Split/F.cs | 251 + Cicm.Database/Seeders/Iso639Split/G.cs | 2400 + Cicm.Database/Seeders/Iso639Split/H.cs | 401 + Cicm.Database/Seeders/Iso639Split/I.cs | 313 + Cicm.Database/Seeders/Iso639Split/J.cs | 224 + Cicm.Database/Seeders/Iso639Split/K.cs | 4611 ++ Cicm.Database/Seeders/Iso639Split/L.cs | 540 + Cicm.Database/Seeders/Iso639Split/M.cs | 1052 + Cicm.Database/Seeders/Iso639Split/N.cs | 835 + Cicm.Database/Seeders/Iso639Split/O.cs | 268 + Cicm.Database/Seeders/Iso639Split/P.cs | 588 + Cicm.Database/Seeders/Iso639Split/Q.cs | 142 + Cicm.Database/Seeders/Iso639Split/R.cs | 243 + Cicm.Database/Seeders/Iso639Split/S.cs | 992 + Cicm.Database/Seeders/Iso639Split/T.cs | 848 + Cicm.Database/Seeders/Iso639Split/U.cs | 225 + Cicm.Database/Seeders/Iso639Split/V.cs | 165 + Cicm.Database/Seeders/Iso639Split/W.cs | 280 + Cicm.Database/Seeders/Iso639Split/X.cs | 367 + Cicm.Database/Seeders/Iso639Split/Y.cs | 317 + Cicm.Database/Seeders/Iso639Split/Z.cs | 405 + cicm_web/cicm_web.csproj | 2 +- 33 files changed, 149674 insertions(+), 4268 deletions(-) create mode 100644 Cicm.Database/Migrations/20190603165746_AddIso639.Designer.cs create mode 100644 Cicm.Database/Migrations/20190603165746_AddIso639.cs create mode 100644 Cicm.Database/Models/Iso639.cs create mode 100644 Cicm.Database/Seeders/Iso639.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/A.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/B.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/C.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/D.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/E.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/F.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/G.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/H.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/I.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/J.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/K.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/L.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/M.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/N.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/O.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/P.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/Q.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/R.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/S.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/T.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/U.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/V.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/W.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/X.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/Y.cs create mode 100644 Cicm.Database/Seeders/Iso639Split/Z.cs diff --git a/Cicm.Database/Migrations/20190603165746_AddIso639.Designer.cs b/Cicm.Database/Migrations/20190603165746_AddIso639.Designer.cs new file mode 100644 index 00000000..91ac5b6a --- /dev/null +++ b/Cicm.Database/Migrations/20190603165746_AddIso639.Designer.cs @@ -0,0 +1,61853 @@ +// +using System; +using Cicm.Database.Models; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace Cicm.Database.Migrations +{ + [DbContext(typeof(cicmContext))] + [Migration("20190603165746_AddIso639")] + partial class AddIso639 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") + .HasAnnotation("Relational:MaxIdentifierLength", 64); + + modelBuilder.Entity("Cicm.Database.Models.BrowserTest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Agif") + .ValueGeneratedOnAdd() + .HasColumnName("agif") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Browser") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("browser") + .HasColumnType("varchar(64)") + .HasDefaultValueSql("''") + .HasMaxLength(64); + + b.Property("Colors") + .ValueGeneratedOnAdd() + .HasColumnName("colors") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Flash") + .ValueGeneratedOnAdd() + .HasColumnName("flash") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Frames") + .ValueGeneratedOnAdd() + .HasColumnName("frames") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Gif87") + .ValueGeneratedOnAdd() + .HasColumnName("gif87") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Gif89") + .ValueGeneratedOnAdd() + .HasColumnName("gif89") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Jpeg") + .ValueGeneratedOnAdd() + .HasColumnName("jpeg") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Js") + .ValueGeneratedOnAdd() + .HasColumnName("js") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Os") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("os") + .HasColumnType("varchar(32)") + .HasDefaultValueSql("''") + .HasMaxLength(32); + + b.Property("Platform") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("platform") + .HasColumnType("varchar(8)") + .HasDefaultValueSql("''") + .HasMaxLength(8); + + b.Property("Png") + .ValueGeneratedOnAdd() + .HasColumnName("png") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Pngt") + .ValueGeneratedOnAdd() + .HasColumnName("pngt") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Table") + .ValueGeneratedOnAdd() + .HasColumnName("table") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("UserAgent") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("user_agent") + .HasColumnType("varchar(128)") + .HasDefaultValueSql("''") + .HasMaxLength(128); + + b.Property("Version") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("version") + .HasColumnType("varchar(16)") + .HasDefaultValueSql("''") + .HasMaxLength(16); + + b.HasKey("Id"); + + b.HasIndex("Browser") + .HasName("idx_browser_tests_browser"); + + b.HasIndex("Os") + .HasName("idx_browser_tests_os"); + + b.HasIndex("Platform") + .HasName("idx_browser_tests_platform"); + + b.HasIndex("UserAgent") + .HasName("idx_browser_tests_user_agent"); + + b.HasIndex("Version") + .HasName("idx_browser_tests_version"); + + b.ToTable("browser_tests"); + }); + + modelBuilder.Entity("Cicm.Database.Models.CicmDb", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Updated") + .ValueGeneratedOnAdd() + .HasColumnName("updated") + .HasColumnType("datetime") + .HasDefaultValueSql("'CURRENT_TIMESTAMP'"); + + b.Property("Version") + .HasColumnName("version") + .HasColumnType("int(11)"); + + b.HasKey("Id"); + + b.ToTable("cicm_db"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Company", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Address") + .HasColumnName("address") + .HasColumnType("varchar(80)") + .HasMaxLength(80); + + b.Property("City") + .HasColumnName("city") + .HasColumnType("varchar(80)") + .HasMaxLength(80); + + b.Property("CountryId") + .HasColumnName("country") + .HasColumnType("smallint(3)"); + + b.Property("Facebook") + .HasColumnName("facebook") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("Founded") + .HasColumnName("founded") + .HasColumnType("datetime"); + + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("varchar(128)") + .HasDefaultValueSql("''"); + + b.Property("PostalCode") + .HasColumnName("postal_code") + .HasColumnType("varchar(25)") + .HasMaxLength(25); + + b.Property("Province") + .HasColumnName("province") + .HasColumnType("varchar(80)") + .HasMaxLength(80); + + b.Property("Sold") + .HasColumnName("sold") + .HasColumnType("datetime"); + + b.Property("SoldToId") + .HasColumnName("sold_to") + .HasColumnType("int(11)"); + + b.Property("Status") + .HasColumnName("status") + .HasColumnType("int(11)"); + + b.Property("Twitter") + .HasColumnName("twitter") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("Website") + .HasColumnName("website") + .HasColumnType("varchar(255)") + .HasMaxLength(255); + + b.HasKey("Id"); + + b.HasIndex("Address") + .HasName("idx_companies_address"); + + b.HasIndex("City") + .HasName("idx_companies_city"); + + b.HasIndex("CountryId") + .HasName("idx_companies_country"); + + b.HasIndex("Facebook") + .HasName("idx_companies_facebook"); + + b.HasIndex("Founded") + .HasName("idx_companies_founded"); + + b.HasIndex("Name") + .HasName("idx_companies_name"); + + b.HasIndex("PostalCode") + .HasName("idx_companies_postal_code"); + + b.HasIndex("Province") + .HasName("idx_companies_province"); + + b.HasIndex("Sold") + .HasName("idx_companies_sold"); + + b.HasIndex("SoldToId") + .HasName("idx_companies_sold_to"); + + b.HasIndex("Status") + .HasName("idx_companies_status"); + + b.HasIndex("Twitter") + .HasName("idx_companies_twitter"); + + b.HasIndex("Website") + .HasName("idx_companies_website"); + + b.ToTable("companies"); + }); + + modelBuilder.Entity("Cicm.Database.Models.CompanyDescription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CompanyId"); + + b.Property("Html") + .HasMaxLength(262144); + + b.Property("Text") + .IsRequired() + .HasMaxLength(262144); + + b.HasKey("Id"); + + b.HasIndex("CompanyId"); + + b.HasIndex("Text") + .HasAnnotation("MySql:FullTextIndex", true); + + b.ToTable("CompanyDescriptions"); + }); + + modelBuilder.Entity("Cicm.Database.Models.CompanyLogo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("CompanyId") + .HasColumnName("company_id") + .HasColumnType("int(11)"); + + b.Property("Guid") + .HasColumnName("logo_guid") + .HasColumnType("char(36)"); + + b.Property("Year") + .HasColumnName("year") + .HasColumnType("int(4)"); + + b.HasKey("Id", "CompanyId", "Guid"); + + b.HasIndex("CompanyId") + .HasName("idx_company_id"); + + b.HasIndex("Guid") + .HasName("idx_guid"); + + b.HasIndex("Id") + .IsUnique() + .HasName("idx_id"); + + b.ToTable("company_logos"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Forbidden", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Browser") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("browser") + .HasColumnType("char(128)") + .HasDefaultValueSql("''"); + + b.Property("Date") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("date") + .HasColumnType("char(20)") + .HasDefaultValueSql("''"); + + b.Property("Ip") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("ip") + .HasColumnType("char(16)") + .HasDefaultValueSql("''"); + + b.Property("Referer") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("referer") + .HasColumnType("char(255)") + .HasDefaultValueSql("''"); + + b.HasKey("Id"); + + b.HasIndex("Browser") + .HasName("idx_forbidden_browser"); + + b.HasIndex("Date") + .HasName("idx_forbidden_date"); + + b.HasIndex("Ip") + .HasName("idx_forbidden_ip"); + + b.HasIndex("Referer") + .HasName("idx_forbidden_referer"); + + b.ToTable("forbidden"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Gpu", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); + + b.Property("DieSize") + .HasColumnName("die_size"); + + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); + + b.Property("ModelCode") + .HasColumnName("model_code") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("char(128)") + .HasDefaultValueSql("''") + .HasMaxLength(128); + + b.Property("Package") + .HasColumnName("package") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("Process") + .HasColumnName("process") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("ProcessNm") + .HasColumnName("process_nm"); + + b.Property("Transistors") + .HasColumnName("transistors") + .HasColumnType("bigint(20)"); + + b.HasKey("Id"); + + b.HasIndex("CompanyId") + .HasName("idx_gpus_company"); + + b.HasIndex("DieSize") + .HasName("idx_gpus_die_size"); + + b.HasIndex("Introduced") + .HasName("idx_gpus_introduced"); + + b.HasIndex("ModelCode") + .HasName("idx_gpus_model_code"); + + b.HasIndex("Name") + .HasName("idx_gpus_name"); + + b.HasIndex("Package") + .HasName("idx_gpus_package"); + + b.HasIndex("Process") + .HasName("idx_gpus_process"); + + b.HasIndex("ProcessNm") + .HasName("idx_gpus_process_nm"); + + b.HasIndex("Transistors") + .HasName("idx_gpus_transistors"); + + b.ToTable("gpus"); + }); + + modelBuilder.Entity("Cicm.Database.Models.GpusByMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); + + b.Property("GpuId") + .HasColumnName("gpu") + .HasColumnType("int(11)"); + + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); + + b.HasKey("Id"); + + b.HasIndex("GpuId") + .HasName("idx_gpus_by_machine_gpus"); + + b.HasIndex("MachineId") + .HasName("idx_gpus_by_machine_machine"); + + b.ToTable("gpus_by_machine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.GpusByOwnedMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("GpuId"); + + b.Property("OwnedMachineId"); + + b.HasKey("Id"); + + b.HasIndex("GpuId"); + + b.HasIndex("OwnedMachineId"); + + b.ToTable("GpusByOwnedMachine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.InstructionSet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Name") + .IsRequired() + .HasColumnName("instruction_set") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.HasKey("Id"); + + b.ToTable("instruction_sets"); + }); + + modelBuilder.Entity("Cicm.Database.Models.InstructionSetExtension", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Extension") + .IsRequired() + .HasColumnName("extension") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.HasKey("Id"); + + b.ToTable("instruction_set_extensions"); + }); + + modelBuilder.Entity("Cicm.Database.Models.InstructionSetExtensionsByProcessor", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("ProcessorId") + .HasColumnName("processor_id") + .HasColumnType("int(11)"); + + b.Property("ExtensionId") + .HasColumnName("extension_id") + .HasColumnType("int(11)"); + + b.HasKey("Id", "ProcessorId", "ExtensionId"); + + b.HasIndex("ExtensionId") + .HasName("idx_setextension_extension"); + + b.HasIndex("ProcessorId") + .HasName("idx_setextension_processor"); + + b.ToTable("instruction_set_extensions_by_processor"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Iso31661Numeric", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("smallint(3)"); + + b.Property("Name") + .IsRequired() + .HasColumnName("name") + .HasColumnType("varchar(64)") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("Name") + .HasName("idx_name"); + + b.ToTable("iso3166_1_numeric"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Iso639", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(3)"); + + b.Property("Comment") + .HasColumnType("varchar(150)"); + + b.Property("Part1") + .HasColumnType("char(2)"); + + b.Property("Part2B") + .HasColumnType("char(3)"); + + b.Property("Part2T") + .HasColumnType("char(3)"); + + b.Property("ReferenceName") + .IsRequired() + .HasColumnName("Ref_Name") + .HasColumnType("varchar(150)"); + + b.Property("Scope") + .IsRequired() + .HasColumnType("char(1)"); + + b.Property("Type") + .IsRequired() + .HasColumnType("char(1)"); + + b.HasKey("Id"); + + b.HasIndex("Comment"); + + b.HasIndex("Part1"); + + b.HasIndex("Part2B"); + + b.HasIndex("Part2T"); + + b.HasIndex("ReferenceName"); + + b.HasIndex("Scope"); + + b.HasIndex("Type"); + + b.ToTable("ISO_639-3"); + + b.HasData( + new + { + Id = "aaa", + ReferenceName = "Ghotuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "aab", + ReferenceName = "Alumu-Tesu", + Scope = "I", + Type = "L" + }, + new + { + Id = "aac", + ReferenceName = "Ari", + Scope = "I", + Type = "L" + }, + new + { + Id = "aad", + ReferenceName = "Amal", + Scope = "I", + Type = "L" + }, + new + { + Id = "aae", + ReferenceName = "Arbëreshë Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaf", + ReferenceName = "Aranadan", + Scope = "I", + Type = "L" + }, + new + { + Id = "aag", + ReferenceName = "Ambrak", + Scope = "I", + Type = "L" + }, + new + { + Id = "aah", + ReferenceName = "Abu' Arapesh", + Scope = "I", + Type = "L" + }, + new + { + Id = "aai", + ReferenceName = "Arifama-Miniafia", + Scope = "I", + Type = "L" + }, + new + { + Id = "aak", + ReferenceName = "Ankave", + Scope = "I", + Type = "L" + }, + new + { + Id = "aal", + ReferenceName = "Afade", + Scope = "I", + Type = "L" + }, + new + { + Id = "aan", + ReferenceName = "Anambé", + Scope = "I", + Type = "L" + }, + new + { + Id = "aao", + ReferenceName = "Algerian Saharan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aap", + ReferenceName = "Pará Arára", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaq", + ReferenceName = "Eastern Abnaki", + Scope = "I", + Type = "E" + }, + new + { + Id = "aar", + Part1 = "aa", + Part2B = "aar", + Part2T = "aar", + ReferenceName = "Afar", + Scope = "I", + Type = "L" + }, + new + { + Id = "aas", + ReferenceName = "Aasáx", + Scope = "I", + Type = "L" + }, + new + { + Id = "aat", + ReferenceName = "Arvanitika Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "aau", + ReferenceName = "Abau", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaw", + ReferenceName = "Solong", + Scope = "I", + Type = "L" + }, + new + { + Id = "aax", + ReferenceName = "Mandobo Atas", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaz", + ReferenceName = "Amarasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aba", + ReferenceName = "Abé", + Scope = "I", + Type = "L" + }, + new + { + Id = "abb", + ReferenceName = "Bankon", + Scope = "I", + Type = "L" + }, + new + { + Id = "abc", + ReferenceName = "Ambala Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "abd", + ReferenceName = "Manide", + Scope = "I", + Type = "L" + }, + new + { + Id = "abe", + ReferenceName = "Western Abnaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "abf", + ReferenceName = "Abai Sungai", + Scope = "I", + Type = "L" + }, + new + { + Id = "abg", + ReferenceName = "Abaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "abh", + ReferenceName = "Tajiki Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "abi", + ReferenceName = "Abidji", + Scope = "I", + Type = "L" + }, + new + { + Id = "abj", + ReferenceName = "Aka-Bea", + Scope = "I", + Type = "E" + }, + new + { + Id = "abk", + Part1 = "ab", + Part2B = "abk", + Part2T = "abk", + ReferenceName = "Abkhazian", + Scope = "I", + Type = "L" + }, + new + { + Id = "abl", + ReferenceName = "Lampung Nyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "abm", + ReferenceName = "Abanyom", + Scope = "I", + Type = "L" + }, + new + { + Id = "abn", + ReferenceName = "Abua", + Scope = "I", + Type = "L" + }, + new + { + Id = "abo", + ReferenceName = "Abon", + Scope = "I", + Type = "L" + }, + new + { + Id = "abp", + ReferenceName = "Abellen Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "abq", + ReferenceName = "Abaza", + Scope = "I", + Type = "L" + }, + new + { + Id = "abr", + ReferenceName = "Abron", + Scope = "I", + Type = "L" + }, + new + { + Id = "abs", + ReferenceName = "Ambonese Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "abt", + ReferenceName = "Ambulas", + Scope = "I", + Type = "L" + }, + new + { + Id = "abu", + ReferenceName = "Abure", + Scope = "I", + Type = "L" + }, + new + { + Id = "abv", + ReferenceName = "Baharna Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "abw", + ReferenceName = "Pal", + Scope = "I", + Type = "L" + }, + new + { + Id = "abx", + ReferenceName = "Inabaknon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aby", + ReferenceName = "Aneme Wake", + Scope = "I", + Type = "L" + }, + new + { + Id = "abz", + ReferenceName = "Abui", + Scope = "I", + Type = "L" + }, + new + { + Id = "aca", + ReferenceName = "Achagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "acb", + ReferenceName = "Áncá", + Scope = "I", + Type = "L" + }, + new + { + Id = "acd", + ReferenceName = "Gikyode", + Scope = "I", + Type = "L" + }, + new + { + Id = "ace", + Part2B = "ace", + Part2T = "ace", + ReferenceName = "Achinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "acf", + ReferenceName = "Saint Lucian Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "ach", + Part2B = "ach", + Part2T = "ach", + ReferenceName = "Acoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "aci", + ReferenceName = "Aka-Cari", + Scope = "I", + Type = "E" + }, + new + { + Id = "ack", + ReferenceName = "Aka-Kora", + Scope = "I", + Type = "E" + }, + new + { + Id = "acl", + ReferenceName = "Akar-Bale", + Scope = "I", + Type = "E" + }, + new + { + Id = "acm", + ReferenceName = "Mesopotamian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acn", + ReferenceName = "Achang", + Scope = "I", + Type = "L" + }, + new + { + Id = "acp", + ReferenceName = "Eastern Acipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "acq", + ReferenceName = "Ta'izzi-Adeni Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acr", + ReferenceName = "Achi", + Scope = "I", + Type = "L" + }, + new + { + Id = "acs", + ReferenceName = "Acroá", + Scope = "I", + Type = "E" + }, + new + { + Id = "act", + ReferenceName = "Achterhoeks", + Scope = "I", + Type = "L" + }, + new + { + Id = "acu", + ReferenceName = "Achuar-Shiwiar", + Scope = "I", + Type = "L" + }, + new + { + Id = "acv", + ReferenceName = "Achumawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "acw", + ReferenceName = "Hijazi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acx", + ReferenceName = "Omani Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acy", + ReferenceName = "Cypriot Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acz", + ReferenceName = "Acheron", + Scope = "I", + Type = "L" + }, + new + { + Id = "ada", + Part2B = "ada", + Part2T = "ada", + ReferenceName = "Adangme", + Scope = "I", + Type = "L" + }, + new + { + Id = "adb", + ReferenceName = "Adabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "add", + ReferenceName = "Lidzonka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ade", + ReferenceName = "Adele", + Scope = "I", + Type = "L" + }, + new + { + Id = "adf", + ReferenceName = "Dhofari Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "adg", + ReferenceName = "Andegerebinha", + Scope = "I", + Type = "L" + }, + new + { + Id = "adh", + ReferenceName = "Adhola", + Scope = "I", + Type = "L" + }, + new + { + Id = "adi", + ReferenceName = "Adi", + Scope = "I", + Type = "L" + }, + new + { + Id = "adj", + ReferenceName = "Adioukrou", + Scope = "I", + Type = "L" + }, + new + { + Id = "adl", + ReferenceName = "Galo", + Scope = "I", + Type = "L" + }, + new + { + Id = "adn", + ReferenceName = "Adang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ado", + ReferenceName = "Abu", + Scope = "I", + Type = "L" + }, + new + { + Id = "adq", + ReferenceName = "Adangbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "adr", + ReferenceName = "Adonara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ads", + ReferenceName = "Adamorobe Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "adt", + ReferenceName = "Adnyamathanha", + Scope = "I", + Type = "L" + }, + new + { + Id = "adu", + ReferenceName = "Aduge", + Scope = "I", + Type = "L" + }, + new + { + Id = "adw", + ReferenceName = "Amundava", + Scope = "I", + Type = "L" + }, + new + { + Id = "adx", + ReferenceName = "Amdo Tibetan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ady", + Part2B = "ady", + Part2T = "ady", + ReferenceName = "Adyghe", + Scope = "I", + Type = "L" + }, + new + { + Id = "adz", + ReferenceName = "Adzera", + Scope = "I", + Type = "L" + }, + new + { + Id = "aea", + ReferenceName = "Areba", + Scope = "I", + Type = "E" + }, + new + { + Id = "aeb", + ReferenceName = "Tunisian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aec", + ReferenceName = "Saidi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aed", + ReferenceName = "Argentine Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "aee", + ReferenceName = "Northeast Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aek", + ReferenceName = "Haeke", + Scope = "I", + Type = "L" + }, + new + { + Id = "ael", + ReferenceName = "Ambele", + Scope = "I", + Type = "L" + }, + new + { + Id = "aem", + ReferenceName = "Arem", + Scope = "I", + Type = "L" + }, + new + { + Id = "aen", + ReferenceName = "Armenian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "aeq", + ReferenceName = "Aer", + Scope = "I", + Type = "L" + }, + new + { + Id = "aer", + ReferenceName = "Eastern Arrernte", + Scope = "I", + Type = "L" + }, + new + { + Id = "aes", + ReferenceName = "Alsea", + Scope = "I", + Type = "E" + }, + new + { + Id = "aeu", + ReferenceName = "Akeu", + Scope = "I", + Type = "L" + }, + new + { + Id = "aew", + ReferenceName = "Ambakich", + Scope = "I", + Type = "L" + }, + new + { + Id = "aey", + ReferenceName = "Amele", + Scope = "I", + Type = "L" + }, + new + { + Id = "aez", + ReferenceName = "Aeka", + Scope = "I", + Type = "L" + }, + new + { + Id = "afb", + ReferenceName = "Gulf Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "afd", + ReferenceName = "Andai", + Scope = "I", + Type = "L" + }, + new + { + Id = "afe", + ReferenceName = "Putukwam", + Scope = "I", + Type = "L" + }, + new + { + Id = "afg", + ReferenceName = "Afghan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "afh", + Part2B = "afh", + Part2T = "afh", + ReferenceName = "Afrihili", + Scope = "I", + Type = "C" + }, + new + { + Id = "afi", + ReferenceName = "Akrukay", + Scope = "I", + Type = "L" + }, + new + { + Id = "afk", + ReferenceName = "Nanubae", + Scope = "I", + Type = "L" + }, + new + { + Id = "afn", + ReferenceName = "Defaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "afo", + ReferenceName = "Eloyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "afp", + ReferenceName = "Tapei", + Scope = "I", + Type = "L" + }, + new + { + Id = "afr", + Part1 = "af", + Part2B = "afr", + Part2T = "afr", + ReferenceName = "Afrikaans", + Scope = "I", + Type = "L" + }, + new + { + Id = "afs", + ReferenceName = "Afro-Seminole Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "aft", + ReferenceName = "Afitti", + Scope = "I", + Type = "L" + }, + new + { + Id = "afu", + ReferenceName = "Awutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "afz", + ReferenceName = "Obokuitai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aga", + ReferenceName = "Aguano", + Scope = "I", + Type = "E" + }, + new + { + Id = "agb", + ReferenceName = "Legbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "agc", + ReferenceName = "Agatu", + Scope = "I", + Type = "L" + }, + new + { + Id = "agd", + ReferenceName = "Agarabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "age", + ReferenceName = "Angal", + Scope = "I", + Type = "L" + }, + new + { + Id = "agf", + ReferenceName = "Arguni", + Scope = "I", + Type = "L" + }, + new + { + Id = "agg", + ReferenceName = "Angor", + Scope = "I", + Type = "L" + }, + new + { + Id = "agh", + ReferenceName = "Ngelima", + Scope = "I", + Type = "L" + }, + new + { + Id = "agi", + ReferenceName = "Agariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "agj", + ReferenceName = "Argobba", + Scope = "I", + Type = "L" + }, + new + { + Id = "agk", + ReferenceName = "Isarog Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "agl", + ReferenceName = "Fembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "agm", + ReferenceName = "Angaataha", + Scope = "I", + Type = "L" + }, + new + { + Id = "agn", + ReferenceName = "Agutaynen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ago", + ReferenceName = "Tainae", + Scope = "I", + Type = "L" + }, + new + { + Id = "agq", + ReferenceName = "Aghem", + Scope = "I", + Type = "L" + }, + new + { + Id = "agr", + ReferenceName = "Aguaruna", + Scope = "I", + Type = "L" + }, + new + { + Id = "ags", + ReferenceName = "Esimbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "agt", + ReferenceName = "Central Cagayan Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "agu", + ReferenceName = "Aguacateco", + Scope = "I", + Type = "L" + }, + new + { + Id = "agv", + ReferenceName = "Remontado Dumagat", + Scope = "I", + Type = "L" + }, + new + { + Id = "agw", + ReferenceName = "Kahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "agx", + ReferenceName = "Aghul", + Scope = "I", + Type = "L" + }, + new + { + Id = "agy", + ReferenceName = "Southern Alta", + Scope = "I", + Type = "L" + }, + new + { + Id = "agz", + ReferenceName = "Mt. Iriga Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aha", + ReferenceName = "Ahanta", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahb", + ReferenceName = "Axamb", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahg", + ReferenceName = "Qimant", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahh", + ReferenceName = "Aghu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahi", + ReferenceName = "Tiagbamrin Aizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahk", + ReferenceName = "Akha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahl", + ReferenceName = "Igo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahm", + ReferenceName = "Mobumrin Aizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahn", + ReferenceName = "Àhàn", + Scope = "I", + Type = "L" + }, + new + { + Id = "aho", + ReferenceName = "Ahom", + Scope = "I", + Type = "E" + }, + new + { + Id = "ahp", + ReferenceName = "Aproumu Aizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahr", + ReferenceName = "Ahirani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahs", + ReferenceName = "Ashe", + Scope = "I", + Type = "L" + }, + new + { + Id = "aht", + ReferenceName = "Ahtena", + Scope = "I", + Type = "L" + }, + new + { + Id = "aia", + ReferenceName = "Arosi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aib", + ReferenceName = "Ainu (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aic", + ReferenceName = "Ainbai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aid", + ReferenceName = "Alngith", + Scope = "I", + Type = "E" + }, + new + { + Id = "aie", + ReferenceName = "Amara", + Scope = "I", + Type = "L" + }, + new + { + Id = "aif", + ReferenceName = "Agi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aig", + ReferenceName = "Antigua and Barbuda Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "aih", + ReferenceName = "Ai-Cham", + Scope = "I", + Type = "L" + }, + new + { + Id = "aii", + ReferenceName = "Assyrian Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aij", + ReferenceName = "Lishanid Noshan", + Scope = "I", + Type = "L" + }, + new + { + Id = "aik", + ReferenceName = "Ake", + Scope = "I", + Type = "L" + }, + new + { + Id = "ail", + ReferenceName = "Aimele", + Scope = "I", + Type = "L" + }, + new + { + Id = "aim", + ReferenceName = "Aimol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ain", + Part2B = "ain", + Part2T = "ain", + ReferenceName = "Ainu (Japan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aio", + ReferenceName = "Aiton", + Scope = "I", + Type = "L" + }, + new + { + Id = "aip", + ReferenceName = "Burumakok", + Scope = "I", + Type = "L" + }, + new + { + Id = "aiq", + ReferenceName = "Aimaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "air", + ReferenceName = "Airoran", + Scope = "I", + Type = "L" + }, + new + { + Id = "ait", + ReferenceName = "Arikem", + Scope = "I", + Type = "E" + }, + new + { + Id = "aiw", + ReferenceName = "Aari", + Scope = "I", + Type = "L" + }, + new + { + Id = "aix", + ReferenceName = "Aighon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aiy", + ReferenceName = "Ali", + Scope = "I", + Type = "L" + }, + new + { + Id = "aja", + ReferenceName = "Aja (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajg", + ReferenceName = "Aja (Benin)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aji", + ReferenceName = "Ajië", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajn", + ReferenceName = "Andajin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajp", + ReferenceName = "South Levantine Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajt", + ReferenceName = "Judeo-Tunisian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aju", + ReferenceName = "Judeo-Moroccan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajw", + ReferenceName = "Ajawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "ajz", + ReferenceName = "Amri Karbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aka", + Part1 = "ak", + Part2B = "aka", + Part2T = "aka", + ReferenceName = "Akan", + Scope = "M", + Type = "L" + }, + new + { + Id = "akb", + ReferenceName = "Batak Angkola", + Scope = "I", + Type = "L" + }, + new + { + Id = "akc", + ReferenceName = "Mpur", + Scope = "I", + Type = "L" + }, + new + { + Id = "akd", + ReferenceName = "Ukpet-Ehom", + Scope = "I", + Type = "L" + }, + new + { + Id = "ake", + ReferenceName = "Akawaio", + Scope = "I", + Type = "L" + }, + new + { + Id = "akf", + ReferenceName = "Akpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "akg", + ReferenceName = "Anakalangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "akh", + ReferenceName = "Angal Heneng", + Scope = "I", + Type = "L" + }, + new + { + Id = "aki", + ReferenceName = "Aiome", + Scope = "I", + Type = "L" + }, + new + { + Id = "akj", + ReferenceName = "Aka-Jeru", + Scope = "I", + Type = "E" + }, + new + { + Id = "akk", + Part2B = "akk", + Part2T = "akk", + ReferenceName = "Akkadian", + Scope = "I", + Type = "A" + }, + new + { + Id = "akl", + ReferenceName = "Aklanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "akm", + ReferenceName = "Aka-Bo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ako", + ReferenceName = "Akurio", + Scope = "I", + Type = "L" + }, + new + { + Id = "akp", + ReferenceName = "Siwu", + Scope = "I", + Type = "L" + }, + new + { + Id = "akq", + ReferenceName = "Ak", + Scope = "I", + Type = "L" + }, + new + { + Id = "akr", + ReferenceName = "Araki", + Scope = "I", + Type = "L" + }, + new + { + Id = "aks", + ReferenceName = "Akaselem", + Scope = "I", + Type = "L" + }, + new + { + Id = "akt", + ReferenceName = "Akolet", + Scope = "I", + Type = "L" + }, + new + { + Id = "aku", + ReferenceName = "Akum", + Scope = "I", + Type = "L" + }, + new + { + Id = "akv", + ReferenceName = "Akhvakh", + Scope = "I", + Type = "L" + }, + new + { + Id = "akw", + ReferenceName = "Akwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "akx", + ReferenceName = "Aka-Kede", + Scope = "I", + Type = "E" + }, + new + { + Id = "aky", + ReferenceName = "Aka-Kol", + Scope = "I", + Type = "E" + }, + new + { + Id = "akz", + ReferenceName = "Alabama", + Scope = "I", + Type = "L" + }, + new + { + Id = "ala", + ReferenceName = "Alago", + Scope = "I", + Type = "L" + }, + new + { + Id = "alc", + ReferenceName = "Qawasqar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ald", + ReferenceName = "Alladian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ale", + Part2B = "ale", + Part2T = "ale", + ReferenceName = "Aleut", + Scope = "I", + Type = "L" + }, + new + { + Id = "alf", + ReferenceName = "Alege", + Scope = "I", + Type = "L" + }, + new + { + Id = "alh", + ReferenceName = "Alawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ali", + ReferenceName = "Amaimon", + Scope = "I", + Type = "L" + }, + new + { + Id = "alj", + ReferenceName = "Alangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "alk", + ReferenceName = "Alak", + Scope = "I", + Type = "L" + }, + new + { + Id = "all", + ReferenceName = "Allar", + Scope = "I", + Type = "L" + }, + new + { + Id = "alm", + ReferenceName = "Amblong", + Scope = "I", + Type = "L" + }, + new + { + Id = "aln", + ReferenceName = "Gheg Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "alo", + ReferenceName = "Larike-Wakasihu", + Scope = "I", + Type = "L" + }, + new + { + Id = "alp", + ReferenceName = "Alune", + Scope = "I", + Type = "L" + }, + new + { + Id = "alq", + ReferenceName = "Algonquin", + Scope = "I", + Type = "L" + }, + new + { + Id = "alr", + ReferenceName = "Alutor", + Scope = "I", + Type = "L" + }, + new + { + Id = "als", + ReferenceName = "Tosk Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "alt", + Part2B = "alt", + Part2T = "alt", + ReferenceName = "Southern Altai", + Scope = "I", + Type = "L" + }, + new + { + Id = "alu", + ReferenceName = "'Are'are", + Scope = "I", + Type = "L" + }, + new + { + Id = "alw", + ReferenceName = "Alaba-K’abeena", + Scope = "I", + Type = "L" + }, + new + { + Id = "alx", + ReferenceName = "Amol", + Scope = "I", + Type = "L" + }, + new + { + Id = "aly", + ReferenceName = "Alyawarr", + Scope = "I", + Type = "L" + }, + new + { + Id = "alz", + ReferenceName = "Alur", + Scope = "I", + Type = "L" + }, + new + { + Id = "ama", + ReferenceName = "Amanayé", + Scope = "I", + Type = "E" + }, + new + { + Id = "amb", + ReferenceName = "Ambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "amc", + ReferenceName = "Amahuaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "ame", + ReferenceName = "Yanesha'", + Scope = "I", + Type = "L" + }, + new + { + Id = "amf", + ReferenceName = "Hamer-Banna", + Scope = "I", + Type = "L" + }, + new + { + Id = "amg", + ReferenceName = "Amurdak", + Scope = "I", + Type = "L" + }, + new + { + Id = "amh", + Part1 = "am", + Part2B = "amh", + Part2T = "amh", + ReferenceName = "Amharic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ami", + ReferenceName = "Amis", + Scope = "I", + Type = "L" + }, + new + { + Id = "amj", + ReferenceName = "Amdang", + Scope = "I", + Type = "L" + }, + new + { + Id = "amk", + ReferenceName = "Ambai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aml", + ReferenceName = "War-Jaintia", + Scope = "I", + Type = "L" + }, + new + { + Id = "amm", + ReferenceName = "Ama (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "amn", + ReferenceName = "Amanab", + Scope = "I", + Type = "L" + }, + new + { + Id = "amo", + ReferenceName = "Amo", + Scope = "I", + Type = "L" + }, + new + { + Id = "amp", + ReferenceName = "Alamblak", + Scope = "I", + Type = "L" + }, + new + { + Id = "amq", + ReferenceName = "Amahai", + Scope = "I", + Type = "L" + }, + new + { + Id = "amr", + ReferenceName = "Amarakaeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ams", + ReferenceName = "Southern Amami-Oshima", + Scope = "I", + Type = "L" + }, + new + { + Id = "amt", + ReferenceName = "Amto", + Scope = "I", + Type = "L" + }, + new + { + Id = "amu", + ReferenceName = "Guerrero Amuzgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "amv", + ReferenceName = "Ambelau", + Scope = "I", + Type = "L" + }, + new + { + Id = "amw", + ReferenceName = "Western Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "amx", + ReferenceName = "Anmatyerre", + Scope = "I", + Type = "L" + }, + new + { + Id = "amy", + ReferenceName = "Ami", + Scope = "I", + Type = "L" + }, + new + { + Id = "amz", + ReferenceName = "Atampaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "ana", + ReferenceName = "Andaqui", + Scope = "I", + Type = "E" + }, + new + { + Id = "anb", + ReferenceName = "Andoa", + Scope = "I", + Type = "E" + }, + new + { + Id = "anc", + ReferenceName = "Ngas", + Scope = "I", + Type = "L" + }, + new + { + Id = "and", + ReferenceName = "Ansus", + Scope = "I", + Type = "L" + }, + new + { + Id = "ane", + ReferenceName = "Xârâcùù", + Scope = "I", + Type = "L" + }, + new + { + Id = "anf", + ReferenceName = "Animere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ang", + Part2B = "ang", + Part2T = "ang", + ReferenceName = "Old English (ca. 450-1100)", + Scope = "I", + Type = "H" + }, + new + { + Id = "anh", + ReferenceName = "Nend", + Scope = "I", + Type = "L" + }, + new + { + Id = "ani", + ReferenceName = "Andi", + Scope = "I", + Type = "L" + }, + new + { + Id = "anj", + ReferenceName = "Anor", + Scope = "I", + Type = "L" + }, + new + { + Id = "ank", + ReferenceName = "Goemai", + Scope = "I", + Type = "L" + }, + new + { + Id = "anl", + ReferenceName = "Anu-Hkongso Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "anm", + ReferenceName = "Anal", + Scope = "I", + Type = "L" + }, + new + { + Id = "ann", + ReferenceName = "Obolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ano", + ReferenceName = "Andoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "anp", + Part2B = "anp", + Part2T = "anp", + ReferenceName = "Angika", + Scope = "I", + Type = "L" + }, + new + { + Id = "anq", + ReferenceName = "Jarawa (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "anr", + ReferenceName = "Andh", + Scope = "I", + Type = "L" + }, + new + { + Id = "ans", + ReferenceName = "Anserma", + Scope = "I", + Type = "E" + }, + new + { + Id = "ant", + ReferenceName = "Antakarinya", + Scope = "I", + Type = "L" + }, + new + { + Id = "anu", + ReferenceName = "Anuak", + Scope = "I", + Type = "L" + }, + new + { + Id = "anv", + ReferenceName = "Denya", + Scope = "I", + Type = "L" + }, + new + { + Id = "anw", + ReferenceName = "Anaang", + Scope = "I", + Type = "L" + }, + new + { + Id = "anx", + ReferenceName = "Andra-Hus", + Scope = "I", + Type = "L" + }, + new + { + Id = "any", + ReferenceName = "Anyin", + Scope = "I", + Type = "L" + }, + new + { + Id = "anz", + ReferenceName = "Anem", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoa", + ReferenceName = "Angolar", + Scope = "I", + Type = "L" + }, + new + { + Id = "aob", + ReferenceName = "Abom", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoc", + ReferenceName = "Pemon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aod", + ReferenceName = "Andarum", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoe", + ReferenceName = "Angal Enen", + Scope = "I", + Type = "L" + }, + new + { + Id = "aof", + ReferenceName = "Bragat", + Scope = "I", + Type = "L" + }, + new + { + Id = "aog", + ReferenceName = "Angoram", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoh", + ReferenceName = "Arma", + Scope = "I", + Type = "E" + }, + new + { + Id = "aoi", + ReferenceName = "Anindilyakwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoj", + ReferenceName = "Mufian", + Scope = "I", + Type = "L" + }, + new + { + Id = "aok", + ReferenceName = "Arhö", + Scope = "I", + Type = "L" + }, + new + { + Id = "aol", + ReferenceName = "Alor", + Scope = "I", + Type = "L" + }, + new + { + Id = "aom", + ReferenceName = "Ömie", + Scope = "I", + Type = "L" + }, + new + { + Id = "aon", + ReferenceName = "Bumbita Arapesh", + Scope = "I", + Type = "L" + }, + new + { + Id = "aor", + ReferenceName = "Aore", + Scope = "I", + Type = "E" + }, + new + { + Id = "aos", + ReferenceName = "Taikat", + Scope = "I", + Type = "L" + }, + new + { + Id = "aot", + ReferenceName = "Atong (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aou", + ReferenceName = "A'ou", + Scope = "I", + Type = "L" + }, + new + { + Id = "aox", + ReferenceName = "Atorada", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoz", + ReferenceName = "Uab Meto", + Scope = "I", + Type = "L" + }, + new + { + Id = "apb", + ReferenceName = "Sa'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "apc", + ReferenceName = "North Levantine Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "apd", + ReferenceName = "Sudanese Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ape", + ReferenceName = "Bukiyip", + Scope = "I", + Type = "L" + }, + new + { + Id = "apf", + ReferenceName = "Pahanan Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "apg", + ReferenceName = "Ampanang", + Scope = "I", + Type = "L" + }, + new + { + Id = "aph", + ReferenceName = "Athpariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "api", + ReferenceName = "Apiaká", + Scope = "I", + Type = "L" + }, + new + { + Id = "apj", + ReferenceName = "Jicarilla Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apk", + ReferenceName = "Kiowa Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apl", + ReferenceName = "Lipan Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apm", + ReferenceName = "Mescalero-Chiricahua Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apn", + ReferenceName = "Apinayé", + Scope = "I", + Type = "L" + }, + new + { + Id = "apo", + ReferenceName = "Ambul", + Scope = "I", + Type = "L" + }, + new + { + Id = "app", + ReferenceName = "Apma", + Scope = "I", + Type = "L" + }, + new + { + Id = "apq", + ReferenceName = "A-Pucikwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "apr", + ReferenceName = "Arop-Lokep", + Scope = "I", + Type = "L" + }, + new + { + Id = "aps", + ReferenceName = "Arop-Sissano", + Scope = "I", + Type = "L" + }, + new + { + Id = "apt", + ReferenceName = "Apatani", + Scope = "I", + Type = "L" + }, + new + { + Id = "apu", + ReferenceName = "Apurinã", + Scope = "I", + Type = "L" + }, + new + { + Id = "apv", + ReferenceName = "Alapmunte", + Scope = "I", + Type = "E" + }, + new + { + Id = "apw", + ReferenceName = "Western Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apx", + ReferenceName = "Aputai", + Scope = "I", + Type = "L" + }, + new + { + Id = "apy", + ReferenceName = "Apalaí", + Scope = "I", + Type = "L" + }, + new + { + Id = "apz", + ReferenceName = "Safeyoka", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqc", + ReferenceName = "Archi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqd", + ReferenceName = "Ampari Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqg", + ReferenceName = "Arigidi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqm", + ReferenceName = "Atohwaim", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqn", + ReferenceName = "Northern Alta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqp", + ReferenceName = "Atakapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "aqr", + ReferenceName = "Arhâ", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqt", + ReferenceName = "Angaité", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqz", + ReferenceName = "Akuntsu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ara", + Part1 = "ar", + Part2B = "ara", + Part2T = "ara", + ReferenceName = "Arabic", + Scope = "M", + Type = "L" + }, + new + { + Id = "arb", + ReferenceName = "Standard Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "arc", + Part2B = "arc", + Part2T = "arc", + ReferenceName = "Official Aramaic (700-300 BCE)", + Scope = "I", + Type = "A" + }, + new + { + Id = "ard", + ReferenceName = "Arabana", + Scope = "I", + Type = "E" + }, + new + { + Id = "are", + ReferenceName = "Western Arrarnta", + Scope = "I", + Type = "L" + }, + new + { + Id = "arg", + Part1 = "an", + Part2B = "arg", + Part2T = "arg", + ReferenceName = "Aragonese", + Scope = "I", + Type = "L" + }, + new + { + Id = "arh", + ReferenceName = "Arhuaco", + Scope = "I", + Type = "L" + }, + new + { + Id = "ari", + ReferenceName = "Arikara", + Scope = "I", + Type = "L" + }, + new + { + Id = "arj", + ReferenceName = "Arapaso", + Scope = "I", + Type = "E" + }, + new + { + Id = "ark", + ReferenceName = "Arikapú", + Scope = "I", + Type = "L" + }, + new + { + Id = "arl", + ReferenceName = "Arabela", + Scope = "I", + Type = "L" + }, + new + { + Id = "arn", + Part2B = "arn", + Part2T = "arn", + ReferenceName = "Mapudungun", + Scope = "I", + Type = "L" + }, + new + { + Id = "aro", + ReferenceName = "Araona", + Scope = "I", + Type = "L" + }, + new + { + Id = "arp", + Part2B = "arp", + Part2T = "arp", + ReferenceName = "Arapaho", + Scope = "I", + Type = "L" + }, + new + { + Id = "arq", + ReferenceName = "Algerian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "arr", + ReferenceName = "Karo (Brazil)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ars", + ReferenceName = "Najdi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aru", + ReferenceName = "Aruá (Amazonas State)", + Scope = "I", + Type = "E" + }, + new + { + Id = "arv", + ReferenceName = "Arbore", + Scope = "I", + Type = "L" + }, + new + { + Id = "arw", + Part2B = "arw", + Part2T = "arw", + ReferenceName = "Arawak", + Scope = "I", + Type = "L" + }, + new + { + Id = "arx", + ReferenceName = "Aruá (Rodonia State)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ary", + ReferenceName = "Moroccan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "arz", + ReferenceName = "Egyptian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "asa", + ReferenceName = "Asu (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "asb", + ReferenceName = "Assiniboine", + Scope = "I", + Type = "L" + }, + new + { + Id = "asc", + ReferenceName = "Casuarina Coast Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "ase", + ReferenceName = "American Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asf", + ReferenceName = "Auslan", + Scope = "I", + Type = "L" + }, + new + { + Id = "asg", + ReferenceName = "Cishingini", + Scope = "I", + Type = "L" + }, + new + { + Id = "ash", + ReferenceName = "Abishira", + Scope = "I", + Type = "E" + }, + new + { + Id = "asi", + ReferenceName = "Buruwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "asj", + ReferenceName = "Sari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ask", + ReferenceName = "Ashkun", + Scope = "I", + Type = "L" + }, + new + { + Id = "asl", + ReferenceName = "Asilulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "asm", + Part1 = "as", + Part2B = "asm", + Part2T = "asm", + ReferenceName = "Assamese", + Scope = "I", + Type = "L" + }, + new + { + Id = "asn", + ReferenceName = "Xingú Asuriní", + Scope = "I", + Type = "L" + }, + new + { + Id = "aso", + ReferenceName = "Dano", + Scope = "I", + Type = "L" + }, + new + { + Id = "asp", + ReferenceName = "Algerian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asq", + ReferenceName = "Austrian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asr", + ReferenceName = "Asuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ass", + ReferenceName = "Ipulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ast", + Part2B = "ast", + Part2T = "ast", + ReferenceName = "Asturian", + Scope = "I", + Type = "L" + }, + new + { + Id = "asu", + ReferenceName = "Tocantins Asurini", + Scope = "I", + Type = "L" + }, + new + { + Id = "asv", + ReferenceName = "Asoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "asw", + ReferenceName = "Australian Aborigines Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asx", + ReferenceName = "Muratayak", + Scope = "I", + Type = "L" + }, + new + { + Id = "asy", + ReferenceName = "Yaosakor Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "asz", + ReferenceName = "As", + Scope = "I", + Type = "L" + }, + new + { + Id = "ata", + ReferenceName = "Pele-Ata", + Scope = "I", + Type = "L" + }, + new + { + Id = "atb", + ReferenceName = "Zaiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "atc", + ReferenceName = "Atsahuaca", + Scope = "I", + Type = "E" + }, + new + { + Id = "atd", + ReferenceName = "Ata Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ate", + ReferenceName = "Atemble", + Scope = "I", + Type = "L" + }, + new + { + Id = "atg", + ReferenceName = "Ivbie North-Okpela-Arhe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ati", + ReferenceName = "Attié", + Scope = "I", + Type = "L" + }, + new + { + Id = "atj", + ReferenceName = "Atikamekw", + Scope = "I", + Type = "L" + }, + new + { + Id = "atk", + ReferenceName = "Ati", + Scope = "I", + Type = "L" + }, + new + { + Id = "atl", + ReferenceName = "Mt. Iraya Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "atm", + ReferenceName = "Ata", + Scope = "I", + Type = "L" + }, + new + { + Id = "atn", + ReferenceName = "Ashtiani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ato", + ReferenceName = "Atong (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "atp", + ReferenceName = "Pudtol Atta", + Scope = "I", + Type = "L" + }, + new + { + Id = "atq", + ReferenceName = "Aralle-Tabulahan", + Scope = "I", + Type = "L" + }, + new + { + Id = "atr", + ReferenceName = "Waimiri-Atroari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ats", + ReferenceName = "Gros Ventre", + Scope = "I", + Type = "L" + }, + new + { + Id = "att", + ReferenceName = "Pamplona Atta", + Scope = "I", + Type = "L" + }, + new + { + Id = "atu", + ReferenceName = "Reel", + Scope = "I", + Type = "L" + }, + new + { + Id = "atv", + ReferenceName = "Northern Altai", + Scope = "I", + Type = "L" + }, + new + { + Id = "atw", + ReferenceName = "Atsugewi", + Scope = "I", + Type = "L" + }, + new + { + Id = "atx", + ReferenceName = "Arutani", + Scope = "I", + Type = "L" + }, + new + { + Id = "aty", + ReferenceName = "Aneityum", + Scope = "I", + Type = "L" + }, + new + { + Id = "atz", + ReferenceName = "Arta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aua", + ReferenceName = "Asumboa", + Scope = "I", + Type = "L" + }, + new + { + Id = "aub", + ReferenceName = "Alugu", + Scope = "I", + Type = "L" + }, + new + { + Id = "auc", + ReferenceName = "Waorani", + Scope = "I", + Type = "L" + }, + new + { + Id = "aud", + ReferenceName = "Anuta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aug", + ReferenceName = "Aguna", + Scope = "I", + Type = "L" + }, + new + { + Id = "auh", + ReferenceName = "Aushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aui", + ReferenceName = "Anuki", + Scope = "I", + Type = "L" + }, + new + { + Id = "auj", + ReferenceName = "Awjilah", + Scope = "I", + Type = "L" + }, + new + { + Id = "auk", + ReferenceName = "Heyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "aul", + ReferenceName = "Aulua", + Scope = "I", + Type = "L" + }, + new + { + Id = "aum", + ReferenceName = "Asu (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aun", + ReferenceName = "Molmo One", + Scope = "I", + Type = "L" + }, + new + { + Id = "auo", + ReferenceName = "Auyokawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "aup", + ReferenceName = "Makayam", + Scope = "I", + Type = "L" + }, + new + { + Id = "auq", + ReferenceName = "Anus", + Scope = "I", + Type = "L" + }, + new + { + Id = "aur", + ReferenceName = "Aruek", + Scope = "I", + Type = "L" + }, + new + { + Id = "aut", + ReferenceName = "Austral", + Scope = "I", + Type = "L" + }, + new + { + Id = "auu", + ReferenceName = "Auye", + Scope = "I", + Type = "L" + }, + new + { + Id = "auw", + ReferenceName = "Awyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aux", + ReferenceName = "Aurá", + Scope = "I", + Type = "E" + }, + new + { + Id = "auy", + ReferenceName = "Awiyaana", + Scope = "I", + Type = "L" + }, + new + { + Id = "auz", + ReferenceName = "Uzbeki Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ava", + Part1 = "av", + Part2B = "ava", + Part2T = "ava", + ReferenceName = "Avaric", + Scope = "I", + Type = "L" + }, + new + { + Id = "avb", + ReferenceName = "Avau", + Scope = "I", + Type = "L" + }, + new + { + Id = "avd", + ReferenceName = "Alviri-Vidari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ave", + Part1 = "ae", + Part2B = "ave", + Part2T = "ave", + ReferenceName = "Avestan", + Scope = "I", + Type = "A" + }, + new + { + Id = "avi", + ReferenceName = "Avikam", + Scope = "I", + Type = "L" + }, + new + { + Id = "avk", + ReferenceName = "Kotava", + Scope = "I", + Type = "C" + }, + new + { + Id = "avl", + ReferenceName = "Eastern Egyptian Bedawi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "avm", + ReferenceName = "Angkamuthi", + Scope = "I", + Type = "E" + }, + new + { + Id = "avn", + ReferenceName = "Avatime", + Scope = "I", + Type = "L" + }, + new + { + Id = "avo", + ReferenceName = "Agavotaguerra", + Scope = "I", + Type = "E" + }, + new + { + Id = "avs", + ReferenceName = "Aushiri", + Scope = "I", + Type = "E" + }, + new + { + Id = "avt", + ReferenceName = "Au", + Scope = "I", + Type = "L" + }, + new + { + Id = "avu", + ReferenceName = "Avokaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "avv", + ReferenceName = "Avá-Canoeiro", + Scope = "I", + Type = "L" + }, + new + { + Id = "awa", + Part2B = "awa", + Part2T = "awa", + ReferenceName = "Awadhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "awb", + ReferenceName = "Awa (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "awc", + ReferenceName = "Cicipu", + Scope = "I", + Type = "L" + }, + new + { + Id = "awe", + ReferenceName = "Awetí", + Scope = "I", + Type = "L" + }, + new + { + Id = "awg", + ReferenceName = "Anguthimri", + Scope = "I", + Type = "E" + }, + new + { + Id = "awh", + ReferenceName = "Awbono", + Scope = "I", + Type = "L" + }, + new + { + Id = "awi", + ReferenceName = "Aekyom", + Scope = "I", + Type = "L" + }, + new + { + Id = "awk", + ReferenceName = "Awabakal", + Scope = "I", + Type = "E" + }, + new + { + Id = "awm", + ReferenceName = "Arawum", + Scope = "I", + Type = "L" + }, + new + { + Id = "awn", + ReferenceName = "Awngi", + Scope = "I", + Type = "L" + }, + new + { + Id = "awo", + ReferenceName = "Awak", + Scope = "I", + Type = "L" + }, + new + { + Id = "awr", + ReferenceName = "Awera", + Scope = "I", + Type = "L" + }, + new + { + Id = "aws", + ReferenceName = "South Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "awt", + ReferenceName = "Araweté", + Scope = "I", + Type = "L" + }, + new + { + Id = "awu", + ReferenceName = "Central Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "awv", + ReferenceName = "Jair Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "aww", + ReferenceName = "Awun", + Scope = "I", + Type = "L" + }, + new + { + Id = "awx", + ReferenceName = "Awara", + Scope = "I", + Type = "L" + }, + new + { + Id = "awy", + ReferenceName = "Edera Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "axb", + ReferenceName = "Abipon", + Scope = "I", + Type = "E" + }, + new + { + Id = "axe", + ReferenceName = "Ayerrerenge", + Scope = "I", + Type = "E" + }, + new + { + Id = "axg", + ReferenceName = "Mato Grosso Arára", + Scope = "I", + Type = "E" + }, + new + { + Id = "axk", + ReferenceName = "Yaka (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "axl", + ReferenceName = "Lower Southern Aranda", + Scope = "I", + Type = "E" + }, + new + { + Id = "axm", + ReferenceName = "Middle Armenian", + Scope = "I", + Type = "H" + }, + new + { + Id = "axx", + ReferenceName = "Xârâgurè", + Scope = "I", + Type = "L" + }, + new + { + Id = "aya", + ReferenceName = "Awar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayb", + ReferenceName = "Ayizo Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayc", + ReferenceName = "Southern Aymara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayd", + ReferenceName = "Ayabadhu", + Scope = "I", + Type = "E" + }, + new + { + Id = "aye", + ReferenceName = "Ayere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayg", + ReferenceName = "Ginyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayh", + ReferenceName = "Hadrami Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayi", + ReferenceName = "Leyigha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayk", + ReferenceName = "Akuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayl", + ReferenceName = "Libyan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aym", + Part1 = "ay", + Part2B = "aym", + Part2T = "aym", + ReferenceName = "Aymara", + Scope = "M", + Type = "L" + }, + new + { + Id = "ayn", + ReferenceName = "Sanaani Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayo", + ReferenceName = "Ayoreo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayp", + ReferenceName = "North Mesopotamian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayq", + ReferenceName = "Ayi (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayr", + ReferenceName = "Central Aymara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ays", + ReferenceName = "Sorsogon Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayt", + ReferenceName = "Magbukun Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayu", + ReferenceName = "Ayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayy", + ReferenceName = "Tayabas Ayta", + Scope = "I", + Type = "E" + }, + new + { + Id = "ayz", + ReferenceName = "Mai Brat", + Scope = "I", + Type = "L" + }, + new + { + Id = "aza", + ReferenceName = "Azha", + Scope = "I", + Type = "L" + }, + new + { + Id = "azb", + ReferenceName = "South Azerbaijani", + Scope = "I", + Type = "L" + }, + new + { + Id = "azd", + ReferenceName = "Eastern Durango Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "aze", + Part1 = "az", + Part2B = "aze", + Part2T = "aze", + ReferenceName = "Azerbaijani", + Scope = "M", + Type = "L" + }, + new + { + Id = "azg", + ReferenceName = "San Pedro Amuzgos Amuzgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "azj", + ReferenceName = "North Azerbaijani", + Scope = "I", + Type = "L" + }, + new + { + Id = "azm", + ReferenceName = "Ipalapa Amuzgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "azn", + ReferenceName = "Western Durango Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "azo", + ReferenceName = "Awing", + Scope = "I", + Type = "L" + }, + new + { + Id = "azt", + ReferenceName = "Faire Atta", + Scope = "I", + Type = "L" + }, + new + { + Id = "azz", + ReferenceName = "Highland Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "baa", + ReferenceName = "Babatana", + Scope = "I", + Type = "L" + }, + new + { + Id = "bab", + ReferenceName = "Bainouk-Gunyuño", + Scope = "I", + Type = "L" + }, + new + { + Id = "bac", + ReferenceName = "Badui", + Scope = "I", + Type = "L" + }, + new + { + Id = "bae", + ReferenceName = "Baré", + Scope = "I", + Type = "E" + }, + new + { + Id = "baf", + ReferenceName = "Nubaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "bag", + ReferenceName = "Tuki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bah", + ReferenceName = "Bahamas Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "baj", + ReferenceName = "Barakai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bak", + Part1 = "ba", + Part2B = "bak", + Part2T = "bak", + ReferenceName = "Bashkir", + Scope = "I", + Type = "L" + }, + new + { + Id = "bal", + Part2B = "bal", + Part2T = "bal", + ReferenceName = "Baluchi", + Scope = "M", + Type = "L" + }, + new + { + Id = "bam", + Part1 = "bm", + Part2B = "bam", + Part2T = "bam", + ReferenceName = "Bambara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ban", + Part2B = "ban", + Part2T = "ban", + ReferenceName = "Balinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "bao", + ReferenceName = "Waimaha", + Scope = "I", + Type = "L" + }, + new + { + Id = "bap", + ReferenceName = "Bantawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bar", + ReferenceName = "Bavarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bas", + Part2B = "bas", + Part2T = "bas", + ReferenceName = "Basa (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bau", + ReferenceName = "Bada (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bav", + ReferenceName = "Vengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "baw", + ReferenceName = "Bambili-Bambui", + Scope = "I", + Type = "L" + }, + new + { + Id = "bax", + ReferenceName = "Bamun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bay", + ReferenceName = "Batuley", + Scope = "I", + Type = "L" + }, + new + { + Id = "bba", + ReferenceName = "Baatonum", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbb", + ReferenceName = "Barai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbc", + ReferenceName = "Batak Toba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbd", + ReferenceName = "Bau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbe", + ReferenceName = "Bangba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbf", + ReferenceName = "Baibai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbg", + ReferenceName = "Barama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbh", + ReferenceName = "Bugan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbi", + ReferenceName = "Barombi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbj", + ReferenceName = "Ghomálá'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbk", + ReferenceName = "Babanki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbl", + ReferenceName = "Bats", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbm", + ReferenceName = "Babango", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbn", + ReferenceName = "Uneapa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbo", + ReferenceName = "Northern Bobo Madaré", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbp", + ReferenceName = "West Central Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbq", + ReferenceName = "Bamali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbr", + ReferenceName = "Girawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbs", + ReferenceName = "Bakpinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbt", + ReferenceName = "Mburku", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbu", + ReferenceName = "Kulung (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbv", + ReferenceName = "Karnai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbw", + ReferenceName = "Baba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbx", + ReferenceName = "Bubia", + Scope = "I", + Type = "L" + }, + new + { + Id = "bby", + ReferenceName = "Befang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbz", + ReferenceName = "Babalia Creole Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bca", + ReferenceName = "Central Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcb", + ReferenceName = "Bainouk-Samik", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcc", + ReferenceName = "Southern Balochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcd", + ReferenceName = "North Babar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bce", + ReferenceName = "Bamenyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcf", + ReferenceName = "Bamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcg", + ReferenceName = "Baga Pokur", + Scope = "I", + Type = "L" + }, + new + { + Id = "bch", + ReferenceName = "Bariai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bci", + ReferenceName = "Baoulé", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcj", + ReferenceName = "Bardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bck", + ReferenceName = "Bunuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcl", + ReferenceName = "Central Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcm", + ReferenceName = "Bannoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcn", + ReferenceName = "Bali (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bco", + ReferenceName = "Kaluli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcp", + ReferenceName = "Bali (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcq", + ReferenceName = "Bench", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcr", + ReferenceName = "Babine", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcs", + ReferenceName = "Kohumono", + Scope = "I", + Type = "L" + }, + new + { + Id = "bct", + ReferenceName = "Bendi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcu", + ReferenceName = "Awad Bing", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcv", + ReferenceName = "Shoo-Minda-Nye", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcw", + ReferenceName = "Bana", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcy", + ReferenceName = "Bacama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcz", + ReferenceName = "Bainouk-Gunyaamolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bda", + ReferenceName = "Bayot", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdb", + ReferenceName = "Basap", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdc", + ReferenceName = "Emberá-Baudó", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdd", + ReferenceName = "Bunama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bde", + ReferenceName = "Bade", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdf", + ReferenceName = "Biage", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdg", + ReferenceName = "Bonggi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdh", + ReferenceName = "Baka (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdi", + ReferenceName = "Burun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdj", + ReferenceName = "Bai (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdk", + ReferenceName = "Budukh", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdl", + ReferenceName = "Indonesian Bajau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdm", + ReferenceName = "Buduma", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdn", + ReferenceName = "Baldemu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdo", + ReferenceName = "Morom", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdp", + ReferenceName = "Bende", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdq", + ReferenceName = "Bahnar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdr", + ReferenceName = "West Coast Bajau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bds", + ReferenceName = "Burunge", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdt", + ReferenceName = "Bokoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdu", + ReferenceName = "Oroko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdv", + ReferenceName = "Bodo Parja", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdw", + ReferenceName = "Baham", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdx", + ReferenceName = "Budong-Budong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdy", + ReferenceName = "Bandjalang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdz", + ReferenceName = "Badeshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bea", + ReferenceName = "Beaver", + Scope = "I", + Type = "L" + }, + new + { + Id = "beb", + ReferenceName = "Bebele", + Scope = "I", + Type = "L" + }, + new + { + Id = "bec", + ReferenceName = "Iceve-Maci", + Scope = "I", + Type = "L" + }, + new + { + Id = "bed", + ReferenceName = "Bedoanas", + Scope = "I", + Type = "L" + }, + new + { + Id = "bee", + ReferenceName = "Byangsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bef", + ReferenceName = "Benabena", + Scope = "I", + Type = "L" + }, + new + { + Id = "beg", + ReferenceName = "Belait", + Scope = "I", + Type = "L" + }, + new + { + Id = "beh", + ReferenceName = "Biali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bei", + ReferenceName = "Bekati'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bej", + Part2B = "bej", + Part2T = "bej", + ReferenceName = "Beja", + Scope = "I", + Type = "L" + }, + new + { + Id = "bek", + ReferenceName = "Bebeli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bel", + Part1 = "be", + Part2B = "bel", + Part2T = "bel", + ReferenceName = "Belarusian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bem", + Part2B = "bem", + Part2T = "bem", + ReferenceName = "Bemba (Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ben", + Part1 = "bn", + Part2B = "ben", + Part2T = "ben", + ReferenceName = "Bengali", + Scope = "I", + Type = "L" + }, + new + { + Id = "beo", + ReferenceName = "Beami", + Scope = "I", + Type = "L" + }, + new + { + Id = "bep", + ReferenceName = "Besoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "beq", + ReferenceName = "Beembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bes", + ReferenceName = "Besme", + Scope = "I", + Type = "L" + }, + new + { + Id = "bet", + ReferenceName = "Guiberoua Béte", + Scope = "I", + Type = "L" + }, + new + { + Id = "beu", + ReferenceName = "Blagar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bev", + ReferenceName = "Daloa Bété", + Scope = "I", + Type = "L" + }, + new + { + Id = "bew", + ReferenceName = "Betawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bex", + ReferenceName = "Jur Modo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bey", + ReferenceName = "Beli (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bez", + ReferenceName = "Bena (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfa", + ReferenceName = "Bari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfb", + ReferenceName = "Pauri Bareli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfc", + ReferenceName = "Panyi Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfd", + ReferenceName = "Bafut", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfe", + ReferenceName = "Betaf", + Scope = "I", + Type = "L" + }, + new + { + Id = "bff", + ReferenceName = "Bofi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfg", + ReferenceName = "Busang Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfh", + ReferenceName = "Blafe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfi", + ReferenceName = "British Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfj", + ReferenceName = "Bafanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfk", + ReferenceName = "Ban Khor Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfl", + ReferenceName = "Banda-Ndélé", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfm", + ReferenceName = "Mmen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfn", + ReferenceName = "Bunak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfo", + ReferenceName = "Malba Birifor", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfp", + ReferenceName = "Beba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfq", + ReferenceName = "Badaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfr", + ReferenceName = "Bazigar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfs", + ReferenceName = "Southern Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bft", + ReferenceName = "Balti", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfu", + ReferenceName = "Gahri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfw", + ReferenceName = "Bondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfx", + ReferenceName = "Bantayanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfy", + ReferenceName = "Bagheli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfz", + ReferenceName = "Mahasu Pahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bga", + ReferenceName = "Gwamhi-Wuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgb", + ReferenceName = "Bobongko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgc", + ReferenceName = "Haryanvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgd", + ReferenceName = "Rathwi Bareli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bge", + ReferenceName = "Bauria", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgf", + ReferenceName = "Bangandu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgg", + ReferenceName = "Bugun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgi", + ReferenceName = "Giangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgj", + ReferenceName = "Bangolan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgk", + ReferenceName = "Bit", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgl", + ReferenceName = "Bo (Laos)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgn", + ReferenceName = "Western Balochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgo", + ReferenceName = "Baga Koga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgp", + ReferenceName = "Eastern Balochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgq", + ReferenceName = "Bagri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgr", + ReferenceName = "Bawm Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgs", + ReferenceName = "Tagabawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgt", + ReferenceName = "Bughotu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgu", + ReferenceName = "Mbongno", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgv", + ReferenceName = "Warkay-Bipim", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgw", + ReferenceName = "Bhatri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgx", + ReferenceName = "Balkan Gagauz Turkish", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgy", + ReferenceName = "Benggoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgz", + ReferenceName = "Banggai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bha", + ReferenceName = "Bharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhb", + ReferenceName = "Bhili", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhc", + ReferenceName = "Biga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhd", + ReferenceName = "Bhadrawahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhe", + ReferenceName = "Bhaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhf", + ReferenceName = "Odiai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhg", + ReferenceName = "Binandere", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhh", + ReferenceName = "Bukharic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhi", + ReferenceName = "Bhilali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhj", + ReferenceName = "Bahing", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhl", + ReferenceName = "Bimin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhm", + ReferenceName = "Bathari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhn", + ReferenceName = "Bohtan Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bho", + Part2B = "bho", + Part2T = "bho", + ReferenceName = "Bhojpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhp", + ReferenceName = "Bima", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhq", + ReferenceName = "Tukang Besi South", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhr", + ReferenceName = "Bara Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhs", + ReferenceName = "Buwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "bht", + ReferenceName = "Bhattiyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhu", + ReferenceName = "Bhunjia", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhv", + ReferenceName = "Bahau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhw", + ReferenceName = "Biak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhx", + ReferenceName = "Bhalay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhy", + ReferenceName = "Bhele", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhz", + ReferenceName = "Bada (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bia", + ReferenceName = "Badimaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bib", + ReferenceName = "Bissa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bic", + ReferenceName = "Bikaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "bid", + ReferenceName = "Bidiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bie", + ReferenceName = "Bepour", + Scope = "I", + Type = "L" + }, + new + { + Id = "bif", + ReferenceName = "Biafada", + Scope = "I", + Type = "L" + }, + new + { + Id = "big", + ReferenceName = "Biangai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bij", + ReferenceName = "Vaghat-Ya-Bijim-Legeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bik", + Part2B = "bik", + Part2T = "bik", + ReferenceName = "Bikol", + Scope = "M", + Type = "L" + }, + new + { + Id = "bil", + ReferenceName = "Bile", + Scope = "I", + Type = "L" + }, + new + { + Id = "bim", + ReferenceName = "Bimoba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bin", + Part2B = "bin", + Part2T = "bin", + ReferenceName = "Bini", + Scope = "I", + Type = "L" + }, + new + { + Id = "bio", + ReferenceName = "Nai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bip", + ReferenceName = "Bila", + Scope = "I", + Type = "L" + }, + new + { + Id = "biq", + ReferenceName = "Bipi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bir", + ReferenceName = "Bisorio", + Scope = "I", + Type = "L" + }, + new + { + Id = "bis", + Part1 = "bi", + Part2B = "bis", + Part2T = "bis", + ReferenceName = "Bislama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bit", + ReferenceName = "Berinomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "biu", + ReferenceName = "Biete", + Scope = "I", + Type = "L" + }, + new + { + Id = "biv", + ReferenceName = "Southern Birifor", + Scope = "I", + Type = "L" + }, + new + { + Id = "biw", + ReferenceName = "Kol (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bix", + ReferenceName = "Bijori", + Scope = "I", + Type = "L" + }, + new + { + Id = "biy", + ReferenceName = "Birhor", + Scope = "I", + Type = "L" + }, + new + { + Id = "biz", + ReferenceName = "Baloi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bja", + ReferenceName = "Budza", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjb", + ReferenceName = "Banggarla", + Scope = "I", + Type = "E" + }, + new + { + Id = "bjc", + ReferenceName = "Bariji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bje", + ReferenceName = "Biao-Jiao Mien", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjf", + ReferenceName = "Barzani Jewish Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjg", + ReferenceName = "Bidyogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjh", + ReferenceName = "Bahinemo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bji", + ReferenceName = "Burji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjj", + ReferenceName = "Kanauji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjk", + ReferenceName = "Barok", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjl", + ReferenceName = "Bulu (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjm", + ReferenceName = "Bajelani", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjn", + ReferenceName = "Banjar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjo", + ReferenceName = "Mid-Southern Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjp", + ReferenceName = "Fanamaket", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjr", + ReferenceName = "Binumarien", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjs", + ReferenceName = "Bajan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjt", + ReferenceName = "Balanta-Ganja", + Scope = "I", + Type = "L" + }, + new + { + Id = "bju", + ReferenceName = "Busuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjv", + ReferenceName = "Bedjond", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjw", + ReferenceName = "Bakwé", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjx", + ReferenceName = "Banao Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjy", + ReferenceName = "Bayali", + Scope = "I", + Type = "E" + }, + new + { + Id = "bjz", + ReferenceName = "Baruga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bka", + ReferenceName = "Kyak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkc", + ReferenceName = "Baka (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkd", + ReferenceName = "Binukid", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkf", + ReferenceName = "Beeke", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkg", + ReferenceName = "Buraka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkh", + ReferenceName = "Bakoko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bki", + ReferenceName = "Baki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkj", + ReferenceName = "Pande", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkk", + ReferenceName = "Brokskat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkl", + ReferenceName = "Berik", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkm", + ReferenceName = "Kom (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkn", + ReferenceName = "Bukitan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bko", + ReferenceName = "Kwa'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkp", + ReferenceName = "Boko (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkq", + ReferenceName = "Bakairí", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkr", + ReferenceName = "Bakumpai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bks", + ReferenceName = "Northern Sorsoganon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkt", + ReferenceName = "Boloki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bku", + ReferenceName = "Buhid", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkv", + ReferenceName = "Bekwarra", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkw", + ReferenceName = "Bekwel", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkx", + ReferenceName = "Baikeno", + Scope = "I", + Type = "L" + }, + new + { + Id = "bky", + ReferenceName = "Bokyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkz", + ReferenceName = "Bungku", + Scope = "I", + Type = "L" + }, + new + { + Id = "bla", + Part2B = "bla", + Part2T = "bla", + ReferenceName = "Siksika", + Scope = "I", + Type = "L" + }, + new + { + Id = "blb", + ReferenceName = "Bilua", + Scope = "I", + Type = "L" + }, + new + { + Id = "blc", + ReferenceName = "Bella Coola", + Scope = "I", + Type = "L" + }, + new + { + Id = "bld", + ReferenceName = "Bolango", + Scope = "I", + Type = "L" + }, + new + { + Id = "ble", + ReferenceName = "Balanta-Kentohe", + Scope = "I", + Type = "L" + }, + new + { + Id = "blf", + ReferenceName = "Buol", + Scope = "I", + Type = "L" + }, + new + { + Id = "blg", + ReferenceName = "Balau", + Scope = "I", + Type = "L" + }, + new + { + Id = "blh", + ReferenceName = "Kuwaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bli", + ReferenceName = "Bolia", + Scope = "I", + Type = "L" + }, + new + { + Id = "blj", + ReferenceName = "Bolongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "blk", + ReferenceName = "Pa'o Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bll", + ReferenceName = "Biloxi", + Scope = "I", + Type = "E" + }, + new + { + Id = "blm", + ReferenceName = "Beli (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bln", + ReferenceName = "Southern Catanduanes Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "blo", + ReferenceName = "Anii", + Scope = "I", + Type = "L" + }, + new + { + Id = "blp", + ReferenceName = "Blablanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "blq", + ReferenceName = "Baluan-Pam", + Scope = "I", + Type = "L" + }, + new + { + Id = "blr", + ReferenceName = "Blang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bls", + ReferenceName = "Balaesang", + Scope = "I", + Type = "L" + }, + new + { + Id = "blt", + ReferenceName = "Tai Dam", + Scope = "I", + Type = "L" + }, + new + { + Id = "blv", + ReferenceName = "Kibala", + Scope = "I", + Type = "L" + }, + new + { + Id = "blw", + ReferenceName = "Balangao", + Scope = "I", + Type = "L" + }, + new + { + Id = "blx", + ReferenceName = "Mag-Indi Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "bly", + ReferenceName = "Notre", + Scope = "I", + Type = "L" + }, + new + { + Id = "blz", + ReferenceName = "Balantak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bma", + ReferenceName = "Lame", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmb", + ReferenceName = "Bembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmc", + ReferenceName = "Biem", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmd", + ReferenceName = "Baga Manduri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bme", + ReferenceName = "Limassa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmf", + ReferenceName = "Bom-Kim", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmg", + ReferenceName = "Bamwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmh", + ReferenceName = "Kein", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmi", + ReferenceName = "Bagirmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmj", + ReferenceName = "Bote-Majhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmk", + ReferenceName = "Ghayavi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bml", + ReferenceName = "Bomboli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmm", + ReferenceName = "Northern Betsimisaraka Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmn", + ReferenceName = "Bina (Papua New Guinea)", + Scope = "I", + Type = "E" + }, + new + { + Id = "bmo", + ReferenceName = "Bambalang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmp", + ReferenceName = "Bulgebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmq", + ReferenceName = "Bomu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmr", + ReferenceName = "Muinane", + Scope = "I", + Type = "L" + }, + new + { + Id = "bms", + ReferenceName = "Bilma Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmt", + ReferenceName = "Biao Mon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmu", + ReferenceName = "Somba-Siawari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmv", + ReferenceName = "Bum", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmw", + ReferenceName = "Bomwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmx", + ReferenceName = "Baimak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmz", + ReferenceName = "Baramu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bna", + ReferenceName = "Bonerate", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnb", + ReferenceName = "Bookan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnc", + ReferenceName = "Bontok", + Scope = "M", + Type = "L" + }, + new + { + Id = "bnd", + ReferenceName = "Banda (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bne", + ReferenceName = "Bintauna", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnf", + ReferenceName = "Masiwang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bng", + ReferenceName = "Benga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bni", + ReferenceName = "Bangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnj", + ReferenceName = "Eastern Tawbuid", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnk", + ReferenceName = "Bierebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnl", + ReferenceName = "Boon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnm", + ReferenceName = "Batanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnn", + ReferenceName = "Bunun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bno", + ReferenceName = "Bantoanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnp", + ReferenceName = "Bola", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnq", + ReferenceName = "Bantik", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnr", + ReferenceName = "Butmas-Tur", + Scope = "I", + Type = "L" + }, + new + { + Id = "bns", + ReferenceName = "Bundeli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnu", + ReferenceName = "Bentong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnv", + ReferenceName = "Bonerif", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnw", + ReferenceName = "Bisis", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnx", + ReferenceName = "Bangubangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bny", + ReferenceName = "Bintulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnz", + ReferenceName = "Beezen", + Scope = "I", + Type = "L" + }, + new + { + Id = "boa", + ReferenceName = "Bora", + Scope = "I", + Type = "L" + }, + new + { + Id = "bob", + ReferenceName = "Aweer", + Scope = "I", + Type = "L" + }, + new + { + Id = "bod", + Part1 = "bo", + Part2B = "tib", + Part2T = "bod", + ReferenceName = "Tibetan", + Scope = "I", + Type = "L" + }, + new + { + Id = "boe", + ReferenceName = "Mundabli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bof", + ReferenceName = "Bolon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bog", + ReferenceName = "Bamako Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "boh", + ReferenceName = "Boma", + Scope = "I", + Type = "L" + }, + new + { + Id = "boi", + ReferenceName = "Barbareño", + Scope = "I", + Type = "E" + }, + new + { + Id = "boj", + ReferenceName = "Anjam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bok", + ReferenceName = "Bonjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bol", + ReferenceName = "Bole", + Scope = "I", + Type = "L" + }, + new + { + Id = "bom", + ReferenceName = "Berom", + Scope = "I", + Type = "L" + }, + new + { + Id = "bon", + ReferenceName = "Bine", + Scope = "I", + Type = "L" + }, + new + { + Id = "boo", + ReferenceName = "Tiemacèwè Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bop", + ReferenceName = "Bonkiman", + Scope = "I", + Type = "L" + }, + new + { + Id = "boq", + ReferenceName = "Bogaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bor", + ReferenceName = "Borôro", + Scope = "I", + Type = "L" + }, + new + { + Id = "bos", + Part1 = "bs", + Part2B = "bos", + Part2T = "bos", + ReferenceName = "Bosnian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bot", + ReferenceName = "Bongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bou", + ReferenceName = "Bondei", + Scope = "I", + Type = "L" + }, + new + { + Id = "bov", + ReferenceName = "Tuwuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bow", + ReferenceName = "Rema", + Scope = "I", + Type = "E" + }, + new + { + Id = "box", + ReferenceName = "Buamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "boy", + ReferenceName = "Bodo (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "boz", + ReferenceName = "Tiéyaxo Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpa", + ReferenceName = "Daakaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpb", + ReferenceName = "Barbacoas", + Scope = "I", + Type = "E" + }, + new + { + Id = "bpd", + ReferenceName = "Banda-Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpg", + ReferenceName = "Bonggo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bph", + ReferenceName = "Botlikh", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpi", + ReferenceName = "Bagupi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpj", + ReferenceName = "Binji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpk", + ReferenceName = "Orowe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpl", + ReferenceName = "Broome Pearling Lugger Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpm", + ReferenceName = "Biyom", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpn", + ReferenceName = "Dzao Min", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpo", + ReferenceName = "Anasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpp", + ReferenceName = "Kaure", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpq", + ReferenceName = "Banda Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpr", + ReferenceName = "Koronadal Blaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bps", + ReferenceName = "Sarangani Blaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpt", + ReferenceName = "Barrow Point", + Scope = "I", + Type = "E" + }, + new + { + Id = "bpu", + ReferenceName = "Bongu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpv", + ReferenceName = "Bian Marind", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpw", + ReferenceName = "Bo (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpx", + ReferenceName = "Palya Bareli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpy", + ReferenceName = "Bishnupriya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpz", + ReferenceName = "Bilba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqa", + ReferenceName = "Tchumbuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqb", + ReferenceName = "Bagusa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqc", + ReferenceName = "Boko (Benin)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqd", + ReferenceName = "Bung", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqf", + ReferenceName = "Baga Kaloum", + Scope = "I", + Type = "E" + }, + new + { + Id = "bqg", + ReferenceName = "Bago-Kusuntu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqh", + ReferenceName = "Baima", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqi", + ReferenceName = "Bakhtiari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqj", + ReferenceName = "Bandial", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqk", + ReferenceName = "Banda-Mbrès", + Scope = "I", + Type = "L" + }, + new + { + Id = "bql", + ReferenceName = "Bilakura", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqm", + ReferenceName = "Wumboko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqn", + ReferenceName = "Bulgarian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqo", + ReferenceName = "Balo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqp", + ReferenceName = "Busa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqq", + ReferenceName = "Biritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqr", + ReferenceName = "Burusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqs", + ReferenceName = "Bosngun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqt", + ReferenceName = "Bamukumbit", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqu", + ReferenceName = "Boguru", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqv", + ReferenceName = "Koro Wachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqw", + ReferenceName = "Buru (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqx", + ReferenceName = "Baangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqy", + ReferenceName = "Bengkala Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqz", + ReferenceName = "Bakaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bra", + Part2B = "bra", + Part2T = "bra", + ReferenceName = "Braj", + Scope = "I", + Type = "L" + }, + new + { + Id = "brb", + ReferenceName = "Lave", + Scope = "I", + Type = "L" + }, + new + { + Id = "brc", + ReferenceName = "Berbice Creole Dutch", + Scope = "I", + Type = "E" + }, + new + { + Id = "brd", + ReferenceName = "Baraamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bre", + Part1 = "br", + Part2B = "bre", + Part2T = "bre", + ReferenceName = "Breton", + Scope = "I", + Type = "L" + }, + new + { + Id = "brf", + ReferenceName = "Bera", + Scope = "I", + Type = "L" + }, + new + { + Id = "brg", + ReferenceName = "Baure", + Scope = "I", + Type = "L" + }, + new + { + Id = "brh", + ReferenceName = "Brahui", + Scope = "I", + Type = "L" + }, + new + { + Id = "bri", + ReferenceName = "Mokpwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "brj", + ReferenceName = "Bieria", + Scope = "I", + Type = "L" + }, + new + { + Id = "brk", + ReferenceName = "Birked", + Scope = "I", + Type = "E" + }, + new + { + Id = "brl", + ReferenceName = "Birwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "brm", + ReferenceName = "Barambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "brn", + ReferenceName = "Boruca", + Scope = "I", + Type = "L" + }, + new + { + Id = "bro", + ReferenceName = "Brokkat", + Scope = "I", + Type = "L" + }, + new + { + Id = "brp", + ReferenceName = "Barapasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "brq", + ReferenceName = "Breri", + Scope = "I", + Type = "L" + }, + new + { + Id = "brr", + ReferenceName = "Birao", + Scope = "I", + Type = "L" + }, + new + { + Id = "brs", + ReferenceName = "Baras", + Scope = "I", + Type = "L" + }, + new + { + Id = "brt", + ReferenceName = "Bitare", + Scope = "I", + Type = "L" + }, + new + { + Id = "bru", + ReferenceName = "Eastern Bru", + Scope = "I", + Type = "L" + }, + new + { + Id = "brv", + ReferenceName = "Western Bru", + Scope = "I", + Type = "L" + }, + new + { + Id = "brw", + ReferenceName = "Bellari", + Scope = "I", + Type = "L" + }, + new + { + Id = "brx", + ReferenceName = "Bodo (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bry", + ReferenceName = "Burui", + Scope = "I", + Type = "L" + }, + new + { + Id = "brz", + ReferenceName = "Bilbil", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsa", + ReferenceName = "Abinomn", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsb", + ReferenceName = "Brunei Bisaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsc", + ReferenceName = "Bassari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bse", + ReferenceName = "Wushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsf", + ReferenceName = "Bauchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsg", + ReferenceName = "Bashkardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsh", + ReferenceName = "Kati", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsi", + ReferenceName = "Bassossi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsj", + ReferenceName = "Bangwinji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsk", + ReferenceName = "Burushaski", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsl", + ReferenceName = "Basa-Gumna", + Scope = "I", + Type = "E" + }, + new + { + Id = "bsm", + ReferenceName = "Busami", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsn", + ReferenceName = "Barasana-Eduria", + Scope = "I", + Type = "L" + }, + new + { + Id = "bso", + ReferenceName = "Buso", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsp", + ReferenceName = "Baga Sitemu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsq", + ReferenceName = "Bassa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsr", + ReferenceName = "Bassa-Kontagora", + Scope = "I", + Type = "L" + }, + new + { + Id = "bss", + ReferenceName = "Akoose", + Scope = "I", + Type = "L" + }, + new + { + Id = "bst", + ReferenceName = "Basketo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsu", + ReferenceName = "Bahonsuai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsv", + ReferenceName = "Baga Sobané", + Scope = "I", + Type = "E" + }, + new + { + Id = "bsw", + ReferenceName = "Baiso", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsx", + ReferenceName = "Yangkam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsy", + ReferenceName = "Sabah Bisaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bta", + ReferenceName = "Bata", + Scope = "I", + Type = "L" + }, + new + { + Id = "btc", + ReferenceName = "Bati (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "btd", + ReferenceName = "Batak Dairi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bte", + ReferenceName = "Gamo-Ningi", + Scope = "I", + Type = "E" + }, + new + { + Id = "btf", + ReferenceName = "Birgit", + Scope = "I", + Type = "L" + }, + new + { + Id = "btg", + ReferenceName = "Gagnoa Bété", + Scope = "I", + Type = "L" + }, + new + { + Id = "bth", + ReferenceName = "Biatah Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "bti", + ReferenceName = "Burate", + Scope = "I", + Type = "L" + }, + new + { + Id = "btj", + ReferenceName = "Bacanese Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "btm", + ReferenceName = "Batak Mandailing", + Scope = "I", + Type = "L" + }, + new + { + Id = "btn", + ReferenceName = "Ratagnon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bto", + ReferenceName = "Rinconada Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "btp", + ReferenceName = "Budibud", + Scope = "I", + Type = "L" + }, + new + { + Id = "btq", + ReferenceName = "Batek", + Scope = "I", + Type = "L" + }, + new + { + Id = "btr", + ReferenceName = "Baetora", + Scope = "I", + Type = "L" + }, + new + { + Id = "bts", + ReferenceName = "Batak Simalungun", + Scope = "I", + Type = "L" + }, + new + { + Id = "btt", + ReferenceName = "Bete-Bendi", + Scope = "I", + Type = "L" + }, + new + { + Id = "btu", + ReferenceName = "Batu", + Scope = "I", + Type = "L" + }, + new + { + Id = "btv", + ReferenceName = "Bateri", + Scope = "I", + Type = "L" + }, + new + { + Id = "btw", + ReferenceName = "Butuanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "btx", + ReferenceName = "Batak Karo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bty", + ReferenceName = "Bobot", + Scope = "I", + Type = "L" + }, + new + { + Id = "btz", + ReferenceName = "Batak Alas-Kluet", + Scope = "I", + Type = "L" + }, + new + { + Id = "bua", + Part2B = "bua", + Part2T = "bua", + ReferenceName = "Buriat", + Scope = "M", + Type = "L" + }, + new + { + Id = "bub", + ReferenceName = "Bua", + Scope = "I", + Type = "L" + }, + new + { + Id = "buc", + ReferenceName = "Bushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bud", + ReferenceName = "Ntcham", + Scope = "I", + Type = "L" + }, + new + { + Id = "bue", + ReferenceName = "Beothuk", + Scope = "I", + Type = "E" + }, + new + { + Id = "buf", + ReferenceName = "Bushoong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bug", + Part2B = "bug", + Part2T = "bug", + ReferenceName = "Buginese", + Scope = "I", + Type = "L" + }, + new + { + Id = "buh", + ReferenceName = "Younuo Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bui", + ReferenceName = "Bongili", + Scope = "I", + Type = "L" + }, + new + { + Id = "buj", + ReferenceName = "Basa-Gurmana", + Scope = "I", + Type = "L" + }, + new + { + Id = "buk", + ReferenceName = "Bugawac", + Scope = "I", + Type = "L" + }, + new + { + Id = "bul", + Part1 = "bg", + Part2B = "bul", + Part2T = "bul", + ReferenceName = "Bulgarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bum", + ReferenceName = "Bulu (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bun", + ReferenceName = "Sherbro", + Scope = "I", + Type = "L" + }, + new + { + Id = "buo", + ReferenceName = "Terei", + Scope = "I", + Type = "L" + }, + new + { + Id = "bup", + ReferenceName = "Busoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "buq", + ReferenceName = "Brem", + Scope = "I", + Type = "L" + }, + new + { + Id = "bus", + ReferenceName = "Bokobaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "but", + ReferenceName = "Bungain", + Scope = "I", + Type = "L" + }, + new + { + Id = "buu", + ReferenceName = "Budu", + Scope = "I", + Type = "L" + }, + new + { + Id = "buv", + ReferenceName = "Bun", + Scope = "I", + Type = "L" + }, + new + { + Id = "buw", + ReferenceName = "Bubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bux", + ReferenceName = "Boghom", + Scope = "I", + Type = "L" + }, + new + { + Id = "buy", + ReferenceName = "Bullom So", + Scope = "I", + Type = "L" + }, + new + { + Id = "buz", + ReferenceName = "Bukwen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bva", + ReferenceName = "Barein", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvb", + ReferenceName = "Bube", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvc", + ReferenceName = "Baelelea", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvd", + ReferenceName = "Baeggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bve", + ReferenceName = "Berau Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvf", + ReferenceName = "Boor", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvg", + ReferenceName = "Bonkeng", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvh", + ReferenceName = "Bure", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvi", + ReferenceName = "Belanda Viri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvj", + ReferenceName = "Baan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvk", + ReferenceName = "Bukat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvl", + ReferenceName = "Bolivian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvm", + ReferenceName = "Bamunka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvn", + ReferenceName = "Buna", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvo", + ReferenceName = "Bolgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvp", + ReferenceName = "Bumang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvq", + ReferenceName = "Birri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvr", + ReferenceName = "Burarra", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvt", + ReferenceName = "Bati (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvu", + ReferenceName = "Bukit Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvv", + ReferenceName = "Baniva", + Scope = "I", + Type = "E" + }, + new + { + Id = "bvw", + ReferenceName = "Boga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvx", + ReferenceName = "Dibole", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvy", + ReferenceName = "Baybayanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvz", + ReferenceName = "Bauzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwa", + ReferenceName = "Bwatoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwb", + ReferenceName = "Namosi-Naitasiri-Serua", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwc", + ReferenceName = "Bwile", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwd", + ReferenceName = "Bwaidoka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwe", + ReferenceName = "Bwe Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwf", + ReferenceName = "Boselewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwg", + ReferenceName = "Barwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwh", + ReferenceName = "Bishuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwi", + ReferenceName = "Baniwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwj", + ReferenceName = "Láá Láá Bwamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwk", + ReferenceName = "Bauwaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwl", + ReferenceName = "Bwela", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwm", + ReferenceName = "Biwat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwn", + ReferenceName = "Wunai Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwo", + ReferenceName = "Boro (Ethiopia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwp", + ReferenceName = "Mandobo Bawah", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwq", + ReferenceName = "Southern Bobo Madaré", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwr", + ReferenceName = "Bura-Pabir", + Scope = "I", + Type = "L" + }, + new + { + Id = "bws", + ReferenceName = "Bomboma", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwt", + ReferenceName = "Bafaw-Balong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwu", + ReferenceName = "Buli (Ghana)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bww", + ReferenceName = "Bwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwx", + ReferenceName = "Bu-Nao Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwy", + ReferenceName = "Cwi Bwamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwz", + ReferenceName = "Bwisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxa", + ReferenceName = "Tairaha", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxb", + ReferenceName = "Belanda Bor", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxc", + ReferenceName = "Molengue", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxd", + ReferenceName = "Pela", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxe", + ReferenceName = "Birale", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxf", + ReferenceName = "Bilur", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxg", + ReferenceName = "Bangala", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxh", + ReferenceName = "Buhutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxi", + ReferenceName = "Pirlatapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "bxj", + ReferenceName = "Bayungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxk", + ReferenceName = "Bukusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxl", + ReferenceName = "Jalkunan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxm", + ReferenceName = "Mongolia Buriat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxn", + ReferenceName = "Burduna", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxo", + ReferenceName = "Barikanchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxp", + ReferenceName = "Bebil", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxq", + ReferenceName = "Beele", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxr", + ReferenceName = "Russia Buriat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxs", + ReferenceName = "Busam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxu", + ReferenceName = "China Buriat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxv", + ReferenceName = "Berakou", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxw", + ReferenceName = "Bankagooma", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxz", + ReferenceName = "Binahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bya", + ReferenceName = "Batak", + Scope = "I", + Type = "L" + }, + new + { + Id = "byb", + ReferenceName = "Bikya", + Scope = "I", + Type = "L" + }, + new + { + Id = "byc", + ReferenceName = "Ubaghara", + Scope = "I", + Type = "L" + }, + new + { + Id = "byd", + ReferenceName = "Benyadu'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bye", + ReferenceName = "Pouye", + Scope = "I", + Type = "L" + }, + new + { + Id = "byf", + ReferenceName = "Bete", + Scope = "I", + Type = "L" + }, + new + { + Id = "byg", + ReferenceName = "Baygo", + Scope = "I", + Type = "E" + }, + new + { + Id = "byh", + ReferenceName = "Bhujel", + Scope = "I", + Type = "L" + }, + new + { + Id = "byi", + ReferenceName = "Buyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "byj", + ReferenceName = "Bina (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "byk", + ReferenceName = "Biao", + Scope = "I", + Type = "L" + }, + new + { + Id = "byl", + ReferenceName = "Bayono", + Scope = "I", + Type = "L" + }, + new + { + Id = "bym", + ReferenceName = "Bidjara", + Scope = "I", + Type = "L" + }, + new + { + Id = "byn", + Part2B = "byn", + Part2T = "byn", + ReferenceName = "Bilin", + Scope = "I", + Type = "L" + }, + new + { + Id = "byo", + ReferenceName = "Biyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "byp", + ReferenceName = "Bumaji", + Scope = "I", + Type = "L" + }, + new + { + Id = "byq", + ReferenceName = "Basay", + Scope = "I", + Type = "E" + }, + new + { + Id = "byr", + ReferenceName = "Baruya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bys", + ReferenceName = "Burak", + Scope = "I", + Type = "L" + }, + new + { + Id = "byt", + ReferenceName = "Berti", + Scope = "I", + Type = "E" + }, + new + { + Id = "byv", + ReferenceName = "Medumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "byw", + ReferenceName = "Belhariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "byx", + ReferenceName = "Qaqet", + Scope = "I", + Type = "L" + }, + new + { + Id = "byz", + ReferenceName = "Banaro", + Scope = "I", + Type = "L" + }, + new + { + Id = "bza", + ReferenceName = "Bandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzb", + ReferenceName = "Andio", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzc", + ReferenceName = "Southern Betsimisaraka Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzd", + ReferenceName = "Bribri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bze", + ReferenceName = "Jenaama Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzf", + ReferenceName = "Boikin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzg", + ReferenceName = "Babuza", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzh", + ReferenceName = "Mapos Buang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzi", + ReferenceName = "Bisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzj", + ReferenceName = "Belize Kriol English", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzk", + ReferenceName = "Nicaragua Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzl", + ReferenceName = "Boano (Sulawesi)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzm", + ReferenceName = "Bolondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzn", + ReferenceName = "Boano (Maluku)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzo", + ReferenceName = "Bozaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzp", + ReferenceName = "Kemberano", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzq", + ReferenceName = "Buli (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzr", + ReferenceName = "Biri", + Scope = "I", + Type = "E" + }, + new + { + Id = "bzs", + ReferenceName = "Brazilian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzt", + ReferenceName = "Brithenig", + Scope = "I", + Type = "C" + }, + new + { + Id = "bzu", + ReferenceName = "Burmeso", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzv", + ReferenceName = "Naami", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzw", + ReferenceName = "Basa (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzx", + ReferenceName = "Kɛlɛngaxo Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzy", + ReferenceName = "Obanliku", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzz", + ReferenceName = "Evant", + Scope = "I", + Type = "L" + }, + new + { + Id = "caa", + ReferenceName = "Chortí", + Scope = "I", + Type = "L" + }, + new + { + Id = "cab", + ReferenceName = "Garifuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "cac", + ReferenceName = "Chuj", + Scope = "I", + Type = "L" + }, + new + { + Id = "cad", + Part2B = "cad", + Part2T = "cad", + ReferenceName = "Caddo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cae", + ReferenceName = "Lehar", + Scope = "I", + Type = "L" + }, + new + { + Id = "caf", + ReferenceName = "Southern Carrier", + Scope = "I", + Type = "L" + }, + new + { + Id = "cag", + ReferenceName = "Nivaclé", + Scope = "I", + Type = "L" + }, + new + { + Id = "cah", + ReferenceName = "Cahuarano", + Scope = "I", + Type = "L" + }, + new + { + Id = "caj", + ReferenceName = "Chané", + Scope = "I", + Type = "E" + }, + new + { + Id = "cak", + ReferenceName = "Kaqchikel", + Scope = "I", + Type = "L" + }, + new + { + Id = "cal", + ReferenceName = "Carolinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cam", + ReferenceName = "Cemuhî", + Scope = "I", + Type = "L" + }, + new + { + Id = "can", + ReferenceName = "Chambri", + Scope = "I", + Type = "L" + }, + new + { + Id = "cao", + ReferenceName = "Chácobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cap", + ReferenceName = "Chipaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "caq", + ReferenceName = "Car Nicobarese", + Scope = "I", + Type = "L" + }, + new + { + Id = "car", + Part2B = "car", + Part2T = "car", + ReferenceName = "Galibi Carib", + Scope = "I", + Type = "L" + }, + new + { + Id = "cas", + ReferenceName = "Tsimané", + Scope = "I", + Type = "L" + }, + new + { + Id = "cat", + Part1 = "ca", + Part2B = "cat", + Part2T = "cat", + ReferenceName = "Catalan", + Scope = "I", + Type = "L" + }, + new + { + Id = "cav", + ReferenceName = "Cavineña", + Scope = "I", + Type = "L" + }, + new + { + Id = "caw", + ReferenceName = "Callawalla", + Scope = "I", + Type = "L" + }, + new + { + Id = "cax", + ReferenceName = "Chiquitano", + Scope = "I", + Type = "L" + }, + new + { + Id = "cay", + ReferenceName = "Cayuga", + Scope = "I", + Type = "L" + }, + new + { + Id = "caz", + ReferenceName = "Canichana", + Scope = "I", + Type = "E" + }, + new + { + Id = "cbb", + ReferenceName = "Cabiyarí", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbc", + ReferenceName = "Carapana", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbd", + ReferenceName = "Carijona", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbg", + ReferenceName = "Chimila", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbi", + ReferenceName = "Chachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbj", + ReferenceName = "Ede Cabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbk", + ReferenceName = "Chavacano", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbl", + ReferenceName = "Bualkhaw Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbn", + ReferenceName = "Nyahkur", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbo", + ReferenceName = "Izora", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbq", + ReferenceName = "Tsucuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbr", + ReferenceName = "Cashibo-Cacataibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbs", + ReferenceName = "Cashinahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbt", + ReferenceName = "Chayahuita", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbu", + ReferenceName = "Candoshi-Shapra", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbv", + ReferenceName = "Cacua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbw", + ReferenceName = "Kinabalian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cby", + ReferenceName = "Carabayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cca", + ReferenceName = "Cauca", + Scope = "I", + Type = "E" + }, + new + { + Id = "ccc", + ReferenceName = "Chamicuro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccd", + ReferenceName = "Cafundo Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "cce", + ReferenceName = "Chopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccg", + ReferenceName = "Samba Daka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cch", + ReferenceName = "Atsam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccj", + ReferenceName = "Kasanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccl", + ReferenceName = "Cutchi-Swahili", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccm", + ReferenceName = "Malaccan Creole Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "cco", + ReferenceName = "Comaltepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccp", + ReferenceName = "Chakma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccr", + ReferenceName = "Cacaopera", + Scope = "I", + Type = "E" + }, + new + { + Id = "cda", + ReferenceName = "Choni", + Scope = "I", + Type = "L" + }, + new + { + Id = "cde", + ReferenceName = "Chenchu", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdf", + ReferenceName = "Chiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdg", + ReferenceName = "Chamari", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdh", + ReferenceName = "Chambeali", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdi", + ReferenceName = "Chodri", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdj", + ReferenceName = "Churahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdm", + ReferenceName = "Chepang", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdn", + ReferenceName = "Chaudangsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdo", + ReferenceName = "Min Dong Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdr", + ReferenceName = "Cinda-Regi-Tiyal", + Scope = "I", + Type = "L" + }, + new + { + Id = "cds", + ReferenceName = "Chadian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdy", + ReferenceName = "Chadong", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdz", + ReferenceName = "Koda", + Scope = "I", + Type = "L" + }, + new + { + Id = "cea", + ReferenceName = "Lower Chehalis", + Scope = "I", + Type = "E" + }, + new + { + Id = "ceb", + Part2B = "ceb", + Part2T = "ceb", + ReferenceName = "Cebuano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ceg", + ReferenceName = "Chamacoco", + Scope = "I", + Type = "L" + }, + new + { + Id = "cek", + ReferenceName = "Eastern Khumi Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cen", + ReferenceName = "Cen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ces", + Part1 = "cs", + Part2B = "cze", + Part2T = "ces", + ReferenceName = "Czech", + Scope = "I", + Type = "L" + }, + new + { + Id = "cet", + ReferenceName = "Centúúm", + Scope = "I", + Type = "L" + }, + new + { + Id = "cey", + ReferenceName = "Ekai Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfa", + ReferenceName = "Dijim-Bwilim", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfd", + ReferenceName = "Cara", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfg", + ReferenceName = "Como Karim", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfm", + ReferenceName = "Falam Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cga", + ReferenceName = "Changriwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cgc", + ReferenceName = "Kagayanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "cgg", + ReferenceName = "Chiga", + Scope = "I", + Type = "L" + }, + new + { + Id = "cgk", + ReferenceName = "Chocangacakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "cha", + Part1 = "ch", + Part2B = "cha", + Part2T = "cha", + ReferenceName = "Chamorro", + Scope = "I", + Type = "L" + }, + new + { + Id = "chb", + Part2B = "chb", + Part2T = "chb", + ReferenceName = "Chibcha", + Scope = "I", + Type = "E" + }, + new + { + Id = "chc", + ReferenceName = "Catawba", + Scope = "I", + Type = "E" + }, + new + { + Id = "chd", + ReferenceName = "Highland Oaxaca Chontal", + Scope = "I", + Type = "L" + }, + new + { + Id = "che", + Part1 = "ce", + Part2B = "che", + Part2T = "che", + ReferenceName = "Chechen", + Scope = "I", + Type = "L" + }, + new + { + Id = "chf", + ReferenceName = "Tabasco Chontal", + Scope = "I", + Type = "L" + }, + new + { + Id = "chg", + Part2B = "chg", + Part2T = "chg", + ReferenceName = "Chagatai", + Scope = "I", + Type = "E" + }, + new + { + Id = "chh", + ReferenceName = "Chinook", + Scope = "I", + Type = "E" + }, + new + { + Id = "chj", + ReferenceName = "Ojitlán Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "chk", + Part2B = "chk", + Part2T = "chk", + ReferenceName = "Chuukese", + Scope = "I", + Type = "L" + }, + new + { + Id = "chl", + ReferenceName = "Cahuilla", + Scope = "I", + Type = "L" + }, + new + { + Id = "chm", + Part2B = "chm", + Part2T = "chm", + ReferenceName = "Mari (Russia)", + Scope = "M", + Type = "L" + }, + new + { + Id = "chn", + Part2B = "chn", + Part2T = "chn", + ReferenceName = "Chinook jargon", + Scope = "I", + Type = "L" + }, + new + { + Id = "cho", + Part2B = "cho", + Part2T = "cho", + ReferenceName = "Choctaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "chp", + Part2B = "chp", + Part2T = "chp", + ReferenceName = "Chipewyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "chq", + ReferenceName = "Quiotepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "chr", + Part2B = "chr", + Part2T = "chr", + ReferenceName = "Cherokee", + Scope = "I", + Type = "L" + }, + new + { + Id = "cht", + ReferenceName = "Cholón", + Scope = "I", + Type = "E" + }, + new + { + Id = "chu", + Part1 = "cu", + Part2B = "chu", + Part2T = "chu", + ReferenceName = "Church Slavic", + Scope = "I", + Type = "A" + }, + new + { + Id = "chv", + Part1 = "cv", + Part2B = "chv", + Part2T = "chv", + ReferenceName = "Chuvash", + Scope = "I", + Type = "L" + }, + new + { + Id = "chw", + ReferenceName = "Chuwabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "chx", + ReferenceName = "Chantyal", + Scope = "I", + Type = "L" + }, + new + { + Id = "chy", + Part2B = "chy", + Part2T = "chy", + ReferenceName = "Cheyenne", + Scope = "I", + Type = "L" + }, + new + { + Id = "chz", + ReferenceName = "Ozumacín Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cia", + ReferenceName = "Cia-Cia", + Scope = "I", + Type = "L" + }, + new + { + Id = "cib", + ReferenceName = "Ci Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "cic", + ReferenceName = "Chickasaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "cid", + ReferenceName = "Chimariko", + Scope = "I", + Type = "E" + }, + new + { + Id = "cie", + ReferenceName = "Cineni", + Scope = "I", + Type = "L" + }, + new + { + Id = "cih", + ReferenceName = "Chinali", + Scope = "I", + Type = "L" + }, + new + { + Id = "cik", + ReferenceName = "Chitkuli Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "cim", + ReferenceName = "Cimbrian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cin", + ReferenceName = "Cinta Larga", + Scope = "I", + Type = "L" + }, + new + { + Id = "cip", + ReferenceName = "Chiapanec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cir", + ReferenceName = "Tiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ciw", + ReferenceName = "Chippewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ciy", + ReferenceName = "Chaima", + Scope = "I", + Type = "L" + }, + new + { + Id = "cja", + ReferenceName = "Western Cham", + Scope = "I", + Type = "L" + }, + new + { + Id = "cje", + ReferenceName = "Chru", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjh", + ReferenceName = "Upper Chehalis", + Scope = "I", + Type = "E" + }, + new + { + Id = "cji", + ReferenceName = "Chamalal", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjk", + ReferenceName = "Chokwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjm", + ReferenceName = "Eastern Cham", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjn", + ReferenceName = "Chenapian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjo", + ReferenceName = "Ashéninka Pajonal", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjp", + ReferenceName = "Cabécar", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjs", + ReferenceName = "Shor", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjv", + ReferenceName = "Chuave", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjy", + ReferenceName = "Jinyu Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckb", + ReferenceName = "Central Kurdish", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckh", + ReferenceName = "Chak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckl", + ReferenceName = "Cibak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckn", + ReferenceName = "Kaang Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cko", + ReferenceName = "Anufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckq", + ReferenceName = "Kajakse", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckr", + ReferenceName = "Kairak", + Scope = "I", + Type = "L" + }, + new + { + Id = "cks", + ReferenceName = "Tayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckt", + ReferenceName = "Chukot", + Scope = "I", + Type = "L" + }, + new + { + Id = "cku", + ReferenceName = "Koasati", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckv", + ReferenceName = "Kavalan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckx", + ReferenceName = "Caka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cky", + ReferenceName = "Cakfem-Mushere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckz", + ReferenceName = "Cakchiquel-Quiché Mixed Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cla", + ReferenceName = "Ron", + Scope = "I", + Type = "L" + }, + new + { + Id = "clc", + ReferenceName = "Chilcotin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cld", + ReferenceName = "Chaldean Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "cle", + ReferenceName = "Lealao Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "clh", + ReferenceName = "Chilisso", + Scope = "I", + Type = "L" + }, + new + { + Id = "cli", + ReferenceName = "Chakali", + Scope = "I", + Type = "L" + }, + new + { + Id = "clj", + ReferenceName = "Laitu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "clk", + ReferenceName = "Idu-Mishmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cll", + ReferenceName = "Chala", + Scope = "I", + Type = "L" + }, + new + { + Id = "clm", + ReferenceName = "Clallam", + Scope = "I", + Type = "L" + }, + new + { + Id = "clo", + ReferenceName = "Lowland Oaxaca Chontal", + Scope = "I", + Type = "L" + }, + new + { + Id = "clt", + ReferenceName = "Lautu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "clu", + ReferenceName = "Caluyanun", + Scope = "I", + Type = "L" + }, + new + { + Id = "clw", + ReferenceName = "Chulym", + Scope = "I", + Type = "L" + }, + new + { + Id = "cly", + ReferenceName = "Eastern Highland Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cma", + ReferenceName = "Maa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cme", + ReferenceName = "Cerma", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmg", + ReferenceName = "Classical Mongolian", + Scope = "I", + Type = "H" + }, + new + { + Id = "cmi", + ReferenceName = "Emberá-Chamí", + Scope = "I", + Type = "L" + }, + new + { + Id = "cml", + ReferenceName = "Campalagian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmm", + ReferenceName = "Michigamea", + Scope = "I", + Type = "E" + }, + new + { + Id = "cmn", + ReferenceName = "Mandarin Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmo", + ReferenceName = "Central Mnong", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmr", + ReferenceName = "Mro-Khimi Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cms", + ReferenceName = "Messapic", + Scope = "I", + Type = "A" + }, + new + { + Id = "cmt", + ReferenceName = "Camtho", + Scope = "I", + Type = "L" + }, + new + { + Id = "cna", + ReferenceName = "Changthang", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnb", + ReferenceName = "Chinbon Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnc", + ReferenceName = "Côông", + Scope = "I", + Type = "L" + }, + new + { + Id = "cng", + ReferenceName = "Northern Qiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnh", + ReferenceName = "Hakha Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cni", + ReferenceName = "Asháninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnk", + ReferenceName = "Khumi Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnl", + ReferenceName = "Lalana Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cno", + ReferenceName = "Con", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnr", + Part2B = "cnr", + Part2T = "cnr", + ReferenceName = "Montenegrin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cns", + ReferenceName = "Central Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnt", + ReferenceName = "Tepetotutla Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnu", + ReferenceName = "Chenoua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnw", + ReferenceName = "Ngawn Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnx", + ReferenceName = "Middle Cornish", + Scope = "I", + Type = "H" + }, + new + { + Id = "coa", + ReferenceName = "Cocos Islands Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "cob", + ReferenceName = "Chicomuceltec", + Scope = "I", + Type = "E" + }, + new + { + Id = "coc", + ReferenceName = "Cocopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cod", + ReferenceName = "Cocama-Cocamilla", + Scope = "I", + Type = "L" + }, + new + { + Id = "coe", + ReferenceName = "Koreguaje", + Scope = "I", + Type = "L" + }, + new + { + Id = "cof", + ReferenceName = "Colorado", + Scope = "I", + Type = "L" + }, + new + { + Id = "cog", + ReferenceName = "Chong", + Scope = "I", + Type = "L" + }, + new + { + Id = "coh", + ReferenceName = "Chonyi-Dzihana-Kauma", + Scope = "I", + Type = "L" + }, + new + { + Id = "coj", + ReferenceName = "Cochimi", + Scope = "I", + Type = "E" + }, + new + { + Id = "cok", + ReferenceName = "Santa Teresa Cora", + Scope = "I", + Type = "L" + }, + new + { + Id = "col", + ReferenceName = "Columbia-Wenatchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "com", + ReferenceName = "Comanche", + Scope = "I", + Type = "L" + }, + new + { + Id = "con", + ReferenceName = "Cofán", + Scope = "I", + Type = "L" + }, + new + { + Id = "coo", + ReferenceName = "Comox", + Scope = "I", + Type = "L" + }, + new + { + Id = "cop", + Part2B = "cop", + Part2T = "cop", + ReferenceName = "Coptic", + Scope = "I", + Type = "E" + }, + new + { + Id = "coq", + ReferenceName = "Coquille", + Scope = "I", + Type = "E" + }, + new + { + Id = "cor", + Part1 = "kw", + Part2B = "cor", + Part2T = "cor", + ReferenceName = "Cornish", + Scope = "I", + Type = "L" + }, + new + { + Id = "cos", + Part1 = "co", + Part2B = "cos", + Part2T = "cos", + ReferenceName = "Corsican", + Scope = "I", + Type = "L" + }, + new + { + Id = "cot", + ReferenceName = "Caquinte", + Scope = "I", + Type = "L" + }, + new + { + Id = "cou", + ReferenceName = "Wamey", + Scope = "I", + Type = "L" + }, + new + { + Id = "cov", + ReferenceName = "Cao Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "cow", + ReferenceName = "Cowlitz", + Scope = "I", + Type = "E" + }, + new + { + Id = "cox", + ReferenceName = "Nanti", + Scope = "I", + Type = "L" + }, + new + { + Id = "coz", + ReferenceName = "Chochotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpa", + ReferenceName = "Palantla Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpb", + ReferenceName = "Ucayali-Yurúa Ashéninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpc", + ReferenceName = "Ajyíninka Apurucayali", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpg", + ReferenceName = "Cappadocian Greek", + Scope = "I", + Type = "E" + }, + new + { + Id = "cpi", + ReferenceName = "Chinese Pidgin English", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpn", + ReferenceName = "Cherepon", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpo", + ReferenceName = "Kpeego", + Scope = "I", + Type = "L" + }, + new + { + Id = "cps", + ReferenceName = "Capiznon", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpu", + ReferenceName = "Pichis Ashéninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpx", + ReferenceName = "Pu-Xian Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpy", + ReferenceName = "South Ucayali Ashéninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cqd", + ReferenceName = "Chuanqiandian Cluster Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "cra", + ReferenceName = "Chara", + Scope = "I", + Type = "L" + }, + new + { + Id = "crb", + ReferenceName = "Island Carib", + Scope = "I", + Type = "E" + }, + new + { + Id = "crc", + ReferenceName = "Lonwolwol", + Scope = "I", + Type = "L" + }, + new + { + Id = "crd", + ReferenceName = "Coeur d'Alene", + Scope = "I", + Type = "L" + }, + new + { + Id = "cre", + Part1 = "cr", + Part2B = "cre", + Part2T = "cre", + ReferenceName = "Cree", + Scope = "M", + Type = "L" + }, + new + { + Id = "crf", + ReferenceName = "Caramanta", + Scope = "I", + Type = "E" + }, + new + { + Id = "crg", + ReferenceName = "Michif", + Scope = "I", + Type = "L" + }, + new + { + Id = "crh", + Part2B = "crh", + Part2T = "crh", + ReferenceName = "Crimean Tatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "cri", + ReferenceName = "Sãotomense", + Scope = "I", + Type = "L" + }, + new + { + Id = "crj", + ReferenceName = "Southern East Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crk", + ReferenceName = "Plains Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crl", + ReferenceName = "Northern East Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crm", + ReferenceName = "Moose Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crn", + ReferenceName = "El Nayar Cora", + Scope = "I", + Type = "L" + }, + new + { + Id = "cro", + ReferenceName = "Crow", + Scope = "I", + Type = "L" + }, + new + { + Id = "crq", + ReferenceName = "Iyo'wujwa Chorote", + Scope = "I", + Type = "L" + }, + new + { + Id = "crr", + ReferenceName = "Carolina Algonquian", + Scope = "I", + Type = "E" + }, + new + { + Id = "crs", + ReferenceName = "Seselwa Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "crt", + ReferenceName = "Iyojwa'ja Chorote", + Scope = "I", + Type = "L" + }, + new + { + Id = "crv", + ReferenceName = "Chaura", + Scope = "I", + Type = "L" + }, + new + { + Id = "crw", + ReferenceName = "Chrau", + Scope = "I", + Type = "L" + }, + new + { + Id = "crx", + ReferenceName = "Carrier", + Scope = "I", + Type = "L" + }, + new + { + Id = "cry", + ReferenceName = "Cori", + Scope = "I", + Type = "L" + }, + new + { + Id = "crz", + ReferenceName = "Cruzeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "csa", + ReferenceName = "Chiltepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "csb", + Part2B = "csb", + Part2T = "csb", + ReferenceName = "Kashubian", + Scope = "I", + Type = "L" + }, + new + { + Id = "csc", + ReferenceName = "Catalan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csd", + ReferenceName = "Chiangmai Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cse", + ReferenceName = "Czech Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csf", + ReferenceName = "Cuba Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csg", + ReferenceName = "Chilean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csh", + ReferenceName = "Asho Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csi", + ReferenceName = "Coast Miwok", + Scope = "I", + Type = "E" + }, + new + { + Id = "csj", + ReferenceName = "Songlai Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csk", + ReferenceName = "Jola-Kasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "csl", + ReferenceName = "Chinese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csm", + ReferenceName = "Central Sierra Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "csn", + ReferenceName = "Colombian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cso", + ReferenceName = "Sochiapam Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "csq", + ReferenceName = "Croatia Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csr", + ReferenceName = "Costa Rican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "css", + ReferenceName = "Southern Ohlone", + Scope = "I", + Type = "E" + }, + new + { + Id = "cst", + ReferenceName = "Northern Ohlone", + Scope = "I", + Type = "L" + }, + new + { + Id = "csv", + ReferenceName = "Sumtu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csw", + ReferenceName = "Swampy Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "csy", + ReferenceName = "Siyin Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csz", + ReferenceName = "Coos", + Scope = "I", + Type = "L" + }, + new + { + Id = "cta", + ReferenceName = "Tataltepec Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctc", + ReferenceName = "Chetco", + Scope = "I", + Type = "E" + }, + new + { + Id = "ctd", + ReferenceName = "Tedim Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cte", + ReferenceName = "Tepinapa Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctg", + ReferenceName = "Chittagonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cth", + ReferenceName = "Thaiphum Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctl", + ReferenceName = "Tlacoatzintepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctm", + ReferenceName = "Chitimacha", + Scope = "I", + Type = "E" + }, + new + { + Id = "ctn", + ReferenceName = "Chhintange", + Scope = "I", + Type = "L" + }, + new + { + Id = "cto", + ReferenceName = "Emberá-Catío", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctp", + ReferenceName = "Western Highland Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cts", + ReferenceName = "Northern Catanduanes Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctt", + ReferenceName = "Wayanad Chetti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctu", + ReferenceName = "Chol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctz", + ReferenceName = "Zacatepec Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cua", + ReferenceName = "Cua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cub", + ReferenceName = "Cubeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuc", + ReferenceName = "Usila Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cug", + ReferenceName = "Chungmboko", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuh", + ReferenceName = "Chuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cui", + ReferenceName = "Cuiba", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuj", + ReferenceName = "Mashco Piro", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuk", + ReferenceName = "San Blas Kuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "cul", + ReferenceName = "Culina", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuo", + ReferenceName = "Cumanagoto", + Scope = "I", + Type = "E" + }, + new + { + Id = "cup", + ReferenceName = "Cupeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "cuq", + ReferenceName = "Cun", + Scope = "I", + Type = "L" + }, + new + { + Id = "cur", + ReferenceName = "Chhulung", + Scope = "I", + Type = "L" + }, + new + { + Id = "cut", + ReferenceName = "Teutila Cuicatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuu", + ReferenceName = "Tai Ya", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuv", + ReferenceName = "Cuvok", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuw", + ReferenceName = "Chukwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cux", + ReferenceName = "Tepeuxila Cuicatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuy", + ReferenceName = "Cuitlatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cvg", + ReferenceName = "Chug", + Scope = "I", + Type = "L" + }, + new + { + Id = "cvn", + ReferenceName = "Valle Nacional Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwa", + ReferenceName = "Kabwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwb", + ReferenceName = "Maindo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwd", + ReferenceName = "Woods Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwe", + ReferenceName = "Kwere", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwg", + ReferenceName = "Chewong", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwt", + ReferenceName = "Kuwaataay", + Scope = "I", + Type = "L" + }, + new + { + Id = "cya", + ReferenceName = "Nopala Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cyb", + ReferenceName = "Cayubaba", + Scope = "I", + Type = "E" + }, + new + { + Id = "cym", + Part1 = "cy", + Part2B = "wel", + Part2T = "cym", + ReferenceName = "Welsh", + Scope = "I", + Type = "L" + }, + new + { + Id = "cyo", + ReferenceName = "Cuyonon", + Scope = "I", + Type = "L" + }, + new + { + Id = "czh", + ReferenceName = "Huizhou Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "czk", + ReferenceName = "Knaanic", + Scope = "I", + Type = "E" + }, + new + { + Id = "czn", + ReferenceName = "Zenzontepec Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "czo", + ReferenceName = "Min Zhong Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "czt", + ReferenceName = "Zotung Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "daa", + ReferenceName = "Dangaléat", + Scope = "I", + Type = "L" + }, + new + { + Id = "dac", + ReferenceName = "Dambi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dad", + ReferenceName = "Marik", + Scope = "I", + Type = "L" + }, + new + { + Id = "dae", + ReferenceName = "Duupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dag", + ReferenceName = "Dagbani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dah", + ReferenceName = "Gwahatike", + Scope = "I", + Type = "L" + }, + new + { + Id = "dai", + ReferenceName = "Day", + Scope = "I", + Type = "L" + }, + new + { + Id = "daj", + ReferenceName = "Dar Fur Daju", + Scope = "I", + Type = "L" + }, + new + { + Id = "dak", + Part2B = "dak", + Part2T = "dak", + ReferenceName = "Dakota", + Scope = "I", + Type = "L" + }, + new + { + Id = "dal", + ReferenceName = "Dahalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dam", + ReferenceName = "Damakawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dan", + Part1 = "da", + Part2B = "dan", + Part2T = "dan", + ReferenceName = "Danish", + Scope = "I", + Type = "L" + }, + new + { + Id = "dao", + ReferenceName = "Daai Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "daq", + ReferenceName = "Dandami Maria", + Scope = "I", + Type = "L" + }, + new + { + Id = "dar", + Part2B = "dar", + Part2T = "dar", + ReferenceName = "Dargwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "das", + ReferenceName = "Daho-Doo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dau", + ReferenceName = "Dar Sila Daju", + Scope = "I", + Type = "L" + }, + new + { + Id = "dav", + ReferenceName = "Taita", + Scope = "I", + Type = "L" + }, + new + { + Id = "daw", + ReferenceName = "Davawenyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dax", + ReferenceName = "Dayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "daz", + ReferenceName = "Dao", + Scope = "I", + Type = "L" + }, + new + { + Id = "dba", + ReferenceName = "Bangime", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbb", + ReferenceName = "Deno", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbd", + ReferenceName = "Dadiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbe", + ReferenceName = "Dabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbf", + ReferenceName = "Edopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbg", + ReferenceName = "Dogul Dom Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbi", + ReferenceName = "Doka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbj", + ReferenceName = "Ida'an", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbl", + ReferenceName = "Dyirbal", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbm", + ReferenceName = "Duguri", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbn", + ReferenceName = "Duriankere", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbo", + ReferenceName = "Dulbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbp", + ReferenceName = "Duwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbq", + ReferenceName = "Daba", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbr", + ReferenceName = "Dabarre", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbt", + ReferenceName = "Ben Tey Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbu", + ReferenceName = "Bondum Dom Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbv", + ReferenceName = "Dungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbw", + ReferenceName = "Bankan Tey Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dby", + ReferenceName = "Dibiyaso", + Scope = "I", + Type = "L" + }, + new + { + Id = "dcc", + ReferenceName = "Deccan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dcr", + ReferenceName = "Negerhollands", + Scope = "I", + Type = "E" + }, + new + { + Id = "dda", + ReferenceName = "Dadi Dadi", + Scope = "I", + Type = "E" + }, + new + { + Id = "ddd", + ReferenceName = "Dongotono", + Scope = "I", + Type = "L" + }, + new + { + Id = "dde", + ReferenceName = "Doondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddg", + ReferenceName = "Fataluku", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddi", + ReferenceName = "West Goodenough", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddj", + ReferenceName = "Jaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddn", + ReferenceName = "Dendi (Benin)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddo", + ReferenceName = "Dido", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddr", + ReferenceName = "Dhudhuroa", + Scope = "I", + Type = "E" + }, + new + { + Id = "dds", + ReferenceName = "Donno So Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddw", + ReferenceName = "Dawera-Daweloor", + Scope = "I", + Type = "L" + }, + new + { + Id = "dec", + ReferenceName = "Dagik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ded", + ReferenceName = "Dedua", + Scope = "I", + Type = "L" + }, + new + { + Id = "dee", + ReferenceName = "Dewoin", + Scope = "I", + Type = "L" + }, + new + { + Id = "def", + ReferenceName = "Dezfuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "deg", + ReferenceName = "Degema", + Scope = "I", + Type = "L" + }, + new + { + Id = "deh", + ReferenceName = "Dehwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "dei", + ReferenceName = "Demisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dek", + ReferenceName = "Dek", + Scope = "I", + Type = "L" + }, + new + { + Id = "del", + Part2B = "del", + Part2T = "del", + ReferenceName = "Delaware", + Scope = "M", + Type = "L" + }, + new + { + Id = "dem", + ReferenceName = "Dem", + Scope = "I", + Type = "L" + }, + new + { + Id = "den", + Part2B = "den", + Part2T = "den", + ReferenceName = "Slave (Athapascan)", + Scope = "M", + Type = "L" + }, + new + { + Id = "dep", + ReferenceName = "Pidgin Delaware", + Scope = "I", + Type = "E" + }, + new + { + Id = "deq", + ReferenceName = "Dendi (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "der", + ReferenceName = "Deori", + Scope = "I", + Type = "L" + }, + new + { + Id = "des", + ReferenceName = "Desano", + Scope = "I", + Type = "L" + }, + new + { + Id = "deu", + Part1 = "de", + Part2B = "ger", + Part2T = "deu", + ReferenceName = "German", + Scope = "I", + Type = "L" + }, + new + { + Id = "dev", + ReferenceName = "Domung", + Scope = "I", + Type = "L" + }, + new + { + Id = "dez", + ReferenceName = "Dengese", + Scope = "I", + Type = "L" + }, + new + { + Id = "dga", + ReferenceName = "Southern Dagaare", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgb", + ReferenceName = "Bunoge Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgc", + ReferenceName = "Casiguran Dumagat Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgd", + ReferenceName = "Dagaari Dioula", + Scope = "I", + Type = "L" + }, + new + { + Id = "dge", + ReferenceName = "Degenan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgg", + ReferenceName = "Doga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgh", + ReferenceName = "Dghwede", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgi", + ReferenceName = "Northern Dagara", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgk", + ReferenceName = "Dagba", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgl", + ReferenceName = "Andaandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgn", + ReferenceName = "Dagoman", + Scope = "I", + Type = "E" + }, + new + { + Id = "dgo", + ReferenceName = "Dogri (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgr", + Part2B = "dgr", + Part2T = "dgr", + ReferenceName = "Dogrib", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgs", + ReferenceName = "Dogoso", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgt", + ReferenceName = "Ndra'ngith", + Scope = "I", + Type = "E" + }, + new + { + Id = "dgu", + ReferenceName = "Degaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgw", + ReferenceName = "Daungwurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "dgx", + ReferenceName = "Doghoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgz", + ReferenceName = "Daga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhd", + ReferenceName = "Dhundari", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhg", + ReferenceName = "Dhangu-Djangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhi", + ReferenceName = "Dhimal", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhl", + ReferenceName = "Dhalandji", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhm", + ReferenceName = "Zemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhn", + ReferenceName = "Dhanki", + Scope = "I", + Type = "L" + }, + new + { + Id = "dho", + ReferenceName = "Dhodia", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhr", + ReferenceName = "Dhargari", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhs", + ReferenceName = "Dhaiso", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhu", + ReferenceName = "Dhurga", + Scope = "I", + Type = "E" + }, + new + { + Id = "dhv", + ReferenceName = "Dehu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhw", + ReferenceName = "Dhanwar (Nepal)", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhx", + ReferenceName = "Dhungaloo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dia", + ReferenceName = "Dia", + Scope = "I", + Type = "L" + }, + new + { + Id = "dib", + ReferenceName = "South Central Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dic", + ReferenceName = "Lakota Dida", + Scope = "I", + Type = "L" + }, + new + { + Id = "did", + ReferenceName = "Didinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dif", + ReferenceName = "Dieri", + Scope = "I", + Type = "E" + }, + new + { + Id = "dig", + ReferenceName = "Digo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dih", + ReferenceName = "Kumiai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dii", + ReferenceName = "Dimbong", + Scope = "I", + Type = "L" + }, + new + { + Id = "dij", + ReferenceName = "Dai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dik", + ReferenceName = "Southwestern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dil", + ReferenceName = "Dilling", + Scope = "I", + Type = "L" + }, + new + { + Id = "dim", + ReferenceName = "Dime", + Scope = "I", + Type = "L" + }, + new + { + Id = "din", + Part2B = "din", + Part2T = "din", + ReferenceName = "Dinka", + Scope = "M", + Type = "L" + }, + new + { + Id = "dio", + ReferenceName = "Dibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dip", + ReferenceName = "Northeastern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "diq", + ReferenceName = "Dimli (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "dir", + ReferenceName = "Dirim", + Scope = "I", + Type = "L" + }, + new + { + Id = "dis", + ReferenceName = "Dimasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "diu", + ReferenceName = "Diriku", + Scope = "I", + Type = "L" + }, + new + { + Id = "div", + Part1 = "dv", + Part2B = "div", + Part2T = "div", + ReferenceName = "Dhivehi", + Scope = "I", + Type = "L" + }, + new + { + Id = "diw", + ReferenceName = "Northwestern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dix", + ReferenceName = "Dixon Reef", + Scope = "I", + Type = "L" + }, + new + { + Id = "diy", + ReferenceName = "Diuwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "diz", + ReferenceName = "Ding", + Scope = "I", + Type = "L" + }, + new + { + Id = "dja", + ReferenceName = "Djadjawurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "djb", + ReferenceName = "Djinba", + Scope = "I", + Type = "L" + }, + new + { + Id = "djc", + ReferenceName = "Dar Daju Daju", + Scope = "I", + Type = "L" + }, + new + { + Id = "djd", + ReferenceName = "Djamindjung", + Scope = "I", + Type = "L" + }, + new + { + Id = "dje", + ReferenceName = "Zarma", + Scope = "I", + Type = "L" + }, + new + { + Id = "djf", + ReferenceName = "Djangun", + Scope = "I", + Type = "E" + }, + new + { + Id = "dji", + ReferenceName = "Djinang", + Scope = "I", + Type = "L" + }, + new + { + Id = "djj", + ReferenceName = "Djeebbana", + Scope = "I", + Type = "L" + }, + new + { + Id = "djk", + ReferenceName = "Eastern Maroon Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "djm", + ReferenceName = "Jamsay Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "djn", + ReferenceName = "Jawoyn", + Scope = "I", + Type = "L" + }, + new + { + Id = "djo", + ReferenceName = "Jangkang", + Scope = "I", + Type = "L" + }, + new + { + Id = "djr", + ReferenceName = "Djambarrpuyngu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dju", + ReferenceName = "Kapriman", + Scope = "I", + Type = "L" + }, + new + { + Id = "djw", + ReferenceName = "Djawi", + Scope = "I", + Type = "E" + }, + new + { + Id = "dka", + ReferenceName = "Dakpakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "dkk", + ReferenceName = "Dakka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dkr", + ReferenceName = "Kuijau", + Scope = "I", + Type = "L" + }, + new + { + Id = "dks", + ReferenceName = "Southeastern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dkx", + ReferenceName = "Mazagway", + Scope = "I", + Type = "L" + }, + new + { + Id = "dlg", + ReferenceName = "Dolgan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dlk", + ReferenceName = "Dahalik", + Scope = "I", + Type = "L" + }, + new + { + Id = "dlm", + ReferenceName = "Dalmatian", + Scope = "I", + Type = "E" + }, + new + { + Id = "dln", + ReferenceName = "Darlong", + Scope = "I", + Type = "L" + }, + new + { + Id = "dma", + ReferenceName = "Duma", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmb", + ReferenceName = "Mombo Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmc", + ReferenceName = "Gavak", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmd", + ReferenceName = "Madhi Madhi", + Scope = "I", + Type = "E" + }, + new + { + Id = "dme", + ReferenceName = "Dugwor", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmg", + ReferenceName = "Upper Kinabatangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmk", + ReferenceName = "Domaaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "dml", + ReferenceName = "Dameli", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmm", + ReferenceName = "Dama", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmo", + ReferenceName = "Kemedzung", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmr", + ReferenceName = "East Damar", + Scope = "I", + Type = "L" + }, + new + { + Id = "dms", + ReferenceName = "Dampelas", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmu", + ReferenceName = "Dubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmv", + ReferenceName = "Dumpas", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmw", + ReferenceName = "Mudburra", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmx", + ReferenceName = "Dema", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmy", + ReferenceName = "Demta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dna", + ReferenceName = "Upper Grand Valley Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnd", + ReferenceName = "Daonda", + Scope = "I", + Type = "L" + }, + new + { + Id = "dne", + ReferenceName = "Ndendeule", + Scope = "I", + Type = "L" + }, + new + { + Id = "dng", + ReferenceName = "Dungan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dni", + ReferenceName = "Lower Grand Valley Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnj", + ReferenceName = "Dan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnk", + ReferenceName = "Dengka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnn", + ReferenceName = "Dzùùngoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dno", + ReferenceName = "Ndrulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnr", + ReferenceName = "Danaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnt", + ReferenceName = "Mid Grand Valley Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnu", + ReferenceName = "Danau", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnv", + ReferenceName = "Danu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnw", + ReferenceName = "Western Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dny", + ReferenceName = "Dení", + Scope = "I", + Type = "L" + }, + new + { + Id = "doa", + ReferenceName = "Dom", + Scope = "I", + Type = "L" + }, + new + { + Id = "dob", + ReferenceName = "Dobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "doc", + ReferenceName = "Northern Dong", + Scope = "I", + Type = "L" + }, + new + { + Id = "doe", + ReferenceName = "Doe", + Scope = "I", + Type = "L" + }, + new + { + Id = "dof", + ReferenceName = "Domu", + Scope = "I", + Type = "L" + }, + new + { + Id = "doh", + ReferenceName = "Dong", + Scope = "I", + Type = "L" + }, + new + { + Id = "doi", + Part2B = "doi", + Part2T = "doi", + ReferenceName = "Dogri (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "dok", + ReferenceName = "Dondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dol", + ReferenceName = "Doso", + Scope = "I", + Type = "L" + }, + new + { + Id = "don", + ReferenceName = "Toura (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "doo", + ReferenceName = "Dongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dop", + ReferenceName = "Lukpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "doq", + ReferenceName = "Dominican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "dor", + ReferenceName = "Dori'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "dos", + ReferenceName = "Dogosé", + Scope = "I", + Type = "L" + }, + new + { + Id = "dot", + ReferenceName = "Dass", + Scope = "I", + Type = "L" + }, + new + { + Id = "dov", + ReferenceName = "Dombe", + Scope = "I", + Type = "L" + }, + new + { + Id = "dow", + ReferenceName = "Doyayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dox", + ReferenceName = "Bussa", + Scope = "I", + Type = "L" + }, + new + { + Id = "doy", + ReferenceName = "Dompo", + Scope = "I", + Type = "L" + }, + new + { + Id = "doz", + ReferenceName = "Dorze", + Scope = "I", + Type = "L" + }, + new + { + Id = "dpp", + ReferenceName = "Papar", + Scope = "I", + Type = "L" + }, + new + { + Id = "drb", + ReferenceName = "Dair", + Scope = "I", + Type = "L" + }, + new + { + Id = "drc", + ReferenceName = "Minderico", + Scope = "I", + Type = "L" + }, + new + { + Id = "drd", + ReferenceName = "Darmiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dre", + ReferenceName = "Dolpo", + Scope = "I", + Type = "L" + }, + new + { + Id = "drg", + ReferenceName = "Rungus", + Scope = "I", + Type = "L" + }, + new + { + Id = "dri", + ReferenceName = "C'Lela", + Scope = "I", + Type = "L" + }, + new + { + Id = "drl", + ReferenceName = "Paakantyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "drn", + ReferenceName = "West Damar", + Scope = "I", + Type = "L" + }, + new + { + Id = "dro", + ReferenceName = "Daro-Matu Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "drq", + ReferenceName = "Dura", + Scope = "I", + Type = "E" + }, + new + { + Id = "drr", + ReferenceName = "Dororo", + Scope = "I", + Type = "E" + }, + new + { + Id = "drs", + ReferenceName = "Gedeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "drt", + ReferenceName = "Drents", + Scope = "I", + Type = "L" + }, + new + { + Id = "dru", + ReferenceName = "Rukai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dry", + ReferenceName = "Darai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsb", + Part2B = "dsb", + Part2T = "dsb", + ReferenceName = "Lower Sorbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "dse", + ReferenceName = "Dutch Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsh", + ReferenceName = "Daasanach", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsi", + ReferenceName = "Disa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsl", + ReferenceName = "Danish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsn", + ReferenceName = "Dusner", + Scope = "I", + Type = "E" + }, + new + { + Id = "dso", + ReferenceName = "Desiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsq", + ReferenceName = "Tadaksahak", + Scope = "I", + Type = "L" + }, + new + { + Id = "dta", + ReferenceName = "Daur", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtb", + ReferenceName = "Labuk-Kinabatangan Kadazan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtd", + ReferenceName = "Ditidaht", + Scope = "I", + Type = "L" + }, + new + { + Id = "dth", + ReferenceName = "Adithinngithigh", + Scope = "I", + Type = "E" + }, + new + { + Id = "dti", + ReferenceName = "Ana Tinga Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtk", + ReferenceName = "Tene Kan Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtm", + ReferenceName = "Tomo Kan Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtn", + ReferenceName = "Daatsʼíin", + Scope = "I", + Type = "L" + }, + new + { + Id = "dto", + ReferenceName = "Tommo So Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtp", + ReferenceName = "Kadazan Dusun", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtr", + ReferenceName = "Lotud", + Scope = "I", + Type = "L" + }, + new + { + Id = "dts", + ReferenceName = "Toro So Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtt", + ReferenceName = "Toro Tegu Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtu", + ReferenceName = "Tebul Ure Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dty", + ReferenceName = "Dotyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "dua", + Part2B = "dua", + Part2T = "dua", + ReferenceName = "Duala", + Scope = "I", + Type = "L" + }, + new + { + Id = "dub", + ReferenceName = "Dubli", + Scope = "I", + Type = "L" + }, + new + { + Id = "duc", + ReferenceName = "Duna", + Scope = "I", + Type = "L" + }, + new + { + Id = "due", + ReferenceName = "Umiray Dumaget Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "duf", + ReferenceName = "Dumbea", + Scope = "I", + Type = "L" + }, + new + { + Id = "dug", + ReferenceName = "Duruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "duh", + ReferenceName = "Dungra Bhil", + Scope = "I", + Type = "L" + }, + new + { + Id = "dui", + ReferenceName = "Dumun", + Scope = "I", + Type = "L" + }, + new + { + Id = "duk", + ReferenceName = "Uyajitaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dul", + ReferenceName = "Alabat Island Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dum", + Part2B = "dum", + Part2T = "dum", + ReferenceName = "Middle Dutch (ca. 1050-1350)", + Scope = "I", + Type = "H" + }, + new + { + Id = "dun", + ReferenceName = "Dusun Deyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "duo", + ReferenceName = "Dupaninan Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dup", + ReferenceName = "Duano", + Scope = "I", + Type = "L" + }, + new + { + Id = "duq", + ReferenceName = "Dusun Malang", + Scope = "I", + Type = "L" + }, + new + { + Id = "dur", + ReferenceName = "Dii", + Scope = "I", + Type = "L" + }, + new + { + Id = "dus", + ReferenceName = "Dumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "duu", + ReferenceName = "Drung", + Scope = "I", + Type = "L" + }, + new + { + Id = "duv", + ReferenceName = "Duvle", + Scope = "I", + Type = "L" + }, + new + { + Id = "duw", + ReferenceName = "Dusun Witu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dux", + ReferenceName = "Duungooma", + Scope = "I", + Type = "L" + }, + new + { + Id = "duy", + ReferenceName = "Dicamay Agta", + Scope = "I", + Type = "E" + }, + new + { + Id = "duz", + ReferenceName = "Duli-Gey", + Scope = "I", + Type = "E" + }, + new + { + Id = "dva", + ReferenceName = "Duau", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwa", + ReferenceName = "Diri", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwr", + ReferenceName = "Dawro", + Scope = "I", + Type = "L" + }, + new + { + Id = "dws", + ReferenceName = "Dutton World Speedwords", + Scope = "I", + Type = "C" + }, + new + { + Id = "dwu", + ReferenceName = "Dhuwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "dww", + ReferenceName = "Dawawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwy", + ReferenceName = "Dhuwaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwz", + ReferenceName = "Dewas Rai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dya", + ReferenceName = "Dyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyb", + ReferenceName = "Dyaberdyaber", + Scope = "I", + Type = "E" + }, + new + { + Id = "dyd", + ReferenceName = "Dyugun", + Scope = "I", + Type = "E" + }, + new + { + Id = "dyg", + ReferenceName = "Villa Viciosa Agta", + Scope = "I", + Type = "E" + }, + new + { + Id = "dyi", + ReferenceName = "Djimini Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dym", + ReferenceName = "Yanda Dom Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyn", + ReferenceName = "Dyangadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyo", + ReferenceName = "Jola-Fonyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyu", + Part2B = "dyu", + Part2T = "dyu", + ReferenceName = "Dyula", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyy", + ReferenceName = "Djabugay", + Scope = "I", + Type = "L" + }, + new + { + Id = "dza", + ReferenceName = "Tunzu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dze", + ReferenceName = "Djiwarli", + Scope = "I", + Type = "E" + }, + new + { + Id = "dzg", + ReferenceName = "Dazaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dzl", + ReferenceName = "Dzalakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "dzn", + ReferenceName = "Dzando", + Scope = "I", + Type = "L" + }, + new + { + Id = "dzo", + Part1 = "dz", + Part2B = "dzo", + Part2T = "dzo", + ReferenceName = "Dzongkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "eaa", + ReferenceName = "Karenggapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "ebg", + ReferenceName = "Ebughu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebk", + ReferenceName = "Eastern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebo", + ReferenceName = "Teke-Ebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebr", + ReferenceName = "Ebrié", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebu", + ReferenceName = "Embu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ecr", + ReferenceName = "Eteocretan", + Scope = "I", + Type = "A" + }, + new + { + Id = "ecs", + ReferenceName = "Ecuadorian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ecy", + ReferenceName = "Eteocypriot", + Scope = "I", + Type = "A" + }, + new + { + Id = "eee", + ReferenceName = "E", + Scope = "I", + Type = "L" + }, + new + { + Id = "efa", + ReferenceName = "Efai", + Scope = "I", + Type = "L" + }, + new + { + Id = "efe", + ReferenceName = "Efe", + Scope = "I", + Type = "L" + }, + new + { + Id = "efi", + Part2B = "efi", + Part2T = "efi", + ReferenceName = "Efik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ega", + ReferenceName = "Ega", + Scope = "I", + Type = "L" + }, + new + { + Id = "egl", + ReferenceName = "Emilian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ego", + ReferenceName = "Eggon", + Scope = "I", + Type = "L" + }, + new + { + Id = "egy", + Part2B = "egy", + Part2T = "egy", + ReferenceName = "Egyptian (Ancient)", + Scope = "I", + Type = "A" + }, + new + { + Id = "ehu", + ReferenceName = "Ehueun", + Scope = "I", + Type = "L" + }, + new + { + Id = "eip", + ReferenceName = "Eipomek", + Scope = "I", + Type = "L" + }, + new + { + Id = "eit", + ReferenceName = "Eitiep", + Scope = "I", + Type = "L" + }, + new + { + Id = "eiv", + ReferenceName = "Askopan", + Scope = "I", + Type = "L" + }, + new + { + Id = "eja", + ReferenceName = "Ejamat", + Scope = "I", + Type = "L" + }, + new + { + Id = "eka", + Part2B = "eka", + Part2T = "eka", + ReferenceName = "Ekajuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekc", + ReferenceName = "Eastern Karnic", + Scope = "I", + Type = "E" + }, + new + { + Id = "eke", + ReferenceName = "Ekit", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekg", + ReferenceName = "Ekari", + Scope = "I", + Type = "L" + }, + new + { + Id = "eki", + ReferenceName = "Eki", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekk", + ReferenceName = "Standard Estonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekl", + ReferenceName = "Kol (Bangladesh)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekm", + ReferenceName = "Elip", + Scope = "I", + Type = "L" + }, + new + { + Id = "eko", + ReferenceName = "Koti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekp", + ReferenceName = "Ekpeye", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekr", + ReferenceName = "Yace", + Scope = "I", + Type = "L" + }, + new + { + Id = "eky", + ReferenceName = "Eastern Kayah", + Scope = "I", + Type = "L" + }, + new + { + Id = "ele", + ReferenceName = "Elepi", + Scope = "I", + Type = "L" + }, + new + { + Id = "elh", + ReferenceName = "El Hugeirat", + Scope = "I", + Type = "L" + }, + new + { + Id = "eli", + ReferenceName = "Nding", + Scope = "I", + Type = "E" + }, + new + { + Id = "elk", + ReferenceName = "Elkei", + Scope = "I", + Type = "L" + }, + new + { + Id = "ell", + Part1 = "el", + Part2B = "gre", + Part2T = "ell", + ReferenceName = "Modern Greek (1453-)", + Scope = "I", + Type = "L" + }, + new + { + Id = "elm", + ReferenceName = "Eleme", + Scope = "I", + Type = "L" + }, + new + { + Id = "elo", + ReferenceName = "El Molo", + Scope = "I", + Type = "L" + }, + new + { + Id = "elu", + ReferenceName = "Elu", + Scope = "I", + Type = "L" + }, + new + { + Id = "elx", + Part2B = "elx", + Part2T = "elx", + ReferenceName = "Elamite", + Scope = "I", + Type = "A" + }, + new + { + Id = "ema", + ReferenceName = "Emai-Iuleha-Ora", + Scope = "I", + Type = "L" + }, + new + { + Id = "emb", + ReferenceName = "Embaloh", + Scope = "I", + Type = "L" + }, + new + { + Id = "eme", + ReferenceName = "Emerillon", + Scope = "I", + Type = "L" + }, + new + { + Id = "emg", + ReferenceName = "Eastern Meohang", + Scope = "I", + Type = "L" + }, + new + { + Id = "emi", + ReferenceName = "Mussau-Emira", + Scope = "I", + Type = "L" + }, + new + { + Id = "emk", + ReferenceName = "Eastern Maninkakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "emm", + ReferenceName = "Mamulique", + Scope = "I", + Type = "E" + }, + new + { + Id = "emn", + ReferenceName = "Eman", + Scope = "I", + Type = "L" + }, + new + { + Id = "emp", + ReferenceName = "Northern Emberá", + Scope = "I", + Type = "L" + }, + new + { + Id = "ems", + ReferenceName = "Pacific Gulf Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "emu", + ReferenceName = "Eastern Muria", + Scope = "I", + Type = "L" + }, + new + { + Id = "emw", + ReferenceName = "Emplawas", + Scope = "I", + Type = "L" + }, + new + { + Id = "emx", + ReferenceName = "Erromintxela", + Scope = "I", + Type = "L" + }, + new + { + Id = "emy", + ReferenceName = "Epigraphic Mayan", + Scope = "I", + Type = "A" + }, + new + { + Id = "ena", + ReferenceName = "Apali", + Scope = "I", + Type = "L" + }, + new + { + Id = "enb", + ReferenceName = "Markweeta", + Scope = "I", + Type = "L" + }, + new + { + Id = "enc", + ReferenceName = "En", + Scope = "I", + Type = "L" + }, + new + { + Id = "end", + ReferenceName = "Ende", + Scope = "I", + Type = "L" + }, + new + { + Id = "enf", + ReferenceName = "Forest Enets", + Scope = "I", + Type = "L" + }, + new + { + Id = "eng", + Part1 = "en", + Part2B = "eng", + Part2T = "eng", + ReferenceName = "English", + Scope = "I", + Type = "L" + }, + new + { + Id = "enh", + ReferenceName = "Tundra Enets", + Scope = "I", + Type = "L" + }, + new + { + Id = "enl", + ReferenceName = "Enlhet", + Scope = "I", + Type = "L" + }, + new + { + Id = "enm", + Part2B = "enm", + Part2T = "enm", + ReferenceName = "Middle English (1100-1500)", + Scope = "I", + Type = "H" + }, + new + { + Id = "enn", + ReferenceName = "Engenni", + Scope = "I", + Type = "L" + }, + new + { + Id = "eno", + ReferenceName = "Enggano", + Scope = "I", + Type = "L" + }, + new + { + Id = "enq", + ReferenceName = "Enga", + Scope = "I", + Type = "L" + }, + new + { + Id = "enr", + ReferenceName = "Emumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "enu", + ReferenceName = "Enu", + Scope = "I", + Type = "L" + }, + new + { + Id = "env", + ReferenceName = "Enwan (Edu State)", + Scope = "I", + Type = "L" + }, + new + { + Id = "enw", + ReferenceName = "Enwan (Akwa Ibom State)", + Scope = "I", + Type = "L" + }, + new + { + Id = "enx", + ReferenceName = "Enxet", + Scope = "I", + Type = "L" + }, + new + { + Id = "eot", + ReferenceName = "Beti (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "epi", + ReferenceName = "Epie", + Scope = "I", + Type = "L" + }, + new + { + Id = "epo", + Part1 = "eo", + Part2B = "epo", + Part2T = "epo", + ReferenceName = "Esperanto", + Scope = "I", + Type = "C" + }, + new + { + Id = "era", + ReferenceName = "Eravallan", + Scope = "I", + Type = "L" + }, + new + { + Id = "erg", + ReferenceName = "Sie", + Scope = "I", + Type = "L" + }, + new + { + Id = "erh", + ReferenceName = "Eruwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "eri", + ReferenceName = "Ogea", + Scope = "I", + Type = "L" + }, + new + { + Id = "erk", + ReferenceName = "South Efate", + Scope = "I", + Type = "L" + }, + new + { + Id = "ero", + ReferenceName = "Horpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "err", + ReferenceName = "Erre", + Scope = "I", + Type = "E" + }, + new + { + Id = "ers", + ReferenceName = "Ersu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ert", + ReferenceName = "Eritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "erw", + ReferenceName = "Erokwanas", + Scope = "I", + Type = "L" + }, + new + { + Id = "ese", + ReferenceName = "Ese Ejja", + Scope = "I", + Type = "L" + }, + new + { + Id = "esg", + ReferenceName = "Aheri Gondi", + Scope = "I", + Type = "L" + }, + new + { + Id = "esh", + ReferenceName = "Eshtehardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "esi", + ReferenceName = "North Alaskan Inupiatun", + Scope = "I", + Type = "L" + }, + new + { + Id = "esk", + ReferenceName = "Northwest Alaska Inupiatun", + Scope = "I", + Type = "L" + }, + new + { + Id = "esl", + ReferenceName = "Egypt Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "esm", + ReferenceName = "Esuma", + Scope = "I", + Type = "E" + }, + new + { + Id = "esn", + ReferenceName = "Salvadoran Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "eso", + ReferenceName = "Estonian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "esq", + ReferenceName = "Esselen", + Scope = "I", + Type = "E" + }, + new + { + Id = "ess", + ReferenceName = "Central Siberian Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "est", + Part1 = "et", + Part2B = "est", + Part2T = "est", + ReferenceName = "Estonian", + Scope = "M", + Type = "L" + }, + new + { + Id = "esu", + ReferenceName = "Central Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "esy", + ReferenceName = "Eskayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "etb", + ReferenceName = "Etebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "etc", + ReferenceName = "Etchemin", + Scope = "I", + Type = "E" + }, + new + { + Id = "eth", + ReferenceName = "Ethiopian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "etn", + ReferenceName = "Eton (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "eto", + ReferenceName = "Eton (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "etr", + ReferenceName = "Edolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ets", + ReferenceName = "Yekhee", + Scope = "I", + Type = "L" + }, + new + { + Id = "ett", + ReferenceName = "Etruscan", + Scope = "I", + Type = "A" + }, + new + { + Id = "etu", + ReferenceName = "Ejagham", + Scope = "I", + Type = "L" + }, + new + { + Id = "etx", + ReferenceName = "Eten", + Scope = "I", + Type = "L" + }, + new + { + Id = "etz", + ReferenceName = "Semimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "eus", + Part1 = "eu", + Part2B = "baq", + Part2T = "eus", + ReferenceName = "Basque", + Scope = "I", + Type = "L" + }, + new + { + Id = "eve", + ReferenceName = "Even", + Scope = "I", + Type = "L" + }, + new + { + Id = "evh", + ReferenceName = "Uvbie", + Scope = "I", + Type = "L" + }, + new + { + Id = "evn", + ReferenceName = "Evenki", + Scope = "I", + Type = "L" + }, + new + { + Id = "ewe", + Part1 = "ee", + Part2B = "ewe", + Part2T = "ewe", + ReferenceName = "Ewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ewo", + Part2B = "ewo", + Part2T = "ewo", + ReferenceName = "Ewondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ext", + ReferenceName = "Extremaduran", + Scope = "I", + Type = "L" + }, + new + { + Id = "eya", + ReferenceName = "Eyak", + Scope = "I", + Type = "E" + }, + new + { + Id = "eyo", + ReferenceName = "Keiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "eza", + ReferenceName = "Ezaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "eze", + ReferenceName = "Uzekwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "faa", + ReferenceName = "Fasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fab", + ReferenceName = "Fa d'Ambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fad", + ReferenceName = "Wagi", + Scope = "I", + Type = "L" + }, + new + { + Id = "faf", + ReferenceName = "Fagani", + Scope = "I", + Type = "L" + }, + new + { + Id = "fag", + ReferenceName = "Finongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "fah", + ReferenceName = "Baissa Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fai", + ReferenceName = "Faiwol", + Scope = "I", + Type = "L" + }, + new + { + Id = "faj", + ReferenceName = "Faita", + Scope = "I", + Type = "L" + }, + new + { + Id = "fak", + ReferenceName = "Fang (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "fal", + ReferenceName = "South Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fam", + ReferenceName = "Fam", + Scope = "I", + Type = "L" + }, + new + { + Id = "fan", + Part2B = "fan", + Part2T = "fan", + ReferenceName = "Fang (Equatorial Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "fao", + Part1 = "fo", + Part2B = "fao", + Part2T = "fao", + ReferenceName = "Faroese", + Scope = "I", + Type = "L" + }, + new + { + Id = "fap", + ReferenceName = "Paloor", + Scope = "I", + Type = "L" + }, + new + { + Id = "far", + ReferenceName = "Fataleka", + Scope = "I", + Type = "L" + }, + new + { + Id = "fas", + Part1 = "fa", + Part2B = "per", + Part2T = "fas", + ReferenceName = "Persian", + Scope = "M", + Type = "L" + }, + new + { + Id = "fat", + Part2B = "fat", + Part2T = "fat", + ReferenceName = "Fanti", + Scope = "I", + Type = "L" + }, + new + { + Id = "fau", + ReferenceName = "Fayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fax", + ReferenceName = "Fala", + Scope = "I", + Type = "L" + }, + new + { + Id = "fay", + ReferenceName = "Southwestern Fars", + Scope = "I", + Type = "L" + }, + new + { + Id = "faz", + ReferenceName = "Northwestern Fars", + Scope = "I", + Type = "L" + }, + new + { + Id = "fbl", + ReferenceName = "West Albay Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "fcs", + ReferenceName = "Quebec Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fer", + ReferenceName = "Feroge", + Scope = "I", + Type = "L" + }, + new + { + Id = "ffi", + ReferenceName = "Foia Foia", + Scope = "I", + Type = "L" + }, + new + { + Id = "ffm", + ReferenceName = "Maasina Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fgr", + ReferenceName = "Fongoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "fia", + ReferenceName = "Nobiin", + Scope = "I", + Type = "L" + }, + new + { + Id = "fie", + ReferenceName = "Fyer", + Scope = "I", + Type = "L" + }, + new + { + Id = "fij", + Part1 = "fj", + Part2B = "fij", + Part2T = "fij", + ReferenceName = "Fijian", + Scope = "I", + Type = "L" + }, + new + { + Id = "fil", + Part2B = "fil", + Part2T = "fil", + ReferenceName = "Filipino", + Scope = "I", + Type = "L" + }, + new + { + Id = "fin", + Part1 = "fi", + Part2B = "fin", + Part2T = "fin", + ReferenceName = "Finnish", + Scope = "I", + Type = "L" + }, + new + { + Id = "fip", + ReferenceName = "Fipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "fir", + ReferenceName = "Firan", + Scope = "I", + Type = "L" + }, + new + { + Id = "fit", + ReferenceName = "Tornedalen Finnish", + Scope = "I", + Type = "L" + }, + new + { + Id = "fiw", + ReferenceName = "Fiwaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "fkk", + ReferenceName = "Kirya-Konzəl", + Scope = "I", + Type = "L" + }, + new + { + Id = "fkv", + ReferenceName = "Kven Finnish", + Scope = "I", + Type = "L" + }, + new + { + Id = "fla", + ReferenceName = "Kalispel-Pend d'Oreille", + Scope = "I", + Type = "L" + }, + new + { + Id = "flh", + ReferenceName = "Foau", + Scope = "I", + Type = "L" + }, + new + { + Id = "fli", + ReferenceName = "Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fll", + ReferenceName = "North Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fln", + ReferenceName = "Flinders Island", + Scope = "I", + Type = "E" + }, + new + { + Id = "flr", + ReferenceName = "Fuliiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "fly", + ReferenceName = "Flaaitaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "fmp", + ReferenceName = "Fe'fe'", + Scope = "I", + Type = "L" + }, + new + { + Id = "fmu", + ReferenceName = "Far Western Muria", + Scope = "I", + Type = "L" + }, + new + { + Id = "fnb", + ReferenceName = "Fanbak", + Scope = "I", + Type = "L" + }, + new + { + Id = "fng", + ReferenceName = "Fanagalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "fni", + ReferenceName = "Fania", + Scope = "I", + Type = "L" + }, + new + { + Id = "fod", + ReferenceName = "Foodo", + Scope = "I", + Type = "L" + }, + new + { + Id = "foi", + ReferenceName = "Foi", + Scope = "I", + Type = "L" + }, + new + { + Id = "fom", + ReferenceName = "Foma", + Scope = "I", + Type = "L" + }, + new + { + Id = "fon", + Part2B = "fon", + Part2T = "fon", + ReferenceName = "Fon", + Scope = "I", + Type = "L" + }, + new + { + Id = "for", + ReferenceName = "Fore", + Scope = "I", + Type = "L" + }, + new + { + Id = "fos", + ReferenceName = "Siraya", + Scope = "I", + Type = "E" + }, + new + { + Id = "fpe", + ReferenceName = "Fernando Po Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "fqs", + ReferenceName = "Fas", + Scope = "I", + Type = "L" + }, + new + { + Id = "fra", + Part1 = "fr", + Part2B = "fre", + Part2T = "fra", + ReferenceName = "French", + Scope = "I", + Type = "L" + }, + new + { + Id = "frc", + ReferenceName = "Cajun French", + Scope = "I", + Type = "L" + }, + new + { + Id = "frd", + ReferenceName = "Fordata", + Scope = "I", + Type = "L" + }, + new + { + Id = "frk", + ReferenceName = "Frankish", + Scope = "I", + Type = "H" + }, + new + { + Id = "frm", + Part2B = "frm", + Part2T = "frm", + ReferenceName = "Middle French (ca. 1400-1600)", + Scope = "I", + Type = "H" + }, + new + { + Id = "fro", + Part2B = "fro", + Part2T = "fro", + ReferenceName = "Old French (842-ca. 1400)", + Scope = "I", + Type = "H" + }, + new + { + Id = "frp", + ReferenceName = "Arpitan", + Scope = "I", + Type = "L" + }, + new + { + Id = "frq", + ReferenceName = "Forak", + Scope = "I", + Type = "L" + }, + new + { + Id = "frr", + Part2B = "frr", + Part2T = "frr", + ReferenceName = "Northern Frisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "frs", + Part2B = "frs", + Part2T = "frs", + ReferenceName = "Eastern Frisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "frt", + ReferenceName = "Fortsenal", + Scope = "I", + Type = "L" + }, + new + { + Id = "fry", + Part1 = "fy", + Part2B = "fry", + Part2T = "fry", + ReferenceName = "Western Frisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "fse", + ReferenceName = "Finnish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fsl", + ReferenceName = "French Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fss", + ReferenceName = "Finland-Swedish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fub", + ReferenceName = "Adamawa Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuc", + ReferenceName = "Pulaar", + Scope = "I", + Type = "L" + }, + new + { + Id = "fud", + ReferenceName = "East Futuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "fue", + ReferenceName = "Borgu Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuf", + ReferenceName = "Pular", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuh", + ReferenceName = "Western Niger Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fui", + ReferenceName = "Bagirmi Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuj", + ReferenceName = "Ko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ful", + Part1 = "ff", + Part2B = "ful", + Part2T = "ful", + ReferenceName = "Fulah", + Scope = "M", + Type = "L" + }, + new + { + Id = "fum", + ReferenceName = "Fum", + Scope = "I", + Type = "L" + }, + new + { + Id = "fun", + ReferenceName = "Fulniô", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuq", + ReferenceName = "Central-Eastern Niger Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fur", + Part2B = "fur", + Part2T = "fur", + ReferenceName = "Friulian", + Scope = "I", + Type = "L" + }, + new + { + Id = "fut", + ReferenceName = "Futuna-Aniwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuu", + ReferenceName = "Furu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuv", + ReferenceName = "Nigerian Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuy", + ReferenceName = "Fuyug", + Scope = "I", + Type = "L" + }, + new + { + Id = "fvr", + ReferenceName = "Fur", + Scope = "I", + Type = "L" + }, + new + { + Id = "fwa", + ReferenceName = "Fwâi", + Scope = "I", + Type = "L" + }, + new + { + Id = "fwe", + ReferenceName = "Fwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaa", + Part2B = "gaa", + Part2T = "gaa", + ReferenceName = "Ga", + Scope = "I", + Type = "L" + }, + new + { + Id = "gab", + ReferenceName = "Gabri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gac", + ReferenceName = "Mixed Great Andamanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "gad", + ReferenceName = "Gaddang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gae", + ReferenceName = "Guarequena", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaf", + ReferenceName = "Gende", + Scope = "I", + Type = "L" + }, + new + { + Id = "gag", + ReferenceName = "Gagauz", + Scope = "I", + Type = "L" + }, + new + { + Id = "gah", + ReferenceName = "Alekano", + Scope = "I", + Type = "L" + }, + new + { + Id = "gai", + ReferenceName = "Borei", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaj", + ReferenceName = "Gadsup", + Scope = "I", + Type = "L" + }, + new + { + Id = "gak", + ReferenceName = "Gamkonora", + Scope = "I", + Type = "L" + }, + new + { + Id = "gal", + ReferenceName = "Galolen", + Scope = "I", + Type = "L" + }, + new + { + Id = "gam", + ReferenceName = "Kandawo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gan", + ReferenceName = "Gan Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "gao", + ReferenceName = "Gants", + Scope = "I", + Type = "L" + }, + new + { + Id = "gap", + ReferenceName = "Gal", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaq", + ReferenceName = "Gata'", + Scope = "I", + Type = "L" + }, + new + { + Id = "gar", + ReferenceName = "Galeya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gas", + ReferenceName = "Adiwasi Garasia", + Scope = "I", + Type = "L" + }, + new + { + Id = "gat", + ReferenceName = "Kenati", + Scope = "I", + Type = "L" + }, + new + { + Id = "gau", + ReferenceName = "Mudhili Gadaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaw", + ReferenceName = "Nobonob", + Scope = "I", + Type = "L" + }, + new + { + Id = "gax", + ReferenceName = "Borana-Arsi-Guji Oromo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gay", + Part2B = "gay", + Part2T = "gay", + ReferenceName = "Gayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaz", + ReferenceName = "West Central Oromo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gba", + Part2B = "gba", + Part2T = "gba", + ReferenceName = "Gbaya (Central African Republic)", + Scope = "M", + Type = "L" + }, + new + { + Id = "gbb", + ReferenceName = "Kaytetye", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbd", + ReferenceName = "Karajarri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbe", + ReferenceName = "Niksek", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbf", + ReferenceName = "Gaikundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbg", + ReferenceName = "Gbanziri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbh", + ReferenceName = "Defi Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbi", + ReferenceName = "Galela", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbj", + ReferenceName = "Bodo Gadaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbk", + ReferenceName = "Gaddi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbl", + ReferenceName = "Gamit", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbm", + ReferenceName = "Garhwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbn", + ReferenceName = "Mo'da", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbo", + ReferenceName = "Northern Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbp", + ReferenceName = "Gbaya-Bossangoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbq", + ReferenceName = "Gbaya-Bozoum", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbr", + ReferenceName = "Gbagyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbs", + ReferenceName = "Gbesi Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbu", + ReferenceName = "Gagadu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbv", + ReferenceName = "Gbanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbw", + ReferenceName = "Gabi-Gabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbx", + ReferenceName = "Eastern Xwla Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gby", + ReferenceName = "Gbari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbz", + ReferenceName = "Zoroastrian Dari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcc", + ReferenceName = "Mali", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcd", + ReferenceName = "Ganggalida", + Scope = "I", + Type = "E" + }, + new + { + Id = "gce", + ReferenceName = "Galice", + Scope = "I", + Type = "E" + }, + new + { + Id = "gcf", + ReferenceName = "Guadeloupean Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcl", + ReferenceName = "Grenadian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcn", + ReferenceName = "Gaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcr", + ReferenceName = "Guianese Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "gct", + ReferenceName = "Colonia Tovar German", + Scope = "I", + Type = "L" + }, + new + { + Id = "gda", + ReferenceName = "Gade Lohar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdb", + ReferenceName = "Pottangi Ollar Gadaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdc", + ReferenceName = "Gugu Badhun", + Scope = "I", + Type = "E" + }, + new + { + Id = "gdd", + ReferenceName = "Gedaged", + Scope = "I", + Type = "L" + }, + new + { + Id = "gde", + ReferenceName = "Gude", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdf", + ReferenceName = "Guduf-Gava", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdg", + ReferenceName = "Ga'dang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdh", + ReferenceName = "Gadjerawang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdi", + ReferenceName = "Gundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdj", + ReferenceName = "Gurdjar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdk", + ReferenceName = "Gadang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdl", + ReferenceName = "Dirasha", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdm", + ReferenceName = "Laal", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdn", + ReferenceName = "Umanakaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdo", + ReferenceName = "Ghodoberi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdq", + ReferenceName = "Mehri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdr", + ReferenceName = "Wipi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gds", + ReferenceName = "Ghandruk Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdt", + ReferenceName = "Kungardutyi", + Scope = "I", + Type = "E" + }, + new + { + Id = "gdu", + ReferenceName = "Gudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdx", + ReferenceName = "Godwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gea", + ReferenceName = "Geruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "geb", + ReferenceName = "Kire", + Scope = "I", + Type = "L" + }, + new + { + Id = "gec", + ReferenceName = "Gboloo Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ged", + ReferenceName = "Gade", + Scope = "I", + Type = "L" + }, + new + { + Id = "geg", + ReferenceName = "Gengle", + Scope = "I", + Type = "L" + }, + new + { + Id = "geh", + ReferenceName = "Hutterite German", + Scope = "I", + Type = "L" + }, + new + { + Id = "gei", + ReferenceName = "Gebe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gej", + ReferenceName = "Gen", + Scope = "I", + Type = "L" + }, + new + { + Id = "gek", + ReferenceName = "Ywom", + Scope = "I", + Type = "L" + }, + new + { + Id = "gel", + ReferenceName = "ut-Ma'in", + Scope = "I", + Type = "L" + }, + new + { + Id = "geq", + ReferenceName = "Geme", + Scope = "I", + Type = "L" + }, + new + { + Id = "ges", + ReferenceName = "Geser-Gorom", + Scope = "I", + Type = "L" + }, + new + { + Id = "gev", + ReferenceName = "Eviya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gew", + ReferenceName = "Gera", + Scope = "I", + Type = "L" + }, + new + { + Id = "gex", + ReferenceName = "Garre", + Scope = "I", + Type = "L" + }, + new + { + Id = "gey", + ReferenceName = "Enya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gez", + Part2B = "gez", + Part2T = "gez", + ReferenceName = "Geez", + Scope = "I", + Type = "A" + }, + new + { + Id = "gfk", + ReferenceName = "Patpatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gft", + ReferenceName = "Gafat", + Scope = "I", + Type = "E" + }, + new + { + Id = "gga", + ReferenceName = "Gao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggb", + ReferenceName = "Gbii", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggd", + ReferenceName = "Gugadj", + Scope = "I", + Type = "E" + }, + new + { + Id = "gge", + ReferenceName = "Gurr-goni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggg", + ReferenceName = "Gurgula", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggk", + ReferenceName = "Kungarakany", + Scope = "I", + Type = "E" + }, + new + { + Id = "ggl", + ReferenceName = "Ganglau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggt", + ReferenceName = "Gitua", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggu", + ReferenceName = "Gagu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggw", + ReferenceName = "Gogodala", + Scope = "I", + Type = "L" + }, + new + { + Id = "gha", + ReferenceName = "Ghadamès", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghc", + ReferenceName = "Hiberno-Scottish Gaelic", + Scope = "I", + Type = "H" + }, + new + { + Id = "ghe", + ReferenceName = "Southern Ghale", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghh", + ReferenceName = "Northern Ghale", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghk", + ReferenceName = "Geko Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghl", + ReferenceName = "Ghulfan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghn", + ReferenceName = "Ghanongga", + Scope = "I", + Type = "L" + }, + new + { + Id = "gho", + ReferenceName = "Ghomara", + Scope = "I", + Type = "E" + }, + new + { + Id = "ghr", + ReferenceName = "Ghera", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghs", + ReferenceName = "Guhu-Samane", + Scope = "I", + Type = "L" + }, + new + { + Id = "ght", + ReferenceName = "Kuke", + Scope = "I", + Type = "L" + }, + new + { + Id = "gia", + ReferenceName = "Kija", + Scope = "I", + Type = "L" + }, + new + { + Id = "gib", + ReferenceName = "Gibanawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gic", + ReferenceName = "Gail", + Scope = "I", + Type = "L" + }, + new + { + Id = "gid", + ReferenceName = "Gidar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gie", + ReferenceName = "Gaɓogbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gig", + ReferenceName = "Goaria", + Scope = "I", + Type = "L" + }, + new + { + Id = "gih", + ReferenceName = "Githabul", + Scope = "I", + Type = "L" + }, + new + { + Id = "gil", + Part2B = "gil", + Part2T = "gil", + ReferenceName = "Gilbertese", + Scope = "I", + Type = "L" + }, + new + { + Id = "gim", + ReferenceName = "Gimi (Eastern Highlands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "gin", + ReferenceName = "Hinukh", + Scope = "I", + Type = "L" + }, + new + { + Id = "gip", + ReferenceName = "Gimi (West New Britain)", + Scope = "I", + Type = "L" + }, + new + { + Id = "giq", + ReferenceName = "Green Gelao", + Scope = "I", + Type = "L" + }, + new + { + Id = "gir", + ReferenceName = "Red Gelao", + Scope = "I", + Type = "L" + }, + new + { + Id = "gis", + ReferenceName = "North Giziga", + Scope = "I", + Type = "L" + }, + new + { + Id = "git", + ReferenceName = "Gitxsan", + Scope = "I", + Type = "L" + }, + new + { + Id = "giu", + ReferenceName = "Mulao", + Scope = "I", + Type = "L" + }, + new + { + Id = "giw", + ReferenceName = "White Gelao", + Scope = "I", + Type = "L" + }, + new + { + Id = "gix", + ReferenceName = "Gilima", + Scope = "I", + Type = "L" + }, + new + { + Id = "giy", + ReferenceName = "Giyug", + Scope = "I", + Type = "L" + }, + new + { + Id = "giz", + ReferenceName = "South Giziga", + Scope = "I", + Type = "L" + }, + new + { + Id = "gji", + ReferenceName = "Geji", + Scope = "I", + Type = "L" + }, + new + { + Id = "gjk", + ReferenceName = "Kachi Koli", + Scope = "I", + Type = "L" + }, + new + { + Id = "gjm", + ReferenceName = "Gunditjmara", + Scope = "I", + Type = "E" + }, + new + { + Id = "gjn", + ReferenceName = "Gonja", + Scope = "I", + Type = "L" + }, + new + { + Id = "gjr", + ReferenceName = "Gurindji Kriol", + Scope = "I", + Type = "L" + }, + new + { + Id = "gju", + ReferenceName = "Gujari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gka", + ReferenceName = "Guya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gkd", + ReferenceName = "Magɨ (Madang Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "gke", + ReferenceName = "Ndai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gkn", + ReferenceName = "Gokana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gko", + ReferenceName = "Kok-Nar", + Scope = "I", + Type = "E" + }, + new + { + Id = "gkp", + ReferenceName = "Guinea Kpelle", + Scope = "I", + Type = "L" + }, + new + { + Id = "gku", + ReferenceName = "ǂUngkue", + Scope = "I", + Type = "E" + }, + new + { + Id = "gla", + Part1 = "gd", + Part2B = "gla", + Part2T = "gla", + ReferenceName = "Scottish Gaelic", + Scope = "I", + Type = "L" + }, + new + { + Id = "glc", + ReferenceName = "Bon Gula", + Scope = "I", + Type = "L" + }, + new + { + Id = "gld", + ReferenceName = "Nanai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gle", + Part1 = "ga", + Part2B = "gle", + Part2T = "gle", + ReferenceName = "Irish", + Scope = "I", + Type = "L" + }, + new + { + Id = "glg", + Part1 = "gl", + Part2B = "glg", + Part2T = "glg", + ReferenceName = "Galician", + Scope = "I", + Type = "L" + }, + new + { + Id = "glh", + ReferenceName = "Northwest Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gli", + ReferenceName = "Guliguli", + Scope = "I", + Type = "E" + }, + new + { + Id = "glj", + ReferenceName = "Gula Iro", + Scope = "I", + Type = "L" + }, + new + { + Id = "glk", + ReferenceName = "Gilaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "gll", + ReferenceName = "Garlali", + Scope = "I", + Type = "E" + }, + new + { + Id = "glo", + ReferenceName = "Galambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "glr", + ReferenceName = "Glaro-Twabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "glu", + ReferenceName = "Gula (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "glv", + Part1 = "gv", + Part2B = "glv", + Part2T = "glv", + ReferenceName = "Manx", + Scope = "I", + Type = "L" + }, + new + { + Id = "glw", + ReferenceName = "Glavda", + Scope = "I", + Type = "L" + }, + new + { + Id = "gly", + ReferenceName = "Gule", + Scope = "I", + Type = "E" + }, + new + { + Id = "gma", + ReferenceName = "Gambera", + Scope = "I", + Type = "E" + }, + new + { + Id = "gmb", + ReferenceName = "Gula'alaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmd", + ReferenceName = "Mághdì", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmg", + ReferenceName = "Magɨyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmh", + Part2B = "gmh", + Part2T = "gmh", + ReferenceName = "Middle High German (ca. 1050-1500)", + Scope = "I", + Type = "H" + }, + new + { + Id = "gml", + ReferenceName = "Middle Low German", + Scope = "I", + Type = "H" + }, + new + { + Id = "gmm", + ReferenceName = "Gbaya-Mbodomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmn", + ReferenceName = "Gimnime", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmu", + ReferenceName = "Gumalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmv", + ReferenceName = "Gamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmx", + ReferenceName = "Magoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmy", + ReferenceName = "Mycenaean Greek", + Scope = "I", + Type = "A" + }, + new + { + Id = "gmz", + ReferenceName = "Mgbolizhia", + Scope = "I", + Type = "L" + }, + new + { + Id = "gna", + ReferenceName = "Kaansa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnb", + ReferenceName = "Gangte", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnc", + ReferenceName = "Guanche", + Scope = "I", + Type = "E" + }, + new + { + Id = "gnd", + ReferenceName = "Zulgo-Gemzek", + Scope = "I", + Type = "L" + }, + new + { + Id = "gne", + ReferenceName = "Ganang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gng", + ReferenceName = "Ngangam", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnh", + ReferenceName = "Lere", + Scope = "I", + Type = "L" + }, + new + { + Id = "gni", + ReferenceName = "Gooniyandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnj", + ReferenceName = "Ngen", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnk", + ReferenceName = "ǁGana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnl", + ReferenceName = "Gangulu", + Scope = "I", + Type = "E" + }, + new + { + Id = "gnm", + ReferenceName = "Ginuman", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnn", + ReferenceName = "Gumatj", + Scope = "I", + Type = "L" + }, + new + { + Id = "gno", + ReferenceName = "Northern Gondi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnq", + ReferenceName = "Gana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnr", + ReferenceName = "Gureng Gureng", + Scope = "I", + Type = "E" + }, + new + { + Id = "gnt", + ReferenceName = "Guntai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnu", + ReferenceName = "Gnau", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnw", + ReferenceName = "Western Bolivian Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnz", + ReferenceName = "Ganzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "goa", + ReferenceName = "Guro", + Scope = "I", + Type = "L" + }, + new + { + Id = "gob", + ReferenceName = "Playero", + Scope = "I", + Type = "L" + }, + new + { + Id = "goc", + ReferenceName = "Gorakor", + Scope = "I", + Type = "L" + }, + new + { + Id = "god", + ReferenceName = "Godié", + Scope = "I", + Type = "L" + }, + new + { + Id = "goe", + ReferenceName = "Gongduk", + Scope = "I", + Type = "L" + }, + new + { + Id = "gof", + ReferenceName = "Gofa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gog", + ReferenceName = "Gogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "goh", + Part2B = "goh", + Part2T = "goh", + ReferenceName = "Old High German (ca. 750-1050)", + Scope = "I", + Type = "H" + }, + new + { + Id = "goi", + ReferenceName = "Gobasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "goj", + ReferenceName = "Gowlan", + Scope = "I", + Type = "L" + }, + new + { + Id = "gok", + ReferenceName = "Gowli", + Scope = "I", + Type = "L" + }, + new + { + Id = "gol", + ReferenceName = "Gola", + Scope = "I", + Type = "L" + }, + new + { + Id = "gom", + ReferenceName = "Goan Konkani", + Scope = "I", + Type = "L" + }, + new + { + Id = "gon", + Part2B = "gon", + Part2T = "gon", + ReferenceName = "Gondi", + Scope = "M", + Type = "L" + }, + new + { + Id = "goo", + ReferenceName = "Gone Dau", + Scope = "I", + Type = "L" + }, + new + { + Id = "gop", + ReferenceName = "Yeretuar", + Scope = "I", + Type = "L" + }, + new + { + Id = "goq", + ReferenceName = "Gorap", + Scope = "I", + Type = "L" + }, + new + { + Id = "gor", + Part2B = "gor", + Part2T = "gor", + ReferenceName = "Gorontalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gos", + ReferenceName = "Gronings", + Scope = "I", + Type = "L" + }, + new + { + Id = "got", + Part2B = "got", + Part2T = "got", + ReferenceName = "Gothic", + Scope = "I", + Type = "A" + }, + new + { + Id = "gou", + ReferenceName = "Gavar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gow", + ReferenceName = "Gorowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gox", + ReferenceName = "Gobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "goy", + ReferenceName = "Goundo", + Scope = "I", + Type = "L" + }, + new + { + Id = "goz", + ReferenceName = "Gozarkhani", + Scope = "I", + Type = "L" + }, + new + { + Id = "gpa", + ReferenceName = "Gupa-Abawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gpe", + ReferenceName = "Ghanaian Pidgin English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gpn", + ReferenceName = "Taiap", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqa", + ReferenceName = "Ga'anda", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqi", + ReferenceName = "Guiqiong", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqn", + ReferenceName = "Guana (Brazil)", + Scope = "I", + Type = "E" + }, + new + { + Id = "gqr", + ReferenceName = "Gor", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqu", + ReferenceName = "Qau", + Scope = "I", + Type = "L" + }, + new + { + Id = "gra", + ReferenceName = "Rajput Garasia", + Scope = "I", + Type = "L" + }, + new + { + Id = "grb", + Part2B = "grb", + Part2T = "grb", + ReferenceName = "Grebo", + Scope = "M", + Type = "L" + }, + new + { + Id = "grc", + Part2B = "grc", + Part2T = "grc", + ReferenceName = "Ancient Greek (to 1453)", + Scope = "I", + Type = "H" + }, + new + { + Id = "grd", + ReferenceName = "Guruntum-Mbaaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "grg", + ReferenceName = "Madi", + Scope = "I", + Type = "L" + }, + new + { + Id = "grh", + ReferenceName = "Gbiri-Niragu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gri", + ReferenceName = "Ghari", + Scope = "I", + Type = "L" + }, + new + { + Id = "grj", + ReferenceName = "Southern Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "grm", + ReferenceName = "Kota Marudu Talantang", + Scope = "I", + Type = "L" + }, + new + { + Id = "grn", + Part1 = "gn", + Part2B = "grn", + Part2T = "grn", + ReferenceName = "Guarani", + Scope = "M", + Type = "L" + }, + new + { + Id = "gro", + ReferenceName = "Groma", + Scope = "I", + Type = "L" + }, + new + { + Id = "grq", + ReferenceName = "Gorovu", + Scope = "I", + Type = "L" + }, + new + { + Id = "grr", + ReferenceName = "Taznatit", + Scope = "I", + Type = "L" + }, + new + { + Id = "grs", + ReferenceName = "Gresi", + Scope = "I", + Type = "L" + }, + new + { + Id = "grt", + ReferenceName = "Garo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gru", + ReferenceName = "Kistane", + Scope = "I", + Type = "L" + }, + new + { + Id = "grv", + ReferenceName = "Central Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "grw", + ReferenceName = "Gweda", + Scope = "I", + Type = "L" + }, + new + { + Id = "grx", + ReferenceName = "Guriaso", + Scope = "I", + Type = "L" + }, + new + { + Id = "gry", + ReferenceName = "Barclayville Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "grz", + ReferenceName = "Guramalum", + Scope = "I", + Type = "L" + }, + new + { + Id = "gse", + ReferenceName = "Ghanaian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsg", + ReferenceName = "German Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsl", + ReferenceName = "Gusilay", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsm", + ReferenceName = "Guatemalan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsn", + ReferenceName = "Nema", + Scope = "I", + Type = "L" + }, + new + { + Id = "gso", + ReferenceName = "Southwest Gbaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsp", + ReferenceName = "Wasembo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gss", + ReferenceName = "Greek Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsw", + Part2B = "gsw", + Part2T = "gsw", + ReferenceName = "Swiss German", + Scope = "I", + Type = "L" + }, + new + { + Id = "gta", + ReferenceName = "Guató", + Scope = "I", + Type = "L" + }, + new + { + Id = "gtu", + ReferenceName = "Aghu-Tharnggala", + Scope = "I", + Type = "E" + }, + new + { + Id = "gua", + ReferenceName = "Shiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "gub", + ReferenceName = "Guajajára", + Scope = "I", + Type = "L" + }, + new + { + Id = "guc", + ReferenceName = "Wayuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gud", + ReferenceName = "Yocoboué Dida", + Scope = "I", + Type = "L" + }, + new + { + Id = "gue", + ReferenceName = "Gurindji", + Scope = "I", + Type = "L" + }, + new + { + Id = "guf", + ReferenceName = "Gupapuyngu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gug", + ReferenceName = "Paraguayan Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "guh", + ReferenceName = "Guahibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gui", + ReferenceName = "Eastern Bolivian Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "guj", + Part1 = "gu", + Part2B = "guj", + Part2T = "guj", + ReferenceName = "Gujarati", + Scope = "I", + Type = "L" + }, + new + { + Id = "guk", + ReferenceName = "Gumuz", + Scope = "I", + Type = "L" + }, + new + { + Id = "gul", + ReferenceName = "Sea Island Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gum", + ReferenceName = "Guambiano", + Scope = "I", + Type = "L" + }, + new + { + Id = "gun", + ReferenceName = "Mbyá Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "guo", + ReferenceName = "Guayabero", + Scope = "I", + Type = "L" + }, + new + { + Id = "gup", + ReferenceName = "Gunwinggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "guq", + ReferenceName = "Aché", + Scope = "I", + Type = "L" + }, + new + { + Id = "gur", + ReferenceName = "Farefare", + Scope = "I", + Type = "L" + }, + new + { + Id = "gus", + ReferenceName = "Guinean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gut", + ReferenceName = "Maléku Jaíka", + Scope = "I", + Type = "L" + }, + new + { + Id = "guu", + ReferenceName = "Yanomamö", + Scope = "I", + Type = "L" + }, + new + { + Id = "guw", + ReferenceName = "Gun", + Scope = "I", + Type = "L" + }, + new + { + Id = "gux", + ReferenceName = "Gourmanchéma", + Scope = "I", + Type = "L" + }, + new + { + Id = "guz", + ReferenceName = "Gusii", + Scope = "I", + Type = "L" + }, + new + { + Id = "gva", + ReferenceName = "Guana (Paraguay)", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvc", + ReferenceName = "Guanano", + Scope = "I", + Type = "L" + }, + new + { + Id = "gve", + ReferenceName = "Duwet", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvf", + ReferenceName = "Golin", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvj", + ReferenceName = "Guajá", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvl", + ReferenceName = "Gulay", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvm", + ReferenceName = "Gurmana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvn", + ReferenceName = "Kuku-Yalanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvo", + ReferenceName = "Gavião Do Jiparaná", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvp", + ReferenceName = "Pará Gavião", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvr", + ReferenceName = "Gurung", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvs", + ReferenceName = "Gumawana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvy", + ReferenceName = "Guyani", + Scope = "I", + Type = "E" + }, + new + { + Id = "gwa", + ReferenceName = "Mbato", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwb", + ReferenceName = "Gwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwc", + ReferenceName = "Kalami", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwd", + ReferenceName = "Gawwada", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwe", + ReferenceName = "Gweno", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwf", + ReferenceName = "Gowro", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwg", + ReferenceName = "Moo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwi", + Part2B = "gwi", + Part2T = "gwi", + ReferenceName = "Gwichʼin", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwj", + ReferenceName = "ǀGwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwm", + ReferenceName = "Awngthim", + Scope = "I", + Type = "E" + }, + new + { + Id = "gwn", + ReferenceName = "Gwandara", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwr", + ReferenceName = "Gwere", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwt", + ReferenceName = "Gawar-Bati", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwu", + ReferenceName = "Guwamu", + Scope = "I", + Type = "E" + }, + new + { + Id = "gww", + ReferenceName = "Kwini", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwx", + ReferenceName = "Gua", + Scope = "I", + Type = "L" + }, + new + { + Id = "gxx", + ReferenceName = "Wè Southern", + Scope = "I", + Type = "L" + }, + new + { + Id = "gya", + ReferenceName = "Northwest Gbaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyb", + ReferenceName = "Garus", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyd", + ReferenceName = "Kayardild", + Scope = "I", + Type = "L" + }, + new + { + Id = "gye", + ReferenceName = "Gyem", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyf", + ReferenceName = "Gungabula", + Scope = "I", + Type = "E" + }, + new + { + Id = "gyg", + ReferenceName = "Gbayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyi", + ReferenceName = "Gyele", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyl", + ReferenceName = "Gayil", + Scope = "I", + Type = "L" + }, + new + { + Id = "gym", + ReferenceName = "Ngäbere", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyn", + ReferenceName = "Guyanese Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyo", + ReferenceName = "Gyalsumdo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyr", + ReferenceName = "Guarayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyy", + ReferenceName = "Gunya", + Scope = "I", + Type = "E" + }, + new + { + Id = "gza", + ReferenceName = "Ganza", + Scope = "I", + Type = "L" + }, + new + { + Id = "gzi", + ReferenceName = "Gazi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gzn", + ReferenceName = "Gane", + Scope = "I", + Type = "L" + }, + new + { + Id = "haa", + ReferenceName = "Han", + Scope = "I", + Type = "L" + }, + new + { + Id = "hab", + ReferenceName = "Hanoi Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hac", + ReferenceName = "Gurani", + Scope = "I", + Type = "L" + }, + new + { + Id = "had", + ReferenceName = "Hatam", + Scope = "I", + Type = "L" + }, + new + { + Id = "hae", + ReferenceName = "Eastern Oromo", + Scope = "I", + Type = "L" + }, + new + { + Id = "haf", + ReferenceName = "Haiphong Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hag", + ReferenceName = "Hanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "hah", + ReferenceName = "Hahon", + Scope = "I", + Type = "L" + }, + new + { + Id = "hai", + Part2B = "hai", + Part2T = "hai", + ReferenceName = "Haida", + Scope = "M", + Type = "L" + }, + new + { + Id = "haj", + ReferenceName = "Hajong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hak", + ReferenceName = "Hakka Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "hal", + ReferenceName = "Halang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ham", + ReferenceName = "Hewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "han", + ReferenceName = "Hangaza", + Scope = "I", + Type = "L" + }, + new + { + Id = "hao", + ReferenceName = "Hakö", + Scope = "I", + Type = "L" + }, + new + { + Id = "hap", + ReferenceName = "Hupla", + Scope = "I", + Type = "L" + }, + new + { + Id = "haq", + ReferenceName = "Ha", + Scope = "I", + Type = "L" + }, + new + { + Id = "har", + ReferenceName = "Harari", + Scope = "I", + Type = "L" + }, + new + { + Id = "has", + ReferenceName = "Haisla", + Scope = "I", + Type = "L" + }, + new + { + Id = "hat", + Part1 = "ht", + Part2B = "hat", + Part2T = "hat", + ReferenceName = "Haitian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hau", + Part1 = "ha", + Part2B = "hau", + Part2T = "hau", + ReferenceName = "Hausa", + Scope = "I", + Type = "L" + }, + new + { + Id = "hav", + ReferenceName = "Havu", + Scope = "I", + Type = "L" + }, + new + { + Id = "haw", + Part2B = "haw", + Part2T = "haw", + ReferenceName = "Hawaiian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hax", + ReferenceName = "Southern Haida", + Scope = "I", + Type = "L" + }, + new + { + Id = "hay", + ReferenceName = "Haya", + Scope = "I", + Type = "L" + }, + new + { + Id = "haz", + ReferenceName = "Hazaragi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hba", + ReferenceName = "Hamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "hbb", + ReferenceName = "Huba", + Scope = "I", + Type = "L" + }, + new + { + Id = "hbn", + ReferenceName = "Heiban", + Scope = "I", + Type = "L" + }, + new + { + Id = "hbo", + ReferenceName = "Ancient Hebrew", + Scope = "I", + Type = "H" + }, + new + { + Id = "hbs", + Part1 = "sh", + ReferenceName = "Serbo-Croatian", + Scope = "M", + Type = "L" + }, + new + { + Id = "hbu", + ReferenceName = "Habu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hca", + ReferenceName = "Andaman Creole Hindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hch", + ReferenceName = "Huichol", + Scope = "I", + Type = "L" + }, + new + { + Id = "hdn", + ReferenceName = "Northern Haida", + Scope = "I", + Type = "L" + }, + new + { + Id = "hds", + ReferenceName = "Honduras Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hdy", + ReferenceName = "Hadiyya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hea", + ReferenceName = "Northern Qiandong Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "heb", + Part1 = "he", + Part2B = "heb", + Part2T = "heb", + ReferenceName = "Hebrew", + Scope = "I", + Type = "L" + }, + new + { + Id = "hed", + ReferenceName = "Herdé", + Scope = "I", + Type = "L" + }, + new + { + Id = "heg", + ReferenceName = "Helong", + Scope = "I", + Type = "L" + }, + new + { + Id = "heh", + ReferenceName = "Hehe", + Scope = "I", + Type = "L" + }, + new + { + Id = "hei", + ReferenceName = "Heiltsuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "hem", + ReferenceName = "Hemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "her", + Part1 = "hz", + Part2B = "her", + Part2T = "her", + ReferenceName = "Herero", + Scope = "I", + Type = "L" + }, + new + { + Id = "hgm", + ReferenceName = "Haiǁom", + Scope = "I", + Type = "L" + }, + new + { + Id = "hgw", + ReferenceName = "Haigwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "hhi", + ReferenceName = "Hoia Hoia", + Scope = "I", + Type = "L" + }, + new + { + Id = "hhr", + ReferenceName = "Kerak", + Scope = "I", + Type = "L" + }, + new + { + Id = "hhy", + ReferenceName = "Hoyahoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hia", + ReferenceName = "Lamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "hib", + ReferenceName = "Hibito", + Scope = "I", + Type = "E" + }, + new + { + Id = "hid", + ReferenceName = "Hidatsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "hif", + ReferenceName = "Fiji Hindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hig", + ReferenceName = "Kamwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "hih", + ReferenceName = "Pamosu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hii", + ReferenceName = "Hinduri", + Scope = "I", + Type = "L" + }, + new + { + Id = "hij", + ReferenceName = "Hijuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "hik", + ReferenceName = "Seit-Kaitetu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hil", + Part2B = "hil", + Part2T = "hil", + ReferenceName = "Hiligaynon", + Scope = "I", + Type = "L" + }, + new + { + Id = "hin", + Part1 = "hi", + Part2B = "hin", + Part2T = "hin", + ReferenceName = "Hindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hio", + ReferenceName = "Tsoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "hir", + ReferenceName = "Himarimã", + Scope = "I", + Type = "L" + }, + new + { + Id = "hit", + Part2B = "hit", + Part2T = "hit", + ReferenceName = "Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "hiw", + ReferenceName = "Hiw", + Scope = "I", + Type = "L" + }, + new + { + Id = "hix", + ReferenceName = "Hixkaryána", + Scope = "I", + Type = "L" + }, + new + { + Id = "hji", + ReferenceName = "Haji", + Scope = "I", + Type = "L" + }, + new + { + Id = "hka", + ReferenceName = "Kahe", + Scope = "I", + Type = "L" + }, + new + { + Id = "hke", + ReferenceName = "Hunde", + Scope = "I", + Type = "L" + }, + new + { + Id = "hkk", + ReferenceName = "Hunjara-Kaina Ke", + Scope = "I", + Type = "L" + }, + new + { + Id = "hkn", + ReferenceName = "Mel-Khaonh", + Scope = "I", + Type = "L" + }, + new + { + Id = "hks", + ReferenceName = "Hong Kong Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hla", + ReferenceName = "Halia", + Scope = "I", + Type = "L" + }, + new + { + Id = "hlb", + ReferenceName = "Halbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hld", + ReferenceName = "Halang Doan", + Scope = "I", + Type = "L" + }, + new + { + Id = "hle", + ReferenceName = "Hlersu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hlt", + ReferenceName = "Matu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "hlu", + ReferenceName = "Hieroglyphic Luwian", + Scope = "I", + Type = "A" + }, + new + { + Id = "hma", + ReferenceName = "Southern Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmb", + ReferenceName = "Humburi Senni Songhay", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmc", + ReferenceName = "Central Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmd", + ReferenceName = "Large Flowery Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hme", + ReferenceName = "Eastern Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmf", + ReferenceName = "Hmong Don", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmg", + ReferenceName = "Southwestern Guiyang Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmh", + ReferenceName = "Southwestern Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmi", + ReferenceName = "Northern Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmj", + ReferenceName = "Ge", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmk", + ReferenceName = "Maek", + Scope = "I", + Type = "A" + }, + new + { + Id = "hml", + ReferenceName = "Luopohe Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmm", + ReferenceName = "Central Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmn", + Part2B = "hmn", + Part2T = "hmn", + ReferenceName = "Hmong", + Scope = "M", + Type = "L" + }, + new + { + Id = "hmo", + Part1 = "ho", + Part2B = "hmo", + Part2T = "hmo", + ReferenceName = "Hiri Motu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmp", + ReferenceName = "Northern Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmq", + ReferenceName = "Eastern Qiandong Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmr", + ReferenceName = "Hmar", + Scope = "I", + Type = "L" + }, + new + { + Id = "hms", + ReferenceName = "Southern Qiandong Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmt", + ReferenceName = "Hamtai", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmu", + ReferenceName = "Hamap", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmv", + ReferenceName = "Hmong Dô", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmw", + ReferenceName = "Western Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmy", + ReferenceName = "Southern Guiyang Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmz", + ReferenceName = "Hmong Shua", + Scope = "I", + Type = "L" + }, + new + { + Id = "hna", + ReferenceName = "Mina (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnd", + ReferenceName = "Southern Hindko", + Scope = "I", + Type = "L" + }, + new + { + Id = "hne", + ReferenceName = "Chhattisgarhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnh", + ReferenceName = "ǁAni", + Scope = "I", + Type = "L" + }, + new + { + Id = "hni", + ReferenceName = "Hani", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnj", + ReferenceName = "Hmong Njua", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnn", + ReferenceName = "Hanunoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "hno", + ReferenceName = "Northern Hindko", + Scope = "I", + Type = "L" + }, + new + { + Id = "hns", + ReferenceName = "Caribbean Hindustani", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnu", + ReferenceName = "Hung", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoa", + ReferenceName = "Hoava", + Scope = "I", + Type = "L" + }, + new + { + Id = "hob", + ReferenceName = "Mari (Madang Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoc", + ReferenceName = "Ho", + Scope = "I", + Type = "L" + }, + new + { + Id = "hod", + ReferenceName = "Holma", + Scope = "I", + Type = "E" + }, + new + { + Id = "hoe", + ReferenceName = "Horom", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoh", + ReferenceName = "Hobyót", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoi", + ReferenceName = "Holikachuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoj", + ReferenceName = "Hadothi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hol", + ReferenceName = "Holu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hom", + ReferenceName = "Homa", + Scope = "I", + Type = "E" + }, + new + { + Id = "hoo", + ReferenceName = "Holoholo", + Scope = "I", + Type = "L" + }, + new + { + Id = "hop", + ReferenceName = "Hopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hor", + ReferenceName = "Horo", + Scope = "I", + Type = "E" + }, + new + { + Id = "hos", + ReferenceName = "Ho Chi Minh City Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hot", + ReferenceName = "Hote", + Scope = "I", + Type = "L" + }, + new + { + Id = "hov", + ReferenceName = "Hovongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "how", + ReferenceName = "Honi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoy", + ReferenceName = "Holiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoz", + ReferenceName = "Hozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "hpo", + ReferenceName = "Hpon", + Scope = "I", + Type = "E" + }, + new + { + Id = "hps", + ReferenceName = "Hawai'i Sign Language (HSL)", + Scope = "I", + Type = "L" + }, + new + { + Id = "hra", + ReferenceName = "Hrangkhol", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrc", + ReferenceName = "Niwer Mil", + Scope = "I", + Type = "L" + }, + new + { + Id = "hre", + ReferenceName = "Hre", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrk", + ReferenceName = "Haruku", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrm", + ReferenceName = "Horned Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hro", + ReferenceName = "Haroi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrp", + ReferenceName = "Nhirrpi", + Scope = "I", + Type = "E" + }, + new + { + Id = "hrt", + ReferenceName = "Hértevin", + Scope = "I", + Type = "L" + }, + new + { + Id = "hru", + ReferenceName = "Hruso", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrv", + Part1 = "hr", + Part2B = "hrv", + Part2T = "hrv", + ReferenceName = "Croatian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrw", + ReferenceName = "Warwar Feni", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrx", + ReferenceName = "Hunsrik", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrz", + ReferenceName = "Harzani", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsb", + Part2B = "hsb", + Part2T = "hsb", + ReferenceName = "Upper Sorbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsh", + ReferenceName = "Hungarian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsl", + ReferenceName = "Hausa Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsn", + ReferenceName = "Xiang Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "hss", + ReferenceName = "Harsusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hti", + ReferenceName = "Hoti", + Scope = "I", + Type = "E" + }, + new + { + Id = "hto", + ReferenceName = "Minica Huitoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "hts", + ReferenceName = "Hadza", + Scope = "I", + Type = "L" + }, + new + { + Id = "htu", + ReferenceName = "Hitu", + Scope = "I", + Type = "L" + }, + new + { + Id = "htx", + ReferenceName = "Middle Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "hub", + ReferenceName = "Huambisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "huc", + ReferenceName = "ǂHua", + Scope = "I", + Type = "L" + }, + new + { + Id = "hud", + ReferenceName = "Huaulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hue", + ReferenceName = "San Francisco Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "huf", + ReferenceName = "Humene", + Scope = "I", + Type = "L" + }, + new + { + Id = "hug", + ReferenceName = "Huachipaeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "huh", + ReferenceName = "Huilliche", + Scope = "I", + Type = "L" + }, + new + { + Id = "hui", + ReferenceName = "Huli", + Scope = "I", + Type = "L" + }, + new + { + Id = "huj", + ReferenceName = "Northern Guiyang Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "huk", + ReferenceName = "Hulung", + Scope = "I", + Type = "E" + }, + new + { + Id = "hul", + ReferenceName = "Hula", + Scope = "I", + Type = "L" + }, + new + { + Id = "hum", + ReferenceName = "Hungana", + Scope = "I", + Type = "L" + }, + new + { + Id = "hun", + Part1 = "hu", + Part2B = "hun", + Part2T = "hun", + ReferenceName = "Hungarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "huo", + ReferenceName = "Hu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hup", + Part2B = "hup", + Part2T = "hup", + ReferenceName = "Hupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "huq", + ReferenceName = "Tsat", + Scope = "I", + Type = "L" + }, + new + { + Id = "hur", + ReferenceName = "Halkomelem", + Scope = "I", + Type = "L" + }, + new + { + Id = "hus", + ReferenceName = "Huastec", + Scope = "I", + Type = "L" + }, + new + { + Id = "hut", + ReferenceName = "Humla", + Scope = "I", + Type = "L" + }, + new + { + Id = "huu", + ReferenceName = "Murui Huitoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "huv", + ReferenceName = "San Mateo Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "huw", + ReferenceName = "Hukumina", + Scope = "I", + Type = "E" + }, + new + { + Id = "hux", + ReferenceName = "Nüpode Huitoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "huy", + ReferenceName = "Hulaulá", + Scope = "I", + Type = "L" + }, + new + { + Id = "huz", + ReferenceName = "Hunzib", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvc", + ReferenceName = "Haitian Vodoun Culture Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hve", + ReferenceName = "San Dionisio Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvk", + ReferenceName = "Haveke", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvn", + ReferenceName = "Sabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvv", + ReferenceName = "Santa María Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "hwa", + ReferenceName = "Wané", + Scope = "I", + Type = "L" + }, + new + { + Id = "hwc", + ReferenceName = "Hawai'i Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "hwo", + ReferenceName = "Hwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "hya", + ReferenceName = "Hya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hye", + Part1 = "hy", + Part2B = "arm", + Part2T = "hye", + ReferenceName = "Armenian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hyw", + ReferenceName = "Western Armenian", + Scope = "I", + Type = "L" + }, + new + { + Id = "iai", + ReferenceName = "Iaai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ian", + ReferenceName = "Iatmul", + Scope = "I", + Type = "L" + }, + new + { + Id = "iar", + ReferenceName = "Purari", + Scope = "I", + Type = "L" + }, + new + { + Id = "iba", + Part2B = "iba", + Part2T = "iba", + ReferenceName = "Iban", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibb", + ReferenceName = "Ibibio", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibd", + ReferenceName = "Iwaidja", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibe", + ReferenceName = "Akpes", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibg", + ReferenceName = "Ibanag", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibh", + ReferenceName = "Bih", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibl", + ReferenceName = "Ibaloi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibm", + ReferenceName = "Agoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibn", + ReferenceName = "Ibino", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibo", + Part1 = "ig", + Part2B = "ibo", + Part2T = "ibo", + ReferenceName = "Igbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibr", + ReferenceName = "Ibuoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibu", + ReferenceName = "Ibu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iby", + ReferenceName = "Ibani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ica", + ReferenceName = "Ede Ica", + Scope = "I", + Type = "L" + }, + new + { + Id = "ich", + ReferenceName = "Etkywan", + Scope = "I", + Type = "L" + }, + new + { + Id = "icl", + ReferenceName = "Icelandic Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "icr", + ReferenceName = "Islander Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "ida", + ReferenceName = "Idakho-Isukha-Tiriki", + Scope = "I", + Type = "L" + }, + new + { + Id = "idb", + ReferenceName = "Indo-Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "idc", + ReferenceName = "Idon", + Scope = "I", + Type = "L" + }, + new + { + Id = "idd", + ReferenceName = "Ede Idaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "ide", + ReferenceName = "Idere", + Scope = "I", + Type = "L" + }, + new + { + Id = "idi", + ReferenceName = "Idi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ido", + Part1 = "io", + Part2B = "ido", + Part2T = "ido", + ReferenceName = "Ido", + Scope = "I", + Type = "C" + }, + new + { + Id = "idr", + ReferenceName = "Indri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ids", + ReferenceName = "Idesa", + Scope = "I", + Type = "L" + }, + new + { + Id = "idt", + ReferenceName = "Idaté", + Scope = "I", + Type = "L" + }, + new + { + Id = "idu", + ReferenceName = "Idoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifa", + ReferenceName = "Amganad Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifb", + ReferenceName = "Batad Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ife", + ReferenceName = "Ifè", + Scope = "I", + Type = "L" + }, + new + { + Id = "iff", + ReferenceName = "Ifo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ifk", + ReferenceName = "Tuwali Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifm", + ReferenceName = "Teke-Fuumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifu", + ReferenceName = "Mayoyao Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ify", + ReferenceName = "Keley-I Kallahan", + Scope = "I", + Type = "L" + }, + new + { + Id = "igb", + ReferenceName = "Ebira", + Scope = "I", + Type = "L" + }, + new + { + Id = "ige", + ReferenceName = "Igede", + Scope = "I", + Type = "L" + }, + new + { + Id = "igg", + ReferenceName = "Igana", + Scope = "I", + Type = "L" + }, + new + { + Id = "igl", + ReferenceName = "Igala", + Scope = "I", + Type = "L" + }, + new + { + Id = "igm", + ReferenceName = "Kanggape", + Scope = "I", + Type = "L" + }, + new + { + Id = "ign", + ReferenceName = "Ignaciano", + Scope = "I", + Type = "L" + }, + new + { + Id = "igo", + ReferenceName = "Isebe", + Scope = "I", + Type = "L" + }, + new + { + Id = "igs", + ReferenceName = "Interglossa", + Scope = "I", + Type = "C" + }, + new + { + Id = "igw", + ReferenceName = "Igwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihb", + ReferenceName = "Iha Based Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihi", + ReferenceName = "Ihievbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihp", + ReferenceName = "Iha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihw", + ReferenceName = "Bidhawal", + Scope = "I", + Type = "E" + }, + new + { + Id = "iii", + Part1 = "ii", + Part2B = "iii", + Part2T = "iii", + ReferenceName = "Sichuan Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "iin", + ReferenceName = "Thiin", + Scope = "I", + Type = "E" + }, + new + { + Id = "ijc", + ReferenceName = "Izon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ije", + ReferenceName = "Biseni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ijj", + ReferenceName = "Ede Ije", + Scope = "I", + Type = "L" + }, + new + { + Id = "ijn", + ReferenceName = "Kalabari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ijs", + ReferenceName = "Southeast Ijo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ike", + ReferenceName = "Eastern Canadian Inuktitut", + Scope = "I", + Type = "L" + }, + new + { + Id = "iki", + ReferenceName = "Iko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikk", + ReferenceName = "Ika", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikl", + ReferenceName = "Ikulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iko", + ReferenceName = "Olulumo-Ikom", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikp", + ReferenceName = "Ikpeshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikr", + ReferenceName = "Ikaranggal", + Scope = "I", + Type = "E" + }, + new + { + Id = "iks", + ReferenceName = "Inuit Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikt", + ReferenceName = "Inuinnaqtun", + Scope = "I", + Type = "L" + }, + new + { + Id = "iku", + Part1 = "iu", + Part2B = "iku", + Part2T = "iku", + ReferenceName = "Inuktitut", + Scope = "M", + Type = "L" + }, + new + { + Id = "ikv", + ReferenceName = "Iku-Gora-Ankwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikw", + ReferenceName = "Ikwere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikx", + ReferenceName = "Ik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikz", + ReferenceName = "Ikizu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ila", + ReferenceName = "Ile Ape", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilb", + ReferenceName = "Ila", + Scope = "I", + Type = "L" + }, + new + { + Id = "ile", + Part1 = "ie", + Part2B = "ile", + Part2T = "ile", + ReferenceName = "Interlingue", + Scope = "I", + Type = "C" + }, + new + { + Id = "ilg", + ReferenceName = "Garig-Ilgar", + Scope = "I", + Type = "E" + }, + new + { + Id = "ili", + ReferenceName = "Ili Turki", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilk", + ReferenceName = "Ilongot", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilm", + ReferenceName = "Iranun (Malaysia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilo", + Part2B = "ilo", + Part2T = "ilo", + ReferenceName = "Iloko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilp", + ReferenceName = "Iranun (Philippines)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ils", + ReferenceName = "International Sign", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilu", + ReferenceName = "Ili'uun", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilv", + ReferenceName = "Ilue", + Scope = "I", + Type = "L" + }, + new + { + Id = "ima", + ReferenceName = "Mala Malasar", + Scope = "I", + Type = "L" + }, + new + { + Id = "imi", + ReferenceName = "Anamgura", + Scope = "I", + Type = "L" + }, + new + { + Id = "iml", + ReferenceName = "Miluk", + Scope = "I", + Type = "E" + }, + new + { + Id = "imn", + ReferenceName = "Imonda", + Scope = "I", + Type = "L" + }, + new + { + Id = "imo", + ReferenceName = "Imbongu", + Scope = "I", + Type = "L" + }, + new + { + Id = "imr", + ReferenceName = "Imroing", + Scope = "I", + Type = "L" + }, + new + { + Id = "ims", + ReferenceName = "Marsian", + Scope = "I", + Type = "A" + }, + new + { + Id = "imy", + ReferenceName = "Milyan", + Scope = "I", + Type = "A" + }, + new + { + Id = "ina", + Part1 = "ia", + Part2B = "ina", + Part2T = "ina", + ReferenceName = "Interlingua (International Auxiliary Language Association)", + Scope = "I", + Type = "C" + }, + new + { + Id = "inb", + ReferenceName = "Inga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ind", + Part1 = "id", + Part2B = "ind", + Part2T = "ind", + ReferenceName = "Indonesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ing", + ReferenceName = "Degexit'an", + Scope = "I", + Type = "L" + }, + new + { + Id = "inh", + Part2B = "inh", + Part2T = "inh", + ReferenceName = "Ingush", + Scope = "I", + Type = "L" + }, + new + { + Id = "inj", + ReferenceName = "Jungle Inga", + Scope = "I", + Type = "L" + }, + new + { + Id = "inl", + ReferenceName = "Indonesian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "inm", + ReferenceName = "Minaean", + Scope = "I", + Type = "A" + }, + new + { + Id = "inn", + ReferenceName = "Isinai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ino", + ReferenceName = "Inoke-Yate", + Scope = "I", + Type = "L" + }, + new + { + Id = "inp", + ReferenceName = "Iñapari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ins", + ReferenceName = "Indian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "int", + ReferenceName = "Intha", + Scope = "I", + Type = "L" + }, + new + { + Id = "inz", + ReferenceName = "Ineseño", + Scope = "I", + Type = "E" + }, + new + { + Id = "ior", + ReferenceName = "Inor", + Scope = "I", + Type = "L" + }, + new + { + Id = "iou", + ReferenceName = "Tuma-Irumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iow", + ReferenceName = "Iowa-Oto", + Scope = "I", + Type = "E" + }, + new + { + Id = "ipi", + ReferenceName = "Ipili", + Scope = "I", + Type = "L" + }, + new + { + Id = "ipk", + Part1 = "ik", + Part2B = "ipk", + Part2T = "ipk", + ReferenceName = "Inupiaq", + Scope = "M", + Type = "L" + }, + new + { + Id = "ipo", + ReferenceName = "Ipiko", + Scope = "I", + Type = "L" + }, + new + { + Id = "iqu", + ReferenceName = "Iquito", + Scope = "I", + Type = "L" + }, + new + { + Id = "iqw", + ReferenceName = "Ikwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ire", + ReferenceName = "Iresim", + Scope = "I", + Type = "L" + }, + new + { + Id = "irh", + ReferenceName = "Irarutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iri", + ReferenceName = "Rigwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "irk", + ReferenceName = "Iraqw", + Scope = "I", + Type = "L" + }, + new + { + Id = "irn", + ReferenceName = "Irántxe", + Scope = "I", + Type = "L" + }, + new + { + Id = "irr", + ReferenceName = "Ir", + Scope = "I", + Type = "L" + }, + new + { + Id = "iru", + ReferenceName = "Irula", + Scope = "I", + Type = "L" + }, + new + { + Id = "irx", + ReferenceName = "Kamberau", + Scope = "I", + Type = "L" + }, + new + { + Id = "iry", + ReferenceName = "Iraya", + Scope = "I", + Type = "L" + }, + new + { + Id = "isa", + ReferenceName = "Isabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "isc", + ReferenceName = "Isconahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "isd", + ReferenceName = "Isnag", + Scope = "I", + Type = "L" + }, + new + { + Id = "ise", + ReferenceName = "Italian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "isg", + ReferenceName = "Irish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ish", + ReferenceName = "Esan", + Scope = "I", + Type = "L" + }, + new + { + Id = "isi", + ReferenceName = "Nkem-Nkum", + Scope = "I", + Type = "L" + }, + new + { + Id = "isk", + ReferenceName = "Ishkashimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "isl", + Part1 = "is", + Part2B = "ice", + Part2T = "isl", + ReferenceName = "Icelandic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ism", + ReferenceName = "Masimasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "isn", + ReferenceName = "Isanzu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iso", + ReferenceName = "Isoko", + Scope = "I", + Type = "L" + }, + new + { + Id = "isr", + ReferenceName = "Israeli Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ist", + ReferenceName = "Istriot", + Scope = "I", + Type = "L" + }, + new + { + Id = "isu", + ReferenceName = "Isu (Menchum Division)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ita", + Part1 = "it", + Part2B = "ita", + Part2T = "ita", + ReferenceName = "Italian", + Scope = "I", + Type = "L" + }, + new + { + Id = "itb", + ReferenceName = "Binongan Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itd", + ReferenceName = "Southern Tidung", + Scope = "I", + Type = "L" + }, + new + { + Id = "ite", + ReferenceName = "Itene", + Scope = "I", + Type = "E" + }, + new + { + Id = "iti", + ReferenceName = "Inlaod Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itk", + ReferenceName = "Judeo-Italian", + Scope = "I", + Type = "L" + }, + new + { + Id = "itl", + ReferenceName = "Itelmen", + Scope = "I", + Type = "L" + }, + new + { + Id = "itm", + ReferenceName = "Itu Mbon Uzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ito", + ReferenceName = "Itonama", + Scope = "I", + Type = "L" + }, + new + { + Id = "itr", + ReferenceName = "Iteri", + Scope = "I", + Type = "L" + }, + new + { + Id = "its", + ReferenceName = "Isekiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "itt", + ReferenceName = "Maeng Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itv", + ReferenceName = "Itawit", + Scope = "I", + Type = "L" + }, + new + { + Id = "itw", + ReferenceName = "Ito", + Scope = "I", + Type = "L" + }, + new + { + Id = "itx", + ReferenceName = "Itik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ity", + ReferenceName = "Moyadan Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itz", + ReferenceName = "Itzá", + Scope = "I", + Type = "L" + }, + new + { + Id = "ium", + ReferenceName = "Iu Mien", + Scope = "I", + Type = "L" + }, + new + { + Id = "ivb", + ReferenceName = "Ibatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ivv", + ReferenceName = "Ivatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "iwk", + ReferenceName = "I-Wak", + Scope = "I", + Type = "L" + }, + new + { + Id = "iwm", + ReferenceName = "Iwam", + Scope = "I", + Type = "L" + }, + new + { + Id = "iwo", + ReferenceName = "Iwur", + Scope = "I", + Type = "L" + }, + new + { + Id = "iws", + ReferenceName = "Sepik Iwam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ixc", + ReferenceName = "Ixcatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ixl", + ReferenceName = "Ixil", + Scope = "I", + Type = "L" + }, + new + { + Id = "iya", + ReferenceName = "Iyayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iyo", + ReferenceName = "Mesaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "iyx", + ReferenceName = "Yaka (Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "izh", + ReferenceName = "Ingrian", + Scope = "I", + Type = "L" + }, + new + { + Id = "izr", + ReferenceName = "Izere", + Scope = "I", + Type = "L" + }, + new + { + Id = "izz", + ReferenceName = "Izii", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaa", + ReferenceName = "Jamamadí", + Scope = "I", + Type = "L" + }, + new + { + Id = "jab", + ReferenceName = "Hyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "jac", + ReferenceName = "Popti'", + Scope = "I", + Type = "L" + }, + new + { + Id = "jad", + ReferenceName = "Jahanka", + Scope = "I", + Type = "L" + }, + new + { + Id = "jae", + ReferenceName = "Yabem", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaf", + ReferenceName = "Jara", + Scope = "I", + Type = "L" + }, + new + { + Id = "jah", + ReferenceName = "Jah Hut", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaj", + ReferenceName = "Zazao", + Scope = "I", + Type = "L" + }, + new + { + Id = "jak", + ReferenceName = "Jakun", + Scope = "I", + Type = "L" + }, + new + { + Id = "jal", + ReferenceName = "Yalahatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "jam", + ReferenceName = "Jamaican Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "jan", + ReferenceName = "Jandai", + Scope = "I", + Type = "E" + }, + new + { + Id = "jao", + ReferenceName = "Yanyuwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaq", + ReferenceName = "Yaqay", + Scope = "I", + Type = "L" + }, + new + { + Id = "jas", + ReferenceName = "New Caledonian Javanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jat", + ReferenceName = "Jakati", + Scope = "I", + Type = "L" + }, + new + { + Id = "jau", + ReferenceName = "Yaur", + Scope = "I", + Type = "L" + }, + new + { + Id = "jav", + Part1 = "jv", + Part2B = "jav", + Part2T = "jav", + ReferenceName = "Javanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jax", + ReferenceName = "Jambi Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "jay", + ReferenceName = "Yan-nhangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaz", + ReferenceName = "Jawe", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbe", + ReferenceName = "Judeo-Berber", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbi", + ReferenceName = "Badjiri", + Scope = "I", + Type = "E" + }, + new + { + Id = "jbj", + ReferenceName = "Arandai", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbk", + ReferenceName = "Barikewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbn", + ReferenceName = "Nafusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbo", + Part2B = "jbo", + Part2T = "jbo", + ReferenceName = "Lojban", + Scope = "I", + Type = "C" + }, + new + { + Id = "jbr", + ReferenceName = "Jofotek-Bromnya", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbt", + ReferenceName = "Jabutí", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbu", + ReferenceName = "Jukun Takum", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbw", + ReferenceName = "Yawijibaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "jcs", + ReferenceName = "Jamaican Country Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jct", + ReferenceName = "Krymchak", + Scope = "I", + Type = "L" + }, + new + { + Id = "jda", + ReferenceName = "Jad", + Scope = "I", + Type = "L" + }, + new + { + Id = "jdg", + ReferenceName = "Jadgali", + Scope = "I", + Type = "L" + }, + new + { + Id = "jdt", + ReferenceName = "Judeo-Tat", + Scope = "I", + Type = "L" + }, + new + { + Id = "jeb", + ReferenceName = "Jebero", + Scope = "I", + Type = "L" + }, + new + { + Id = "jee", + ReferenceName = "Jerung", + Scope = "I", + Type = "L" + }, + new + { + Id = "jeh", + ReferenceName = "Jeh", + Scope = "I", + Type = "L" + }, + new + { + Id = "jei", + ReferenceName = "Yei", + Scope = "I", + Type = "L" + }, + new + { + Id = "jek", + ReferenceName = "Jeri Kuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jel", + ReferenceName = "Yelmek", + Scope = "I", + Type = "L" + }, + new + { + Id = "jen", + ReferenceName = "Dza", + Scope = "I", + Type = "L" + }, + new + { + Id = "jer", + ReferenceName = "Jere", + Scope = "I", + Type = "L" + }, + new + { + Id = "jet", + ReferenceName = "Manem", + Scope = "I", + Type = "L" + }, + new + { + Id = "jeu", + ReferenceName = "Jonkor Bourmataguil", + Scope = "I", + Type = "L" + }, + new + { + Id = "jgb", + ReferenceName = "Ngbee", + Scope = "I", + Type = "E" + }, + new + { + Id = "jge", + ReferenceName = "Judeo-Georgian", + Scope = "I", + Type = "L" + }, + new + { + Id = "jgk", + ReferenceName = "Gwak", + Scope = "I", + Type = "L" + }, + new + { + Id = "jgo", + ReferenceName = "Ngomba", + Scope = "I", + Type = "L" + }, + new + { + Id = "jhi", + ReferenceName = "Jehai", + Scope = "I", + Type = "L" + }, + new + { + Id = "jhs", + ReferenceName = "Jhankot Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jia", + ReferenceName = "Jina", + Scope = "I", + Type = "L" + }, + new + { + Id = "jib", + ReferenceName = "Jibu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jic", + ReferenceName = "Tol", + Scope = "I", + Type = "L" + }, + new + { + Id = "jid", + ReferenceName = "Bu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jie", + ReferenceName = "Jilbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "jig", + ReferenceName = "Jingulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jih", + ReferenceName = "sTodsde", + Scope = "I", + Type = "L" + }, + new + { + Id = "jii", + ReferenceName = "Jiiddu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jil", + ReferenceName = "Jilim", + Scope = "I", + Type = "L" + }, + new + { + Id = "jim", + ReferenceName = "Jimi (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jio", + ReferenceName = "Jiamao", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiq", + ReferenceName = "Guanyinqiao", + Scope = "I", + Type = "L" + }, + new + { + Id = "jit", + ReferenceName = "Jita", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiu", + ReferenceName = "Youle Jinuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiv", + ReferenceName = "Shuar", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiy", + ReferenceName = "Buyuan Jinuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jje", + ReferenceName = "Jejueo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jjr", + ReferenceName = "Bankal", + Scope = "I", + Type = "L" + }, + new + { + Id = "jka", + ReferenceName = "Kaera", + Scope = "I", + Type = "L" + }, + new + { + Id = "jkm", + ReferenceName = "Mobwa Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "jko", + ReferenceName = "Kubo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jkp", + ReferenceName = "Paku Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "jkr", + ReferenceName = "Koro (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jku", + ReferenceName = "Labir", + Scope = "I", + Type = "L" + }, + new + { + Id = "jle", + ReferenceName = "Ngile", + Scope = "I", + Type = "L" + }, + new + { + Id = "jls", + ReferenceName = "Jamaican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jma", + ReferenceName = "Dima", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmb", + ReferenceName = "Zumbun", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmc", + ReferenceName = "Machame", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmd", + ReferenceName = "Yamdena", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmi", + ReferenceName = "Jimi (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jml", + ReferenceName = "Jumli", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmn", + ReferenceName = "Makuri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmr", + ReferenceName = "Kamara", + Scope = "I", + Type = "L" + }, + new + { + Id = "jms", + ReferenceName = "Mashi (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmw", + ReferenceName = "Mouwase", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmx", + ReferenceName = "Western Juxtlahuaca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "jna", + ReferenceName = "Jangshung", + Scope = "I", + Type = "L" + }, + new + { + Id = "jnd", + ReferenceName = "Jandavra", + Scope = "I", + Type = "L" + }, + new + { + Id = "jng", + ReferenceName = "Yangman", + Scope = "I", + Type = "E" + }, + new + { + Id = "jni", + ReferenceName = "Janji", + Scope = "I", + Type = "L" + }, + new + { + Id = "jnj", + ReferenceName = "Yemsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jnl", + ReferenceName = "Rawat", + Scope = "I", + Type = "L" + }, + new + { + Id = "jns", + ReferenceName = "Jaunsari", + Scope = "I", + Type = "L" + }, + new + { + Id = "job", + ReferenceName = "Joba", + Scope = "I", + Type = "L" + }, + new + { + Id = "jod", + ReferenceName = "Wojenaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "jog", + ReferenceName = "Jogi", + Scope = "I", + Type = "L" + }, + new + { + Id = "jor", + ReferenceName = "Jorá", + Scope = "I", + Type = "E" + }, + new + { + Id = "jos", + ReferenceName = "Jordanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jow", + ReferenceName = "Jowulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jpa", + ReferenceName = "Jewish Palestinian Aramaic", + Scope = "I", + Type = "H" + }, + new + { + Id = "jpn", + Part1 = "ja", + Part2B = "jpn", + Part2T = "jpn", + ReferenceName = "Japanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jpr", + Part2B = "jpr", + Part2T = "jpr", + ReferenceName = "Judeo-Persian", + Scope = "I", + Type = "L" + }, + new + { + Id = "jqr", + ReferenceName = "Jaqaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "jra", + ReferenceName = "Jarai", + Scope = "I", + Type = "L" + }, + new + { + Id = "jrb", + Part2B = "jrb", + Part2T = "jrb", + ReferenceName = "Judeo-Arabic", + Scope = "M", + Type = "L" + }, + new + { + Id = "jrr", + ReferenceName = "Jiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "jrt", + ReferenceName = "Jorto", + Scope = "I", + Type = "L" + }, + new + { + Id = "jru", + ReferenceName = "Japrería", + Scope = "I", + Type = "L" + }, + new + { + Id = "jsl", + ReferenceName = "Japanese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jua", + ReferenceName = "Júma", + Scope = "I", + Type = "L" + }, + new + { + Id = "jub", + ReferenceName = "Wannu", + Scope = "I", + Type = "L" + }, + new + { + Id = "juc", + ReferenceName = "Jurchen", + Scope = "I", + Type = "E" + }, + new + { + Id = "jud", + ReferenceName = "Worodougou", + Scope = "I", + Type = "L" + }, + new + { + Id = "juh", + ReferenceName = "Hõne", + Scope = "I", + Type = "L" + }, + new + { + Id = "jui", + ReferenceName = "Ngadjuri", + Scope = "I", + Type = "E" + }, + new + { + Id = "juk", + ReferenceName = "Wapan", + Scope = "I", + Type = "L" + }, + new + { + Id = "jul", + ReferenceName = "Jirel", + Scope = "I", + Type = "L" + }, + new + { + Id = "jum", + ReferenceName = "Jumjum", + Scope = "I", + Type = "L" + }, + new + { + Id = "jun", + ReferenceName = "Juang", + Scope = "I", + Type = "L" + }, + new + { + Id = "juo", + ReferenceName = "Jiba", + Scope = "I", + Type = "L" + }, + new + { + Id = "jup", + ReferenceName = "Hupdë", + Scope = "I", + Type = "L" + }, + new + { + Id = "jur", + ReferenceName = "Jurúna", + Scope = "I", + Type = "L" + }, + new + { + Id = "jus", + ReferenceName = "Jumla Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jut", + ReferenceName = "Jutish", + Scope = "I", + Type = "H" + }, + new + { + Id = "juu", + ReferenceName = "Ju", + Scope = "I", + Type = "L" + }, + new + { + Id = "juw", + ReferenceName = "Wãpha", + Scope = "I", + Type = "L" + }, + new + { + Id = "juy", + ReferenceName = "Juray", + Scope = "I", + Type = "L" + }, + new + { + Id = "jvd", + ReferenceName = "Javindo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jvn", + ReferenceName = "Caribbean Javanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jwi", + ReferenceName = "Jwira-Pepesa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jya", + ReferenceName = "Jiarong", + Scope = "I", + Type = "L" + }, + new + { + Id = "jye", + ReferenceName = "Judeo-Yemeni Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "jyy", + ReferenceName = "Jaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaa", + Part2B = "kaa", + Part2T = "kaa", + ReferenceName = "Kara-Kalpak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kab", + Part2B = "kab", + Part2T = "kab", + ReferenceName = "Kabyle", + Scope = "I", + Type = "L" + }, + new + { + Id = "kac", + Part2B = "kac", + Part2T = "kac", + ReferenceName = "Kachin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kad", + ReferenceName = "Adara", + Scope = "I", + Type = "L" + }, + new + { + Id = "kae", + ReferenceName = "Ketangalan", + Scope = "I", + Type = "E" + }, + new + { + Id = "kaf", + ReferenceName = "Katso", + Scope = "I", + Type = "L" + }, + new + { + Id = "kag", + ReferenceName = "Kajaman", + Scope = "I", + Type = "L" + }, + new + { + Id = "kah", + ReferenceName = "Kara (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kai", + ReferenceName = "Karekare", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaj", + ReferenceName = "Jju", + Scope = "I", + Type = "L" + }, + new + { + Id = "kak", + ReferenceName = "Kalanguya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kal", + Part1 = "kl", + Part2B = "kal", + Part2T = "kal", + ReferenceName = "Kalaallisut", + Scope = "I", + Type = "L" + }, + new + { + Id = "kam", + Part2B = "kam", + Part2T = "kam", + ReferenceName = "Kamba (Kenya)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kan", + Part1 = "kn", + Part2B = "kan", + Part2T = "kan", + ReferenceName = "Kannada", + Scope = "I", + Type = "L" + }, + new + { + Id = "kao", + ReferenceName = "Xaasongaxango", + Scope = "I", + Type = "L" + }, + new + { + Id = "kap", + ReferenceName = "Bezhta", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaq", + ReferenceName = "Capanahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kas", + Part1 = "ks", + Part2B = "kas", + Part2T = "kas", + ReferenceName = "Kashmiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kat", + Part1 = "ka", + Part2B = "geo", + Part2T = "kat", + ReferenceName = "Georgian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kau", + Part1 = "kr", + Part2B = "kau", + Part2T = "kau", + ReferenceName = "Kanuri", + Scope = "M", + Type = "L" + }, + new + { + Id = "kav", + ReferenceName = "Katukína", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaw", + Part2B = "kaw", + Part2T = "kaw", + ReferenceName = "Kawi", + Scope = "I", + Type = "A" + }, + new + { + Id = "kax", + ReferenceName = "Kao", + Scope = "I", + Type = "L" + }, + new + { + Id = "kay", + ReferenceName = "Kamayurá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaz", + Part1 = "kk", + Part2B = "kaz", + Part2T = "kaz", + ReferenceName = "Kazakh", + Scope = "I", + Type = "L" + }, + new + { + Id = "kba", + ReferenceName = "Kalarko", + Scope = "I", + Type = "E" + }, + new + { + Id = "kbb", + ReferenceName = "Kaxuiâna", + Scope = "I", + Type = "E" + }, + new + { + Id = "kbc", + ReferenceName = "Kadiwéu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbd", + Part2B = "kbd", + Part2T = "kbd", + ReferenceName = "Kabardian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbe", + ReferenceName = "Kanju", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbg", + ReferenceName = "Khamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbh", + ReferenceName = "Camsá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbi", + ReferenceName = "Kaptiau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbj", + ReferenceName = "Kari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbk", + ReferenceName = "Grass Koiari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbl", + ReferenceName = "Kanembu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbm", + ReferenceName = "Iwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbn", + ReferenceName = "Kare (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbo", + ReferenceName = "Keliko", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbp", + ReferenceName = "Kabiyè", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbq", + ReferenceName = "Kamano", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbr", + ReferenceName = "Kafa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbs", + ReferenceName = "Kande", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbt", + ReferenceName = "Abadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbu", + ReferenceName = "Kabutra", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbv", + ReferenceName = "Dera (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbw", + ReferenceName = "Kaiep", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbx", + ReferenceName = "Ap Ma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kby", + ReferenceName = "Manga Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbz", + ReferenceName = "Duhwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kca", + ReferenceName = "Khanty", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcb", + ReferenceName = "Kawacha", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcc", + ReferenceName = "Lubila", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcd", + ReferenceName = "Ngkâlmpw Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kce", + ReferenceName = "Kaivi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcf", + ReferenceName = "Ukaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcg", + ReferenceName = "Tyap", + Scope = "I", + Type = "L" + }, + new + { + Id = "kch", + ReferenceName = "Vono", + Scope = "I", + Type = "L" + }, + new + { + Id = "kci", + ReferenceName = "Kamantan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcj", + ReferenceName = "Kobiana", + Scope = "I", + Type = "L" + }, + new + { + Id = "kck", + ReferenceName = "Kalanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcl", + ReferenceName = "Kela (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcm", + ReferenceName = "Gula (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcn", + ReferenceName = "Nubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kco", + ReferenceName = "Kinalakna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcp", + ReferenceName = "Kanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcq", + ReferenceName = "Kamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcr", + ReferenceName = "Katla", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcs", + ReferenceName = "Koenoem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kct", + ReferenceName = "Kaian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcu", + ReferenceName = "Kami (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcv", + ReferenceName = "Kete", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcw", + ReferenceName = "Kabwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcx", + ReferenceName = "Kachama-Ganjule", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcy", + ReferenceName = "Korandje", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcz", + ReferenceName = "Konongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kda", + ReferenceName = "Worimi", + Scope = "I", + Type = "E" + }, + new + { + Id = "kdc", + ReferenceName = "Kutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdd", + ReferenceName = "Yankunytjatjara", + Scope = "I", + Type = "L" + }, + new + { + Id = "kde", + ReferenceName = "Makonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdf", + ReferenceName = "Mamusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdg", + ReferenceName = "Seba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdh", + ReferenceName = "Tem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdi", + ReferenceName = "Kumam", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdj", + ReferenceName = "Karamojong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdk", + ReferenceName = "Numèè", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdl", + ReferenceName = "Tsikimba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdm", + ReferenceName = "Kagoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdn", + ReferenceName = "Kunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdp", + ReferenceName = "Kaningdon-Nindem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdq", + ReferenceName = "Koch", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdr", + ReferenceName = "Karaim", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdt", + ReferenceName = "Kuy", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdu", + ReferenceName = "Kadaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdw", + ReferenceName = "Koneraw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdx", + ReferenceName = "Kam", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdy", + ReferenceName = "Keder", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdz", + ReferenceName = "Kwaja", + Scope = "I", + Type = "L" + }, + new + { + Id = "kea", + ReferenceName = "Kabuverdianu", + Scope = "I", + Type = "L" + }, + new + { + Id = "keb", + ReferenceName = "Kélé", + Scope = "I", + Type = "L" + }, + new + { + Id = "kec", + ReferenceName = "Keiga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ked", + ReferenceName = "Kerewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kee", + ReferenceName = "Eastern Keres", + Scope = "I", + Type = "L" + }, + new + { + Id = "kef", + ReferenceName = "Kpessi", + Scope = "I", + Type = "L" + }, + new + { + Id = "keg", + ReferenceName = "Tese", + Scope = "I", + Type = "L" + }, + new + { + Id = "keh", + ReferenceName = "Keak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kei", + ReferenceName = "Kei", + Scope = "I", + Type = "L" + }, + new + { + Id = "kej", + ReferenceName = "Kadar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kek", + ReferenceName = "Kekchí", + Scope = "I", + Type = "L" + }, + new + { + Id = "kel", + ReferenceName = "Kela (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kem", + ReferenceName = "Kemak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ken", + ReferenceName = "Kenyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "keo", + ReferenceName = "Kakwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kep", + ReferenceName = "Kaikadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "keq", + ReferenceName = "Kamar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ker", + ReferenceName = "Kera", + Scope = "I", + Type = "L" + }, + new + { + Id = "kes", + ReferenceName = "Kugbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ket", + ReferenceName = "Ket", + Scope = "I", + Type = "L" + }, + new + { + Id = "keu", + ReferenceName = "Akebu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kev", + ReferenceName = "Kanikkaran", + Scope = "I", + Type = "L" + }, + new + { + Id = "kew", + ReferenceName = "West Kewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kex", + ReferenceName = "Kukna", + Scope = "I", + Type = "L" + }, + new + { + Id = "key", + ReferenceName = "Kupia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kez", + ReferenceName = "Kukele", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfa", + ReferenceName = "Kodava", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfb", + ReferenceName = "Northwestern Kolami", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfc", + ReferenceName = "Konda-Dora", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfd", + ReferenceName = "Korra Koraga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfe", + ReferenceName = "Kota (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kff", + ReferenceName = "Koya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfg", + ReferenceName = "Kudiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfh", + ReferenceName = "Kurichiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfi", + ReferenceName = "Kannada Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfj", + ReferenceName = "Kemiehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfk", + ReferenceName = "Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfl", + ReferenceName = "Kung", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfm", + ReferenceName = "Khunsari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfn", + ReferenceName = "Kuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfo", + ReferenceName = "Koro (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfp", + ReferenceName = "Korwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfq", + ReferenceName = "Korku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfr", + ReferenceName = "Kachhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfs", + ReferenceName = "Bilaspuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kft", + ReferenceName = "Kanjari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfu", + ReferenceName = "Katkari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfv", + ReferenceName = "Kurmukar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfw", + ReferenceName = "Kharam Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfx", + ReferenceName = "Kullu Pahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfy", + ReferenceName = "Kumaoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfz", + ReferenceName = "Koromfé", + Scope = "I", + Type = "L" + }, + new + { + Id = "kga", + ReferenceName = "Koyaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgb", + ReferenceName = "Kawe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kge", + ReferenceName = "Komering", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgf", + ReferenceName = "Kube", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgg", + ReferenceName = "Kusunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgi", + ReferenceName = "Selangor Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgj", + ReferenceName = "Gamale Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgk", + ReferenceName = "Kaiwá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgl", + ReferenceName = "Kunggari", + Scope = "I", + Type = "E" + }, + new + { + Id = "kgm", + ReferenceName = "Karipúna", + Scope = "I", + Type = "E" + }, + new + { + Id = "kgn", + ReferenceName = "Karingani", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgo", + ReferenceName = "Krongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgp", + ReferenceName = "Kaingang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgq", + ReferenceName = "Kamoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgr", + ReferenceName = "Abun", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgs", + ReferenceName = "Kumbainggar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgt", + ReferenceName = "Somyev", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgu", + ReferenceName = "Kobol", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgv", + ReferenceName = "Karas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgw", + ReferenceName = "Karon Dori", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgx", + ReferenceName = "Kamaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgy", + ReferenceName = "Kyerung", + Scope = "I", + Type = "L" + }, + new + { + Id = "kha", + Part2B = "kha", + Part2T = "kha", + ReferenceName = "Khasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khb", + ReferenceName = "Lü", + Scope = "I", + Type = "L" + }, + new + { + Id = "khc", + ReferenceName = "Tukang Besi North", + Scope = "I", + Type = "L" + }, + new + { + Id = "khd", + ReferenceName = "Bädi Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "khe", + ReferenceName = "Korowai", + Scope = "I", + Type = "L" + }, + new + { + Id = "khf", + ReferenceName = "Khuen", + Scope = "I", + Type = "L" + }, + new + { + Id = "khg", + ReferenceName = "Khams Tibetan", + Scope = "I", + Type = "L" + }, + new + { + Id = "khh", + ReferenceName = "Kehu", + Scope = "I", + Type = "L" + }, + new + { + Id = "khj", + ReferenceName = "Kuturmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khk", + ReferenceName = "Halh Mongolian", + Scope = "I", + Type = "L" + }, + new + { + Id = "khl", + ReferenceName = "Lusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khm", + Part1 = "km", + Part2B = "khm", + Part2T = "khm", + ReferenceName = "Khmer", + Scope = "I", + Type = "L" + }, + new + { + Id = "khn", + ReferenceName = "Khandesi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kho", + Part2B = "kho", + Part2T = "kho", + ReferenceName = "Khotanese", + Scope = "I", + Type = "A" + }, + new + { + Id = "khp", + ReferenceName = "Kapori", + Scope = "I", + Type = "L" + }, + new + { + Id = "khq", + ReferenceName = "Koyra Chiini Songhay", + Scope = "I", + Type = "L" + }, + new + { + Id = "khr", + ReferenceName = "Kharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "khs", + ReferenceName = "Kasua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kht", + ReferenceName = "Khamti", + Scope = "I", + Type = "L" + }, + new + { + Id = "khu", + ReferenceName = "Nkhumbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khv", + ReferenceName = "Khvarshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khw", + ReferenceName = "Khowar", + Scope = "I", + Type = "L" + }, + new + { + Id = "khx", + ReferenceName = "Kanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "khy", + ReferenceName = "Kele (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "khz", + ReferenceName = "Keapara", + Scope = "I", + Type = "L" + }, + new + { + Id = "kia", + ReferenceName = "Kim", + Scope = "I", + Type = "L" + }, + new + { + Id = "kib", + ReferenceName = "Koalib", + Scope = "I", + Type = "L" + }, + new + { + Id = "kic", + ReferenceName = "Kickapoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kid", + ReferenceName = "Koshin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kie", + ReferenceName = "Kibet", + Scope = "I", + Type = "L" + }, + new + { + Id = "kif", + ReferenceName = "Eastern Parbate Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kig", + ReferenceName = "Kimaama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kih", + ReferenceName = "Kilmeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kii", + ReferenceName = "Kitsai", + Scope = "I", + Type = "E" + }, + new + { + Id = "kij", + ReferenceName = "Kilivila", + Scope = "I", + Type = "L" + }, + new + { + Id = "kik", + Part1 = "ki", + Part2B = "kik", + Part2T = "kik", + ReferenceName = "Kikuyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kil", + ReferenceName = "Kariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kim", + ReferenceName = "Karagas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kin", + Part1 = "rw", + Part2B = "kin", + Part2T = "kin", + ReferenceName = "Kinyarwanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kio", + ReferenceName = "Kiowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kip", + ReferenceName = "Sheshi Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiq", + ReferenceName = "Kosadle", + Scope = "I", + Type = "L" + }, + new + { + Id = "kir", + Part1 = "ky", + Part2B = "kir", + Part2T = "kir", + ReferenceName = "Kirghiz", + Scope = "I", + Type = "L" + }, + new + { + Id = "kis", + ReferenceName = "Kis", + Scope = "I", + Type = "L" + }, + new + { + Id = "kit", + ReferenceName = "Agob", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiu", + ReferenceName = "Kirmanjki (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiv", + ReferenceName = "Kimbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiw", + ReferenceName = "Northeast Kiwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kix", + ReferenceName = "Khiamniungan Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiy", + ReferenceName = "Kirikiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiz", + ReferenceName = "Kisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kja", + ReferenceName = "Mlap", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjb", + ReferenceName = "Q'anjob'al", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjc", + ReferenceName = "Coastal Konjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjd", + ReferenceName = "Southern Kiwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kje", + ReferenceName = "Kisar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjf", + ReferenceName = "Khalaj", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjg", + ReferenceName = "Khmu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjh", + ReferenceName = "Khakas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kji", + ReferenceName = "Zabana", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjj", + ReferenceName = "Khinalugh", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjk", + ReferenceName = "Highland Konjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjl", + ReferenceName = "Western Parbate Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjm", + ReferenceName = "Kháng", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjn", + ReferenceName = "Kunjen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjo", + ReferenceName = "Harijan Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjp", + ReferenceName = "Pwo Eastern Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjq", + ReferenceName = "Western Keres", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjr", + ReferenceName = "Kurudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjs", + ReferenceName = "East Kewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjt", + ReferenceName = "Phrae Pwo Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kju", + ReferenceName = "Kashaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjv", + ReferenceName = "Kaikavian Literary Language", + Scope = "I", + Type = "H" + }, + new + { + Id = "kjx", + ReferenceName = "Ramopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjy", + ReferenceName = "Erave", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjz", + ReferenceName = "Bumthangkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "kka", + ReferenceName = "Kakanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkb", + ReferenceName = "Kwerisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkc", + ReferenceName = "Odoodee", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkd", + ReferenceName = "Kinuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kke", + ReferenceName = "Kakabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkf", + ReferenceName = "Kalaktang Monpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkg", + ReferenceName = "Mabaka Valley Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkh", + ReferenceName = "Khün", + Scope = "I", + Type = "L" + }, + new + { + Id = "kki", + ReferenceName = "Kagulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkj", + ReferenceName = "Kako", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkk", + ReferenceName = "Kokota", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkl", + ReferenceName = "Kosarek Yale", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkm", + ReferenceName = "Kiong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkn", + ReferenceName = "Kon Keu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kko", + ReferenceName = "Karko", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkp", + ReferenceName = "Gugubera", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkq", + ReferenceName = "Kaiku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkr", + ReferenceName = "Kir-Balar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kks", + ReferenceName = "Giiwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkt", + ReferenceName = "Koi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kku", + ReferenceName = "Tumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkv", + ReferenceName = "Kangean", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkw", + ReferenceName = "Teke-Kukuya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkx", + ReferenceName = "Kohin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kky", + ReferenceName = "Guugu Yimidhirr", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkz", + ReferenceName = "Kaska", + Scope = "I", + Type = "L" + }, + new + { + Id = "kla", + ReferenceName = "Klamath-Modoc", + Scope = "I", + Type = "E" + }, + new + { + Id = "klb", + ReferenceName = "Kiliwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "klc", + ReferenceName = "Kolbila", + Scope = "I", + Type = "L" + }, + new + { + Id = "kld", + ReferenceName = "Gamilaraay", + Scope = "I", + Type = "L" + }, + new + { + Id = "kle", + ReferenceName = "Kulung (Nepal)", + Scope = "I", + Type = "L" + }, + new + { + Id = "klf", + ReferenceName = "Kendeje", + Scope = "I", + Type = "L" + }, + new + { + Id = "klg", + ReferenceName = "Tagakaulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "klh", + ReferenceName = "Weliki", + Scope = "I", + Type = "L" + }, + new + { + Id = "kli", + ReferenceName = "Kalumpang", + Scope = "I", + Type = "L" + }, + new + { + Id = "klj", + ReferenceName = "Turkic Khalaj", + Scope = "I", + Type = "L" + }, + new + { + Id = "klk", + ReferenceName = "Kono (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kll", + ReferenceName = "Kagan Kalagan", + Scope = "I", + Type = "L" + }, + new + { + Id = "klm", + ReferenceName = "Migum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kln", + ReferenceName = "Kalenjin", + Scope = "M", + Type = "L" + }, + new + { + Id = "klo", + ReferenceName = "Kapya", + Scope = "I", + Type = "L" + }, + new + { + Id = "klp", + ReferenceName = "Kamasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "klq", + ReferenceName = "Rumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "klr", + ReferenceName = "Khaling", + Scope = "I", + Type = "L" + }, + new + { + Id = "kls", + ReferenceName = "Kalasha", + Scope = "I", + Type = "L" + }, + new + { + Id = "klt", + ReferenceName = "Nukna", + Scope = "I", + Type = "L" + }, + new + { + Id = "klu", + ReferenceName = "Klao", + Scope = "I", + Type = "L" + }, + new + { + Id = "klv", + ReferenceName = "Maskelynes", + Scope = "I", + Type = "L" + }, + new + { + Id = "klw", + ReferenceName = "Tado", + Scope = "I", + Type = "L" + }, + new + { + Id = "klx", + ReferenceName = "Koluwawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kly", + ReferenceName = "Kalao", + Scope = "I", + Type = "L" + }, + new + { + Id = "klz", + ReferenceName = "Kabola", + Scope = "I", + Type = "L" + }, + new + { + Id = "kma", + ReferenceName = "Konni", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmb", + Part2B = "kmb", + Part2T = "kmb", + ReferenceName = "Kimbundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmc", + ReferenceName = "Southern Dong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmd", + ReferenceName = "Majukayang Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kme", + ReferenceName = "Bakole", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmf", + ReferenceName = "Kare (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmg", + ReferenceName = "Kâte", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmh", + ReferenceName = "Kalam", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmi", + ReferenceName = "Kami (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmj", + ReferenceName = "Kumarbhag Paharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmk", + ReferenceName = "Limos Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kml", + ReferenceName = "Tanudan Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmm", + ReferenceName = "Kom (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmn", + ReferenceName = "Awtuw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmo", + ReferenceName = "Kwoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmp", + ReferenceName = "Gimme", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmq", + ReferenceName = "Kwama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmr", + ReferenceName = "Northern Kurdish", + Scope = "I", + Type = "L" + }, + new + { + Id = "kms", + ReferenceName = "Kamasau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmt", + ReferenceName = "Kemtuik", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmu", + ReferenceName = "Kanite", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmv", + ReferenceName = "Karipúna Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmw", + ReferenceName = "Komo (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmx", + ReferenceName = "Waboda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmy", + ReferenceName = "Koma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmz", + ReferenceName = "Khorasani Turkish", + Scope = "I", + Type = "L" + }, + new + { + Id = "kna", + ReferenceName = "Dera (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "knb", + ReferenceName = "Lubuagan Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "knc", + ReferenceName = "Central Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "knd", + ReferenceName = "Konda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kne", + ReferenceName = "Kankanaey", + Scope = "I", + Type = "L" + }, + new + { + Id = "knf", + ReferenceName = "Mankanya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kng", + ReferenceName = "Koongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kni", + ReferenceName = "Kanufi", + Scope = "I", + Type = "L" + }, + new + { + Id = "knj", + ReferenceName = "Western Kanjobal", + Scope = "I", + Type = "L" + }, + new + { + Id = "knk", + ReferenceName = "Kuranko", + Scope = "I", + Type = "L" + }, + new + { + Id = "knl", + ReferenceName = "Keninjal", + Scope = "I", + Type = "L" + }, + new + { + Id = "knm", + ReferenceName = "Kanamarí", + Scope = "I", + Type = "L" + }, + new + { + Id = "knn", + ReferenceName = "Konkani (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kno", + ReferenceName = "Kono (Sierra Leone)", + Scope = "I", + Type = "L" + }, + new + { + Id = "knp", + ReferenceName = "Kwanja", + Scope = "I", + Type = "L" + }, + new + { + Id = "knq", + ReferenceName = "Kintaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "knr", + ReferenceName = "Kaningra", + Scope = "I", + Type = "L" + }, + new + { + Id = "kns", + ReferenceName = "Kensiu", + Scope = "I", + Type = "L" + }, + new + { + Id = "knt", + ReferenceName = "Panoan Katukína", + Scope = "I", + Type = "L" + }, + new + { + Id = "knu", + ReferenceName = "Kono (Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "knv", + ReferenceName = "Tabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "knw", + ReferenceName = "Kung-Ekoka", + Scope = "I", + Type = "L" + }, + new + { + Id = "knx", + ReferenceName = "Kendayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kny", + ReferenceName = "Kanyok", + Scope = "I", + Type = "L" + }, + new + { + Id = "knz", + ReferenceName = "Kalamsé", + Scope = "I", + Type = "L" + }, + new + { + Id = "koa", + ReferenceName = "Konomala", + Scope = "I", + Type = "L" + }, + new + { + Id = "koc", + ReferenceName = "Kpati", + Scope = "I", + Type = "E" + }, + new + { + Id = "kod", + ReferenceName = "Kodi", + Scope = "I", + Type = "L" + }, + new + { + Id = "koe", + ReferenceName = "Kacipo-Balesi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kof", + ReferenceName = "Kubi", + Scope = "I", + Type = "E" + }, + new + { + Id = "kog", + ReferenceName = "Cogui", + Scope = "I", + Type = "L" + }, + new + { + Id = "koh", + ReferenceName = "Koyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "koi", + ReferenceName = "Komi-Permyak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kok", + Part2B = "kok", + Part2T = "kok", + ReferenceName = "Konkani (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "kol", + ReferenceName = "Kol (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kom", + Part1 = "kv", + Part2B = "kom", + Part2T = "kom", + ReferenceName = "Komi", + Scope = "M", + Type = "L" + }, + new + { + Id = "kon", + Part1 = "kg", + Part2B = "kon", + Part2T = "kon", + ReferenceName = "Kongo", + Scope = "M", + Type = "L" + }, + new + { + Id = "koo", + ReferenceName = "Konzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kop", + ReferenceName = "Waube", + Scope = "I", + Type = "L" + }, + new + { + Id = "koq", + ReferenceName = "Kota (Gabon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kor", + Part1 = "ko", + Part2B = "kor", + Part2T = "kor", + ReferenceName = "Korean", + Scope = "I", + Type = "L" + }, + new + { + Id = "kos", + Part2B = "kos", + Part2T = "kos", + ReferenceName = "Kosraean", + Scope = "I", + Type = "L" + }, + new + { + Id = "kot", + ReferenceName = "Lagwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kou", + ReferenceName = "Koke", + Scope = "I", + Type = "L" + }, + new + { + Id = "kov", + ReferenceName = "Kudu-Camo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kow", + ReferenceName = "Kugama", + Scope = "I", + Type = "L" + }, + new + { + Id = "koy", + ReferenceName = "Koyukon", + Scope = "I", + Type = "L" + }, + new + { + Id = "koz", + ReferenceName = "Korak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpa", + ReferenceName = "Kutto", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpb", + ReferenceName = "Mullu Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpc", + ReferenceName = "Curripaco", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpd", + ReferenceName = "Koba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpe", + Part2B = "kpe", + Part2T = "kpe", + ReferenceName = "Kpelle", + Scope = "M", + Type = "L" + }, + new + { + Id = "kpf", + ReferenceName = "Komba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpg", + ReferenceName = "Kapingamarangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kph", + ReferenceName = "Kplang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpi", + ReferenceName = "Kofei", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpj", + ReferenceName = "Karajá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpk", + ReferenceName = "Kpan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpl", + ReferenceName = "Kpala", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpm", + ReferenceName = "Koho", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpn", + ReferenceName = "Kepkiriwát", + Scope = "I", + Type = "E" + }, + new + { + Id = "kpo", + ReferenceName = "Ikposo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpq", + ReferenceName = "Korupun-Sela", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpr", + ReferenceName = "Korafe-Yegha", + Scope = "I", + Type = "L" + }, + new + { + Id = "kps", + ReferenceName = "Tehit", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpt", + ReferenceName = "Karata", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpu", + ReferenceName = "Kafoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpv", + ReferenceName = "Komi-Zyrian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpw", + ReferenceName = "Kobon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpx", + ReferenceName = "Mountain Koiali", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpy", + ReferenceName = "Koryak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpz", + ReferenceName = "Kupsabiny", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqa", + ReferenceName = "Mum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqb", + ReferenceName = "Kovai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqc", + ReferenceName = "Doromu-Koki", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqd", + ReferenceName = "Koy Sanjaq Surat", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqe", + ReferenceName = "Kalagan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqf", + ReferenceName = "Kakabai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqg", + ReferenceName = "Khe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqh", + ReferenceName = "Kisankasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqi", + ReferenceName = "Koitabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqj", + ReferenceName = "Koromira", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqk", + ReferenceName = "Kotafon Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kql", + ReferenceName = "Kyenele", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqm", + ReferenceName = "Khisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqn", + ReferenceName = "Kaonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqo", + ReferenceName = "Eastern Krahn", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqp", + ReferenceName = "Kimré", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqq", + ReferenceName = "Krenak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqr", + ReferenceName = "Kimaragang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqs", + ReferenceName = "Northern Kissi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqt", + ReferenceName = "Klias River Kadazan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqu", + ReferenceName = "Seroa", + Scope = "I", + Type = "E" + }, + new + { + Id = "kqv", + ReferenceName = "Okolod", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqw", + ReferenceName = "Kandas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqx", + ReferenceName = "Mser", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqy", + ReferenceName = "Koorete", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqz", + ReferenceName = "Korana", + Scope = "I", + Type = "E" + }, + new + { + Id = "kra", + ReferenceName = "Kumhali", + Scope = "I", + Type = "L" + }, + new + { + Id = "krb", + ReferenceName = "Karkin", + Scope = "I", + Type = "E" + }, + new + { + Id = "krc", + Part2B = "krc", + Part2T = "krc", + ReferenceName = "Karachay-Balkar", + Scope = "I", + Type = "L" + }, + new + { + Id = "krd", + ReferenceName = "Kairui-Midiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "kre", + ReferenceName = "Panará", + Scope = "I", + Type = "L" + }, + new + { + Id = "krf", + ReferenceName = "Koro (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "krh", + ReferenceName = "Kurama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kri", + ReferenceName = "Krio", + Scope = "I", + Type = "L" + }, + new + { + Id = "krj", + ReferenceName = "Kinaray-A", + Scope = "I", + Type = "L" + }, + new + { + Id = "krk", + ReferenceName = "Kerek", + Scope = "I", + Type = "E" + }, + new + { + Id = "krl", + Part2B = "krl", + Part2T = "krl", + ReferenceName = "Karelian", + Scope = "I", + Type = "L" + }, + new + { + Id = "krn", + ReferenceName = "Sapo", + Scope = "I", + Type = "L" + }, + new + { + Id = "krp", + ReferenceName = "Korop", + Scope = "I", + Type = "L" + }, + new + { + Id = "krr", + ReferenceName = "Krung", + Scope = "I", + Type = "L" + }, + new + { + Id = "krs", + ReferenceName = "Gbaya (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "krt", + ReferenceName = "Tumari Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kru", + Part2B = "kru", + Part2T = "kru", + ReferenceName = "Kurukh", + Scope = "I", + Type = "L" + }, + new + { + Id = "krv", + ReferenceName = "Kavet", + Scope = "I", + Type = "L" + }, + new + { + Id = "krw", + ReferenceName = "Western Krahn", + Scope = "I", + Type = "L" + }, + new + { + Id = "krx", + ReferenceName = "Karon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kry", + ReferenceName = "Kryts", + Scope = "I", + Type = "L" + }, + new + { + Id = "krz", + ReferenceName = "Sota Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksa", + ReferenceName = "Shuwa-Zamani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksb", + ReferenceName = "Shambala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksc", + ReferenceName = "Southern Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksd", + ReferenceName = "Kuanua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kse", + ReferenceName = "Kuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksf", + ReferenceName = "Bafia", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksg", + ReferenceName = "Kusaghe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksh", + ReferenceName = "Kölsch", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksi", + ReferenceName = "Krisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksj", + ReferenceName = "Uare", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksk", + ReferenceName = "Kansa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksl", + ReferenceName = "Kumalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksm", + ReferenceName = "Kumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksn", + ReferenceName = "Kasiguranin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kso", + ReferenceName = "Kofa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksp", + ReferenceName = "Kaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksq", + ReferenceName = "Kwaami", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksr", + ReferenceName = "Borong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kss", + ReferenceName = "Southern Kisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kst", + ReferenceName = "Winyé", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksu", + ReferenceName = "Khamyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksv", + ReferenceName = "Kusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksw", + ReferenceName = "S'gaw Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksx", + ReferenceName = "Kedang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksy", + ReferenceName = "Kharia Thar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksz", + ReferenceName = "Kodaku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kta", + ReferenceName = "Katua", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktb", + ReferenceName = "Kambaata", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktc", + ReferenceName = "Kholok", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktd", + ReferenceName = "Kokata", + Scope = "I", + Type = "L" + }, + new + { + Id = "kte", + ReferenceName = "Nubri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktf", + ReferenceName = "Kwami", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktg", + ReferenceName = "Kalkutung", + Scope = "I", + Type = "E" + }, + new + { + Id = "kth", + ReferenceName = "Karanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kti", + ReferenceName = "North Muyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktj", + ReferenceName = "Plapo Krumen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktk", + ReferenceName = "Kaniet", + Scope = "I", + Type = "E" + }, + new + { + Id = "ktl", + ReferenceName = "Koroshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktm", + ReferenceName = "Kurti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktn", + ReferenceName = "Karitiâna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kto", + ReferenceName = "Kuot", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktp", + ReferenceName = "Kaduo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktq", + ReferenceName = "Katabaga", + Scope = "I", + Type = "E" + }, + new + { + Id = "kts", + ReferenceName = "South Muyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktt", + ReferenceName = "Ketum", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktu", + ReferenceName = "Kituba (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktv", + ReferenceName = "Eastern Katu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktw", + ReferenceName = "Kato", + Scope = "I", + Type = "E" + }, + new + { + Id = "ktx", + ReferenceName = "Kaxararí", + Scope = "I", + Type = "L" + }, + new + { + Id = "kty", + ReferenceName = "Kango (Bas-Uélé District)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktz", + ReferenceName = "Juǀʼhoan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kua", + Part1 = "kj", + Part2B = "kua", + Part2T = "kua", + ReferenceName = "Kuanyama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kub", + ReferenceName = "Kutep", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuc", + ReferenceName = "Kwinsu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kud", + ReferenceName = "'Auhelawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kue", + ReferenceName = "Kuman (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuf", + ReferenceName = "Western Katu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kug", + ReferenceName = "Kupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuh", + ReferenceName = "Kushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kui", + ReferenceName = "Kuikúro-Kalapálo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuj", + ReferenceName = "Kuria", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuk", + ReferenceName = "Kepo'", + Scope = "I", + Type = "L" + }, + new + { + Id = "kul", + ReferenceName = "Kulere", + Scope = "I", + Type = "L" + }, + new + { + Id = "kum", + Part2B = "kum", + Part2T = "kum", + ReferenceName = "Kumyk", + Scope = "I", + Type = "L" + }, + new + { + Id = "kun", + ReferenceName = "Kunama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuo", + ReferenceName = "Kumukio", + Scope = "I", + Type = "L" + }, + new + { + Id = "kup", + ReferenceName = "Kunimaipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuq", + ReferenceName = "Karipuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kur", + Part1 = "ku", + Part2B = "kur", + Part2T = "kur", + ReferenceName = "Kurdish", + Scope = "M", + Type = "L" + }, + new + { + Id = "kus", + ReferenceName = "Kusaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "kut", + Part2B = "kut", + Part2T = "kut", + ReferenceName = "Kutenai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuu", + ReferenceName = "Upper Kuskokwim", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuv", + ReferenceName = "Kur", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuw", + ReferenceName = "Kpagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kux", + ReferenceName = "Kukatja", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuy", + ReferenceName = "Kuuku-Ya'u", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuz", + ReferenceName = "Kunza", + Scope = "I", + Type = "E" + }, + new + { + Id = "kva", + ReferenceName = "Bagvalal", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvb", + ReferenceName = "Kubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvc", + ReferenceName = "Kove", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvd", + ReferenceName = "Kui (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kve", + ReferenceName = "Kalabakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvf", + ReferenceName = "Kabalai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvg", + ReferenceName = "Kuni-Boazi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvh", + ReferenceName = "Komodo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvi", + ReferenceName = "Kwang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvj", + ReferenceName = "Psikye", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvk", + ReferenceName = "Korean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvl", + ReferenceName = "Kayaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvm", + ReferenceName = "Kendem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvn", + ReferenceName = "Border Kuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvo", + ReferenceName = "Dobel", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvp", + ReferenceName = "Kompane", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvq", + ReferenceName = "Geba Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvr", + ReferenceName = "Kerinci", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvt", + ReferenceName = "Lahta Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvu", + ReferenceName = "Yinbaw Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvv", + ReferenceName = "Kola", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvw", + ReferenceName = "Wersing", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvx", + ReferenceName = "Parkari Koli", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvy", + ReferenceName = "Yintale Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvz", + ReferenceName = "Tsakwambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwa", + ReferenceName = "Dâw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwb", + ReferenceName = "Kwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwc", + ReferenceName = "Likwala", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwd", + ReferenceName = "Kwaio", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwe", + ReferenceName = "Kwerba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwf", + ReferenceName = "Kwara'ae", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwg", + ReferenceName = "Sara Kaba Deme", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwh", + ReferenceName = "Kowiai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwi", + ReferenceName = "Awa-Cuaiquer", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwj", + ReferenceName = "Kwanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwk", + ReferenceName = "Kwakiutl", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwl", + ReferenceName = "Kofyar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwm", + ReferenceName = "Kwambi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwn", + ReferenceName = "Kwangali", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwo", + ReferenceName = "Kwomtari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwp", + ReferenceName = "Kodia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwr", + ReferenceName = "Kwer", + Scope = "I", + Type = "L" + }, + new + { + Id = "kws", + ReferenceName = "Kwese", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwt", + ReferenceName = "Kwesten", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwu", + ReferenceName = "Kwakum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwv", + ReferenceName = "Sara Kaba Náà", + Scope = "I", + Type = "L" + }, + new + { + Id = "kww", + ReferenceName = "Kwinti", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwx", + ReferenceName = "Khirwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwy", + ReferenceName = "San Salvador Kongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwz", + ReferenceName = "Kwadi", + Scope = "I", + Type = "E" + }, + new + { + Id = "kxa", + ReferenceName = "Kairiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxb", + ReferenceName = "Krobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxc", + ReferenceName = "Konso", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxd", + ReferenceName = "Brunei", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxf", + ReferenceName = "Manumanaw Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxh", + ReferenceName = "Karo (Ethiopia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxi", + ReferenceName = "Keningau Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxj", + ReferenceName = "Kulfa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxk", + ReferenceName = "Zayein Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxl", + ReferenceName = "Nepali Kurux", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxm", + ReferenceName = "Northern Khmer", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxn", + ReferenceName = "Kanowit-Tanjong Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxo", + ReferenceName = "Kanoé", + Scope = "I", + Type = "E" + }, + new + { + Id = "kxp", + ReferenceName = "Wadiyara Koli", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxq", + ReferenceName = "Smärky Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxr", + ReferenceName = "Koro (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxs", + ReferenceName = "Kangjia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxt", + ReferenceName = "Koiwat", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxu", + ReferenceName = "Kui (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxv", + ReferenceName = "Kuvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxw", + ReferenceName = "Konai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxx", + ReferenceName = "Likuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxy", + ReferenceName = "Kayong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxz", + ReferenceName = "Kerewo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kya", + ReferenceName = "Kwaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyb", + ReferenceName = "Butbut Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyc", + ReferenceName = "Kyaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyd", + ReferenceName = "Karey", + Scope = "I", + Type = "L" + }, + new + { + Id = "kye", + ReferenceName = "Krache", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyf", + ReferenceName = "Kouya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyg", + ReferenceName = "Keyagana", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyh", + ReferenceName = "Karok", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyi", + ReferenceName = "Kiput", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyj", + ReferenceName = "Karao", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyk", + ReferenceName = "Kamayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyl", + ReferenceName = "Kalapuya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kym", + ReferenceName = "Kpatili", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyn", + ReferenceName = "Northern Binukidnon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyo", + ReferenceName = "Kelon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyp", + ReferenceName = "Kang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyq", + ReferenceName = "Kenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyr", + ReferenceName = "Kuruáya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kys", + ReferenceName = "Baram Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyt", + ReferenceName = "Kayagar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyu", + ReferenceName = "Western Kayah", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyv", + ReferenceName = "Kayort", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyw", + ReferenceName = "Kudmali", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyx", + ReferenceName = "Rapoisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyy", + ReferenceName = "Kambaira", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyz", + ReferenceName = "Kayabí", + Scope = "I", + Type = "L" + }, + new + { + Id = "kza", + ReferenceName = "Western Karaboro", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzb", + ReferenceName = "Kaibobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzc", + ReferenceName = "Bondoukou Kulango", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzd", + ReferenceName = "Kadai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kze", + ReferenceName = "Kosena", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzf", + ReferenceName = "Da'a Kaili", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzg", + ReferenceName = "Kikai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzi", + ReferenceName = "Kelabit", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzk", + ReferenceName = "Kazukuru", + Scope = "I", + Type = "E" + }, + new + { + Id = "kzl", + ReferenceName = "Kayeli", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzm", + ReferenceName = "Kais", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzn", + ReferenceName = "Kokola", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzo", + ReferenceName = "Kaningi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzp", + ReferenceName = "Kaidipang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzq", + ReferenceName = "Kaike", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzr", + ReferenceName = "Karang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzs", + ReferenceName = "Sugut Dusun", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzu", + ReferenceName = "Kayupulau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzv", + ReferenceName = "Komyandaret", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzw", + ReferenceName = "Karirí-Xocó", + Scope = "I", + Type = "E" + }, + new + { + Id = "kzx", + ReferenceName = "Kamarian", + Scope = "I", + Type = "E" + }, + new + { + Id = "kzy", + ReferenceName = "Kango (Tshopo District)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzz", + ReferenceName = "Kalabra", + Scope = "I", + Type = "L" + }, + new + { + Id = "laa", + ReferenceName = "Southern Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "lab", + ReferenceName = "Linear A", + Scope = "I", + Type = "A" + }, + new + { + Id = "lac", + ReferenceName = "Lacandon", + Scope = "I", + Type = "L" + }, + new + { + Id = "lad", + Part2B = "lad", + Part2T = "lad", + ReferenceName = "Ladino", + Scope = "I", + Type = "L" + }, + new + { + Id = "lae", + ReferenceName = "Pattani", + Scope = "I", + Type = "L" + }, + new + { + Id = "laf", + ReferenceName = "Lafofa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lag", + ReferenceName = "Langi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lah", + Part2B = "lah", + Part2T = "lah", + ReferenceName = "Lahnda", + Scope = "M", + Type = "L" + }, + new + { + Id = "lai", + ReferenceName = "Lambya", + Scope = "I", + Type = "L" + }, + new + { + Id = "laj", + ReferenceName = "Lango (Uganda)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lak", + ReferenceName = "Laka (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lal", + ReferenceName = "Lalia", + Scope = "I", + Type = "L" + }, + new + { + Id = "lam", + Part2B = "lam", + Part2T = "lam", + ReferenceName = "Lamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lan", + ReferenceName = "Laru", + Scope = "I", + Type = "L" + }, + new + { + Id = "lao", + Part1 = "lo", + Part2B = "lao", + Part2T = "lao", + ReferenceName = "Lao", + Scope = "I", + Type = "L" + }, + new + { + Id = "lap", + ReferenceName = "Laka (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "laq", + ReferenceName = "Qabiao", + Scope = "I", + Type = "L" + }, + new + { + Id = "lar", + ReferenceName = "Larteh", + Scope = "I", + Type = "L" + }, + new + { + Id = "las", + ReferenceName = "Lama (Togo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lat", + Part1 = "la", + Part2B = "lat", + Part2T = "lat", + ReferenceName = "Latin", + Scope = "I", + Type = "A" + }, + new + { + Id = "lau", + ReferenceName = "Laba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lav", + Part1 = "lv", + Part2B = "lav", + Part2T = "lav", + ReferenceName = "Latvian", + Scope = "M", + Type = "L" + }, + new + { + Id = "law", + ReferenceName = "Lauje", + Scope = "I", + Type = "L" + }, + new + { + Id = "lax", + ReferenceName = "Tiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lay", + ReferenceName = "Lama Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "laz", + ReferenceName = "Aribwatsa", + Scope = "I", + Type = "E" + }, + new + { + Id = "lbb", + ReferenceName = "Label", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbc", + ReferenceName = "Lakkia", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbe", + ReferenceName = "Lak", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbf", + ReferenceName = "Tinani", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbg", + ReferenceName = "Laopang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbi", + ReferenceName = "La'bi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbj", + ReferenceName = "Ladakhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbk", + ReferenceName = "Central Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbl", + ReferenceName = "Libon Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbm", + ReferenceName = "Lodhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbn", + ReferenceName = "Rmeet", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbo", + ReferenceName = "Laven", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbq", + ReferenceName = "Wampar", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbr", + ReferenceName = "Lohorung", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbs", + ReferenceName = "Libyan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbt", + ReferenceName = "Lachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbu", + ReferenceName = "Labu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbv", + ReferenceName = "Lavatbura-Lamusong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbw", + ReferenceName = "Tolaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbx", + ReferenceName = "Lawangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lby", + ReferenceName = "Lamalama", + Scope = "I", + Type = "E" + }, + new + { + Id = "lbz", + ReferenceName = "Lardil", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcc", + ReferenceName = "Legenyem", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcd", + ReferenceName = "Lola", + Scope = "I", + Type = "L" + }, + new + { + Id = "lce", + ReferenceName = "Loncong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcf", + ReferenceName = "Lubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lch", + ReferenceName = "Luchazi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcl", + ReferenceName = "Lisela", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcm", + ReferenceName = "Tungag", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcp", + ReferenceName = "Western Lawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcq", + ReferenceName = "Luhu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcs", + ReferenceName = "Lisabata-Nuniali", + Scope = "I", + Type = "L" + }, + new + { + Id = "lda", + ReferenceName = "Kla-Dan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldb", + ReferenceName = "Dũya", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldd", + ReferenceName = "Luri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldg", + ReferenceName = "Lenyima", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldh", + ReferenceName = "Lamja-Dengsa-Tola", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldi", + ReferenceName = "Laari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldj", + ReferenceName = "Lemoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldk", + ReferenceName = "Leelau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldl", + ReferenceName = "Kaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldm", + ReferenceName = "Landoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldn", + ReferenceName = "Láadan", + Scope = "I", + Type = "C" + }, + new + { + Id = "ldo", + ReferenceName = "Loo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldp", + ReferenceName = "Tso", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldq", + ReferenceName = "Lufu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lea", + ReferenceName = "Lega-Shabunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "leb", + ReferenceName = "Lala-Bisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lec", + ReferenceName = "Leco", + Scope = "I", + Type = "L" + }, + new + { + Id = "led", + ReferenceName = "Lendu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lee", + ReferenceName = "Lyélé", + Scope = "I", + Type = "L" + }, + new + { + Id = "lef", + ReferenceName = "Lelemi", + Scope = "I", + Type = "L" + }, + new + { + Id = "leh", + ReferenceName = "Lenje", + Scope = "I", + Type = "L" + }, + new + { + Id = "lei", + ReferenceName = "Lemio", + Scope = "I", + Type = "L" + }, + new + { + Id = "lej", + ReferenceName = "Lengola", + Scope = "I", + Type = "L" + }, + new + { + Id = "lek", + ReferenceName = "Leipon", + Scope = "I", + Type = "L" + }, + new + { + Id = "lel", + ReferenceName = "Lele (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lem", + ReferenceName = "Nomaande", + Scope = "I", + Type = "L" + }, + new + { + Id = "len", + ReferenceName = "Lenca", + Scope = "I", + Type = "E" + }, + new + { + Id = "leo", + ReferenceName = "Leti (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lep", + ReferenceName = "Lepcha", + Scope = "I", + Type = "L" + }, + new + { + Id = "leq", + ReferenceName = "Lembena", + Scope = "I", + Type = "L" + }, + new + { + Id = "ler", + ReferenceName = "Lenkau", + Scope = "I", + Type = "L" + }, + new + { + Id = "les", + ReferenceName = "Lese", + Scope = "I", + Type = "L" + }, + new + { + Id = "let", + ReferenceName = "Lesing-Gelimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "leu", + ReferenceName = "Kara (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lev", + ReferenceName = "Lamma", + Scope = "I", + Type = "L" + }, + new + { + Id = "lew", + ReferenceName = "Ledo Kaili", + Scope = "I", + Type = "L" + }, + new + { + Id = "lex", + ReferenceName = "Luang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ley", + ReferenceName = "Lemolang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lez", + Part2B = "lez", + Part2T = "lez", + ReferenceName = "Lezghian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lfa", + ReferenceName = "Lefa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lfn", + ReferenceName = "Lingua Franca Nova", + Scope = "I", + Type = "C" + }, + new + { + Id = "lga", + ReferenceName = "Lungga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgb", + ReferenceName = "Laghu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgg", + ReferenceName = "Lugbara", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgh", + ReferenceName = "Laghuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgi", + ReferenceName = "Lengilu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgk", + ReferenceName = "Lingarak", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgl", + ReferenceName = "Wala", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgm", + ReferenceName = "Lega-Mwenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgn", + ReferenceName = "T'apo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgq", + ReferenceName = "Logba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgr", + ReferenceName = "Lengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgt", + ReferenceName = "Pahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgu", + ReferenceName = "Longgu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgz", + ReferenceName = "Ligenza", + Scope = "I", + Type = "L" + }, + new + { + Id = "lha", + ReferenceName = "Laha (Viet Nam)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhh", + ReferenceName = "Laha (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhi", + ReferenceName = "Lahu Shi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhl", + ReferenceName = "Lahul Lohar", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhm", + ReferenceName = "Lhomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhn", + ReferenceName = "Lahanan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhp", + ReferenceName = "Lhokpu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhs", + ReferenceName = "Mlahsö", + Scope = "I", + Type = "E" + }, + new + { + Id = "lht", + ReferenceName = "Lo-Toga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhu", + ReferenceName = "Lahu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lia", + ReferenceName = "West-Central Limba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lib", + ReferenceName = "Likum", + Scope = "I", + Type = "L" + }, + new + { + Id = "lic", + ReferenceName = "Hlai", + Scope = "I", + Type = "L" + }, + new + { + Id = "lid", + ReferenceName = "Nyindrou", + Scope = "I", + Type = "L" + }, + new + { + Id = "lie", + ReferenceName = "Likila", + Scope = "I", + Type = "L" + }, + new + { + Id = "lif", + ReferenceName = "Limbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lig", + ReferenceName = "Ligbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lih", + ReferenceName = "Lihir", + Scope = "I", + Type = "L" + }, + new + { + Id = "lij", + ReferenceName = "Ligurian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lik", + ReferenceName = "Lika", + Scope = "I", + Type = "L" + }, + new + { + Id = "lil", + ReferenceName = "Lillooet", + Scope = "I", + Type = "L" + }, + new + { + Id = "lim", + Part1 = "li", + Part2B = "lim", + Part2T = "lim", + ReferenceName = "Limburgan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lin", + Part1 = "ln", + Part2B = "lin", + Part2T = "lin", + ReferenceName = "Lingala", + Scope = "I", + Type = "L" + }, + new + { + Id = "lio", + ReferenceName = "Liki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lip", + ReferenceName = "Sekpele", + Scope = "I", + Type = "L" + }, + new + { + Id = "liq", + ReferenceName = "Libido", + Scope = "I", + Type = "L" + }, + new + { + Id = "lir", + ReferenceName = "Liberian English", + Scope = "I", + Type = "L" + }, + new + { + Id = "lis", + ReferenceName = "Lisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lit", + Part1 = "lt", + Part2B = "lit", + Part2T = "lit", + ReferenceName = "Lithuanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "liu", + ReferenceName = "Logorik", + Scope = "I", + Type = "L" + }, + new + { + Id = "liv", + ReferenceName = "Liv", + Scope = "I", + Type = "L" + }, + new + { + Id = "liw", + ReferenceName = "Col", + Scope = "I", + Type = "L" + }, + new + { + Id = "lix", + ReferenceName = "Liabuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "liy", + ReferenceName = "Banda-Bambari", + Scope = "I", + Type = "L" + }, + new + { + Id = "liz", + ReferenceName = "Libinza", + Scope = "I", + Type = "L" + }, + new + { + Id = "lja", + ReferenceName = "Golpa", + Scope = "I", + Type = "E" + }, + new + { + Id = "lje", + ReferenceName = "Rampi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lji", + ReferenceName = "Laiyolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljl", + ReferenceName = "Li'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljp", + ReferenceName = "Lampung Api", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljw", + ReferenceName = "Yirandali", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljx", + ReferenceName = "Yuru", + Scope = "I", + Type = "E" + }, + new + { + Id = "lka", + ReferenceName = "Lakalei", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkb", + ReferenceName = "Kabras", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkc", + ReferenceName = "Kucong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkd", + ReferenceName = "Lakondê", + Scope = "I", + Type = "L" + }, + new + { + Id = "lke", + ReferenceName = "Kenyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkh", + ReferenceName = "Lakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "lki", + ReferenceName = "Laki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkj", + ReferenceName = "Remun", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkl", + ReferenceName = "Laeko-Libuat", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkm", + ReferenceName = "Kalaamaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "lkn", + ReferenceName = "Lakon", + Scope = "I", + Type = "L" + }, + new + { + Id = "lko", + ReferenceName = "Khayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkr", + ReferenceName = "Päri", + Scope = "I", + Type = "L" + }, + new + { + Id = "lks", + ReferenceName = "Kisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkt", + ReferenceName = "Lakota", + Scope = "I", + Type = "L" + }, + new + { + Id = "lku", + ReferenceName = "Kungkari", + Scope = "I", + Type = "E" + }, + new + { + Id = "lky", + ReferenceName = "Lokoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "lla", + ReferenceName = "Lala-Roba", + Scope = "I", + Type = "L" + }, + new + { + Id = "llb", + ReferenceName = "Lolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "llc", + ReferenceName = "Lele (Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lld", + ReferenceName = "Ladin", + Scope = "I", + Type = "L" + }, + new + { + Id = "lle", + ReferenceName = "Lele (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "llf", + ReferenceName = "Hermit", + Scope = "I", + Type = "E" + }, + new + { + Id = "llg", + ReferenceName = "Lole", + Scope = "I", + Type = "L" + }, + new + { + Id = "llh", + ReferenceName = "Lamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lli", + ReferenceName = "Teke-Laali", + Scope = "I", + Type = "L" + }, + new + { + Id = "llj", + ReferenceName = "Ladji Ladji", + Scope = "I", + Type = "E" + }, + new + { + Id = "llk", + ReferenceName = "Lelak", + Scope = "I", + Type = "E" + }, + new + { + Id = "lll", + ReferenceName = "Lilau", + Scope = "I", + Type = "L" + }, + new + { + Id = "llm", + ReferenceName = "Lasalimu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lln", + ReferenceName = "Lele (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "llp", + ReferenceName = "North Efate", + Scope = "I", + Type = "L" + }, + new + { + Id = "llq", + ReferenceName = "Lolak", + Scope = "I", + Type = "L" + }, + new + { + Id = "lls", + ReferenceName = "Lithuanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "llu", + ReferenceName = "Lau", + Scope = "I", + Type = "L" + }, + new + { + Id = "llx", + ReferenceName = "Lauan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lma", + ReferenceName = "East Limba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmb", + ReferenceName = "Merei", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmc", + ReferenceName = "Limilngan", + Scope = "I", + Type = "E" + }, + new + { + Id = "lmd", + ReferenceName = "Lumun", + Scope = "I", + Type = "L" + }, + new + { + Id = "lme", + ReferenceName = "Pévé", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmf", + ReferenceName = "South Lembata", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmg", + ReferenceName = "Lamogai", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmh", + ReferenceName = "Lambichhong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmi", + ReferenceName = "Lombi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmj", + ReferenceName = "West Lembata", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmk", + ReferenceName = "Lamkang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lml", + ReferenceName = "Hano", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmn", + ReferenceName = "Lambadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmo", + ReferenceName = "Lombard", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmp", + ReferenceName = "Limbum", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmq", + ReferenceName = "Lamatuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmr", + ReferenceName = "Lamalera", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmu", + ReferenceName = "Lamenu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmv", + ReferenceName = "Lomaiviti", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmw", + ReferenceName = "Lake Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmx", + ReferenceName = "Laimbue", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmy", + ReferenceName = "Lamboya", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmz", + ReferenceName = "Lumbee", + Scope = "I", + Type = "E" + }, + new + { + Id = "lna", + ReferenceName = "Langbashe", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnb", + ReferenceName = "Mbalanhu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnd", + ReferenceName = "Lundayeh", + Scope = "I", + Type = "L" + }, + new + { + Id = "lng", + ReferenceName = "Langobardic", + Scope = "I", + Type = "A" + }, + new + { + Id = "lnh", + ReferenceName = "Lanoh", + Scope = "I", + Type = "L" + }, + new + { + Id = "lni", + ReferenceName = "Daantanai'", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnj", + ReferenceName = "Leningitij", + Scope = "I", + Type = "E" + }, + new + { + Id = "lnl", + ReferenceName = "South Central Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnm", + ReferenceName = "Langam", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnn", + ReferenceName = "Lorediakarkar", + Scope = "I", + Type = "L" + }, + new + { + Id = "lno", + ReferenceName = "Lango (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lns", + ReferenceName = "Lamnso'", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnu", + ReferenceName = "Longuda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnw", + ReferenceName = "Lanima", + Scope = "I", + Type = "E" + }, + new + { + Id = "lnz", + ReferenceName = "Lonzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "loa", + ReferenceName = "Loloda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lob", + ReferenceName = "Lobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "loc", + ReferenceName = "Inonhan", + Scope = "I", + Type = "L" + }, + new + { + Id = "loe", + ReferenceName = "Saluan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lof", + ReferenceName = "Logol", + Scope = "I", + Type = "L" + }, + new + { + Id = "log", + ReferenceName = "Logo", + Scope = "I", + Type = "L" + }, + new + { + Id = "loh", + ReferenceName = "Narim", + Scope = "I", + Type = "L" + }, + new + { + Id = "loi", + ReferenceName = "Loma (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "loj", + ReferenceName = "Lou", + Scope = "I", + Type = "L" + }, + new + { + Id = "lok", + ReferenceName = "Loko", + Scope = "I", + Type = "L" + }, + new + { + Id = "lol", + Part2B = "lol", + Part2T = "lol", + ReferenceName = "Mongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lom", + ReferenceName = "Loma (Liberia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lon", + ReferenceName = "Malawi Lomwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "loo", + ReferenceName = "Lombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lop", + ReferenceName = "Lopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "loq", + ReferenceName = "Lobala", + Scope = "I", + Type = "L" + }, + new + { + Id = "lor", + ReferenceName = "Téén", + Scope = "I", + Type = "L" + }, + new + { + Id = "los", + ReferenceName = "Loniu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lot", + ReferenceName = "Otuho", + Scope = "I", + Type = "L" + }, + new + { + Id = "lou", + ReferenceName = "Louisiana Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "lov", + ReferenceName = "Lopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "low", + ReferenceName = "Tampias Lobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lox", + ReferenceName = "Loun", + Scope = "I", + Type = "L" + }, + new + { + Id = "loy", + ReferenceName = "Loke", + Scope = "I", + Type = "L" + }, + new + { + Id = "loz", + Part2B = "loz", + Part2T = "loz", + ReferenceName = "Lozi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpa", + ReferenceName = "Lelepa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpe", + ReferenceName = "Lepki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpn", + ReferenceName = "Long Phuri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpo", + ReferenceName = "Lipo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpx", + ReferenceName = "Lopit", + Scope = "I", + Type = "L" + }, + new + { + Id = "lra", + ReferenceName = "Rara Bakati'", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrc", + ReferenceName = "Northern Luri", + Scope = "I", + Type = "L" + }, + new + { + Id = "lre", + ReferenceName = "Laurentian", + Scope = "I", + Type = "E" + }, + new + { + Id = "lrg", + ReferenceName = "Laragia", + Scope = "I", + Type = "E" + }, + new + { + Id = "lri", + ReferenceName = "Marachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrk", + ReferenceName = "Loarki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrl", + ReferenceName = "Lari", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrm", + ReferenceName = "Marama", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrn", + ReferenceName = "Lorang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lro", + ReferenceName = "Laro", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrr", + ReferenceName = "Southern Yamphu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrt", + ReferenceName = "Larantuka Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrv", + ReferenceName = "Larevat", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrz", + ReferenceName = "Lemerig", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsa", + ReferenceName = "Lasgerdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsd", + ReferenceName = "Lishana Deni", + Scope = "I", + Type = "L" + }, + new + { + Id = "lse", + ReferenceName = "Lusengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsh", + ReferenceName = "Lish", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsi", + ReferenceName = "Lashi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsl", + ReferenceName = "Latvian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsm", + ReferenceName = "Saamia", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsn", + ReferenceName = "Tibetan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lso", + ReferenceName = "Laos Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsp", + ReferenceName = "Panamanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsr", + ReferenceName = "Aruop", + Scope = "I", + Type = "L" + }, + new + { + Id = "lss", + ReferenceName = "Lasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lst", + ReferenceName = "Trinidad and Tobago Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsv", + ReferenceName = "Sivia Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsy", + ReferenceName = "Mauritian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltc", + ReferenceName = "Late Middle Chinese", + Scope = "I", + Type = "H" + }, + new + { + Id = "ltg", + ReferenceName = "Latgalian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lth", + ReferenceName = "Thur", + Scope = "I", + Type = "L" + }, + new + { + Id = "lti", + ReferenceName = "Leti (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltn", + ReferenceName = "Latundê", + Scope = "I", + Type = "L" + }, + new + { + Id = "lto", + ReferenceName = "Tsotso", + Scope = "I", + Type = "L" + }, + new + { + Id = "lts", + ReferenceName = "Tachoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltu", + ReferenceName = "Latu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltz", + Part1 = "lb", + Part2B = "ltz", + Part2T = "ltz", + ReferenceName = "Luxembourgish", + Scope = "I", + Type = "L" + }, + new + { + Id = "lua", + Part2B = "lua", + Part2T = "lua", + ReferenceName = "Luba-Lulua", + Scope = "I", + Type = "L" + }, + new + { + Id = "lub", + Part1 = "lu", + Part2B = "lub", + Part2T = "lub", + ReferenceName = "Luba-Katanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "luc", + ReferenceName = "Aringa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lud", + ReferenceName = "Ludian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lue", + ReferenceName = "Luvale", + Scope = "I", + Type = "L" + }, + new + { + Id = "luf", + ReferenceName = "Laua", + Scope = "I", + Type = "L" + }, + new + { + Id = "lug", + Part1 = "lg", + Part2B = "lug", + Part2T = "lug", + ReferenceName = "Ganda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lui", + Part2B = "lui", + Part2T = "lui", + ReferenceName = "Luiseno", + Scope = "I", + Type = "E" + }, + new + { + Id = "luj", + ReferenceName = "Luna", + Scope = "I", + Type = "L" + }, + new + { + Id = "luk", + ReferenceName = "Lunanakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "lul", + ReferenceName = "Olu'bo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lum", + ReferenceName = "Luimbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lun", + Part2B = "lun", + Part2T = "lun", + ReferenceName = "Lunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "luo", + Part2B = "luo", + Part2T = "luo", + ReferenceName = "Luo (Kenya and Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lup", + ReferenceName = "Lumbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "luq", + ReferenceName = "Lucumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lur", + ReferenceName = "Laura", + Scope = "I", + Type = "L" + }, + new + { + Id = "lus", + Part2B = "lus", + Part2T = "lus", + ReferenceName = "Lushai", + Scope = "I", + Type = "L" + }, + new + { + Id = "lut", + ReferenceName = "Lushootseed", + Scope = "I", + Type = "L" + }, + new + { + Id = "luu", + ReferenceName = "Lumba-Yakkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "luv", + ReferenceName = "Luwati", + Scope = "I", + Type = "L" + }, + new + { + Id = "luw", + ReferenceName = "Luo (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "luy", + ReferenceName = "Luyia", + Scope = "M", + Type = "L" + }, + new + { + Id = "luz", + ReferenceName = "Southern Luri", + Scope = "I", + Type = "L" + }, + new + { + Id = "lva", + ReferenceName = "Maku'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvi", + ReferenceName = "Lavi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvk", + ReferenceName = "Lavukaleve", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvs", + ReferenceName = "Standard Latvian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvu", + ReferenceName = "Levuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwa", + ReferenceName = "Lwalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwe", + ReferenceName = "Lewo Eleng", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwg", + ReferenceName = "Wanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwh", + ReferenceName = "White Lachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwl", + ReferenceName = "Eastern Lawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwm", + ReferenceName = "Laomian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwo", + ReferenceName = "Luwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lws", + ReferenceName = "Malawian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwt", + ReferenceName = "Lewotobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwu", + ReferenceName = "Lawu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lww", + ReferenceName = "Lewo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lya", + ReferenceName = "Layakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "lyg", + ReferenceName = "Lyngngam", + Scope = "I", + Type = "L" + }, + new + { + Id = "lyn", + ReferenceName = "Luyana", + Scope = "I", + Type = "L" + }, + new + { + Id = "lzh", + ReferenceName = "Literary Chinese", + Scope = "I", + Type = "H" + }, + new + { + Id = "lzl", + ReferenceName = "Litzlitz", + Scope = "I", + Type = "L" + }, + new + { + Id = "lzn", + ReferenceName = "Leinong Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lzz", + ReferenceName = "Laz", + Scope = "I", + Type = "L" + }, + new + { + Id = "maa", + ReferenceName = "San Jerónimo Tecóatl Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mab", + ReferenceName = "Yutanduchi Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mad", + Part2B = "mad", + Part2T = "mad", + ReferenceName = "Madurese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mae", + ReferenceName = "Bo-Rukul", + Scope = "I", + Type = "L" + }, + new + { + Id = "maf", + ReferenceName = "Mafa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mag", + Part2B = "mag", + Part2T = "mag", + ReferenceName = "Magahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mah", + Part1 = "mh", + Part2B = "mah", + Part2T = "mah", + ReferenceName = "Marshallese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mai", + Part2B = "mai", + Part2T = "mai", + ReferenceName = "Maithili", + Scope = "I", + Type = "L" + }, + new + { + Id = "maj", + ReferenceName = "Jalapa De Díaz Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mak", + Part2B = "mak", + Part2T = "mak", + ReferenceName = "Makasar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mal", + Part1 = "ml", + Part2B = "mal", + Part2T = "mal", + ReferenceName = "Malayalam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mam", + ReferenceName = "Mam", + Scope = "I", + Type = "L" + }, + new + { + Id = "man", + Part2B = "man", + Part2T = "man", + ReferenceName = "Mandingo", + Scope = "M", + Type = "L" + }, + new + { + Id = "maq", + ReferenceName = "Chiquihuitlán Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mar", + Part1 = "mr", + Part2B = "mar", + Part2T = "mar", + ReferenceName = "Marathi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mas", + Part2B = "mas", + Part2T = "mas", + ReferenceName = "Masai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mat", + ReferenceName = "San Francisco Matlatzinca", + Scope = "I", + Type = "L" + }, + new + { + Id = "mau", + ReferenceName = "Huautla Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mav", + ReferenceName = "Sateré-Mawé", + Scope = "I", + Type = "L" + }, + new + { + Id = "maw", + ReferenceName = "Mampruli", + Scope = "I", + Type = "L" + }, + new + { + Id = "max", + ReferenceName = "North Moluccan Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "maz", + ReferenceName = "Central Mazahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mba", + ReferenceName = "Higaonon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbb", + ReferenceName = "Western Bukidnon Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbc", + ReferenceName = "Macushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbd", + ReferenceName = "Dibabawon Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbe", + ReferenceName = "Molale", + Scope = "I", + Type = "E" + }, + new + { + Id = "mbf", + ReferenceName = "Baba Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbh", + ReferenceName = "Mangseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbi", + ReferenceName = "Ilianen Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbj", + ReferenceName = "Nadëb", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbk", + ReferenceName = "Malol", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbl", + ReferenceName = "Maxakalí", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbm", + ReferenceName = "Ombamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbn", + ReferenceName = "Macaguán", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbo", + ReferenceName = "Mbo (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbp", + ReferenceName = "Malayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbq", + ReferenceName = "Maisin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbr", + ReferenceName = "Nukak Makú", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbs", + ReferenceName = "Sarangani Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbt", + ReferenceName = "Matigsalug Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbu", + ReferenceName = "Mbula-Bwazza", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbv", + ReferenceName = "Mbulungish", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbw", + ReferenceName = "Maring", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbx", + ReferenceName = "Mari (East Sepik Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mby", + ReferenceName = "Memoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbz", + ReferenceName = "Amoltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mca", + ReferenceName = "Maca", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcb", + ReferenceName = "Machiguenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcc", + ReferenceName = "Bitur", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcd", + ReferenceName = "Sharanahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mce", + ReferenceName = "Itundujia Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcf", + ReferenceName = "Matsés", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcg", + ReferenceName = "Mapoyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mch", + ReferenceName = "Maquiritari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mci", + ReferenceName = "Mese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcj", + ReferenceName = "Mvanip", + Scope = "I", + Type = "L" + }, + new + { + Id = "mck", + ReferenceName = "Mbunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcl", + ReferenceName = "Macaguaje", + Scope = "I", + Type = "E" + }, + new + { + Id = "mcm", + ReferenceName = "Malaccan Creole Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcn", + ReferenceName = "Masana", + Scope = "I", + Type = "L" + }, + new + { + Id = "mco", + ReferenceName = "Coatlán Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcp", + ReferenceName = "Makaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcq", + ReferenceName = "Ese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcr", + ReferenceName = "Menya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcs", + ReferenceName = "Mambai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mct", + ReferenceName = "Mengisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcu", + ReferenceName = "Cameroon Mambila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcv", + ReferenceName = "Minanibai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcw", + ReferenceName = "Mawa (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcx", + ReferenceName = "Mpiemo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcy", + ReferenceName = "South Watut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcz", + ReferenceName = "Mawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mda", + ReferenceName = "Mada (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdb", + ReferenceName = "Morigi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdc", + ReferenceName = "Male (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdd", + ReferenceName = "Mbum", + Scope = "I", + Type = "L" + }, + new + { + Id = "mde", + ReferenceName = "Maba (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdf", + Part2B = "mdf", + Part2T = "mdf", + ReferenceName = "Moksha", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdg", + ReferenceName = "Massalat", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdh", + ReferenceName = "Maguindanaon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdi", + ReferenceName = "Mamvu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdj", + ReferenceName = "Mangbetu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdk", + ReferenceName = "Mangbutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdl", + ReferenceName = "Maltese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdm", + ReferenceName = "Mayogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdn", + ReferenceName = "Mbati", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdp", + ReferenceName = "Mbala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdq", + ReferenceName = "Mbole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdr", + Part2B = "mdr", + Part2T = "mdr", + ReferenceName = "Mandar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mds", + ReferenceName = "Maria (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdt", + ReferenceName = "Mbere", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdu", + ReferenceName = "Mboko", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdv", + ReferenceName = "Santa Lucía Monteverde Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdw", + ReferenceName = "Mbosi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdx", + ReferenceName = "Dizin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdy", + ReferenceName = "Male (Ethiopia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdz", + ReferenceName = "Suruí Do Pará", + Scope = "I", + Type = "L" + }, + new + { + Id = "mea", + ReferenceName = "Menka", + Scope = "I", + Type = "L" + }, + new + { + Id = "meb", + ReferenceName = "Ikobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mec", + ReferenceName = "Marra", + Scope = "I", + Type = "L" + }, + new + { + Id = "med", + ReferenceName = "Melpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mee", + ReferenceName = "Mengen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mef", + ReferenceName = "Megam", + Scope = "I", + Type = "L" + }, + new + { + Id = "meh", + ReferenceName = "Southwestern Tlaxiaco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mei", + ReferenceName = "Midob", + Scope = "I", + Type = "L" + }, + new + { + Id = "mej", + ReferenceName = "Meyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "mek", + ReferenceName = "Mekeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mel", + ReferenceName = "Central Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "mem", + ReferenceName = "Mangala", + Scope = "I", + Type = "E" + }, + new + { + Id = "men", + Part2B = "men", + Part2T = "men", + ReferenceName = "Mende (Sierra Leone)", + Scope = "I", + Type = "L" + }, + new + { + Id = "meo", + ReferenceName = "Kedah Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mep", + ReferenceName = "Miriwoong", + Scope = "I", + Type = "L" + }, + new + { + Id = "meq", + ReferenceName = "Merey", + Scope = "I", + Type = "L" + }, + new + { + Id = "mer", + ReferenceName = "Meru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mes", + ReferenceName = "Masmaje", + Scope = "I", + Type = "L" + }, + new + { + Id = "met", + ReferenceName = "Mato", + Scope = "I", + Type = "L" + }, + new + { + Id = "meu", + ReferenceName = "Motu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mev", + ReferenceName = "Mano", + Scope = "I", + Type = "L" + }, + new + { + Id = "mew", + ReferenceName = "Maaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mey", + ReferenceName = "Hassaniyya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mez", + ReferenceName = "Menominee", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfa", + ReferenceName = "Pattani Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfb", + ReferenceName = "Bangka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfc", + ReferenceName = "Mba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfd", + ReferenceName = "Mendankwe-Nkwen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfe", + ReferenceName = "Morisyen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mff", + ReferenceName = "Naki", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfg", + ReferenceName = "Mogofin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfh", + ReferenceName = "Matal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfi", + ReferenceName = "Wandala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfj", + ReferenceName = "Mefele", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfk", + ReferenceName = "North Mofu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfl", + ReferenceName = "Putai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfm", + ReferenceName = "Marghi South", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfn", + ReferenceName = "Cross River Mbembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfo", + ReferenceName = "Mbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfp", + ReferenceName = "Makassar Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfq", + ReferenceName = "Moba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfr", + ReferenceName = "Marrithiyel", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfs", + ReferenceName = "Mexican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mft", + ReferenceName = "Mokerang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfu", + ReferenceName = "Mbwela", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfv", + ReferenceName = "Mandjak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfw", + ReferenceName = "Mulaha", + Scope = "I", + Type = "E" + }, + new + { + Id = "mfx", + ReferenceName = "Melo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfy", + ReferenceName = "Mayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfz", + ReferenceName = "Mabaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mga", + Part2B = "mga", + Part2T = "mga", + ReferenceName = "Middle Irish (900-1200)", + Scope = "I", + Type = "H" + }, + new + { + Id = "mgb", + ReferenceName = "Mararit", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgc", + ReferenceName = "Morokodo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgd", + ReferenceName = "Moru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mge", + ReferenceName = "Mango", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgf", + ReferenceName = "Maklew", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgg", + ReferenceName = "Mpumpong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgh", + ReferenceName = "Makhuwa-Meetto", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgi", + ReferenceName = "Lijili", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgj", + ReferenceName = "Abureni", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgk", + ReferenceName = "Mawes", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgl", + ReferenceName = "Maleu-Kilenge", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgm", + ReferenceName = "Mambae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgn", + ReferenceName = "Mbangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgo", + ReferenceName = "Meta'", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgp", + ReferenceName = "Eastern Magar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgq", + ReferenceName = "Malila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgr", + ReferenceName = "Mambwe-Lungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgs", + ReferenceName = "Manda (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgt", + ReferenceName = "Mongol", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgu", + ReferenceName = "Mailu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgv", + ReferenceName = "Matengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgw", + ReferenceName = "Matumbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgy", + ReferenceName = "Mbunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgz", + ReferenceName = "Mbugwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mha", + ReferenceName = "Manda (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhb", + ReferenceName = "Mahongwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhc", + ReferenceName = "Mocho", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhd", + ReferenceName = "Mbugu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhe", + ReferenceName = "Besisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhf", + ReferenceName = "Mamaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhg", + ReferenceName = "Margu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhi", + ReferenceName = "Ma'di", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhj", + ReferenceName = "Mogholi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhk", + ReferenceName = "Mungaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhl", + ReferenceName = "Mauwake", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhm", + ReferenceName = "Makhuwa-Moniga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhn", + ReferenceName = "Mócheno", + Scope = "I", + Type = "L" + }, + new + { + Id = "mho", + ReferenceName = "Mashi (Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhp", + ReferenceName = "Balinese Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhq", + ReferenceName = "Mandan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhr", + ReferenceName = "Eastern Mari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhs", + ReferenceName = "Buru (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mht", + ReferenceName = "Mandahuaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhu", + ReferenceName = "Digaro-Mishmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhw", + ReferenceName = "Mbukushu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhx", + ReferenceName = "Maru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhy", + ReferenceName = "Ma'anyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhz", + ReferenceName = "Mor (Mor Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mia", + ReferenceName = "Miami", + Scope = "I", + Type = "L" + }, + new + { + Id = "mib", + ReferenceName = "Atatláhuca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mic", + Part2B = "mic", + Part2T = "mic", + ReferenceName = "Mi'kmaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "mid", + ReferenceName = "Mandaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "mie", + ReferenceName = "Ocotepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mif", + ReferenceName = "Mofu-Gudur", + Scope = "I", + Type = "L" + }, + new + { + Id = "mig", + ReferenceName = "San Miguel El Grande Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mih", + ReferenceName = "Chayuco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mii", + ReferenceName = "Chigmecatitlán Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mij", + ReferenceName = "Abar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mik", + ReferenceName = "Mikasuki", + Scope = "I", + Type = "L" + }, + new + { + Id = "mil", + ReferenceName = "Peñoles Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mim", + ReferenceName = "Alacatlatzala Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "min", + Part2B = "min", + Part2T = "min", + ReferenceName = "Minangkabau", + Scope = "I", + Type = "L" + }, + new + { + Id = "mio", + ReferenceName = "Pinotepa Nacional Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mip", + ReferenceName = "Apasco-Apoala Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miq", + ReferenceName = "Mískito", + Scope = "I", + Type = "L" + }, + new + { + Id = "mir", + ReferenceName = "Isthmus Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mis", + Part2B = "mis", + Part2T = "mis", + ReferenceName = "Uncoded languages", + Scope = "S", + Type = "S" + }, + new + { + Id = "mit", + ReferenceName = "Southern Puebla Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miu", + ReferenceName = "Cacaloxtepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miw", + ReferenceName = "Akoye", + Scope = "I", + Type = "L" + }, + new + { + Id = "mix", + ReferenceName = "Mixtepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miy", + ReferenceName = "Ayutla Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miz", + ReferenceName = "Coatzospan Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjb", + ReferenceName = "Makalero", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjc", + ReferenceName = "San Juan Colorado Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjd", + ReferenceName = "Northwest Maidu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mje", + ReferenceName = "Muskum", + Scope = "I", + Type = "E" + }, + new + { + Id = "mjg", + ReferenceName = "Tu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjh", + ReferenceName = "Mwera (Nyasa)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mji", + ReferenceName = "Kim Mun", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjj", + ReferenceName = "Mawak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjk", + ReferenceName = "Matukar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjl", + ReferenceName = "Mandeali", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjm", + ReferenceName = "Medebur", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjn", + ReferenceName = "Ma (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjo", + ReferenceName = "Malankuravan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjp", + ReferenceName = "Malapandaram", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjq", + ReferenceName = "Malaryan", + Scope = "I", + Type = "E" + }, + new + { + Id = "mjr", + ReferenceName = "Malavedan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjs", + ReferenceName = "Miship", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjt", + ReferenceName = "Sauria Paharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "mju", + ReferenceName = "Manna-Dora", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjv", + ReferenceName = "Mannan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjw", + ReferenceName = "Karbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjx", + ReferenceName = "Mahali", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjy", + ReferenceName = "Mahican", + Scope = "I", + Type = "E" + }, + new + { + Id = "mjz", + ReferenceName = "Majhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mka", + ReferenceName = "Mbre", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkb", + ReferenceName = "Mal Paharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkc", + ReferenceName = "Siliput", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkd", + Part1 = "mk", + Part2B = "mac", + Part2T = "mkd", + ReferenceName = "Macedonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mke", + ReferenceName = "Mawchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkf", + ReferenceName = "Miya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkg", + ReferenceName = "Mak (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mki", + ReferenceName = "Dhatki", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkj", + ReferenceName = "Mokilese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkk", + ReferenceName = "Byep", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkl", + ReferenceName = "Mokole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkm", + ReferenceName = "Moklen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkn", + ReferenceName = "Kupang Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mko", + ReferenceName = "Mingang Doso", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkp", + ReferenceName = "Moikodi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkq", + ReferenceName = "Bay Miwok", + Scope = "I", + Type = "E" + }, + new + { + Id = "mkr", + ReferenceName = "Malas", + Scope = "I", + Type = "L" + }, + new + { + Id = "mks", + ReferenceName = "Silacayoapan Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkt", + ReferenceName = "Vamale", + Scope = "I", + Type = "L" + }, + new + { + Id = "mku", + ReferenceName = "Konyanka Maninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkv", + ReferenceName = "Mafea", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkw", + ReferenceName = "Kituba (Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkx", + ReferenceName = "Kinamiging Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mky", + ReferenceName = "East Makian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkz", + ReferenceName = "Makasae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mla", + ReferenceName = "Malo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlb", + ReferenceName = "Mbule", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlc", + ReferenceName = "Cao Lan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mle", + ReferenceName = "Manambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlf", + ReferenceName = "Mal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlg", + Part1 = "mg", + Part2B = "mlg", + Part2T = "mlg", + ReferenceName = "Malagasy", + Scope = "M", + Type = "L" + }, + new + { + Id = "mlh", + ReferenceName = "Mape", + Scope = "I", + Type = "L" + }, + new + { + Id = "mli", + ReferenceName = "Malimpung", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlj", + ReferenceName = "Miltu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlk", + ReferenceName = "Ilwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "mll", + ReferenceName = "Malua Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlm", + ReferenceName = "Mulam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mln", + ReferenceName = "Malango", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlo", + ReferenceName = "Mlomp", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlp", + ReferenceName = "Bargam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlq", + ReferenceName = "Western Maninkakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlr", + ReferenceName = "Vame", + Scope = "I", + Type = "L" + }, + new + { + Id = "mls", + ReferenceName = "Masalit", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlt", + Part1 = "mt", + Part2B = "mlt", + Part2T = "mlt", + ReferenceName = "Maltese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlu", + ReferenceName = "To'abaita", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlv", + ReferenceName = "Motlav", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlw", + ReferenceName = "Moloko", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlx", + ReferenceName = "Malfaxal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlz", + ReferenceName = "Malaynon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mma", + ReferenceName = "Mama", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmb", + ReferenceName = "Momina", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmc", + ReferenceName = "Michoacán Mazahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmd", + ReferenceName = "Maonan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mme", + ReferenceName = "Mae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmf", + ReferenceName = "Mundat", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmg", + ReferenceName = "North Ambrym", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmh", + ReferenceName = "Mehináku", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmi", + ReferenceName = "Musar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmj", + ReferenceName = "Majhwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmk", + ReferenceName = "Mukha-Dora", + Scope = "I", + Type = "L" + }, + new + { + Id = "mml", + ReferenceName = "Man Met", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmm", + ReferenceName = "Maii", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmn", + ReferenceName = "Mamanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmo", + ReferenceName = "Mangga Buang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmp", + ReferenceName = "Siawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmq", + ReferenceName = "Musak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmr", + ReferenceName = "Western Xiangxi Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmt", + ReferenceName = "Malalamai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmu", + ReferenceName = "Mmaala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmv", + ReferenceName = "Miriti", + Scope = "I", + Type = "E" + }, + new + { + Id = "mmw", + ReferenceName = "Emae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmx", + ReferenceName = "Madak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmy", + ReferenceName = "Migaama", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmz", + ReferenceName = "Mabaale", + Scope = "I", + Type = "L" + }, + new + { + Id = "mna", + ReferenceName = "Mbula", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnb", + ReferenceName = "Muna", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnc", + Part2B = "mnc", + Part2T = "mnc", + ReferenceName = "Manchu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnd", + ReferenceName = "Mondé", + Scope = "I", + Type = "L" + }, + new + { + Id = "mne", + ReferenceName = "Naba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnf", + ReferenceName = "Mundani", + Scope = "I", + Type = "L" + }, + new + { + Id = "mng", + ReferenceName = "Eastern Mnong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnh", + ReferenceName = "Mono (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mni", + Part2B = "mni", + Part2T = "mni", + ReferenceName = "Manipuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnj", + ReferenceName = "Munji", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnk", + ReferenceName = "Mandinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnl", + ReferenceName = "Tiale", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnm", + ReferenceName = "Mapena", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnn", + ReferenceName = "Southern Mnong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnp", + ReferenceName = "Min Bei Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnq", + ReferenceName = "Minriq", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnr", + ReferenceName = "Mono (USA)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mns", + ReferenceName = "Mansi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnu", + ReferenceName = "Mer", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnv", + ReferenceName = "Rennell-Bellona", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnw", + ReferenceName = "Mon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnx", + ReferenceName = "Manikion", + Scope = "I", + Type = "L" + }, + new + { + Id = "mny", + ReferenceName = "Manyawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnz", + ReferenceName = "Moni", + Scope = "I", + Type = "L" + }, + new + { + Id = "moa", + ReferenceName = "Mwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "moc", + ReferenceName = "Mocoví", + Scope = "I", + Type = "L" + }, + new + { + Id = "mod", + ReferenceName = "Mobilian", + Scope = "I", + Type = "E" + }, + new + { + Id = "moe", + ReferenceName = "Montagnais", + Scope = "I", + Type = "L" + }, + new + { + Id = "mog", + ReferenceName = "Mongondow", + Scope = "I", + Type = "L" + }, + new + { + Id = "moh", + Part2B = "moh", + Part2T = "moh", + ReferenceName = "Mohawk", + Scope = "I", + Type = "L" + }, + new + { + Id = "moi", + ReferenceName = "Mboi", + Scope = "I", + Type = "L" + }, + new + { + Id = "moj", + ReferenceName = "Monzombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mok", + ReferenceName = "Morori", + Scope = "I", + Type = "L" + }, + new + { + Id = "mom", + ReferenceName = "Mangue", + Scope = "I", + Type = "E" + }, + new + { + Id = "mon", + Part1 = "mn", + Part2B = "mon", + Part2T = "mon", + ReferenceName = "Mongolian", + Scope = "M", + Type = "L" + }, + new + { + Id = "moo", + ReferenceName = "Monom", + Scope = "I", + Type = "L" + }, + new + { + Id = "mop", + ReferenceName = "Mopán Maya", + Scope = "I", + Type = "L" + }, + new + { + Id = "moq", + ReferenceName = "Mor (Bomberai Peninsula)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mor", + ReferenceName = "Moro", + Scope = "I", + Type = "L" + }, + new + { + Id = "mos", + Part2B = "mos", + Part2T = "mos", + ReferenceName = "Mossi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mot", + ReferenceName = "Barí", + Scope = "I", + Type = "L" + }, + new + { + Id = "mou", + ReferenceName = "Mogum", + Scope = "I", + Type = "L" + }, + new + { + Id = "mov", + ReferenceName = "Mohave", + Scope = "I", + Type = "L" + }, + new + { + Id = "mow", + ReferenceName = "Moi (Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mox", + ReferenceName = "Molima", + Scope = "I", + Type = "L" + }, + new + { + Id = "moy", + ReferenceName = "Shekkacho", + Scope = "I", + Type = "L" + }, + new + { + Id = "moz", + ReferenceName = "Mukulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpa", + ReferenceName = "Mpoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpb", + ReferenceName = "Malak Malak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpc", + ReferenceName = "Mangarrayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpd", + ReferenceName = "Machinere", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpe", + ReferenceName = "Majang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpg", + ReferenceName = "Marba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mph", + ReferenceName = "Maung", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpi", + ReferenceName = "Mpade", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpj", + ReferenceName = "Martu Wangka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpk", + ReferenceName = "Mbara (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpl", + ReferenceName = "Middle Watut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpm", + ReferenceName = "Yosondúa Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpn", + ReferenceName = "Mindiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpo", + ReferenceName = "Miu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpp", + ReferenceName = "Migabac", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpq", + ReferenceName = "Matís", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpr", + ReferenceName = "Vangunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mps", + ReferenceName = "Dadibi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpt", + ReferenceName = "Mian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpu", + ReferenceName = "Makuráp", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpv", + ReferenceName = "Mungkip", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpw", + ReferenceName = "Mapidian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpx", + ReferenceName = "Misima-Panaeati", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpy", + ReferenceName = "Mapia", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpz", + ReferenceName = "Mpi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqa", + ReferenceName = "Maba (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqb", + ReferenceName = "Mbuko", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqc", + ReferenceName = "Mangole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqe", + ReferenceName = "Matepi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqf", + ReferenceName = "Momuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqg", + ReferenceName = "Kota Bangun Kutai Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqh", + ReferenceName = "Tlazoyaltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqi", + ReferenceName = "Mariri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqj", + ReferenceName = "Mamasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqk", + ReferenceName = "Rajah Kabunsuwan Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mql", + ReferenceName = "Mbelime", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqm", + ReferenceName = "South Marquesan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqn", + ReferenceName = "Moronene", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqo", + ReferenceName = "Modole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqp", + ReferenceName = "Manipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqq", + ReferenceName = "Minokok", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqr", + ReferenceName = "Mander", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqs", + ReferenceName = "West Makian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqt", + ReferenceName = "Mok", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqu", + ReferenceName = "Mandari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqv", + ReferenceName = "Mosimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqw", + ReferenceName = "Murupi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqx", + ReferenceName = "Mamuju", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqy", + ReferenceName = "Manggarai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqz", + ReferenceName = "Pano", + Scope = "I", + Type = "L" + }, + new + { + Id = "mra", + ReferenceName = "Mlabri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrb", + ReferenceName = "Marino", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrc", + ReferenceName = "Maricopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrd", + ReferenceName = "Western Magar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mre", + ReferenceName = "Martha's Vineyard Sign Language", + Scope = "I", + Type = "E" + }, + new + { + Id = "mrf", + ReferenceName = "Elseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrg", + ReferenceName = "Mising", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrh", + ReferenceName = "Mara Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mri", + Part1 = "mi", + Part2B = "mao", + Part2T = "mri", + ReferenceName = "Maori", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrj", + ReferenceName = "Western Mari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrk", + ReferenceName = "Hmwaveke", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrl", + ReferenceName = "Mortlockese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrm", + ReferenceName = "Merlav", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrn", + ReferenceName = "Cheke Holo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mro", + ReferenceName = "Mru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrp", + ReferenceName = "Morouas", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrq", + ReferenceName = "North Marquesan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrr", + ReferenceName = "Maria (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrs", + ReferenceName = "Maragus", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrt", + ReferenceName = "Marghi Central", + Scope = "I", + Type = "L" + }, + new + { + Id = "mru", + ReferenceName = "Mono (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrv", + ReferenceName = "Mangareva", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrw", + ReferenceName = "Maranao", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrx", + ReferenceName = "Maremgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mry", + ReferenceName = "Mandaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrz", + ReferenceName = "Marind", + Scope = "I", + Type = "L" + }, + new + { + Id = "msa", + Part1 = "ms", + Part2B = "may", + Part2T = "msa", + ReferenceName = "Malay (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "msb", + ReferenceName = "Masbatenyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "msc", + ReferenceName = "Sankaran Maninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "msd", + ReferenceName = "Yucatec Maya Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mse", + ReferenceName = "Musey", + Scope = "I", + Type = "L" + }, + new + { + Id = "msf", + ReferenceName = "Mekwei", + Scope = "I", + Type = "L" + }, + new + { + Id = "msg", + ReferenceName = "Moraid", + Scope = "I", + Type = "L" + }, + new + { + Id = "msh", + ReferenceName = "Masikoro Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "msi", + ReferenceName = "Sabah Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "msj", + ReferenceName = "Ma (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "msk", + ReferenceName = "Mansaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "msl", + ReferenceName = "Molof", + Scope = "I", + Type = "L" + }, + new + { + Id = "msm", + ReferenceName = "Agusan Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "msn", + ReferenceName = "Vurës", + Scope = "I", + Type = "L" + }, + new + { + Id = "mso", + ReferenceName = "Mombum", + Scope = "I", + Type = "L" + }, + new + { + Id = "msp", + ReferenceName = "Maritsauá", + Scope = "I", + Type = "E" + }, + new + { + Id = "msq", + ReferenceName = "Caac", + Scope = "I", + Type = "L" + }, + new + { + Id = "msr", + ReferenceName = "Mongolian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mss", + ReferenceName = "West Masela", + Scope = "I", + Type = "L" + }, + new + { + Id = "msu", + ReferenceName = "Musom", + Scope = "I", + Type = "L" + }, + new + { + Id = "msv", + ReferenceName = "Maslam", + Scope = "I", + Type = "L" + }, + new + { + Id = "msw", + ReferenceName = "Mansoanka", + Scope = "I", + Type = "L" + }, + new + { + Id = "msx", + ReferenceName = "Moresada", + Scope = "I", + Type = "L" + }, + new + { + Id = "msy", + ReferenceName = "Aruamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "msz", + ReferenceName = "Momare", + Scope = "I", + Type = "L" + }, + new + { + Id = "mta", + ReferenceName = "Cotabato Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtb", + ReferenceName = "Anyin Morofo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtc", + ReferenceName = "Munit", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtd", + ReferenceName = "Mualang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mte", + ReferenceName = "Mono (Solomon Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtf", + ReferenceName = "Murik (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtg", + ReferenceName = "Una", + Scope = "I", + Type = "L" + }, + new + { + Id = "mth", + ReferenceName = "Munggui", + Scope = "I", + Type = "L" + }, + new + { + Id = "mti", + ReferenceName = "Maiwa (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtj", + ReferenceName = "Moskona", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtk", + ReferenceName = "Mbe'", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtl", + ReferenceName = "Montol", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtm", + ReferenceName = "Mator", + Scope = "I", + Type = "E" + }, + new + { + Id = "mtn", + ReferenceName = "Matagalpa", + Scope = "I", + Type = "E" + }, + new + { + Id = "mto", + ReferenceName = "Totontepec Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtp", + ReferenceName = "Wichí Lhamtés Nocten", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtq", + ReferenceName = "Muong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtr", + ReferenceName = "Mewari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mts", + ReferenceName = "Yora", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtt", + ReferenceName = "Mota", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtu", + ReferenceName = "Tututepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtv", + ReferenceName = "Asaro'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtw", + ReferenceName = "Southern Binukidnon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtx", + ReferenceName = "Tidaá Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mty", + ReferenceName = "Nabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mua", + ReferenceName = "Mundang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mub", + ReferenceName = "Mubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "muc", + ReferenceName = "Ajumbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mud", + ReferenceName = "Mednyj Aleut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mue", + ReferenceName = "Media Lengua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mug", + ReferenceName = "Musgu", + Scope = "I", + Type = "L" + }, + new + { + Id = "muh", + ReferenceName = "Mündü", + Scope = "I", + Type = "L" + }, + new + { + Id = "mui", + ReferenceName = "Musi", + Scope = "I", + Type = "L" + }, + new + { + Id = "muj", + ReferenceName = "Mabire", + Scope = "I", + Type = "L" + }, + new + { + Id = "muk", + ReferenceName = "Mugom", + Scope = "I", + Type = "L" + }, + new + { + Id = "mul", + Part2B = "mul", + Part2T = "mul", + ReferenceName = "Multiple languages", + Scope = "S", + Type = "S" + }, + new + { + Id = "mum", + ReferenceName = "Maiwala", + Scope = "I", + Type = "L" + }, + new + { + Id = "muo", + ReferenceName = "Nyong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mup", + ReferenceName = "Malvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "muq", + ReferenceName = "Eastern Xiangxi Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "mur", + ReferenceName = "Murle", + Scope = "I", + Type = "L" + }, + new + { + Id = "mus", + Part2B = "mus", + Part2T = "mus", + ReferenceName = "Creek", + Scope = "I", + Type = "L" + }, + new + { + Id = "mut", + ReferenceName = "Western Muria", + Scope = "I", + Type = "L" + }, + new + { + Id = "muu", + ReferenceName = "Yaaku", + Scope = "I", + Type = "L" + }, + new + { + Id = "muv", + ReferenceName = "Muthuvan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mux", + ReferenceName = "Bo-Ung", + Scope = "I", + Type = "L" + }, + new + { + Id = "muy", + ReferenceName = "Muyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "muz", + ReferenceName = "Mursi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mva", + ReferenceName = "Manam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvb", + ReferenceName = "Mattole", + Scope = "I", + Type = "E" + }, + new + { + Id = "mvd", + ReferenceName = "Mamboru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mve", + ReferenceName = "Marwari (Pakistan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvf", + ReferenceName = "Peripheral Mongolian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvg", + ReferenceName = "Yucuañe Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvh", + ReferenceName = "Mulgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvi", + ReferenceName = "Miyako", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvk", + ReferenceName = "Mekmek", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvl", + ReferenceName = "Mbara (Australia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "mvm", + ReferenceName = "Muya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvn", + ReferenceName = "Minaveha", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvo", + ReferenceName = "Marovo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvp", + ReferenceName = "Duri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvq", + ReferenceName = "Moere", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvr", + ReferenceName = "Marau", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvs", + ReferenceName = "Massep", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvt", + ReferenceName = "Mpotovoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvu", + ReferenceName = "Marfa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvv", + ReferenceName = "Tagal Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvw", + ReferenceName = "Machinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvx", + ReferenceName = "Meoswar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvy", + ReferenceName = "Indus Kohistani", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvz", + ReferenceName = "Mesqan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwa", + ReferenceName = "Mwatebu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwb", + ReferenceName = "Juwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwc", + ReferenceName = "Are", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwe", + ReferenceName = "Mwera (Chimwera)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwf", + ReferenceName = "Murrinh-Patha", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwg", + ReferenceName = "Aiklep", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwh", + ReferenceName = "Mouk-Aria", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwi", + ReferenceName = "Labo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwk", + ReferenceName = "Kita Maninkakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwl", + Part2B = "mwl", + Part2T = "mwl", + ReferenceName = "Mirandese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwm", + ReferenceName = "Sar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwn", + ReferenceName = "Nyamwanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwo", + ReferenceName = "Central Maewo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwp", + ReferenceName = "Kala Lagaw Ya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwq", + ReferenceName = "Mün Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwr", + Part2B = "mwr", + Part2T = "mwr", + ReferenceName = "Marwari", + Scope = "M", + Type = "L" + }, + new + { + Id = "mws", + ReferenceName = "Mwimbi-Muthambi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwt", + ReferenceName = "Moken", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwu", + ReferenceName = "Mittu", + Scope = "I", + Type = "E" + }, + new + { + Id = "mwv", + ReferenceName = "Mentawai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mww", + ReferenceName = "Hmong Daw", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwz", + ReferenceName = "Moingi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxa", + ReferenceName = "Northwest Oaxaca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxb", + ReferenceName = "Tezoatlán Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxc", + ReferenceName = "Manyika", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxd", + ReferenceName = "Modang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxe", + ReferenceName = "Mele-Fila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxf", + ReferenceName = "Malgbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxg", + ReferenceName = "Mbangala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxh", + ReferenceName = "Mvuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxi", + ReferenceName = "Mozarabic", + Scope = "I", + Type = "H" + }, + new + { + Id = "mxj", + ReferenceName = "Miju-Mishmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxk", + ReferenceName = "Monumbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxl", + ReferenceName = "Maxi Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxm", + ReferenceName = "Meramera", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxn", + ReferenceName = "Moi (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxo", + ReferenceName = "Mbowe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxp", + ReferenceName = "Tlahuitoltepec Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxq", + ReferenceName = "Juquila Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxr", + ReferenceName = "Murik (Malaysia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxs", + ReferenceName = "Huitepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxt", + ReferenceName = "Jamiltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxu", + ReferenceName = "Mada (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxv", + ReferenceName = "Metlatónoc Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxw", + ReferenceName = "Namo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxx", + ReferenceName = "Mahou", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxy", + ReferenceName = "Southeastern Nochixtlán Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxz", + ReferenceName = "Central Masela", + Scope = "I", + Type = "L" + }, + new + { + Id = "mya", + Part1 = "my", + Part2B = "bur", + Part2T = "mya", + ReferenceName = "Burmese", + Scope = "I", + Type = "L" + }, + new + { + Id = "myb", + ReferenceName = "Mbay", + Scope = "I", + Type = "L" + }, + new + { + Id = "myc", + ReferenceName = "Mayeka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mye", + ReferenceName = "Myene", + Scope = "I", + Type = "L" + }, + new + { + Id = "myf", + ReferenceName = "Bambassi", + Scope = "I", + Type = "L" + }, + new + { + Id = "myg", + ReferenceName = "Manta", + Scope = "I", + Type = "L" + }, + new + { + Id = "myh", + ReferenceName = "Makah", + Scope = "I", + Type = "L" + }, + new + { + Id = "myj", + ReferenceName = "Mangayat", + Scope = "I", + Type = "L" + }, + new + { + Id = "myk", + ReferenceName = "Mamara Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "myl", + ReferenceName = "Moma", + Scope = "I", + Type = "L" + }, + new + { + Id = "mym", + ReferenceName = "Me'en", + Scope = "I", + Type = "L" + }, + new + { + Id = "myo", + ReferenceName = "Anfillo", + Scope = "I", + Type = "L" + }, + new + { + Id = "myp", + ReferenceName = "Pirahã", + Scope = "I", + Type = "L" + }, + new + { + Id = "myr", + ReferenceName = "Muniche", + Scope = "I", + Type = "L" + }, + new + { + Id = "mys", + ReferenceName = "Mesmes", + Scope = "I", + Type = "E" + }, + new + { + Id = "myu", + ReferenceName = "Mundurukú", + Scope = "I", + Type = "L" + }, + new + { + Id = "myv", + Part2B = "myv", + Part2T = "myv", + ReferenceName = "Erzya", + Scope = "I", + Type = "L" + }, + new + { + Id = "myw", + ReferenceName = "Muyuw", + Scope = "I", + Type = "L" + }, + new + { + Id = "myx", + ReferenceName = "Masaaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "myy", + ReferenceName = "Macuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "myz", + ReferenceName = "Classical Mandaic", + Scope = "I", + Type = "H" + }, + new + { + Id = "mza", + ReferenceName = "Santa María Zacatepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzb", + ReferenceName = "Tumzabt", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzc", + ReferenceName = "Madagascar Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzd", + ReferenceName = "Malimba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mze", + ReferenceName = "Morawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzg", + ReferenceName = "Monastic Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzh", + ReferenceName = "Wichí Lhamtés Güisnay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzi", + ReferenceName = "Ixcatlán Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzj", + ReferenceName = "Manya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzk", + ReferenceName = "Nigeria Mambila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzl", + ReferenceName = "Mazatlán Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzm", + ReferenceName = "Mumuye", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzn", + ReferenceName = "Mazanderani", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzo", + ReferenceName = "Matipuhy", + Scope = "I", + Type = "E" + }, + new + { + Id = "mzp", + ReferenceName = "Movima", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzq", + ReferenceName = "Mori Atas", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzr", + ReferenceName = "Marúbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzs", + ReferenceName = "Macanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzt", + ReferenceName = "Mintil", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzu", + ReferenceName = "Inapang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzv", + ReferenceName = "Manza", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzw", + ReferenceName = "Deg", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzx", + ReferenceName = "Mawayana", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzy", + ReferenceName = "Mozambican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzz", + ReferenceName = "Maiadomu", + Scope = "I", + Type = "L" + }, + new + { + Id = "naa", + ReferenceName = "Namla", + Scope = "I", + Type = "L" + }, + new + { + Id = "nab", + ReferenceName = "Southern Nambikuára", + Scope = "I", + Type = "L" + }, + new + { + Id = "nac", + ReferenceName = "Narak", + Scope = "I", + Type = "L" + }, + new + { + Id = "nae", + ReferenceName = "Naka'ela", + Scope = "I", + Type = "E" + }, + new + { + Id = "naf", + ReferenceName = "Nabak", + Scope = "I", + Type = "L" + }, + new + { + Id = "nag", + ReferenceName = "Naga Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "naj", + ReferenceName = "Nalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nak", + ReferenceName = "Nakanai", + Scope = "I", + Type = "L" + }, + new + { + Id = "nal", + ReferenceName = "Nalik", + Scope = "I", + Type = "L" + }, + new + { + Id = "nam", + ReferenceName = "Ngan'gityemerri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nan", + ReferenceName = "Min Nan Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "nao", + ReferenceName = "Naaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nap", + Part2B = "nap", + Part2T = "nap", + ReferenceName = "Neapolitan", + Scope = "I", + Type = "L" + }, + new + { + Id = "naq", + ReferenceName = "Khoekhoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nar", + ReferenceName = "Iguta", + Scope = "I", + Type = "L" + }, + new + { + Id = "nas", + ReferenceName = "Naasioi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nat", + ReferenceName = "Ca̱hungwa̱rya̱", + Scope = "I", + Type = "L" + }, + new + { + Id = "nau", + Part1 = "na", + Part2B = "nau", + Part2T = "nau", + ReferenceName = "Nauru", + Scope = "I", + Type = "L" + }, + new + { + Id = "nav", + Part1 = "nv", + Part2B = "nav", + Part2T = "nav", + ReferenceName = "Navajo", + Scope = "I", + Type = "L" + }, + new + { + Id = "naw", + ReferenceName = "Nawuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nax", + ReferenceName = "Nakwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nay", + ReferenceName = "Ngarrindjeri", + Scope = "I", + Type = "E" + }, + new + { + Id = "naz", + ReferenceName = "Coatepec Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nba", + ReferenceName = "Nyemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbb", + ReferenceName = "Ndoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbc", + ReferenceName = "Chang Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbd", + ReferenceName = "Ngbinda", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbe", + ReferenceName = "Konyak Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbg", + ReferenceName = "Nagarchal", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbh", + ReferenceName = "Ngamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbi", + ReferenceName = "Mao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbj", + ReferenceName = "Ngarinyman", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbk", + ReferenceName = "Nake", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbl", + Part1 = "nr", + Part2B = "nbl", + Part2T = "nbl", + ReferenceName = "South Ndebele", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbm", + ReferenceName = "Ngbaka Ma'bo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbn", + ReferenceName = "Kuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbo", + ReferenceName = "Nkukoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbp", + ReferenceName = "Nnam", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbq", + ReferenceName = "Nggem", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbr", + ReferenceName = "Numana", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbs", + ReferenceName = "Namibian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbt", + ReferenceName = "Na", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbu", + ReferenceName = "Rongmei Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbv", + ReferenceName = "Ngamambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbw", + ReferenceName = "Southern Ngbandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nby", + ReferenceName = "Ningera", + Scope = "I", + Type = "L" + }, + new + { + Id = "nca", + ReferenceName = "Iyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncb", + ReferenceName = "Central Nicobarese", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncc", + ReferenceName = "Ponam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncd", + ReferenceName = "Nachering", + Scope = "I", + Type = "L" + }, + new + { + Id = "nce", + ReferenceName = "Yale", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncf", + ReferenceName = "Notsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncg", + ReferenceName = "Nisga'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "nch", + ReferenceName = "Central Huasteca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nci", + ReferenceName = "Classical Nahuatl", + Scope = "I", + Type = "H" + }, + new + { + Id = "ncj", + ReferenceName = "Northern Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nck", + ReferenceName = "Na-kara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncl", + ReferenceName = "Michoacán Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncm", + ReferenceName = "Nambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncn", + ReferenceName = "Nauna", + Scope = "I", + Type = "L" + }, + new + { + Id = "nco", + ReferenceName = "Sibe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncq", + ReferenceName = "Northern Katang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncr", + ReferenceName = "Ncane", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncs", + ReferenceName = "Nicaraguan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nct", + ReferenceName = "Chothe Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncu", + ReferenceName = "Chumburung", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncx", + ReferenceName = "Central Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncz", + ReferenceName = "Natchez", + Scope = "I", + Type = "E" + }, + new + { + Id = "nda", + ReferenceName = "Ndasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndb", + ReferenceName = "Kenswei Nsei", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndc", + ReferenceName = "Ndau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndd", + ReferenceName = "Nde-Nsele-Nta", + Scope = "I", + Type = "L" + }, + new + { + Id = "nde", + Part1 = "nd", + Part2B = "nde", + Part2T = "nde", + ReferenceName = "North Ndebele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndf", + ReferenceName = "Nadruvian", + Scope = "I", + Type = "H" + }, + new + { + Id = "ndg", + ReferenceName = "Ndengereko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndh", + ReferenceName = "Ndali", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndi", + ReferenceName = "Samba Leko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndj", + ReferenceName = "Ndamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndk", + ReferenceName = "Ndaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndl", + ReferenceName = "Ndolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndm", + ReferenceName = "Ndam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndn", + ReferenceName = "Ngundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndo", + Part1 = "ng", + Part2B = "ndo", + Part2T = "ndo", + ReferenceName = "Ndonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndp", + ReferenceName = "Ndo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndq", + ReferenceName = "Ndombe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndr", + ReferenceName = "Ndoola", + Scope = "I", + Type = "L" + }, + new + { + Id = "nds", + Part2B = "nds", + Part2T = "nds", + ReferenceName = "Low German", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndt", + ReferenceName = "Ndunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndu", + ReferenceName = "Dugun", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndv", + ReferenceName = "Ndut", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndw", + ReferenceName = "Ndobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndx", + ReferenceName = "Nduga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndy", + ReferenceName = "Lutos", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndz", + ReferenceName = "Ndogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nea", + ReferenceName = "Eastern Ngad'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "neb", + ReferenceName = "Toura (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nec", + ReferenceName = "Nedebang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ned", + ReferenceName = "Nde-Gbite", + Scope = "I", + Type = "L" + }, + new + { + Id = "nee", + ReferenceName = "Nêlêmwa-Nixumwak", + Scope = "I", + Type = "L" + }, + new + { + Id = "nef", + ReferenceName = "Nefamese", + Scope = "I", + Type = "L" + }, + new + { + Id = "neg", + ReferenceName = "Negidal", + Scope = "I", + Type = "L" + }, + new + { + Id = "neh", + ReferenceName = "Nyenkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "nei", + ReferenceName = "Neo-Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "nej", + ReferenceName = "Neko", + Scope = "I", + Type = "L" + }, + new + { + Id = "nek", + ReferenceName = "Neku", + Scope = "I", + Type = "L" + }, + new + { + Id = "nem", + ReferenceName = "Nemi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nen", + ReferenceName = "Nengone", + Scope = "I", + Type = "L" + }, + new + { + Id = "neo", + ReferenceName = "Ná-Meo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nep", + Part1 = "ne", + Part2B = "nep", + Part2T = "nep", + ReferenceName = "Nepali (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "neq", + ReferenceName = "North Central Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ner", + ReferenceName = "Yahadian", + Scope = "I", + Type = "L" + }, + new + { + Id = "nes", + ReferenceName = "Bhoti Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "net", + ReferenceName = "Nete", + Scope = "I", + Type = "L" + }, + new + { + Id = "neu", + ReferenceName = "Neo", + Scope = "I", + Type = "C" + }, + new + { + Id = "nev", + ReferenceName = "Nyaheun", + Scope = "I", + Type = "L" + }, + new + { + Id = "new", + Part2B = "new", + Part2T = "new", + ReferenceName = "Newari", + Scope = "I", + Type = "L" + }, + new + { + Id = "nex", + ReferenceName = "Neme", + Scope = "I", + Type = "L" + }, + new + { + Id = "ney", + ReferenceName = "Neyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nez", + ReferenceName = "Nez Perce", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfa", + ReferenceName = "Dhao", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfd", + ReferenceName = "Ahwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfl", + ReferenceName = "Ayiwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfr", + ReferenceName = "Nafaanra", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfu", + ReferenceName = "Mfumte", + Scope = "I", + Type = "L" + }, + new + { + Id = "nga", + ReferenceName = "Ngbaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngb", + ReferenceName = "Northern Ngbandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngc", + ReferenceName = "Ngombe (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngd", + ReferenceName = "Ngando (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nge", + ReferenceName = "Ngemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngg", + ReferenceName = "Ngbaka Manza", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngh", + ReferenceName = "Nǁng", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngi", + ReferenceName = "Ngizim", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngj", + ReferenceName = "Ngie", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngk", + ReferenceName = "Dalabon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngl", + ReferenceName = "Lomwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngm", + ReferenceName = "Ngatik Men's Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngn", + ReferenceName = "Ngwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngo", + ReferenceName = "Ngoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngp", + ReferenceName = "Ngulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngq", + ReferenceName = "Ngurimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngr", + ReferenceName = "Engdewu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngs", + ReferenceName = "Gvoko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngt", + ReferenceName = "Kriang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngu", + ReferenceName = "Guerrero Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngv", + ReferenceName = "Nagumi", + Scope = "I", + Type = "E" + }, + new + { + Id = "ngw", + ReferenceName = "Ngwaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngx", + ReferenceName = "Nggwahyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngy", + ReferenceName = "Tibea", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngz", + ReferenceName = "Ngungwel", + Scope = "I", + Type = "L" + }, + new + { + Id = "nha", + ReferenceName = "Nhanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhb", + ReferenceName = "Beng", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhc", + ReferenceName = "Tabasco Nahuatl", + Scope = "I", + Type = "E" + }, + new + { + Id = "nhd", + ReferenceName = "Chiripá", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhe", + ReferenceName = "Eastern Huasteca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhf", + ReferenceName = "Nhuwala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhg", + ReferenceName = "Tetelcingo Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhh", + ReferenceName = "Nahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhi", + ReferenceName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhk", + ReferenceName = "Isthmus-Cosoleacaque Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhm", + ReferenceName = "Morelos Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhn", + ReferenceName = "Central Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nho", + ReferenceName = "Takuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhp", + ReferenceName = "Isthmus-Pajapan Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhq", + ReferenceName = "Huaxcaleca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhr", + ReferenceName = "Naro", + Scope = "I", + Type = "L" + }, + new + { + Id = "nht", + ReferenceName = "Ometepec Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhu", + ReferenceName = "Noone", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhv", + ReferenceName = "Temascaltepec Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhw", + ReferenceName = "Western Huasteca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhx", + ReferenceName = "Isthmus-Mecayapan Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhy", + ReferenceName = "Northern Oaxaca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhz", + ReferenceName = "Santa María La Alta Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nia", + Part2B = "nia", + Part2T = "nia", + ReferenceName = "Nias", + Scope = "I", + Type = "L" + }, + new + { + Id = "nib", + ReferenceName = "Nakame", + Scope = "I", + Type = "L" + }, + new + { + Id = "nid", + ReferenceName = "Ngandi", + Scope = "I", + Type = "E" + }, + new + { + Id = "nie", + ReferenceName = "Niellim", + Scope = "I", + Type = "L" + }, + new + { + Id = "nif", + ReferenceName = "Nek", + Scope = "I", + Type = "L" + }, + new + { + Id = "nig", + ReferenceName = "Ngalakgan", + Scope = "I", + Type = "E" + }, + new + { + Id = "nih", + ReferenceName = "Nyiha (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nii", + ReferenceName = "Nii", + Scope = "I", + Type = "L" + }, + new + { + Id = "nij", + ReferenceName = "Ngaju", + Scope = "I", + Type = "L" + }, + new + { + Id = "nik", + ReferenceName = "Southern Nicobarese", + Scope = "I", + Type = "L" + }, + new + { + Id = "nil", + ReferenceName = "Nila", + Scope = "I", + Type = "L" + }, + new + { + Id = "nim", + ReferenceName = "Nilamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nin", + ReferenceName = "Ninzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nio", + ReferenceName = "Nganasan", + Scope = "I", + Type = "L" + }, + new + { + Id = "niq", + ReferenceName = "Nandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nir", + ReferenceName = "Nimboran", + Scope = "I", + Type = "L" + }, + new + { + Id = "nis", + ReferenceName = "Nimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nit", + ReferenceName = "Southeastern Kolami", + Scope = "I", + Type = "L" + }, + new + { + Id = "niu", + Part2B = "niu", + Part2T = "niu", + ReferenceName = "Niuean", + Scope = "I", + Type = "L" + }, + new + { + Id = "niv", + ReferenceName = "Gilyak", + Scope = "I", + Type = "L" + }, + new + { + Id = "niw", + ReferenceName = "Nimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nix", + ReferenceName = "Hema", + Scope = "I", + Type = "L" + }, + new + { + Id = "niy", + ReferenceName = "Ngiti", + Scope = "I", + Type = "L" + }, + new + { + Id = "niz", + ReferenceName = "Ningil", + Scope = "I", + Type = "L" + }, + new + { + Id = "nja", + ReferenceName = "Nzanyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "njb", + ReferenceName = "Nocte Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njd", + ReferenceName = "Ndonde Hamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "njh", + ReferenceName = "Lotha Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nji", + ReferenceName = "Gudanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "njj", + ReferenceName = "Njen", + Scope = "I", + Type = "L" + }, + new + { + Id = "njl", + ReferenceName = "Njalgulgule", + Scope = "I", + Type = "L" + }, + new + { + Id = "njm", + ReferenceName = "Angami Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njn", + ReferenceName = "Liangmai Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njo", + ReferenceName = "Ao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njr", + ReferenceName = "Njerep", + Scope = "I", + Type = "L" + }, + new + { + Id = "njs", + ReferenceName = "Nisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "njt", + ReferenceName = "Ndyuka-Trio Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "nju", + ReferenceName = "Ngadjunmaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "njx", + ReferenceName = "Kunyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "njy", + ReferenceName = "Njyem", + Scope = "I", + Type = "L" + }, + new + { + Id = "njz", + ReferenceName = "Nyishi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nka", + ReferenceName = "Nkoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkb", + ReferenceName = "Khoibu Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkc", + ReferenceName = "Nkongho", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkd", + ReferenceName = "Koireng", + Scope = "I", + Type = "L" + }, + new + { + Id = "nke", + ReferenceName = "Duke", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkf", + ReferenceName = "Inpui Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkg", + ReferenceName = "Nekgini", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkh", + ReferenceName = "Khezha Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nki", + ReferenceName = "Thangal Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkj", + ReferenceName = "Nakai", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkk", + ReferenceName = "Nokuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkm", + ReferenceName = "Namat", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkn", + ReferenceName = "Nkangala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nko", + ReferenceName = "Nkonya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkp", + ReferenceName = "Niuatoputapu", + Scope = "I", + Type = "E" + }, + new + { + Id = "nkq", + ReferenceName = "Nkami", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkr", + ReferenceName = "Nukuoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "nks", + ReferenceName = "North Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkt", + ReferenceName = "Nyika (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nku", + ReferenceName = "Bouna Kulango", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkv", + ReferenceName = "Nyika (Malawi and Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkw", + ReferenceName = "Nkutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkx", + ReferenceName = "Nkoroo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkz", + ReferenceName = "Nkari", + Scope = "I", + Type = "L" + }, + new + { + Id = "nla", + ReferenceName = "Ngombale", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlc", + ReferenceName = "Nalca", + Scope = "I", + Type = "L" + }, + new + { + Id = "nld", + Part1 = "nl", + Part2B = "dut", + Part2T = "nld", + ReferenceName = "Dutch", + Scope = "I", + Type = "L" + }, + new + { + Id = "nle", + ReferenceName = "East Nyala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlg", + ReferenceName = "Gela", + Scope = "I", + Type = "L" + }, + new + { + Id = "nli", + ReferenceName = "Grangali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlj", + ReferenceName = "Nyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlk", + ReferenceName = "Ninia Yali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nll", + ReferenceName = "Nihali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlm", + ReferenceName = "Mankiyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlo", + ReferenceName = "Ngul", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlq", + ReferenceName = "Lao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlu", + ReferenceName = "Nchumbulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlv", + ReferenceName = "Orizaba Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlw", + ReferenceName = "Walangama", + Scope = "I", + Type = "E" + }, + new + { + Id = "nlx", + ReferenceName = "Nahali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nly", + ReferenceName = "Nyamal", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlz", + ReferenceName = "Nalögo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nma", + ReferenceName = "Maram Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmb", + ReferenceName = "Big Nambas", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmc", + ReferenceName = "Ngam", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmd", + ReferenceName = "Ndumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nme", + ReferenceName = "Mzieme Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmf", + ReferenceName = "Tangkhul Naga (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmg", + ReferenceName = "Kwasio", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmh", + ReferenceName = "Monsang Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmi", + ReferenceName = "Nyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmj", + ReferenceName = "Ngombe (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmk", + ReferenceName = "Namakura", + Scope = "I", + Type = "L" + }, + new + { + Id = "nml", + ReferenceName = "Ndemli", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmm", + ReferenceName = "Manangba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmn", + ReferenceName = "ǃXóõ", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmo", + ReferenceName = "Moyon Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmp", + ReferenceName = "Nimanbur", + Scope = "I", + Type = "E" + }, + new + { + Id = "nmq", + ReferenceName = "Nambya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmr", + ReferenceName = "Nimbari", + Scope = "I", + Type = "E" + }, + new + { + Id = "nms", + ReferenceName = "Letemboi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmt", + ReferenceName = "Namonuito", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmu", + ReferenceName = "Northeast Maidu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmv", + ReferenceName = "Ngamini", + Scope = "I", + Type = "E" + }, + new + { + Id = "nmw", + ReferenceName = "Nimoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmx", + ReferenceName = "Nama (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmy", + ReferenceName = "Namuyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmz", + ReferenceName = "Nawdm", + Scope = "I", + Type = "L" + }, + new + { + Id = "nna", + ReferenceName = "Nyangumarta", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnb", + ReferenceName = "Nande", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnc", + ReferenceName = "Nancere", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnd", + ReferenceName = "West Ambae", + Scope = "I", + Type = "L" + }, + new + { + Id = "nne", + ReferenceName = "Ngandyera", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnf", + ReferenceName = "Ngaing", + Scope = "I", + Type = "L" + }, + new + { + Id = "nng", + ReferenceName = "Maring Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnh", + ReferenceName = "Ngiemboon", + Scope = "I", + Type = "L" + }, + new + { + Id = "nni", + ReferenceName = "North Nuaulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnj", + ReferenceName = "Nyangatom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnk", + ReferenceName = "Nankina", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnl", + ReferenceName = "Northern Rengma Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnm", + ReferenceName = "Namia", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnn", + ReferenceName = "Ngete", + Scope = "I", + Type = "L" + }, + new + { + Id = "nno", + Part1 = "nn", + Part2B = "nno", + Part2T = "nno", + ReferenceName = "Norwegian Nynorsk", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnp", + ReferenceName = "Wancho Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnq", + ReferenceName = "Ngindo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnr", + ReferenceName = "Narungga", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnt", + ReferenceName = "Nanticoke", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnu", + ReferenceName = "Dwang", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnv", + ReferenceName = "Nugunu (Australia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnw", + ReferenceName = "Southern Nuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "nny", + ReferenceName = "Nyangga", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnz", + ReferenceName = "Nda'nda'", + Scope = "I", + Type = "L" + }, + new + { + Id = "noa", + ReferenceName = "Woun Meu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nob", + Part1 = "nb", + Part2B = "nob", + Part2T = "nob", + ReferenceName = "Norwegian Bokmål", + Scope = "I", + Type = "L" + }, + new + { + Id = "noc", + ReferenceName = "Nuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "nod", + ReferenceName = "Northern Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "noe", + ReferenceName = "Nimadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nof", + ReferenceName = "Nomane", + Scope = "I", + Type = "L" + }, + new + { + Id = "nog", + Part2B = "nog", + Part2T = "nog", + ReferenceName = "Nogai", + Scope = "I", + Type = "L" + }, + new + { + Id = "noh", + ReferenceName = "Nomu", + Scope = "I", + Type = "L" + }, + new + { + Id = "noi", + ReferenceName = "Noiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "noj", + ReferenceName = "Nonuya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nok", + ReferenceName = "Nooksack", + Scope = "I", + Type = "E" + }, + new + { + Id = "nol", + ReferenceName = "Nomlaki", + Scope = "I", + Type = "E" + }, + new + { + Id = "nom", + ReferenceName = "Nocamán", + Scope = "I", + Type = "E" + }, + new + { + Id = "non", + Part2B = "non", + Part2T = "non", + ReferenceName = "Old Norse", + Scope = "I", + Type = "H" + }, + new + { + Id = "nop", + ReferenceName = "Numanggang", + Scope = "I", + Type = "L" + }, + new + { + Id = "noq", + ReferenceName = "Ngongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nor", + Part1 = "no", + Part2B = "nor", + Part2T = "nor", + ReferenceName = "Norwegian", + Scope = "M", + Type = "L" + }, + new + { + Id = "nos", + ReferenceName = "Eastern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "not", + ReferenceName = "Nomatsiguenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nou", + ReferenceName = "Ewage-Notu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nov", + ReferenceName = "Novial", + Scope = "I", + Type = "C" + }, + new + { + Id = "now", + ReferenceName = "Nyambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "noy", + ReferenceName = "Noy", + Scope = "I", + Type = "L" + }, + new + { + Id = "noz", + ReferenceName = "Nayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "npa", + ReferenceName = "Nar Phu", + Scope = "I", + Type = "L" + }, + new + { + Id = "npb", + ReferenceName = "Nupbikha", + Scope = "I", + Type = "L" + }, + new + { + Id = "npg", + ReferenceName = "Ponyo-Gongwang Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nph", + ReferenceName = "Phom Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "npi", + ReferenceName = "Nepali (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "npl", + ReferenceName = "Southeastern Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "npn", + ReferenceName = "Mondropolon", + Scope = "I", + Type = "L" + }, + new + { + Id = "npo", + ReferenceName = "Pochuri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nps", + ReferenceName = "Nipsan", + Scope = "I", + Type = "L" + }, + new + { + Id = "npu", + ReferenceName = "Puimei Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "npx", + ReferenceName = "Noipx", + Scope = "I", + Type = "L" + }, + new + { + Id = "npy", + ReferenceName = "Napu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqg", + ReferenceName = "Southern Nago", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqk", + ReferenceName = "Kura Ede Nago", + Scope = "I", + Type = "L" + }, + new + { + Id = "nql", + ReferenceName = "Ngendelengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqm", + ReferenceName = "Ndom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqn", + ReferenceName = "Nen", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqo", + Part2B = "nqo", + Part2T = "nqo", + ReferenceName = "N'Ko", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqq", + ReferenceName = "Kyan-Karyaw Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqy", + ReferenceName = "Akyaung Ari Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nra", + ReferenceName = "Ngom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrb", + ReferenceName = "Nara", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrc", + ReferenceName = "Noric", + Scope = "I", + Type = "A" + }, + new + { + Id = "nre", + ReferenceName = "Southern Rengma Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrf", + ReferenceName = "Jèrriais", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrg", + ReferenceName = "Narango", + Scope = "I", + Type = "L" + }, + new + { + Id = "nri", + ReferenceName = "Chokri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrk", + ReferenceName = "Ngarla", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrl", + ReferenceName = "Ngarluma", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrm", + ReferenceName = "Narom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrn", + ReferenceName = "Norn", + Scope = "I", + Type = "E" + }, + new + { + Id = "nrp", + ReferenceName = "North Picene", + Scope = "I", + Type = "A" + }, + new + { + Id = "nrr", + ReferenceName = "Norra", + Scope = "I", + Type = "E" + }, + new + { + Id = "nrt", + ReferenceName = "Northern Kalapuya", + Scope = "I", + Type = "E" + }, + new + { + Id = "nru", + ReferenceName = "Narua", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrx", + ReferenceName = "Ngurmbur", + Scope = "I", + Type = "E" + }, + new + { + Id = "nrz", + ReferenceName = "Lala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsa", + ReferenceName = "Sangtam Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsc", + ReferenceName = "Nshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsd", + ReferenceName = "Southern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nse", + ReferenceName = "Nsenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsf", + ReferenceName = "Northwestern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsg", + ReferenceName = "Ngasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsh", + ReferenceName = "Ngoshie", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsi", + ReferenceName = "Nigerian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsk", + ReferenceName = "Naskapi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsl", + ReferenceName = "Norwegian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsm", + ReferenceName = "Sumi Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsn", + ReferenceName = "Nehan", + Scope = "I", + Type = "L" + }, + new + { + Id = "nso", + Part2B = "nso", + Part2T = "nso", + ReferenceName = "Pedi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsp", + ReferenceName = "Nepalese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsq", + ReferenceName = "Northern Sierra Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsr", + ReferenceName = "Maritime Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nss", + ReferenceName = "Nali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nst", + ReferenceName = "Tase Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsu", + ReferenceName = "Sierra Negra Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsv", + ReferenceName = "Southwestern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsw", + ReferenceName = "Navut", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsx", + ReferenceName = "Nsongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsy", + ReferenceName = "Nasal", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsz", + ReferenceName = "Nisenan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntd", + ReferenceName = "Northern Tidung", + Scope = "I", + Type = "L" + }, + new + { + Id = "nte", + ReferenceName = "Nathembo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntg", + ReferenceName = "Ngantangarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "nti", + ReferenceName = "Natioro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntj", + ReferenceName = "Ngaanyatjarra", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntk", + ReferenceName = "Ikoma-Nata-Isenye", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntm", + ReferenceName = "Nateni", + Scope = "I", + Type = "L" + }, + new + { + Id = "nto", + ReferenceName = "Ntomba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntp", + ReferenceName = "Northern Tepehuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntr", + ReferenceName = "Delo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntu", + ReferenceName = "Natügu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntw", + ReferenceName = "Nottoway", + Scope = "I", + Type = "E" + }, + new + { + Id = "ntx", + ReferenceName = "Tangkhul Naga (Myanmar)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nty", + ReferenceName = "Mantsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntz", + ReferenceName = "Natanzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nua", + ReferenceName = "Yuanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuc", + ReferenceName = "Nukuini", + Scope = "I", + Type = "E" + }, + new + { + Id = "nud", + ReferenceName = "Ngala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nue", + ReferenceName = "Ngundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuf", + ReferenceName = "Nusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nug", + ReferenceName = "Nungali", + Scope = "I", + Type = "E" + }, + new + { + Id = "nuh", + ReferenceName = "Ndunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "nui", + ReferenceName = "Ngumbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuj", + ReferenceName = "Nyole", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuk", + ReferenceName = "Nuu-chah-nulth", + Scope = "I", + Type = "L" + }, + new + { + Id = "nul", + ReferenceName = "Nusa Laut", + Scope = "I", + Type = "E" + }, + new + { + Id = "num", + ReferenceName = "Niuafo'ou", + Scope = "I", + Type = "L" + }, + new + { + Id = "nun", + ReferenceName = "Anong", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuo", + ReferenceName = "Nguôn", + Scope = "I", + Type = "L" + }, + new + { + Id = "nup", + ReferenceName = "Nupe-Nupe-Tako", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuq", + ReferenceName = "Nukumanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nur", + ReferenceName = "Nukuria", + Scope = "I", + Type = "L" + }, + new + { + Id = "nus", + ReferenceName = "Nuer", + Scope = "I", + Type = "L" + }, + new + { + Id = "nut", + ReferenceName = "Nung (Viet Nam)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuu", + ReferenceName = "Ngbundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuv", + ReferenceName = "Northern Nuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuw", + ReferenceName = "Nguluwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "nux", + ReferenceName = "Mehek", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuy", + ReferenceName = "Nunggubuyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuz", + ReferenceName = "Tlamacazapa Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nvh", + ReferenceName = "Nasarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "nvm", + ReferenceName = "Namiae", + Scope = "I", + Type = "L" + }, + new + { + Id = "nvo", + ReferenceName = "Nyokon", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwa", + ReferenceName = "Nawathinehena", + Scope = "I", + Type = "E" + }, + new + { + Id = "nwb", + ReferenceName = "Nyabwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwc", + Part2B = "nwc", + Part2T = "nwc", + ReferenceName = "Classical Newari", + Scope = "I", + Type = "H" + }, + new + { + Id = "nwe", + ReferenceName = "Ngwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwg", + ReferenceName = "Ngayawung", + Scope = "I", + Type = "E" + }, + new + { + Id = "nwi", + ReferenceName = "Southwest Tanna", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwm", + ReferenceName = "Nyamusa-Molo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwo", + ReferenceName = "Nauo", + Scope = "I", + Type = "E" + }, + new + { + Id = "nwr", + ReferenceName = "Nawaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwx", + ReferenceName = "Middle Newar", + Scope = "I", + Type = "H" + }, + new + { + Id = "nwy", + ReferenceName = "Nottoway-Meherrin", + Scope = "I", + Type = "E" + }, + new + { + Id = "nxa", + ReferenceName = "Nauete", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxd", + ReferenceName = "Ngando (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxe", + ReferenceName = "Nage", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxg", + ReferenceName = "Ngad'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxi", + ReferenceName = "Nindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxk", + ReferenceName = "Koki Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxl", + ReferenceName = "South Nuaulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxm", + ReferenceName = "Numidian", + Scope = "I", + Type = "A" + }, + new + { + Id = "nxn", + ReferenceName = "Ngawun", + Scope = "I", + Type = "E" + }, + new + { + Id = "nxo", + ReferenceName = "Ndambomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxq", + ReferenceName = "Naxi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxr", + ReferenceName = "Ninggerum", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxu", + ReferenceName = "Narau", + Scope = "I", + Type = "E" + }, + new + { + Id = "nxx", + ReferenceName = "Nafri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nya", + Part1 = "ny", + Part2B = "nya", + Part2T = "nya", + ReferenceName = "Nyanja", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyb", + ReferenceName = "Nyangbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyc", + ReferenceName = "Nyanga-li", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyd", + ReferenceName = "Nyore", + Scope = "I", + Type = "L" + }, + new + { + Id = "nye", + ReferenceName = "Nyengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyf", + ReferenceName = "Giryama", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyg", + ReferenceName = "Nyindu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyh", + ReferenceName = "Nyikina", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyi", + ReferenceName = "Ama (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyj", + ReferenceName = "Nyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyk", + ReferenceName = "Nyaneka", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyl", + ReferenceName = "Nyeu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nym", + Part2B = "nym", + Part2T = "nym", + ReferenceName = "Nyamwezi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyn", + Part2B = "nyn", + Part2T = "nyn", + ReferenceName = "Nyankole", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyo", + Part2B = "nyo", + Part2T = "nyo", + ReferenceName = "Nyoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyp", + ReferenceName = "Nyang'i", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyq", + ReferenceName = "Nayini", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyr", + ReferenceName = "Nyiha (Malawi)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nys", + ReferenceName = "Nyungar", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyt", + ReferenceName = "Nyawaygi", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyu", + ReferenceName = "Nyungwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyv", + ReferenceName = "Nyulnyul", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyw", + ReferenceName = "Nyaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyx", + ReferenceName = "Nganyaywana", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyy", + ReferenceName = "Nyakyusa-Ngonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "nza", + ReferenceName = "Tigon Mbembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzb", + ReferenceName = "Njebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzd", + ReferenceName = "Nzadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzi", + Part2B = "nzi", + Part2T = "nzi", + ReferenceName = "Nzima", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzk", + ReferenceName = "Nzakara", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzm", + ReferenceName = "Zeme Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzs", + ReferenceName = "New Zealand Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzu", + ReferenceName = "Teke-Nzikou", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzy", + ReferenceName = "Nzakambay", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzz", + ReferenceName = "Nanga Dama Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "oaa", + ReferenceName = "Orok", + Scope = "I", + Type = "L" + }, + new + { + Id = "oac", + ReferenceName = "Oroch", + Scope = "I", + Type = "L" + }, + new + { + Id = "oar", + ReferenceName = "Old Aramaic (up to 700 BCE)", + Scope = "I", + Type = "A" + }, + new + { + Id = "oav", + ReferenceName = "Old Avar", + Scope = "I", + Type = "H" + }, + new + { + Id = "obi", + ReferenceName = "Obispeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "obk", + ReferenceName = "Southern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "obl", + ReferenceName = "Oblo", + Scope = "I", + Type = "L" + }, + new + { + Id = "obm", + ReferenceName = "Moabite", + Scope = "I", + Type = "A" + }, + new + { + Id = "obo", + ReferenceName = "Obo Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "obr", + ReferenceName = "Old Burmese", + Scope = "I", + Type = "H" + }, + new + { + Id = "obt", + ReferenceName = "Old Breton", + Scope = "I", + Type = "H" + }, + new + { + Id = "obu", + ReferenceName = "Obulom", + Scope = "I", + Type = "L" + }, + new + { + Id = "oca", + ReferenceName = "Ocaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "och", + ReferenceName = "Old Chinese", + Scope = "I", + Type = "A" + }, + new + { + Id = "oci", + Part1 = "oc", + Part2B = "oci", + Part2T = "oci", + ReferenceName = "Occitan (post 1500)", + Scope = "I", + Type = "L" + }, + new + { + Id = "oco", + ReferenceName = "Old Cornish", + Scope = "I", + Type = "H" + }, + new + { + Id = "ocu", + ReferenceName = "Atzingo Matlatzinca", + Scope = "I", + Type = "L" + }, + new + { + Id = "oda", + ReferenceName = "Odut", + Scope = "I", + Type = "L" + }, + new + { + Id = "odk", + ReferenceName = "Od", + Scope = "I", + Type = "L" + }, + new + { + Id = "odt", + ReferenceName = "Old Dutch", + Scope = "I", + Type = "H" + }, + new + { + Id = "odu", + ReferenceName = "Odual", + Scope = "I", + Type = "L" + }, + new + { + Id = "ofo", + ReferenceName = "Ofo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ofs", + ReferenceName = "Old Frisian", + Scope = "I", + Type = "H" + }, + new + { + Id = "ofu", + ReferenceName = "Efutop", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogb", + ReferenceName = "Ogbia", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogc", + ReferenceName = "Ogbah", + Scope = "I", + Type = "L" + }, + new + { + Id = "oge", + ReferenceName = "Old Georgian", + Scope = "I", + Type = "H" + }, + new + { + Id = "ogg", + ReferenceName = "Ogbogolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogo", + ReferenceName = "Khana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogu", + ReferenceName = "Ogbronuagum", + Scope = "I", + Type = "L" + }, + new + { + Id = "oht", + ReferenceName = "Old Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "ohu", + ReferenceName = "Old Hungarian", + Scope = "I", + Type = "H" + }, + new + { + Id = "oia", + ReferenceName = "Oirata", + Scope = "I", + Type = "L" + }, + new + { + Id = "oin", + ReferenceName = "Inebu One", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojb", + ReferenceName = "Northwestern Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojc", + ReferenceName = "Central Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojg", + ReferenceName = "Eastern Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "oji", + Part1 = "oj", + Part2B = "oji", + Part2T = "oji", + ReferenceName = "Ojibwa", + Scope = "M", + Type = "L" + }, + new + { + Id = "ojp", + ReferenceName = "Old Japanese", + Scope = "I", + Type = "H" + }, + new + { + Id = "ojs", + ReferenceName = "Severn Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojv", + ReferenceName = "Ontong Java", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojw", + ReferenceName = "Western Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "oka", + ReferenceName = "Okanagan", + Scope = "I", + Type = "L" + }, + new + { + Id = "okb", + ReferenceName = "Okobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "okd", + ReferenceName = "Okodia", + Scope = "I", + Type = "L" + }, + new + { + Id = "oke", + ReferenceName = "Okpe (Southwestern Edo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "okg", + ReferenceName = "Koko Babangk", + Scope = "I", + Type = "E" + }, + new + { + Id = "okh", + ReferenceName = "Koresh-e Rostam", + Scope = "I", + Type = "L" + }, + new + { + Id = "oki", + ReferenceName = "Okiek", + Scope = "I", + Type = "L" + }, + new + { + Id = "okj", + ReferenceName = "Oko-Juwoi", + Scope = "I", + Type = "E" + }, + new + { + Id = "okk", + ReferenceName = "Kwamtim One", + Scope = "I", + Type = "L" + }, + new + { + Id = "okl", + ReferenceName = "Old Kentish Sign Language", + Scope = "I", + Type = "E" + }, + new + { + Id = "okm", + ReferenceName = "Middle Korean (10th-16th cent.)", + Scope = "I", + Type = "H" + }, + new + { + Id = "okn", + ReferenceName = "Oki-No-Erabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "oko", + ReferenceName = "Old Korean (3rd-9th cent.)", + Scope = "I", + Type = "H" + }, + new + { + Id = "okr", + ReferenceName = "Kirike", + Scope = "I", + Type = "L" + }, + new + { + Id = "oks", + ReferenceName = "Oko-Eni-Osayen", + Scope = "I", + Type = "L" + }, + new + { + Id = "oku", + ReferenceName = "Oku", + Scope = "I", + Type = "L" + }, + new + { + Id = "okv", + ReferenceName = "Orokaiva", + Scope = "I", + Type = "L" + }, + new + { + Id = "okx", + ReferenceName = "Okpe (Northwestern Edo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ola", + ReferenceName = "Walungge", + Scope = "I", + Type = "L" + }, + new + { + Id = "old", + ReferenceName = "Mochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ole", + ReferenceName = "Olekha", + Scope = "I", + Type = "L" + }, + new + { + Id = "olk", + ReferenceName = "Olkol", + Scope = "I", + Type = "E" + }, + new + { + Id = "olm", + ReferenceName = "Oloma", + Scope = "I", + Type = "L" + }, + new + { + Id = "olo", + ReferenceName = "Livvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "olr", + ReferenceName = "Olrat", + Scope = "I", + Type = "L" + }, + new + { + Id = "olt", + ReferenceName = "Old Lithuanian", + Scope = "I", + Type = "H" + }, + new + { + Id = "olu", + ReferenceName = "Kuvale", + Scope = "I", + Type = "L" + }, + new + { + Id = "oma", + ReferenceName = "Omaha-Ponca", + Scope = "I", + Type = "L" + }, + new + { + Id = "omb", + ReferenceName = "East Ambae", + Scope = "I", + Type = "L" + }, + new + { + Id = "omc", + ReferenceName = "Mochica", + Scope = "I", + Type = "E" + }, + new + { + Id = "omg", + ReferenceName = "Omagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "omi", + ReferenceName = "Omi", + Scope = "I", + Type = "L" + }, + new + { + Id = "omk", + ReferenceName = "Omok", + Scope = "I", + Type = "E" + }, + new + { + Id = "oml", + ReferenceName = "Ombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "omn", + ReferenceName = "Minoan", + Scope = "I", + Type = "A" + }, + new + { + Id = "omo", + ReferenceName = "Utarmbung", + Scope = "I", + Type = "L" + }, + new + { + Id = "omp", + ReferenceName = "Old Manipuri", + Scope = "I", + Type = "H" + }, + new + { + Id = "omr", + ReferenceName = "Old Marathi", + Scope = "I", + Type = "H" + }, + new + { + Id = "omt", + ReferenceName = "Omotik", + Scope = "I", + Type = "L" + }, + new + { + Id = "omu", + ReferenceName = "Omurano", + Scope = "I", + Type = "E" + }, + new + { + Id = "omw", + ReferenceName = "South Tairora", + Scope = "I", + Type = "L" + }, + new + { + Id = "omx", + ReferenceName = "Old Mon", + Scope = "I", + Type = "H" + }, + new + { + Id = "ona", + ReferenceName = "Ona", + Scope = "I", + Type = "L" + }, + new + { + Id = "onb", + ReferenceName = "Lingao", + Scope = "I", + Type = "L" + }, + new + { + Id = "one", + ReferenceName = "Oneida", + Scope = "I", + Type = "L" + }, + new + { + Id = "ong", + ReferenceName = "Olo", + Scope = "I", + Type = "L" + }, + new + { + Id = "oni", + ReferenceName = "Onin", + Scope = "I", + Type = "L" + }, + new + { + Id = "onj", + ReferenceName = "Onjob", + Scope = "I", + Type = "L" + }, + new + { + Id = "onk", + ReferenceName = "Kabore One", + Scope = "I", + Type = "L" + }, + new + { + Id = "onn", + ReferenceName = "Onobasulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ono", + ReferenceName = "Onondaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "onp", + ReferenceName = "Sartang", + Scope = "I", + Type = "L" + }, + new + { + Id = "onr", + ReferenceName = "Northern One", + Scope = "I", + Type = "L" + }, + new + { + Id = "ons", + ReferenceName = "Ono", + Scope = "I", + Type = "L" + }, + new + { + Id = "ont", + ReferenceName = "Ontenu", + Scope = "I", + Type = "L" + }, + new + { + Id = "onu", + ReferenceName = "Unua", + Scope = "I", + Type = "L" + }, + new + { + Id = "onw", + ReferenceName = "Old Nubian", + Scope = "I", + Type = "H" + }, + new + { + Id = "onx", + ReferenceName = "Onin Based Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ood", + ReferenceName = "Tohono O'odham", + Scope = "I", + Type = "L" + }, + new + { + Id = "oog", + ReferenceName = "Ong", + Scope = "I", + Type = "L" + }, + new + { + Id = "oon", + ReferenceName = "Önge", + Scope = "I", + Type = "L" + }, + new + { + Id = "oor", + ReferenceName = "Oorlams", + Scope = "I", + Type = "L" + }, + new + { + Id = "oos", + ReferenceName = "Old Ossetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "opa", + ReferenceName = "Okpamheri", + Scope = "I", + Type = "L" + }, + new + { + Id = "opk", + ReferenceName = "Kopkaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "opm", + ReferenceName = "Oksapmin", + Scope = "I", + Type = "L" + }, + new + { + Id = "opo", + ReferenceName = "Opao", + Scope = "I", + Type = "L" + }, + new + { + Id = "opt", + ReferenceName = "Opata", + Scope = "I", + Type = "E" + }, + new + { + Id = "opy", + ReferenceName = "Ofayé", + Scope = "I", + Type = "L" + }, + new + { + Id = "ora", + ReferenceName = "Oroha", + Scope = "I", + Type = "L" + }, + new + { + Id = "orc", + ReferenceName = "Orma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ore", + ReferenceName = "Orejón", + Scope = "I", + Type = "L" + }, + new + { + Id = "org", + ReferenceName = "Oring", + Scope = "I", + Type = "L" + }, + new + { + Id = "orh", + ReferenceName = "Oroqen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ori", + Part1 = "or", + Part2B = "ori", + Part2T = "ori", + ReferenceName = "Oriya (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "orm", + Part1 = "om", + Part2B = "orm", + Part2T = "orm", + ReferenceName = "Oromo", + Scope = "M", + Type = "L" + }, + new + { + Id = "orn", + ReferenceName = "Orang Kanaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "oro", + ReferenceName = "Orokolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "orr", + ReferenceName = "Oruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ors", + ReferenceName = "Orang Seletar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ort", + ReferenceName = "Adivasi Oriya", + Scope = "I", + Type = "L" + }, + new + { + Id = "oru", + ReferenceName = "Ormuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "orv", + ReferenceName = "Old Russian", + Scope = "I", + Type = "H" + }, + new + { + Id = "orw", + ReferenceName = "Oro Win", + Scope = "I", + Type = "L" + }, + new + { + Id = "orx", + ReferenceName = "Oro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ory", + ReferenceName = "Odia", + Scope = "I", + Type = "L" + }, + new + { + Id = "orz", + ReferenceName = "Ormu", + Scope = "I", + Type = "L" + }, + new + { + Id = "osa", + Part2B = "osa", + Part2T = "osa", + ReferenceName = "Osage", + Scope = "I", + Type = "L" + }, + new + { + Id = "osc", + ReferenceName = "Oscan", + Scope = "I", + Type = "A" + }, + new + { + Id = "osi", + ReferenceName = "Osing", + Scope = "I", + Type = "L" + }, + new + { + Id = "oso", + ReferenceName = "Ososo", + Scope = "I", + Type = "L" + }, + new + { + Id = "osp", + ReferenceName = "Old Spanish", + Scope = "I", + Type = "H" + }, + new + { + Id = "oss", + Part1 = "os", + Part2B = "oss", + Part2T = "oss", + ReferenceName = "Ossetian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ost", + ReferenceName = "Osatu", + Scope = "I", + Type = "L" + }, + new + { + Id = "osu", + ReferenceName = "Southern One", + Scope = "I", + Type = "L" + }, + new + { + Id = "osx", + ReferenceName = "Old Saxon", + Scope = "I", + Type = "H" + }, + new + { + Id = "ota", + Part2B = "ota", + Part2T = "ota", + ReferenceName = "Ottoman Turkish (1500-1928)", + Scope = "I", + Type = "H" + }, + new + { + Id = "otb", + ReferenceName = "Old Tibetan", + Scope = "I", + Type = "H" + }, + new + { + Id = "otd", + ReferenceName = "Ot Danum", + Scope = "I", + Type = "L" + }, + new + { + Id = "ote", + ReferenceName = "Mezquital Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oti", + ReferenceName = "Oti", + Scope = "I", + Type = "E" + }, + new + { + Id = "otk", + ReferenceName = "Old Turkish", + Scope = "I", + Type = "H" + }, + new + { + Id = "otl", + ReferenceName = "Tilapa Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otm", + ReferenceName = "Eastern Highland Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otn", + ReferenceName = "Tenango Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otq", + ReferenceName = "Querétaro Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otr", + ReferenceName = "Otoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ots", + ReferenceName = "Estado de México Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ott", + ReferenceName = "Temoaya Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otu", + ReferenceName = "Otuke", + Scope = "I", + Type = "E" + }, + new + { + Id = "otw", + ReferenceName = "Ottawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "otx", + ReferenceName = "Texcatepec Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oty", + ReferenceName = "Old Tamil", + Scope = "I", + Type = "A" + }, + new + { + Id = "otz", + ReferenceName = "Ixtenco Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oua", + ReferenceName = "Tagargrent", + Scope = "I", + Type = "L" + }, + new + { + Id = "oub", + ReferenceName = "Glio-Oubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oue", + ReferenceName = "Oune", + Scope = "I", + Type = "L" + }, + new + { + Id = "oui", + ReferenceName = "Old Uighur", + Scope = "I", + Type = "H" + }, + new + { + Id = "oum", + ReferenceName = "Ouma", + Scope = "I", + Type = "E" + }, + new + { + Id = "ovd", + ReferenceName = "Elfdalian", + Scope = "I", + Type = "L" + }, + new + { + Id = "owi", + ReferenceName = "Owiniga", + Scope = "I", + Type = "L" + }, + new + { + Id = "owl", + ReferenceName = "Old Welsh", + Scope = "I", + Type = "H" + }, + new + { + Id = "oyb", + ReferenceName = "Oy", + Scope = "I", + Type = "L" + }, + new + { + Id = "oyd", + ReferenceName = "Oyda", + Scope = "I", + Type = "L" + }, + new + { + Id = "oym", + ReferenceName = "Wayampi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oyy", + ReferenceName = "Oya'oya", + Scope = "I", + Type = "L" + }, + new + { + Id = "ozm", + ReferenceName = "Koonzime", + Scope = "I", + Type = "L" + }, + new + { + Id = "pab", + ReferenceName = "Parecís", + Scope = "I", + Type = "L" + }, + new + { + Id = "pac", + ReferenceName = "Pacoh", + Scope = "I", + Type = "L" + }, + new + { + Id = "pad", + ReferenceName = "Paumarí", + Scope = "I", + Type = "L" + }, + new + { + Id = "pae", + ReferenceName = "Pagibete", + Scope = "I", + Type = "L" + }, + new + { + Id = "paf", + ReferenceName = "Paranawát", + Scope = "I", + Type = "E" + }, + new + { + Id = "pag", + Part2B = "pag", + Part2T = "pag", + ReferenceName = "Pangasinan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pah", + ReferenceName = "Tenharim", + Scope = "I", + Type = "L" + }, + new + { + Id = "pai", + ReferenceName = "Pe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pak", + ReferenceName = "Parakanã", + Scope = "I", + Type = "L" + }, + new + { + Id = "pal", + Part2B = "pal", + Part2T = "pal", + ReferenceName = "Pahlavi", + Scope = "I", + Type = "A" + }, + new + { + Id = "pam", + Part2B = "pam", + Part2T = "pam", + ReferenceName = "Pampanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "pan", + Part1 = "pa", + Part2B = "pan", + Part2T = "pan", + ReferenceName = "Panjabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pao", + ReferenceName = "Northern Paiute", + Scope = "I", + Type = "L" + }, + new + { + Id = "pap", + Part2B = "pap", + Part2T = "pap", + ReferenceName = "Papiamento", + Scope = "I", + Type = "L" + }, + new + { + Id = "paq", + ReferenceName = "Parya", + Scope = "I", + Type = "L" + }, + new + { + Id = "par", + ReferenceName = "Panamint", + Scope = "I", + Type = "L" + }, + new + { + Id = "pas", + ReferenceName = "Papasena", + Scope = "I", + Type = "L" + }, + new + { + Id = "pat", + ReferenceName = "Papitalai", + Scope = "I", + Type = "L" + }, + new + { + Id = "pau", + Part2B = "pau", + Part2T = "pau", + ReferenceName = "Palauan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pav", + ReferenceName = "Pakaásnovos", + Scope = "I", + Type = "L" + }, + new + { + Id = "paw", + ReferenceName = "Pawnee", + Scope = "I", + Type = "L" + }, + new + { + Id = "pax", + ReferenceName = "Pankararé", + Scope = "I", + Type = "E" + }, + new + { + Id = "pay", + ReferenceName = "Pech", + Scope = "I", + Type = "L" + }, + new + { + Id = "paz", + ReferenceName = "Pankararú", + Scope = "I", + Type = "E" + }, + new + { + Id = "pbb", + ReferenceName = "Páez", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbc", + ReferenceName = "Patamona", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbe", + ReferenceName = "Mezontla Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbf", + ReferenceName = "Coyotepec Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbg", + ReferenceName = "Paraujano", + Scope = "I", + Type = "E" + }, + new + { + Id = "pbh", + ReferenceName = "E'ñapa Woromaipu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbi", + ReferenceName = "Parkwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbl", + ReferenceName = "Mak (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbm", + ReferenceName = "Puebla Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbn", + ReferenceName = "Kpasam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbo", + ReferenceName = "Papel", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbp", + ReferenceName = "Badyara", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbr", + ReferenceName = "Pangwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbs", + ReferenceName = "Central Pame", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbt", + ReferenceName = "Southern Pashto", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbu", + ReferenceName = "Northern Pashto", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbv", + ReferenceName = "Pnar", + Scope = "I", + Type = "L" + }, + new + { + Id = "pby", + ReferenceName = "Pyu (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pca", + ReferenceName = "Santa Inés Ahuatempan Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcb", + ReferenceName = "Pear", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcc", + ReferenceName = "Bouyei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcd", + ReferenceName = "Picard", + Scope = "I", + Type = "L" + }, + new + { + Id = "pce", + ReferenceName = "Ruching Palaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcf", + ReferenceName = "Paliyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcg", + ReferenceName = "Paniya", + Scope = "I", + Type = "L" + }, + new + { + Id = "pch", + ReferenceName = "Pardhan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pci", + ReferenceName = "Duruwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcj", + ReferenceName = "Parenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "pck", + ReferenceName = "Paite Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcl", + ReferenceName = "Pardhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcm", + ReferenceName = "Nigerian Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcn", + ReferenceName = "Piti", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcp", + ReferenceName = "Pacahuara", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcw", + ReferenceName = "Pyapun", + Scope = "I", + Type = "L" + }, + new + { + Id = "pda", + ReferenceName = "Anam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdc", + ReferenceName = "Pennsylvania German", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdi", + ReferenceName = "Pa Di", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdn", + ReferenceName = "Podena", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdo", + ReferenceName = "Padoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdt", + ReferenceName = "Plautdietsch", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdu", + ReferenceName = "Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pea", + ReferenceName = "Peranakan Indonesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "peb", + ReferenceName = "Eastern Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ped", + ReferenceName = "Mala (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pee", + ReferenceName = "Taje", + Scope = "I", + Type = "L" + }, + new + { + Id = "pef", + ReferenceName = "Northeastern Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "peg", + ReferenceName = "Pengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "peh", + ReferenceName = "Bonan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pei", + ReferenceName = "Chichimeca-Jonaz", + Scope = "I", + Type = "L" + }, + new + { + Id = "pej", + ReferenceName = "Northern Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "pek", + ReferenceName = "Penchal", + Scope = "I", + Type = "L" + }, + new + { + Id = "pel", + ReferenceName = "Pekal", + Scope = "I", + Type = "L" + }, + new + { + Id = "pem", + ReferenceName = "Phende", + Scope = "I", + Type = "L" + }, + new + { + Id = "peo", + Part2B = "peo", + Part2T = "peo", + ReferenceName = "Old Persian (ca. 600-400 B.C.)", + Scope = "I", + Type = "H" + }, + new + { + Id = "pep", + ReferenceName = "Kunja", + Scope = "I", + Type = "L" + }, + new + { + Id = "peq", + ReferenceName = "Southern Pomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pes", + ReferenceName = "Iranian Persian", + Scope = "I", + Type = "L" + }, + new + { + Id = "pev", + ReferenceName = "Pémono", + Scope = "I", + Type = "L" + }, + new + { + Id = "pex", + ReferenceName = "Petats", + Scope = "I", + Type = "L" + }, + new + { + Id = "pey", + ReferenceName = "Petjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pez", + ReferenceName = "Eastern Penan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pfa", + ReferenceName = "Pááfang", + Scope = "I", + Type = "L" + }, + new + { + Id = "pfe", + ReferenceName = "Peere", + Scope = "I", + Type = "L" + }, + new + { + Id = "pfl", + ReferenceName = "Pfaelzisch", + Scope = "I", + Type = "L" + }, + new + { + Id = "pga", + ReferenceName = "Sudanese Creole Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgd", + ReferenceName = "Gāndhārī", + Scope = "I", + Type = "H" + }, + new + { + Id = "pgg", + ReferenceName = "Pangwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgi", + ReferenceName = "Pagi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgk", + ReferenceName = "Rerep", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgl", + ReferenceName = "Primitive Irish", + Scope = "I", + Type = "A" + }, + new + { + Id = "pgn", + ReferenceName = "Paelignian", + Scope = "I", + Type = "A" + }, + new + { + Id = "pgs", + ReferenceName = "Pangseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgu", + ReferenceName = "Pagu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgz", + ReferenceName = "Papua New Guinean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pha", + ReferenceName = "Pa-Hng", + Scope = "I", + Type = "L" + }, + new + { + Id = "phd", + ReferenceName = "Phudagi", + Scope = "I", + Type = "L" + }, + new + { + Id = "phg", + ReferenceName = "Phuong", + Scope = "I", + Type = "L" + }, + new + { + Id = "phh", + ReferenceName = "Phukha", + Scope = "I", + Type = "L" + }, + new + { + Id = "phk", + ReferenceName = "Phake", + Scope = "I", + Type = "L" + }, + new + { + Id = "phl", + ReferenceName = "Phalura", + Scope = "I", + Type = "L" + }, + new + { + Id = "phm", + ReferenceName = "Phimbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "phn", + Part2B = "phn", + Part2T = "phn", + ReferenceName = "Phoenician", + Scope = "I", + Type = "A" + }, + new + { + Id = "pho", + ReferenceName = "Phunoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "phq", + ReferenceName = "Phana'", + Scope = "I", + Type = "L" + }, + new + { + Id = "phr", + ReferenceName = "Pahari-Potwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "pht", + ReferenceName = "Phu Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "phu", + ReferenceName = "Phuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "phv", + ReferenceName = "Pahlavani", + Scope = "I", + Type = "L" + }, + new + { + Id = "phw", + ReferenceName = "Phangduwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "pia", + ReferenceName = "Pima Bajo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pib", + ReferenceName = "Yine", + Scope = "I", + Type = "L" + }, + new + { + Id = "pic", + ReferenceName = "Pinji", + Scope = "I", + Type = "L" + }, + new + { + Id = "pid", + ReferenceName = "Piaroa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pie", + ReferenceName = "Piro", + Scope = "I", + Type = "E" + }, + new + { + Id = "pif", + ReferenceName = "Pingelapese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pig", + ReferenceName = "Pisabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pih", + ReferenceName = "Pitcairn-Norfolk", + Scope = "I", + Type = "L" + }, + new + { + Id = "pii", + ReferenceName = "Pini", + Scope = "I", + Type = "L" + }, + new + { + Id = "pij", + ReferenceName = "Pijao", + Scope = "I", + Type = "E" + }, + new + { + Id = "pil", + ReferenceName = "Yom", + Scope = "I", + Type = "L" + }, + new + { + Id = "pim", + ReferenceName = "Powhatan", + Scope = "I", + Type = "E" + }, + new + { + Id = "pin", + ReferenceName = "Piame", + Scope = "I", + Type = "L" + }, + new + { + Id = "pio", + ReferenceName = "Piapoco", + Scope = "I", + Type = "L" + }, + new + { + Id = "pip", + ReferenceName = "Pero", + Scope = "I", + Type = "L" + }, + new + { + Id = "pir", + ReferenceName = "Piratapuyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pis", + ReferenceName = "Pijin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pit", + ReferenceName = "Pitta Pitta", + Scope = "I", + Type = "E" + }, + new + { + Id = "piu", + ReferenceName = "Pintupi-Luritja", + Scope = "I", + Type = "L" + }, + new + { + Id = "piv", + ReferenceName = "Pileni", + Scope = "I", + Type = "L" + }, + new + { + Id = "piw", + ReferenceName = "Pimbwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pix", + ReferenceName = "Piu", + Scope = "I", + Type = "L" + }, + new + { + Id = "piy", + ReferenceName = "Piya-Kwonci", + Scope = "I", + Type = "L" + }, + new + { + Id = "piz", + ReferenceName = "Pije", + Scope = "I", + Type = "L" + }, + new + { + Id = "pjt", + ReferenceName = "Pitjantjatjara", + Scope = "I", + Type = "L" + }, + new + { + Id = "pka", + ReferenceName = "Ardhamāgadhī Prākrit", + Scope = "I", + Type = "H" + }, + new + { + Id = "pkb", + ReferenceName = "Pokomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkc", + ReferenceName = "Paekche", + Scope = "I", + Type = "A" + }, + new + { + Id = "pkg", + ReferenceName = "Pak-Tong", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkh", + ReferenceName = "Pankhu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkn", + ReferenceName = "Pakanha", + Scope = "I", + Type = "L" + }, + new + { + Id = "pko", + ReferenceName = "Pökoot", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkp", + ReferenceName = "Pukapuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkr", + ReferenceName = "Attapady Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "pks", + ReferenceName = "Pakistan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkt", + ReferenceName = "Maleng", + Scope = "I", + Type = "L" + }, + new + { + Id = "pku", + ReferenceName = "Paku", + Scope = "I", + Type = "L" + }, + new + { + Id = "pla", + ReferenceName = "Miani", + Scope = "I", + Type = "L" + }, + new + { + Id = "plb", + ReferenceName = "Polonombauk", + Scope = "I", + Type = "L" + }, + new + { + Id = "plc", + ReferenceName = "Central Palawano", + Scope = "I", + Type = "L" + }, + new + { + Id = "pld", + ReferenceName = "Polari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ple", + ReferenceName = "Palu'e", + Scope = "I", + Type = "L" + }, + new + { + Id = "plg", + ReferenceName = "Pilagá", + Scope = "I", + Type = "L" + }, + new + { + Id = "plh", + ReferenceName = "Paulohi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pli", + Part1 = "pi", + Part2B = "pli", + Part2T = "pli", + ReferenceName = "Pali", + Scope = "I", + Type = "A" + }, + new + { + Id = "plj", + ReferenceName = "Polci", + Scope = "I", + Type = "L" + }, + new + { + Id = "plk", + ReferenceName = "Kohistani Shina", + Scope = "I", + Type = "L" + }, + new + { + Id = "pll", + ReferenceName = "Shwe Palaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "pln", + ReferenceName = "Palenquero", + Scope = "I", + Type = "L" + }, + new + { + Id = "plo", + ReferenceName = "Oluta Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "plp", + ReferenceName = "Palpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "plq", + ReferenceName = "Palaic", + Scope = "I", + Type = "A" + }, + new + { + Id = "plr", + ReferenceName = "Palaka Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pls", + ReferenceName = "San Marcos Tlacoyalco Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "plt", + ReferenceName = "Plateau Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "plu", + ReferenceName = "Palikúr", + Scope = "I", + Type = "L" + }, + new + { + Id = "plv", + ReferenceName = "Southwest Palawano", + Scope = "I", + Type = "L" + }, + new + { + Id = "plw", + ReferenceName = "Brooke's Point Palawano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ply", + ReferenceName = "Bolyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "plz", + ReferenceName = "Paluan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pma", + ReferenceName = "Paama", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmb", + ReferenceName = "Pambia", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmd", + ReferenceName = "Pallanganmiddang", + Scope = "I", + Type = "E" + }, + new + { + Id = "pme", + ReferenceName = "Pwaamei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmf", + ReferenceName = "Pamona", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmh", + ReferenceName = "Māhārāṣṭri Prākrit", + Scope = "I", + Type = "H" + }, + new + { + Id = "pmi", + ReferenceName = "Northern Pumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmj", + ReferenceName = "Southern Pumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmk", + ReferenceName = "Pamlico", + Scope = "I", + Type = "E" + }, + new + { + Id = "pml", + ReferenceName = "Lingua Franca", + Scope = "I", + Type = "E" + }, + new + { + Id = "pmm", + ReferenceName = "Pomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmn", + ReferenceName = "Pam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmo", + ReferenceName = "Pom", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmq", + ReferenceName = "Northern Pame", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmr", + ReferenceName = "Paynamar", + Scope = "I", + Type = "L" + }, + new + { + Id = "pms", + ReferenceName = "Piemontese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmt", + ReferenceName = "Tuamotuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmw", + ReferenceName = "Plains Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmx", + ReferenceName = "Poumei Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmy", + ReferenceName = "Papuan Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmz", + ReferenceName = "Southern Pame", + Scope = "I", + Type = "E" + }, + new + { + Id = "pna", + ReferenceName = "Punan Bah-Biau", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnb", + ReferenceName = "Western Panjabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnc", + ReferenceName = "Pannei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnd", + ReferenceName = "Mpinda", + Scope = "I", + Type = "L" + }, + new + { + Id = "pne", + ReferenceName = "Western Penan", + Scope = "I", + Type = "L" + }, + new + { + Id = "png", + ReferenceName = "Pongu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnh", + ReferenceName = "Penrhyn", + Scope = "I", + Type = "L" + }, + new + { + Id = "pni", + ReferenceName = "Aoheng", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnj", + ReferenceName = "Pinjarup", + Scope = "I", + Type = "E" + }, + new + { + Id = "pnk", + ReferenceName = "Paunaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnl", + ReferenceName = "Paleni", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnm", + ReferenceName = "Punan Batu 1", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnn", + ReferenceName = "Pinai-Hagahai", + Scope = "I", + Type = "L" + }, + new + { + Id = "pno", + ReferenceName = "Panobo", + Scope = "I", + Type = "E" + }, + new + { + Id = "pnp", + ReferenceName = "Pancana", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnq", + ReferenceName = "Pana (Burkina Faso)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnr", + ReferenceName = "Panim", + Scope = "I", + Type = "L" + }, + new + { + Id = "pns", + ReferenceName = "Ponosakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnt", + ReferenceName = "Pontic", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnu", + ReferenceName = "Jiongnai Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnv", + ReferenceName = "Pinigura", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnw", + ReferenceName = "Banyjima", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnx", + ReferenceName = "Phong-Kniang", + Scope = "I", + Type = "L" + }, + new + { + Id = "pny", + ReferenceName = "Pinyin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnz", + ReferenceName = "Pana (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "poc", + ReferenceName = "Poqomam", + Scope = "I", + Type = "L" + }, + new + { + Id = "poe", + ReferenceName = "San Juan Atzingo Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pof", + ReferenceName = "Poke", + Scope = "I", + Type = "L" + }, + new + { + Id = "pog", + ReferenceName = "Potiguára", + Scope = "I", + Type = "E" + }, + new + { + Id = "poh", + ReferenceName = "Poqomchi'", + Scope = "I", + Type = "L" + }, + new + { + Id = "poi", + ReferenceName = "Highland Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pok", + ReferenceName = "Pokangá", + Scope = "I", + Type = "L" + }, + new + { + Id = "pol", + Part1 = "pl", + Part2B = "pol", + Part2T = "pol", + ReferenceName = "Polish", + Scope = "I", + Type = "L" + }, + new + { + Id = "pom", + ReferenceName = "Southeastern Pomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pon", + Part2B = "pon", + Part2T = "pon", + ReferenceName = "Pohnpeian", + Scope = "I", + Type = "L" + }, + new + { + Id = "poo", + ReferenceName = "Central Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "pop", + ReferenceName = "Pwapwâ", + Scope = "I", + Type = "L" + }, + new + { + Id = "poq", + ReferenceName = "Texistepec Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "por", + Part1 = "pt", + Part2B = "por", + Part2T = "por", + ReferenceName = "Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pos", + ReferenceName = "Sayula Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pot", + ReferenceName = "Potawatomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pov", + ReferenceName = "Upper Guinea Crioulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pow", + ReferenceName = "San Felipe Otlaltepec Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pox", + ReferenceName = "Polabian", + Scope = "I", + Type = "E" + }, + new + { + Id = "poy", + ReferenceName = "Pogolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppe", + ReferenceName = "Papi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppi", + ReferenceName = "Paipai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppk", + ReferenceName = "Uma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppl", + ReferenceName = "Pipil", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppm", + ReferenceName = "Papuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppn", + ReferenceName = "Papapana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppo", + ReferenceName = "Folopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppp", + ReferenceName = "Pelende", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppq", + ReferenceName = "Pei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pps", + ReferenceName = "San Luís Temalacayuca Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppt", + ReferenceName = "Pare", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppu", + ReferenceName = "Papora", + Scope = "I", + Type = "E" + }, + new + { + Id = "pqa", + ReferenceName = "Pa'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "pqm", + ReferenceName = "Malecite-Passamaquoddy", + Scope = "I", + Type = "L" + }, + new + { + Id = "prc", + ReferenceName = "Parachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "prd", + ReferenceName = "Parsi-Dari", + Scope = "I", + Type = "L" + }, + new + { + Id = "pre", + ReferenceName = "Principense", + Scope = "I", + Type = "L" + }, + new + { + Id = "prf", + ReferenceName = "Paranan", + Scope = "I", + Type = "L" + }, + new + { + Id = "prg", + ReferenceName = "Prussian", + Scope = "I", + Type = "L" + }, + new + { + Id = "prh", + ReferenceName = "Porohanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "pri", + ReferenceName = "Paicî", + Scope = "I", + Type = "L" + }, + new + { + Id = "prk", + ReferenceName = "Parauk", + Scope = "I", + Type = "L" + }, + new + { + Id = "prl", + ReferenceName = "Peruvian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "prm", + ReferenceName = "Kibiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "prn", + ReferenceName = "Prasuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "pro", + Part2B = "pro", + Part2T = "pro", + ReferenceName = "Old Provençal (to 1500)", + Scope = "I", + Type = "H" + }, + new + { + Id = "prp", + ReferenceName = "Parsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "prq", + ReferenceName = "Ashéninka Perené", + Scope = "I", + Type = "L" + }, + new + { + Id = "prr", + ReferenceName = "Puri", + Scope = "I", + Type = "E" + }, + new + { + Id = "prs", + ReferenceName = "Dari", + Scope = "I", + Type = "L" + }, + new + { + Id = "prt", + ReferenceName = "Phai", + Scope = "I", + Type = "L" + }, + new + { + Id = "pru", + ReferenceName = "Puragi", + Scope = "I", + Type = "L" + }, + new + { + Id = "prw", + ReferenceName = "Parawen", + Scope = "I", + Type = "L" + }, + new + { + Id = "prx", + ReferenceName = "Purik", + Scope = "I", + Type = "L" + }, + new + { + Id = "prz", + ReferenceName = "Providencia Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psa", + ReferenceName = "Asue Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "psc", + ReferenceName = "Persian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psd", + ReferenceName = "Plains Indian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pse", + ReferenceName = "Central Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "psg", + ReferenceName = "Penang Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psh", + ReferenceName = "Southwest Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "psi", + ReferenceName = "Southeast Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "psl", + ReferenceName = "Puerto Rican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psm", + ReferenceName = "Pauserna", + Scope = "I", + Type = "E" + }, + new + { + Id = "psn", + ReferenceName = "Panasuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pso", + ReferenceName = "Polish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psp", + ReferenceName = "Philippine Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psq", + ReferenceName = "Pasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "psr", + ReferenceName = "Portuguese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pss", + ReferenceName = "Kaulong", + Scope = "I", + Type = "L" + }, + new + { + Id = "pst", + ReferenceName = "Central Pashto", + Scope = "I", + Type = "L" + }, + new + { + Id = "psu", + ReferenceName = "Sauraseni Prākrit", + Scope = "I", + Type = "H" + }, + new + { + Id = "psw", + ReferenceName = "Port Sandwich", + Scope = "I", + Type = "L" + }, + new + { + Id = "psy", + ReferenceName = "Piscataway", + Scope = "I", + Type = "E" + }, + new + { + Id = "pta", + ReferenceName = "Pai Tavytera", + Scope = "I", + Type = "L" + }, + new + { + Id = "pth", + ReferenceName = "Pataxó Hã-Ha-Hãe", + Scope = "I", + Type = "E" + }, + new + { + Id = "pti", + ReferenceName = "Pindiini", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptn", + ReferenceName = "Patani", + Scope = "I", + Type = "L" + }, + new + { + Id = "pto", + ReferenceName = "Zo'é", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptp", + ReferenceName = "Patep", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptq", + ReferenceName = "Pattapu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptr", + ReferenceName = "Piamatsina", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptt", + ReferenceName = "Enrekang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptu", + ReferenceName = "Bambam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptv", + ReferenceName = "Port Vato", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptw", + ReferenceName = "Pentlatch", + Scope = "I", + Type = "E" + }, + new + { + Id = "pty", + ReferenceName = "Pathiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "pua", + ReferenceName = "Western Highland Purepecha", + Scope = "I", + Type = "L" + }, + new + { + Id = "pub", + ReferenceName = "Purum", + Scope = "I", + Type = "L" + }, + new + { + Id = "puc", + ReferenceName = "Punan Merap", + Scope = "I", + Type = "L" + }, + new + { + Id = "pud", + ReferenceName = "Punan Aput", + Scope = "I", + Type = "L" + }, + new + { + Id = "pue", + ReferenceName = "Puelche", + Scope = "I", + Type = "E" + }, + new + { + Id = "puf", + ReferenceName = "Punan Merah", + Scope = "I", + Type = "L" + }, + new + { + Id = "pug", + ReferenceName = "Phuie", + Scope = "I", + Type = "L" + }, + new + { + Id = "pui", + ReferenceName = "Puinave", + Scope = "I", + Type = "L" + }, + new + { + Id = "puj", + ReferenceName = "Punan Tubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pum", + ReferenceName = "Puma", + Scope = "I", + Type = "L" + }, + new + { + Id = "puo", + ReferenceName = "Puoc", + Scope = "I", + Type = "L" + }, + new + { + Id = "pup", + ReferenceName = "Pulabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "puq", + ReferenceName = "Puquina", + Scope = "I", + Type = "E" + }, + new + { + Id = "pur", + ReferenceName = "Puruborá", + Scope = "I", + Type = "L" + }, + new + { + Id = "pus", + Part1 = "ps", + Part2B = "pus", + Part2T = "pus", + ReferenceName = "Pushto", + Scope = "M", + Type = "L" + }, + new + { + Id = "put", + ReferenceName = "Putoh", + Scope = "I", + Type = "L" + }, + new + { + Id = "puu", + ReferenceName = "Punu", + Scope = "I", + Type = "L" + }, + new + { + Id = "puw", + ReferenceName = "Puluwatese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pux", + ReferenceName = "Puare", + Scope = "I", + Type = "L" + }, + new + { + Id = "puy", + ReferenceName = "Purisimeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "pwa", + ReferenceName = "Pawaia", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwb", + ReferenceName = "Panawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwg", + ReferenceName = "Gapapaiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwi", + ReferenceName = "Patwin", + Scope = "I", + Type = "E" + }, + new + { + Id = "pwm", + ReferenceName = "Molbog", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwn", + ReferenceName = "Paiwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwo", + ReferenceName = "Pwo Western Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwr", + ReferenceName = "Powari", + Scope = "I", + Type = "L" + }, + new + { + Id = "pww", + ReferenceName = "Pwo Northern Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pxm", + ReferenceName = "Quetzaltepec Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pye", + ReferenceName = "Pye Krumen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pym", + ReferenceName = "Fyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pyn", + ReferenceName = "Poyanáwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pys", + ReferenceName = "Paraguayan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pyu", + ReferenceName = "Puyuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "pyx", + ReferenceName = "Pyu (Myanmar)", + Scope = "I", + Type = "A" + }, + new + { + Id = "pyy", + ReferenceName = "Pyen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pzn", + ReferenceName = "Para Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "qua", + ReferenceName = "Quapaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "qub", + ReferenceName = "Huallaga Huánuco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quc", + ReferenceName = "K'iche'", + Scope = "I", + Type = "L" + }, + new + { + Id = "qud", + ReferenceName = "Calderón Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "que", + Part1 = "qu", + Part2B = "que", + Part2T = "que", + ReferenceName = "Quechua", + Scope = "M", + Type = "L" + }, + new + { + Id = "quf", + ReferenceName = "Lambayeque Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qug", + ReferenceName = "Chimborazo Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quh", + ReferenceName = "South Bolivian Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qui", + ReferenceName = "Quileute", + Scope = "I", + Type = "L" + }, + new + { + Id = "quk", + ReferenceName = "Chachapoyas Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qul", + ReferenceName = "North Bolivian Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qum", + ReferenceName = "Sipacapense", + Scope = "I", + Type = "L" + }, + new + { + Id = "qun", + ReferenceName = "Quinault", + Scope = "I", + Type = "E" + }, + new + { + Id = "qup", + ReferenceName = "Southern Pastaza Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quq", + ReferenceName = "Quinqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "qur", + ReferenceName = "Yanahuanca Pasco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qus", + ReferenceName = "Santiago del Estero Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quv", + ReferenceName = "Sacapulteco", + Scope = "I", + Type = "L" + }, + new + { + Id = "quw", + ReferenceName = "Tena Lowland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qux", + ReferenceName = "Yauyos Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quy", + ReferenceName = "Ayacucho Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quz", + ReferenceName = "Cusco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qva", + ReferenceName = "Ambo-Pasco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvc", + ReferenceName = "Cajamarca Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qve", + ReferenceName = "Eastern Apurímac Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvh", + ReferenceName = "Huamalíes-Dos de Mayo Huánuco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvi", + ReferenceName = "Imbabura Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvj", + ReferenceName = "Loja Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvl", + ReferenceName = "Cajatambo North Lima Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvm", + ReferenceName = "Margos-Yarowilca-Lauricocha Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvn", + ReferenceName = "North Junín Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvo", + ReferenceName = "Napo Lowland Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvp", + ReferenceName = "Pacaraos Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvs", + ReferenceName = "San Martín Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvw", + ReferenceName = "Huaylla Wanca Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvy", + ReferenceName = "Queyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvz", + ReferenceName = "Northern Pastaza Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwa", + ReferenceName = "Corongo Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwc", + ReferenceName = "Classical Quechua", + Scope = "I", + Type = "H" + }, + new + { + Id = "qwh", + ReferenceName = "Huaylas Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwm", + ReferenceName = "Kuman (Russia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "qws", + ReferenceName = "Sihuas Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwt", + ReferenceName = "Kwalhioqua-Tlatskanai", + Scope = "I", + Type = "E" + }, + new + { + Id = "qxa", + ReferenceName = "Chiquián Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxc", + ReferenceName = "Chincha Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxh", + ReferenceName = "Panao Huánuco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxl", + ReferenceName = "Salasaca Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxn", + ReferenceName = "Northern Conchucos Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxo", + ReferenceName = "Southern Conchucos Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxp", + ReferenceName = "Puno Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxq", + ReferenceName = "Qashqa'i", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxr", + ReferenceName = "Cañar Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxs", + ReferenceName = "Southern Qiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxt", + ReferenceName = "Santa Ana de Tusi Pasco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxu", + ReferenceName = "Arequipa-La Unión Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxw", + ReferenceName = "Jauja Wanca Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qya", + ReferenceName = "Quenya", + Scope = "I", + Type = "C" + }, + new + { + Id = "qyp", + ReferenceName = "Quiripi", + Scope = "I", + Type = "E" + }, + new + { + Id = "raa", + ReferenceName = "Dungmali", + Scope = "I", + Type = "L" + }, + new + { + Id = "rab", + ReferenceName = "Camling", + Scope = "I", + Type = "L" + }, + new + { + Id = "rac", + ReferenceName = "Rasawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rad", + ReferenceName = "Rade", + Scope = "I", + Type = "L" + }, + new + { + Id = "raf", + ReferenceName = "Western Meohang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rag", + ReferenceName = "Logooli", + Scope = "I", + Type = "L" + }, + new + { + Id = "rah", + ReferenceName = "Rabha", + Scope = "I", + Type = "L" + }, + new + { + Id = "rai", + ReferenceName = "Ramoaaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "raj", + Part2B = "raj", + Part2T = "raj", + ReferenceName = "Rajasthani", + Scope = "M", + Type = "L" + }, + new + { + Id = "rak", + ReferenceName = "Tulu-Bohuai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ral", + ReferenceName = "Ralte", + Scope = "I", + Type = "L" + }, + new + { + Id = "ram", + ReferenceName = "Canela", + Scope = "I", + Type = "L" + }, + new + { + Id = "ran", + ReferenceName = "Riantana", + Scope = "I", + Type = "L" + }, + new + { + Id = "rao", + ReferenceName = "Rao", + Scope = "I", + Type = "L" + }, + new + { + Id = "rap", + Part2B = "rap", + Part2T = "rap", + ReferenceName = "Rapanui", + Scope = "I", + Type = "L" + }, + new + { + Id = "raq", + ReferenceName = "Saam", + Scope = "I", + Type = "L" + }, + new + { + Id = "rar", + Part2B = "rar", + Part2T = "rar", + ReferenceName = "Rarotongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ras", + ReferenceName = "Tegali", + Scope = "I", + Type = "L" + }, + new + { + Id = "rat", + ReferenceName = "Razajerdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rau", + ReferenceName = "Raute", + Scope = "I", + Type = "L" + }, + new + { + Id = "rav", + ReferenceName = "Sampang", + Scope = "I", + Type = "L" + }, + new + { + Id = "raw", + ReferenceName = "Rawang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rax", + ReferenceName = "Rang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ray", + ReferenceName = "Rapa", + Scope = "I", + Type = "L" + }, + new + { + Id = "raz", + ReferenceName = "Rahambuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbb", + ReferenceName = "Rumai Palaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbk", + ReferenceName = "Northern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbl", + ReferenceName = "Miraya Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbp", + ReferenceName = "Barababaraba", + Scope = "I", + Type = "E" + }, + new + { + Id = "rcf", + ReferenceName = "Réunion Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "rdb", + ReferenceName = "Rudbari", + Scope = "I", + Type = "L" + }, + new + { + Id = "rea", + ReferenceName = "Rerau", + Scope = "I", + Type = "L" + }, + new + { + Id = "reb", + ReferenceName = "Rembong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ree", + ReferenceName = "Rejang Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "reg", + ReferenceName = "Kara (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rei", + ReferenceName = "Reli", + Scope = "I", + Type = "L" + }, + new + { + Id = "rej", + ReferenceName = "Rejang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rel", + ReferenceName = "Rendille", + Scope = "I", + Type = "L" + }, + new + { + Id = "rem", + ReferenceName = "Remo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ren", + ReferenceName = "Rengao", + Scope = "I", + Type = "L" + }, + new + { + Id = "rer", + ReferenceName = "Rer Bare", + Scope = "I", + Type = "E" + }, + new + { + Id = "res", + ReferenceName = "Reshe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ret", + ReferenceName = "Retta", + Scope = "I", + Type = "L" + }, + new + { + Id = "rey", + ReferenceName = "Reyesano", + Scope = "I", + Type = "L" + }, + new + { + Id = "rga", + ReferenceName = "Roria", + Scope = "I", + Type = "L" + }, + new + { + Id = "rge", + ReferenceName = "Romano-Greek", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgk", + ReferenceName = "Rangkas", + Scope = "I", + Type = "E" + }, + new + { + Id = "rgn", + ReferenceName = "Romagnol", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgr", + ReferenceName = "Resígaro", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgs", + ReferenceName = "Southern Roglai", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgu", + ReferenceName = "Ringgou", + Scope = "I", + Type = "L" + }, + new + { + Id = "rhg", + ReferenceName = "Rohingya", + Scope = "I", + Type = "L" + }, + new + { + Id = "rhp", + ReferenceName = "Yahang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ria", + ReferenceName = "Riang (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rif", + ReferenceName = "Tarifit", + Scope = "I", + Type = "L" + }, + new + { + Id = "ril", + ReferenceName = "Riang Lang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rim", + ReferenceName = "Nyaturu", + Scope = "I", + Type = "L" + }, + new + { + Id = "rin", + ReferenceName = "Nungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "rir", + ReferenceName = "Ribun", + Scope = "I", + Type = "L" + }, + new + { + Id = "rit", + ReferenceName = "Ritharrngu", + Scope = "I", + Type = "L" + }, + new + { + Id = "riu", + ReferenceName = "Riung", + Scope = "I", + Type = "L" + }, + new + { + Id = "rjg", + ReferenceName = "Rajong", + Scope = "I", + Type = "L" + }, + new + { + Id = "rji", + ReferenceName = "Raji", + Scope = "I", + Type = "L" + }, + new + { + Id = "rjs", + ReferenceName = "Rajbanshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rka", + ReferenceName = "Kraol", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkb", + ReferenceName = "Rikbaktsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkh", + ReferenceName = "Rakahanga-Manihiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "rki", + ReferenceName = "Rakhine", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkm", + ReferenceName = "Marka", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkt", + ReferenceName = "Rangpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkw", + ReferenceName = "Arakwal", + Scope = "I", + Type = "E" + }, + new + { + Id = "rma", + ReferenceName = "Rama", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmb", + ReferenceName = "Rembarrnga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmc", + ReferenceName = "Carpathian Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmd", + ReferenceName = "Traveller Danish", + Scope = "I", + Type = "E" + }, + new + { + Id = "rme", + ReferenceName = "Angloromani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmf", + ReferenceName = "Kalo Finnish Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmg", + ReferenceName = "Traveller Norwegian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmh", + ReferenceName = "Murkim", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmi", + ReferenceName = "Lomavren", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmk", + ReferenceName = "Romkun", + Scope = "I", + Type = "L" + }, + new + { + Id = "rml", + ReferenceName = "Baltic Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmm", + ReferenceName = "Roma", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmn", + ReferenceName = "Balkan Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmo", + ReferenceName = "Sinte Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmp", + ReferenceName = "Rempi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmq", + ReferenceName = "Caló", + Scope = "I", + Type = "L" + }, + new + { + Id = "rms", + ReferenceName = "Romanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmt", + ReferenceName = "Domari", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmu", + ReferenceName = "Tavringer Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmv", + ReferenceName = "Romanova", + Scope = "I", + Type = "C" + }, + new + { + Id = "rmw", + ReferenceName = "Welsh Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmx", + ReferenceName = "Romam", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmy", + ReferenceName = "Vlax Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmz", + ReferenceName = "Marma", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnd", + ReferenceName = "Ruund", + Scope = "I", + Type = "L" + }, + new + { + Id = "rng", + ReferenceName = "Ronga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnl", + ReferenceName = "Ranglong", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnn", + ReferenceName = "Roon", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnp", + ReferenceName = "Rongpo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnr", + ReferenceName = "Nari Nari", + Scope = "I", + Type = "E" + }, + new + { + Id = "rnw", + ReferenceName = "Rungwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rob", + ReferenceName = "Tae'", + Scope = "I", + Type = "L" + }, + new + { + Id = "roc", + ReferenceName = "Cacgia Roglai", + Scope = "I", + Type = "L" + }, + new + { + Id = "rod", + ReferenceName = "Rogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "roe", + ReferenceName = "Ronji", + Scope = "I", + Type = "L" + }, + new + { + Id = "rof", + ReferenceName = "Rombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rog", + ReferenceName = "Northern Roglai", + Scope = "I", + Type = "L" + }, + new + { + Id = "roh", + Part1 = "rm", + Part2B = "roh", + Part2T = "roh", + ReferenceName = "Romansh", + Scope = "I", + Type = "L" + }, + new + { + Id = "rol", + ReferenceName = "Romblomanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "rom", + Part2B = "rom", + Part2T = "rom", + ReferenceName = "Romany", + Scope = "M", + Type = "L" + }, + new + { + Id = "ron", + Part1 = "ro", + Part2B = "rum", + Part2T = "ron", + ReferenceName = "Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "roo", + ReferenceName = "Rotokas", + Scope = "I", + Type = "L" + }, + new + { + Id = "rop", + ReferenceName = "Kriol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ror", + ReferenceName = "Rongga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rou", + ReferenceName = "Runga", + Scope = "I", + Type = "L" + }, + new + { + Id = "row", + ReferenceName = "Dela-Oenale", + Scope = "I", + Type = "L" + }, + new + { + Id = "rpn", + ReferenceName = "Repanbitip", + Scope = "I", + Type = "L" + }, + new + { + Id = "rpt", + ReferenceName = "Rapting", + Scope = "I", + Type = "L" + }, + new + { + Id = "rri", + ReferenceName = "Ririo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rro", + ReferenceName = "Waima", + Scope = "I", + Type = "L" + }, + new + { + Id = "rrt", + ReferenceName = "Arritinngithigh", + Scope = "I", + Type = "E" + }, + new + { + Id = "rsb", + ReferenceName = "Romano-Serbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rsl", + ReferenceName = "Russian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "rsm", + ReferenceName = "Miriwoong Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "rtc", + ReferenceName = "Rungtu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "rth", + ReferenceName = "Ratahan", + Scope = "I", + Type = "L" + }, + new + { + Id = "rtm", + ReferenceName = "Rotuman", + Scope = "I", + Type = "L" + }, + new + { + Id = "rts", + ReferenceName = "Yurats", + Scope = "I", + Type = "E" + }, + new + { + Id = "rtw", + ReferenceName = "Rathawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rub", + ReferenceName = "Gungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruc", + ReferenceName = "Ruuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "rue", + ReferenceName = "Rusyn", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruf", + ReferenceName = "Luguru", + Scope = "I", + Type = "L" + }, + new + { + Id = "rug", + ReferenceName = "Roviana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruh", + ReferenceName = "Ruga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rui", + ReferenceName = "Rufiji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruk", + ReferenceName = "Che", + Scope = "I", + Type = "L" + }, + new + { + Id = "run", + Part1 = "rn", + Part2B = "run", + Part2T = "run", + ReferenceName = "Rundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruo", + ReferenceName = "Istro Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rup", + Part2B = "rup", + Part2T = "rup", + ReferenceName = "Macedo-Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruq", + ReferenceName = "Megleno Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rus", + Part1 = "ru", + Part2B = "rus", + Part2T = "rus", + ReferenceName = "Russian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rut", + ReferenceName = "Rutul", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruu", + ReferenceName = "Lanas Lobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruy", + ReferenceName = "Mala (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruz", + ReferenceName = "Ruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwa", + ReferenceName = "Rawo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwk", + ReferenceName = "Rwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwm", + ReferenceName = "Amba (Uganda)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwo", + ReferenceName = "Rawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwr", + ReferenceName = "Marwari (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rxd", + ReferenceName = "Ngardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rxw", + ReferenceName = "Karuwali", + Scope = "I", + Type = "E" + }, + new + { + Id = "ryn", + ReferenceName = "Northern Amami-Oshima", + Scope = "I", + Type = "L" + }, + new + { + Id = "rys", + ReferenceName = "Yaeyama", + Scope = "I", + Type = "L" + }, + new + { + Id = "ryu", + ReferenceName = "Central Okinawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "rzh", + ReferenceName = "Rāziḥī", + Scope = "I", + Type = "L" + }, + new + { + Id = "saa", + ReferenceName = "Saba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sab", + ReferenceName = "Buglere", + Scope = "I", + Type = "L" + }, + new + { + Id = "sac", + ReferenceName = "Meskwaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "sad", + Part2B = "sad", + Part2T = "sad", + ReferenceName = "Sandawe", + Scope = "I", + Type = "L" + }, + new + { + Id = "sae", + ReferenceName = "Sabanê", + Scope = "I", + Type = "L" + }, + new + { + Id = "saf", + ReferenceName = "Safaliba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sag", + Part1 = "sg", + Part2B = "sag", + Part2T = "sag", + ReferenceName = "Sango", + Scope = "I", + Type = "L" + }, + new + { + Id = "sah", + Part2B = "sah", + Part2T = "sah", + ReferenceName = "Yakut", + Scope = "I", + Type = "L" + }, + new + { + Id = "saj", + ReferenceName = "Sahu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sak", + ReferenceName = "Sake", + Scope = "I", + Type = "L" + }, + new + { + Id = "sam", + Part2B = "sam", + Part2T = "sam", + ReferenceName = "Samaritan Aramaic", + Scope = "I", + Type = "E" + }, + new + { + Id = "san", + Part1 = "sa", + Part2B = "san", + Part2T = "san", + ReferenceName = "Sanskrit", + Scope = "I", + Type = "A" + }, + new + { + Id = "sao", + ReferenceName = "Sause", + Scope = "I", + Type = "L" + }, + new + { + Id = "saq", + ReferenceName = "Samburu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sar", + ReferenceName = "Saraveca", + Scope = "I", + Type = "E" + }, + new + { + Id = "sas", + Part2B = "sas", + Part2T = "sas", + ReferenceName = "Sasak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sat", + Part2B = "sat", + Part2T = "sat", + ReferenceName = "Santali", + Scope = "I", + Type = "L" + }, + new + { + Id = "sau", + ReferenceName = "Saleman", + Scope = "I", + Type = "L" + }, + new + { + Id = "sav", + ReferenceName = "Saafi-Saafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "saw", + ReferenceName = "Sawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sax", + ReferenceName = "Sa", + Scope = "I", + Type = "L" + }, + new + { + Id = "say", + ReferenceName = "Saya", + Scope = "I", + Type = "L" + }, + new + { + Id = "saz", + ReferenceName = "Saurashtra", + Scope = "I", + Type = "L" + }, + new + { + Id = "sba", + ReferenceName = "Ngambay", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbb", + ReferenceName = "Simbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbc", + ReferenceName = "Kele (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbd", + ReferenceName = "Southern Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbe", + ReferenceName = "Saliba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbf", + ReferenceName = "Chabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbg", + ReferenceName = "Seget", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbh", + ReferenceName = "Sori-Harengan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbi", + ReferenceName = "Seti", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbj", + ReferenceName = "Surbakhal", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbk", + ReferenceName = "Safwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbl", + ReferenceName = "Botolan Sambal", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbm", + ReferenceName = "Sagala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbn", + ReferenceName = "Sindhi Bhil", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbo", + ReferenceName = "Sabüm", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbp", + ReferenceName = "Sangu (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbq", + ReferenceName = "Sileibi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbr", + ReferenceName = "Sembakung Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbs", + ReferenceName = "Subiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbt", + ReferenceName = "Kimki", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbu", + ReferenceName = "Stod Bhoti", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbv", + ReferenceName = "Sabine", + Scope = "I", + Type = "A" + }, + new + { + Id = "sbw", + ReferenceName = "Simba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbx", + ReferenceName = "Seberuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "sby", + ReferenceName = "Soli", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbz", + ReferenceName = "Sara Kaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "scb", + ReferenceName = "Chut", + Scope = "I", + Type = "L" + }, + new + { + Id = "sce", + ReferenceName = "Dongxiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "scf", + ReferenceName = "San Miguel Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "scg", + ReferenceName = "Sanggau", + Scope = "I", + Type = "L" + }, + new + { + Id = "sch", + ReferenceName = "Sakachep", + Scope = "I", + Type = "L" + }, + new + { + Id = "sci", + ReferenceName = "Sri Lankan Creole Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "sck", + ReferenceName = "Sadri", + Scope = "I", + Type = "L" + }, + new + { + Id = "scl", + ReferenceName = "Shina", + Scope = "I", + Type = "L" + }, + new + { + Id = "scn", + Part2B = "scn", + Part2T = "scn", + ReferenceName = "Sicilian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sco", + Part2B = "sco", + Part2T = "sco", + ReferenceName = "Scots", + Scope = "I", + Type = "L" + }, + new + { + Id = "scp", + ReferenceName = "Hyolmo", + Scope = "I", + Type = "L" + }, + new + { + Id = "scq", + ReferenceName = "Sa'och", + Scope = "I", + Type = "L" + }, + new + { + Id = "scs", + ReferenceName = "North Slavey", + Scope = "I", + Type = "L" + }, + new + { + Id = "sct", + ReferenceName = "Southern Katang", + Scope = "I", + Type = "L" + }, + new + { + Id = "scu", + ReferenceName = "Shumcho", + Scope = "I", + Type = "L" + }, + new + { + Id = "scv", + ReferenceName = "Sheni", + Scope = "I", + Type = "L" + }, + new + { + Id = "scw", + ReferenceName = "Sha", + Scope = "I", + Type = "L" + }, + new + { + Id = "scx", + ReferenceName = "Sicel", + Scope = "I", + Type = "A" + }, + new + { + Id = "sda", + ReferenceName = "Toraja-Sa'dan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdb", + ReferenceName = "Shabak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdc", + ReferenceName = "Sassarese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sde", + ReferenceName = "Surubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdf", + ReferenceName = "Sarli", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdg", + ReferenceName = "Savi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdh", + ReferenceName = "Southern Kurdish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdj", + ReferenceName = "Suundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdk", + ReferenceName = "Sos Kundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdl", + ReferenceName = "Saudi Arabian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdm", + ReferenceName = "Semandang", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdn", + ReferenceName = "Gallurese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdo", + ReferenceName = "Bukar-Sadung Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdp", + ReferenceName = "Sherdukpen", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdr", + ReferenceName = "Oraon Sadri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sds", + ReferenceName = "Sened", + Scope = "I", + Type = "E" + }, + new + { + Id = "sdt", + ReferenceName = "Shuadit", + Scope = "I", + Type = "E" + }, + new + { + Id = "sdu", + ReferenceName = "Sarudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdx", + ReferenceName = "Sibu Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdz", + ReferenceName = "Sallands", + Scope = "I", + Type = "L" + }, + new + { + Id = "sea", + ReferenceName = "Semai", + Scope = "I", + Type = "L" + }, + new + { + Id = "seb", + ReferenceName = "Shempire Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sec", + ReferenceName = "Sechelt", + Scope = "I", + Type = "L" + }, + new + { + Id = "sed", + ReferenceName = "Sedang", + Scope = "I", + Type = "L" + }, + new + { + Id = "see", + ReferenceName = "Seneca", + Scope = "I", + Type = "L" + }, + new + { + Id = "sef", + ReferenceName = "Cebaara Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "seg", + ReferenceName = "Segeju", + Scope = "I", + Type = "L" + }, + new + { + Id = "seh", + ReferenceName = "Sena", + Scope = "I", + Type = "L" + }, + new + { + Id = "sei", + ReferenceName = "Seri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sej", + ReferenceName = "Sene", + Scope = "I", + Type = "L" + }, + new + { + Id = "sek", + ReferenceName = "Sekani", + Scope = "I", + Type = "L" + }, + new + { + Id = "sel", + Part2B = "sel", + Part2T = "sel", + ReferenceName = "Selkup", + Scope = "I", + Type = "L" + }, + new + { + Id = "sen", + ReferenceName = "Nanerigé Sénoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "seo", + ReferenceName = "Suarmin", + Scope = "I", + Type = "L" + }, + new + { + Id = "sep", + ReferenceName = "Sìcìté Sénoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "seq", + ReferenceName = "Senara Sénoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ser", + ReferenceName = "Serrano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ses", + ReferenceName = "Koyraboro Senni Songhai", + Scope = "I", + Type = "L" + }, + new + { + Id = "set", + ReferenceName = "Sentani", + Scope = "I", + Type = "L" + }, + new + { + Id = "seu", + ReferenceName = "Serui-Laut", + Scope = "I", + Type = "L" + }, + new + { + Id = "sev", + ReferenceName = "Nyarafolo Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sew", + ReferenceName = "Sewa Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "sey", + ReferenceName = "Secoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "sez", + ReferenceName = "Senthang Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfb", + ReferenceName = "Langue des signes de Belgique Francophone", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfe", + ReferenceName = "Eastern Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfm", + ReferenceName = "Small Flowery Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfs", + ReferenceName = "South African Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfw", + ReferenceName = "Sehwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sga", + Part2B = "sga", + Part2T = "sga", + ReferenceName = "Old Irish (to 900)", + Scope = "I", + Type = "H" + }, + new + { + Id = "sgb", + ReferenceName = "Mag-antsi Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgc", + ReferenceName = "Kipsigis", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgd", + ReferenceName = "Surigaonon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sge", + ReferenceName = "Segai", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgg", + ReferenceName = "Swiss-German Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgh", + ReferenceName = "Shughni", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgi", + ReferenceName = "Suga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgj", + ReferenceName = "Surgujia", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgk", + ReferenceName = "Sangkong", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgm", + ReferenceName = "Singa", + Scope = "I", + Type = "E" + }, + new + { + Id = "sgp", + ReferenceName = "Singpho", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgr", + ReferenceName = "Sangisari", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgs", + ReferenceName = "Samogitian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgt", + ReferenceName = "Brokpake", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgu", + ReferenceName = "Salas", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgw", + ReferenceName = "Sebat Bet Gurage", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgx", + ReferenceName = "Sierra Leone Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgy", + ReferenceName = "Sanglechi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgz", + ReferenceName = "Sursurunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sha", + ReferenceName = "Shall-Zwall", + Scope = "I", + Type = "L" + }, + new + { + Id = "shb", + ReferenceName = "Ninam", + Scope = "I", + Type = "L" + }, + new + { + Id = "shc", + ReferenceName = "Sonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "shd", + ReferenceName = "Kundal Shahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "she", + ReferenceName = "Sheko", + Scope = "I", + Type = "L" + }, + new + { + Id = "shg", + ReferenceName = "Shua", + Scope = "I", + Type = "L" + }, + new + { + Id = "shh", + ReferenceName = "Shoshoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "shi", + ReferenceName = "Tachelhit", + Scope = "I", + Type = "L" + }, + new + { + Id = "shj", + ReferenceName = "Shatt", + Scope = "I", + Type = "L" + }, + new + { + Id = "shk", + ReferenceName = "Shilluk", + Scope = "I", + Type = "L" + }, + new + { + Id = "shl", + ReferenceName = "Shendu", + Scope = "I", + Type = "L" + }, + new + { + Id = "shm", + ReferenceName = "Shahrudi", + Scope = "I", + Type = "L" + }, + new + { + Id = "shn", + Part2B = "shn", + Part2T = "shn", + ReferenceName = "Shan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sho", + ReferenceName = "Shanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "shp", + ReferenceName = "Shipibo-Conibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "shq", + ReferenceName = "Sala", + Scope = "I", + Type = "L" + }, + new + { + Id = "shr", + ReferenceName = "Shi", + Scope = "I", + Type = "L" + }, + new + { + Id = "shs", + ReferenceName = "Shuswap", + Scope = "I", + Type = "L" + }, + new + { + Id = "sht", + ReferenceName = "Shasta", + Scope = "I", + Type = "E" + }, + new + { + Id = "shu", + ReferenceName = "Chadian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "shv", + ReferenceName = "Shehri", + Scope = "I", + Type = "L" + }, + new + { + Id = "shw", + ReferenceName = "Shwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "shx", + ReferenceName = "She", + Scope = "I", + Type = "L" + }, + new + { + Id = "shy", + ReferenceName = "Tachawit", + Scope = "I", + Type = "L" + }, + new + { + Id = "shz", + ReferenceName = "Syenara Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sia", + ReferenceName = "Akkala Sami", + Scope = "I", + Type = "E" + }, + new + { + Id = "sib", + ReferenceName = "Sebop", + Scope = "I", + Type = "L" + }, + new + { + Id = "sid", + Part2B = "sid", + Part2T = "sid", + ReferenceName = "Sidamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sie", + ReferenceName = "Simaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sif", + ReferenceName = "Siamou", + Scope = "I", + Type = "L" + }, + new + { + Id = "sig", + ReferenceName = "Paasaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "sih", + ReferenceName = "Zire", + Scope = "I", + Type = "L" + }, + new + { + Id = "sii", + ReferenceName = "Shom Peng", + Scope = "I", + Type = "L" + }, + new + { + Id = "sij", + ReferenceName = "Numbami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sik", + ReferenceName = "Sikiana", + Scope = "I", + Type = "L" + }, + new + { + Id = "sil", + ReferenceName = "Tumulung Sisaala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sim", + ReferenceName = "Mende (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sin", + Part1 = "si", + Part2B = "sin", + Part2T = "sin", + ReferenceName = "Sinhala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sip", + ReferenceName = "Sikkimese", + Scope = "I", + Type = "L" + }, + new + { + Id = "siq", + ReferenceName = "Sonia", + Scope = "I", + Type = "L" + }, + new + { + Id = "sir", + ReferenceName = "Siri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sis", + ReferenceName = "Siuslaw", + Scope = "I", + Type = "E" + }, + new + { + Id = "siu", + ReferenceName = "Sinagen", + Scope = "I", + Type = "L" + }, + new + { + Id = "siv", + ReferenceName = "Sumariup", + Scope = "I", + Type = "L" + }, + new + { + Id = "siw", + ReferenceName = "Siwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "six", + ReferenceName = "Sumau", + Scope = "I", + Type = "L" + }, + new + { + Id = "siy", + ReferenceName = "Sivandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "siz", + ReferenceName = "Siwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sja", + ReferenceName = "Epena", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjb", + ReferenceName = "Sajau Basap", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjd", + ReferenceName = "Kildin Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sje", + ReferenceName = "Pite Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjg", + ReferenceName = "Assangori", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjk", + ReferenceName = "Kemi Sami", + Scope = "I", + Type = "E" + }, + new + { + Id = "sjl", + ReferenceName = "Sajalong", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjm", + ReferenceName = "Mapun", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjn", + ReferenceName = "Sindarin", + Scope = "I", + Type = "C" + }, + new + { + Id = "sjo", + ReferenceName = "Xibe", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjp", + ReferenceName = "Surjapuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjr", + ReferenceName = "Siar-Lak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjs", + ReferenceName = "Senhaja De Srair", + Scope = "I", + Type = "E" + }, + new + { + Id = "sjt", + ReferenceName = "Ter Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sju", + ReferenceName = "Ume Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjw", + ReferenceName = "Shawnee", + Scope = "I", + Type = "L" + }, + new + { + Id = "ska", + ReferenceName = "Skagit", + Scope = "I", + Type = "L" + }, + new + { + Id = "skb", + ReferenceName = "Saek", + Scope = "I", + Type = "L" + }, + new + { + Id = "skc", + ReferenceName = "Ma Manda", + Scope = "I", + Type = "L" + }, + new + { + Id = "skd", + ReferenceName = "Southern Sierra Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "ske", + ReferenceName = "Seke (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "skf", + ReferenceName = "Sakirabiá", + Scope = "I", + Type = "L" + }, + new + { + Id = "skg", + ReferenceName = "Sakalava Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "skh", + ReferenceName = "Sikule", + Scope = "I", + Type = "L" + }, + new + { + Id = "ski", + ReferenceName = "Sika", + Scope = "I", + Type = "L" + }, + new + { + Id = "skj", + ReferenceName = "Seke (Nepal)", + Scope = "I", + Type = "L" + }, + new + { + Id = "skm", + ReferenceName = "Kutong", + Scope = "I", + Type = "L" + }, + new + { + Id = "skn", + ReferenceName = "Kolibugan Subanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sko", + ReferenceName = "Seko Tengah", + Scope = "I", + Type = "L" + }, + new + { + Id = "skp", + ReferenceName = "Sekapan", + Scope = "I", + Type = "L" + }, + new + { + Id = "skq", + ReferenceName = "Sininkere", + Scope = "I", + Type = "L" + }, + new + { + Id = "skr", + ReferenceName = "Saraiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "sks", + ReferenceName = "Maia", + Scope = "I", + Type = "L" + }, + new + { + Id = "skt", + ReferenceName = "Sakata", + Scope = "I", + Type = "L" + }, + new + { + Id = "sku", + ReferenceName = "Sakao", + Scope = "I", + Type = "L" + }, + new + { + Id = "skv", + ReferenceName = "Skou", + Scope = "I", + Type = "L" + }, + new + { + Id = "skw", + ReferenceName = "Skepi Creole Dutch", + Scope = "I", + Type = "E" + }, + new + { + Id = "skx", + ReferenceName = "Seko Padang", + Scope = "I", + Type = "L" + }, + new + { + Id = "sky", + ReferenceName = "Sikaiana", + Scope = "I", + Type = "L" + }, + new + { + Id = "skz", + ReferenceName = "Sekar", + Scope = "I", + Type = "L" + }, + new + { + Id = "slc", + ReferenceName = "Sáliba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sld", + ReferenceName = "Sissala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sle", + ReferenceName = "Sholaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "slf", + ReferenceName = "Swiss-Italian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "slg", + ReferenceName = "Selungai Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "slh", + ReferenceName = "Southern Puget Sound Salish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sli", + ReferenceName = "Lower Silesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "slj", + ReferenceName = "Salumá", + Scope = "I", + Type = "L" + }, + new + { + Id = "slk", + Part1 = "sk", + Part2B = "slo", + Part2T = "slk", + ReferenceName = "Slovak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sll", + ReferenceName = "Salt-Yui", + Scope = "I", + Type = "L" + }, + new + { + Id = "slm", + ReferenceName = "Pangutaran Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "sln", + ReferenceName = "Salinan", + Scope = "I", + Type = "E" + }, + new + { + Id = "slp", + ReferenceName = "Lamaholot", + Scope = "I", + Type = "L" + }, + new + { + Id = "slq", + ReferenceName = "Salchuq", + Scope = "I", + Type = "E" + }, + new + { + Id = "slr", + ReferenceName = "Salar", + Scope = "I", + Type = "L" + }, + new + { + Id = "sls", + ReferenceName = "Singapore Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "slt", + ReferenceName = "Sila", + Scope = "I", + Type = "L" + }, + new + { + Id = "slu", + ReferenceName = "Selaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "slv", + Part1 = "sl", + Part2B = "slv", + Part2T = "slv", + ReferenceName = "Slovenian", + Scope = "I", + Type = "L" + }, + new + { + Id = "slw", + ReferenceName = "Sialum", + Scope = "I", + Type = "L" + }, + new + { + Id = "slx", + ReferenceName = "Salampasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sly", + ReferenceName = "Selayar", + Scope = "I", + Type = "L" + }, + new + { + Id = "slz", + ReferenceName = "Ma'ya", + Scope = "I", + Type = "L" + }, + new + { + Id = "sma", + Part2B = "sma", + Part2T = "sma", + ReferenceName = "Southern Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smb", + ReferenceName = "Simbari", + Scope = "I", + Type = "L" + }, + new + { + Id = "smc", + ReferenceName = "Som", + Scope = "I", + Type = "E" + }, + new + { + Id = "smd", + ReferenceName = "Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "sme", + Part1 = "se", + Part2B = "sme", + Part2T = "sme", + ReferenceName = "Northern Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smf", + ReferenceName = "Auwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "smg", + ReferenceName = "Simbali", + Scope = "I", + Type = "L" + }, + new + { + Id = "smh", + ReferenceName = "Samei", + Scope = "I", + Type = "L" + }, + new + { + Id = "smj", + Part2B = "smj", + Part2T = "smj", + ReferenceName = "Lule Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smk", + ReferenceName = "Bolinao", + Scope = "I", + Type = "L" + }, + new + { + Id = "sml", + ReferenceName = "Central Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "smm", + ReferenceName = "Musasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "smn", + Part2B = "smn", + Part2T = "smn", + ReferenceName = "Inari Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smo", + Part1 = "sm", + Part2B = "smo", + Part2T = "smo", + ReferenceName = "Samoan", + Scope = "I", + Type = "L" + }, + new + { + Id = "smp", + ReferenceName = "Samaritan", + Scope = "I", + Type = "E" + }, + new + { + Id = "smq", + ReferenceName = "Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "smr", + ReferenceName = "Simeulue", + Scope = "I", + Type = "L" + }, + new + { + Id = "sms", + Part2B = "sms", + Part2T = "sms", + ReferenceName = "Skolt Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smt", + ReferenceName = "Simte", + Scope = "I", + Type = "L" + }, + new + { + Id = "smu", + ReferenceName = "Somray", + Scope = "I", + Type = "E" + }, + new + { + Id = "smv", + ReferenceName = "Samvedi", + Scope = "I", + Type = "L" + }, + new + { + Id = "smw", + ReferenceName = "Sumbawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "smx", + ReferenceName = "Samba", + Scope = "I", + Type = "L" + }, + new + { + Id = "smy", + ReferenceName = "Semnani", + Scope = "I", + Type = "L" + }, + new + { + Id = "smz", + ReferenceName = "Simeku", + Scope = "I", + Type = "L" + }, + new + { + Id = "sna", + Part1 = "sn", + Part2B = "sna", + Part2T = "sna", + ReferenceName = "Shona", + Scope = "I", + Type = "L" + }, + new + { + Id = "snb", + ReferenceName = "Sebuyau", + Scope = "I", + Type = "L" + }, + new + { + Id = "snc", + ReferenceName = "Sinaugoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "snd", + Part1 = "sd", + Part2B = "snd", + Part2T = "snd", + ReferenceName = "Sindhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sne", + ReferenceName = "Bau Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "snf", + ReferenceName = "Noon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sng", + ReferenceName = "Sanga (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sni", + ReferenceName = "Sensi", + Scope = "I", + Type = "E" + }, + new + { + Id = "snj", + ReferenceName = "Riverain Sango", + Scope = "I", + Type = "L" + }, + new + { + Id = "snk", + Part2B = "snk", + Part2T = "snk", + ReferenceName = "Soninke", + Scope = "I", + Type = "L" + }, + new + { + Id = "snl", + ReferenceName = "Sangil", + Scope = "I", + Type = "L" + }, + new + { + Id = "snm", + ReferenceName = "Southern Ma'di", + Scope = "I", + Type = "L" + }, + new + { + Id = "snn", + ReferenceName = "Siona", + Scope = "I", + Type = "L" + }, + new + { + Id = "sno", + ReferenceName = "Snohomish", + Scope = "I", + Type = "L" + }, + new + { + Id = "snp", + ReferenceName = "Siane", + Scope = "I", + Type = "L" + }, + new + { + Id = "snq", + ReferenceName = "Sangu (Gabon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "snr", + ReferenceName = "Sihan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sns", + ReferenceName = "South West Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "snu", + ReferenceName = "Senggi", + Scope = "I", + Type = "L" + }, + new + { + Id = "snv", + ReferenceName = "Sa'ban", + Scope = "I", + Type = "L" + }, + new + { + Id = "snw", + ReferenceName = "Selee", + Scope = "I", + Type = "L" + }, + new + { + Id = "snx", + ReferenceName = "Sam", + Scope = "I", + Type = "L" + }, + new + { + Id = "sny", + ReferenceName = "Saniyo-Hiyewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "snz", + ReferenceName = "Kou", + Scope = "I", + Type = "L" + }, + new + { + Id = "soa", + ReferenceName = "Thai Song", + Scope = "I", + Type = "L" + }, + new + { + Id = "sob", + ReferenceName = "Sobei", + Scope = "I", + Type = "L" + }, + new + { + Id = "soc", + ReferenceName = "So (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sod", + ReferenceName = "Songoora", + Scope = "I", + Type = "L" + }, + new + { + Id = "soe", + ReferenceName = "Songomeno", + Scope = "I", + Type = "L" + }, + new + { + Id = "sog", + Part2B = "sog", + Part2T = "sog", + ReferenceName = "Sogdian", + Scope = "I", + Type = "A" + }, + new + { + Id = "soh", + ReferenceName = "Aka", + Scope = "I", + Type = "L" + }, + new + { + Id = "soi", + ReferenceName = "Sonha", + Scope = "I", + Type = "L" + }, + new + { + Id = "soj", + ReferenceName = "Soi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sok", + ReferenceName = "Sokoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "sol", + ReferenceName = "Solos", + Scope = "I", + Type = "L" + }, + new + { + Id = "som", + Part1 = "so", + Part2B = "som", + Part2T = "som", + ReferenceName = "Somali", + Scope = "I", + Type = "L" + }, + new + { + Id = "soo", + ReferenceName = "Songo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sop", + ReferenceName = "Songe", + Scope = "I", + Type = "L" + }, + new + { + Id = "soq", + ReferenceName = "Kanasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sor", + ReferenceName = "Somrai", + Scope = "I", + Type = "L" + }, + new + { + Id = "sos", + ReferenceName = "Seeku", + Scope = "I", + Type = "L" + }, + new + { + Id = "sot", + Part1 = "st", + Part2B = "sot", + Part2T = "sot", + ReferenceName = "Southern Sotho", + Scope = "I", + Type = "L" + }, + new + { + Id = "sou", + ReferenceName = "Southern Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "sov", + ReferenceName = "Sonsorol", + Scope = "I", + Type = "L" + }, + new + { + Id = "sow", + ReferenceName = "Sowanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "sox", + ReferenceName = "Swo", + Scope = "I", + Type = "L" + }, + new + { + Id = "soy", + ReferenceName = "Miyobe", + Scope = "I", + Type = "L" + }, + new + { + Id = "soz", + ReferenceName = "Temi", + Scope = "I", + Type = "L" + }, + new + { + Id = "spa", + Part1 = "es", + Part2B = "spa", + Part2T = "spa", + ReferenceName = "Spanish", + Scope = "I", + Type = "L" + }, + new + { + Id = "spb", + ReferenceName = "Sepa (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "spc", + ReferenceName = "Sapé", + Scope = "I", + Type = "L" + }, + new + { + Id = "spd", + ReferenceName = "Saep", + Scope = "I", + Type = "L" + }, + new + { + Id = "spe", + ReferenceName = "Sepa (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "spg", + ReferenceName = "Sian", + Scope = "I", + Type = "L" + }, + new + { + Id = "spi", + ReferenceName = "Saponi", + Scope = "I", + Type = "L" + }, + new + { + Id = "spk", + ReferenceName = "Sengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "spl", + ReferenceName = "Selepet", + Scope = "I", + Type = "L" + }, + new + { + Id = "spm", + ReferenceName = "Akukem", + Scope = "I", + Type = "L" + }, + new + { + Id = "spn", + ReferenceName = "Sanapaná", + Scope = "I", + Type = "L" + }, + new + { + Id = "spo", + ReferenceName = "Spokane", + Scope = "I", + Type = "L" + }, + new + { + Id = "spp", + ReferenceName = "Supyire Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "spq", + ReferenceName = "Loreto-Ucayali Spanish", + Scope = "I", + Type = "L" + }, + new + { + Id = "spr", + ReferenceName = "Saparua", + Scope = "I", + Type = "L" + }, + new + { + Id = "sps", + ReferenceName = "Saposa", + Scope = "I", + Type = "L" + }, + new + { + Id = "spt", + ReferenceName = "Spiti Bhoti", + Scope = "I", + Type = "L" + }, + new + { + Id = "spu", + ReferenceName = "Sapuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "spv", + ReferenceName = "Sambalpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "spx", + ReferenceName = "South Picene", + Scope = "I", + Type = "A" + }, + new + { + Id = "spy", + ReferenceName = "Sabaot", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqa", + ReferenceName = "Shama-Sambuga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqh", + ReferenceName = "Shau", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqi", + Part1 = "sq", + Part2B = "alb", + Part2T = "sqi", + ReferenceName = "Albanian", + Scope = "M", + Type = "L" + }, + new + { + Id = "sqk", + ReferenceName = "Albanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqm", + ReferenceName = "Suma", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqn", + ReferenceName = "Susquehannock", + Scope = "I", + Type = "E" + }, + new + { + Id = "sqo", + ReferenceName = "Sorkhei", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqq", + ReferenceName = "Sou", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqr", + ReferenceName = "Siculo Arabic", + Scope = "I", + Type = "H" + }, + new + { + Id = "sqs", + ReferenceName = "Sri Lankan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqt", + ReferenceName = "Soqotri", + Scope = "I", + Type = "L" + }, + new + { + Id = "squ", + ReferenceName = "Squamish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sra", + ReferenceName = "Saruga", + Scope = "I", + Type = "L" + }, + new + { + Id = "srb", + ReferenceName = "Sora", + Scope = "I", + Type = "L" + }, + new + { + Id = "src", + ReferenceName = "Logudorese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "srd", + Part1 = "sc", + Part2B = "srd", + Part2T = "srd", + ReferenceName = "Sardinian", + Scope = "M", + Type = "L" + }, + new + { + Id = "sre", + ReferenceName = "Sara", + Scope = "I", + Type = "L" + }, + new + { + Id = "srf", + ReferenceName = "Nafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "srg", + ReferenceName = "Sulod", + Scope = "I", + Type = "L" + }, + new + { + Id = "srh", + ReferenceName = "Sarikoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "sri", + ReferenceName = "Siriano", + Scope = "I", + Type = "L" + }, + new + { + Id = "srk", + ReferenceName = "Serudung Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "srl", + ReferenceName = "Isirawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "srm", + ReferenceName = "Saramaccan", + Scope = "I", + Type = "L" + }, + new + { + Id = "srn", + Part2B = "srn", + Part2T = "srn", + ReferenceName = "Sranan Tongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sro", + ReferenceName = "Campidanese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "srp", + Part1 = "sr", + Part2B = "srp", + Part2T = "srp", + ReferenceName = "Serbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "srq", + ReferenceName = "Sirionó", + Scope = "I", + Type = "L" + }, + new + { + Id = "srr", + Part2B = "srr", + Part2T = "srr", + ReferenceName = "Serer", + Scope = "I", + Type = "L" + }, + new + { + Id = "srs", + ReferenceName = "Sarsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "srt", + ReferenceName = "Sauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sru", + ReferenceName = "Suruí", + Scope = "I", + Type = "L" + }, + new + { + Id = "srv", + ReferenceName = "Southern Sorsoganon", + Scope = "I", + Type = "L" + }, + new + { + Id = "srw", + ReferenceName = "Serua", + Scope = "I", + Type = "L" + }, + new + { + Id = "srx", + ReferenceName = "Sirmauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sry", + ReferenceName = "Sera", + Scope = "I", + Type = "L" + }, + new + { + Id = "srz", + ReferenceName = "Shahmirzadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssb", + ReferenceName = "Southern Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssc", + ReferenceName = "Suba-Simbiti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssd", + ReferenceName = "Siroi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sse", + ReferenceName = "Balangingi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssf", + ReferenceName = "Thao", + Scope = "I", + Type = "E" + }, + new + { + Id = "ssg", + ReferenceName = "Seimat", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssh", + ReferenceName = "Shihhi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssi", + ReferenceName = "Sansi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssj", + ReferenceName = "Sausi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssk", + ReferenceName = "Sunam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssl", + ReferenceName = "Western Sisaala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssm", + ReferenceName = "Semnam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssn", + ReferenceName = "Waata", + Scope = "I", + Type = "L" + }, + new + { + Id = "sso", + ReferenceName = "Sissano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssp", + ReferenceName = "Spanish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssq", + ReferenceName = "So'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssr", + ReferenceName = "Swiss-French Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sss", + ReferenceName = "Sô", + Scope = "I", + Type = "L" + }, + new + { + Id = "sst", + ReferenceName = "Sinasina", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssu", + ReferenceName = "Susuami", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssv", + ReferenceName = "Shark Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssw", + Part1 = "ss", + Part2B = "ssw", + Part2T = "ssw", + ReferenceName = "Swati", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssx", + ReferenceName = "Samberigi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssy", + ReferenceName = "Saho", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssz", + ReferenceName = "Sengseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "sta", + ReferenceName = "Settla", + Scope = "I", + Type = "L" + }, + new + { + Id = "stb", + ReferenceName = "Northern Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "std", + ReferenceName = "Sentinel", + Scope = "I", + Type = "L" + }, + new + { + Id = "ste", + ReferenceName = "Liana-Seti", + Scope = "I", + Type = "L" + }, + new + { + Id = "stf", + ReferenceName = "Seta", + Scope = "I", + Type = "L" + }, + new + { + Id = "stg", + ReferenceName = "Trieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "sth", + ReferenceName = "Shelta", + Scope = "I", + Type = "L" + }, + new + { + Id = "sti", + ReferenceName = "Bulo Stieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "stj", + ReferenceName = "Matya Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "stk", + ReferenceName = "Arammba", + Scope = "I", + Type = "L" + }, + new + { + Id = "stl", + ReferenceName = "Stellingwerfs", + Scope = "I", + Type = "L" + }, + new + { + Id = "stm", + ReferenceName = "Setaman", + Scope = "I", + Type = "L" + }, + new + { + Id = "stn", + ReferenceName = "Owa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sto", + ReferenceName = "Stoney", + Scope = "I", + Type = "L" + }, + new + { + Id = "stp", + ReferenceName = "Southeastern Tepehuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "stq", + ReferenceName = "Saterfriesisch", + Scope = "I", + Type = "L" + }, + new + { + Id = "str", + ReferenceName = "Straits Salish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sts", + ReferenceName = "Shumashti", + Scope = "I", + Type = "L" + }, + new + { + Id = "stt", + ReferenceName = "Budeh Stieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "stu", + ReferenceName = "Samtao", + Scope = "I", + Type = "L" + }, + new + { + Id = "stv", + ReferenceName = "Silt'e", + Scope = "I", + Type = "L" + }, + new + { + Id = "stw", + ReferenceName = "Satawalese", + Scope = "I", + Type = "L" + }, + new + { + Id = "sty", + ReferenceName = "Siberian Tatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "sua", + ReferenceName = "Sulka", + Scope = "I", + Type = "L" + }, + new + { + Id = "sub", + ReferenceName = "Suku", + Scope = "I", + Type = "L" + }, + new + { + Id = "suc", + ReferenceName = "Western Subanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sue", + ReferenceName = "Suena", + Scope = "I", + Type = "L" + }, + new + { + Id = "sug", + ReferenceName = "Suganga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sui", + ReferenceName = "Suki", + Scope = "I", + Type = "L" + }, + new + { + Id = "suj", + ReferenceName = "Shubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "suk", + Part2B = "suk", + Part2T = "suk", + ReferenceName = "Sukuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "sun", + Part1 = "su", + Part2B = "sun", + Part2T = "sun", + ReferenceName = "Sundanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "suq", + ReferenceName = "Suri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sur", + ReferenceName = "Mwaghavul", + Scope = "I", + Type = "L" + }, + new + { + Id = "sus", + Part2B = "sus", + Part2T = "sus", + ReferenceName = "Susu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sut", + ReferenceName = "Subtiaba", + Scope = "I", + Type = "E" + }, + new + { + Id = "suv", + ReferenceName = "Puroik", + Scope = "I", + Type = "L" + }, + new + { + Id = "suw", + ReferenceName = "Sumbwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sux", + Part2B = "sux", + Part2T = "sux", + ReferenceName = "Sumerian", + Scope = "I", + Type = "A" + }, + new + { + Id = "suy", + ReferenceName = "Suyá", + Scope = "I", + Type = "L" + }, + new + { + Id = "suz", + ReferenceName = "Sunwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "sva", + ReferenceName = "Svan", + Scope = "I", + Type = "L" + }, + new + { + Id = "svb", + ReferenceName = "Ulau-Suain", + Scope = "I", + Type = "L" + }, + new + { + Id = "svc", + ReferenceName = "Vincentian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "sve", + ReferenceName = "Serili", + Scope = "I", + Type = "L" + }, + new + { + Id = "svk", + ReferenceName = "Slovakian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "svm", + ReferenceName = "Slavomolisano", + Scope = "I", + Type = "L" + }, + new + { + Id = "svs", + ReferenceName = "Savosavo", + Scope = "I", + Type = "L" + }, + new + { + Id = "svx", + ReferenceName = "Skalvian", + Scope = "I", + Type = "H" + }, + new + { + Id = "swa", + Part1 = "sw", + Part2B = "swa", + Part2T = "swa", + ReferenceName = "Swahili (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "swb", + ReferenceName = "Maore Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "swc", + ReferenceName = "Congo Swahili", + Scope = "I", + Type = "L" + }, + new + { + Id = "swe", + Part1 = "sv", + Part2B = "swe", + Part2T = "swe", + ReferenceName = "Swedish", + Scope = "I", + Type = "L" + }, + new + { + Id = "swf", + ReferenceName = "Sere", + Scope = "I", + Type = "L" + }, + new + { + Id = "swg", + ReferenceName = "Swabian", + Scope = "I", + Type = "L" + }, + new + { + Id = "swh", + ReferenceName = "Swahili (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "swi", + ReferenceName = "Sui", + Scope = "I", + Type = "L" + }, + new + { + Id = "swj", + ReferenceName = "Sira", + Scope = "I", + Type = "L" + }, + new + { + Id = "swk", + ReferenceName = "Malawi Sena", + Scope = "I", + Type = "L" + }, + new + { + Id = "swl", + ReferenceName = "Swedish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "swm", + ReferenceName = "Samosa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swn", + ReferenceName = "Sawknah", + Scope = "I", + Type = "L" + }, + new + { + Id = "swo", + ReferenceName = "Shanenawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swp", + ReferenceName = "Suau", + Scope = "I", + Type = "L" + }, + new + { + Id = "swq", + ReferenceName = "Sharwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swr", + ReferenceName = "Saweru", + Scope = "I", + Type = "L" + }, + new + { + Id = "sws", + ReferenceName = "Seluwasan", + Scope = "I", + Type = "L" + }, + new + { + Id = "swt", + ReferenceName = "Sawila", + Scope = "I", + Type = "L" + }, + new + { + Id = "swu", + ReferenceName = "Suwawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swv", + ReferenceName = "Shekhawati", + Scope = "I", + Type = "L" + }, + new + { + Id = "sww", + ReferenceName = "Sowa", + Scope = "I", + Type = "E" + }, + new + { + Id = "swx", + ReferenceName = "Suruahá", + Scope = "I", + Type = "L" + }, + new + { + Id = "swy", + ReferenceName = "Sarua", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxb", + ReferenceName = "Suba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxc", + ReferenceName = "Sicanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "sxe", + ReferenceName = "Sighu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxg", + ReferenceName = "Shuhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxk", + ReferenceName = "Southern Kalapuya", + Scope = "I", + Type = "E" + }, + new + { + Id = "sxl", + ReferenceName = "Selian", + Scope = "I", + Type = "E" + }, + new + { + Id = "sxm", + ReferenceName = "Samre", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxn", + ReferenceName = "Sangir", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxo", + ReferenceName = "Sorothaptic", + Scope = "I", + Type = "A" + }, + new + { + Id = "sxr", + ReferenceName = "Saaroa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxs", + ReferenceName = "Sasaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxu", + ReferenceName = "Upper Saxon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxw", + ReferenceName = "Saxwe Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "sya", + ReferenceName = "Siang", + Scope = "I", + Type = "L" + }, + new + { + Id = "syb", + ReferenceName = "Central Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "syc", + Part2B = "syc", + Part2T = "syc", + ReferenceName = "Classical Syriac", + Scope = "I", + Type = "H" + }, + new + { + Id = "syi", + ReferenceName = "Seki", + Scope = "I", + Type = "L" + }, + new + { + Id = "syk", + ReferenceName = "Sukur", + Scope = "I", + Type = "L" + }, + new + { + Id = "syl", + ReferenceName = "Sylheti", + Scope = "I", + Type = "L" + }, + new + { + Id = "sym", + ReferenceName = "Maya Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "syn", + ReferenceName = "Senaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "syo", + ReferenceName = "Suoy", + Scope = "I", + Type = "L" + }, + new + { + Id = "syr", + Part2B = "syr", + Part2T = "syr", + ReferenceName = "Syriac", + Scope = "M", + Type = "L" + }, + new + { + Id = "sys", + ReferenceName = "Sinyar", + Scope = "I", + Type = "L" + }, + new + { + Id = "syw", + ReferenceName = "Kagate", + Scope = "I", + Type = "L" + }, + new + { + Id = "syx", + ReferenceName = "Samay", + Scope = "I", + Type = "L" + }, + new + { + Id = "syy", + ReferenceName = "Al-Sayyid Bedouin Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sza", + ReferenceName = "Semelai", + Scope = "I", + Type = "L" + }, + new + { + Id = "szb", + ReferenceName = "Ngalum", + Scope = "I", + Type = "L" + }, + new + { + Id = "szc", + ReferenceName = "Semaq Beri", + Scope = "I", + Type = "L" + }, + new + { + Id = "szd", + ReferenceName = "Seru", + Scope = "I", + Type = "E" + }, + new + { + Id = "sze", + ReferenceName = "Seze", + Scope = "I", + Type = "L" + }, + new + { + Id = "szg", + ReferenceName = "Sengele", + Scope = "I", + Type = "L" + }, + new + { + Id = "szl", + ReferenceName = "Silesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "szn", + ReferenceName = "Sula", + Scope = "I", + Type = "L" + }, + new + { + Id = "szp", + ReferenceName = "Suabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "szs", + ReferenceName = "Solomon Islands Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "szv", + ReferenceName = "Isu (Fako Division)", + Scope = "I", + Type = "L" + }, + new + { + Id = "szw", + ReferenceName = "Sawai", + Scope = "I", + Type = "L" + }, + new + { + Id = "szy", + ReferenceName = "Sakizaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "taa", + ReferenceName = "Lower Tanana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tab", + ReferenceName = "Tabassaran", + Scope = "I", + Type = "L" + }, + new + { + Id = "tac", + ReferenceName = "Lowland Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tad", + ReferenceName = "Tause", + Scope = "I", + Type = "L" + }, + new + { + Id = "tae", + ReferenceName = "Tariana", + Scope = "I", + Type = "L" + }, + new + { + Id = "taf", + ReferenceName = "Tapirapé", + Scope = "I", + Type = "L" + }, + new + { + Id = "tag", + ReferenceName = "Tagoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tah", + Part1 = "ty", + Part2B = "tah", + Part2T = "tah", + ReferenceName = "Tahitian", + Scope = "I", + Type = "L" + }, + new + { + Id = "taj", + ReferenceName = "Eastern Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tak", + ReferenceName = "Tala", + Scope = "I", + Type = "L" + }, + new + { + Id = "tal", + ReferenceName = "Tal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tam", + Part1 = "ta", + Part2B = "tam", + Part2T = "tam", + ReferenceName = "Tamil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tan", + ReferenceName = "Tangale", + Scope = "I", + Type = "L" + }, + new + { + Id = "tao", + ReferenceName = "Yami", + Scope = "I", + Type = "L" + }, + new + { + Id = "tap", + ReferenceName = "Taabwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "taq", + ReferenceName = "Tamasheq", + Scope = "I", + Type = "L" + }, + new + { + Id = "tar", + ReferenceName = "Central Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tas", + ReferenceName = "Tay Boi", + Scope = "I", + Type = "E" + }, + new + { + Id = "tat", + Part1 = "tt", + Part2B = "tat", + Part2T = "tat", + ReferenceName = "Tatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "tau", + ReferenceName = "Upper Tanana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tav", + ReferenceName = "Tatuyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "taw", + ReferenceName = "Tai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tax", + ReferenceName = "Tamki", + Scope = "I", + Type = "L" + }, + new + { + Id = "tay", + ReferenceName = "Atayal", + Scope = "I", + Type = "L" + }, + new + { + Id = "taz", + ReferenceName = "Tocho", + Scope = "I", + Type = "L" + }, + new + { + Id = "tba", + ReferenceName = "Aikanã", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbb", + ReferenceName = "Tapeba", + Scope = "I", + Type = "E" + }, + new + { + Id = "tbc", + ReferenceName = "Takia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbd", + ReferenceName = "Kaki Ae", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbe", + ReferenceName = "Tanimbili", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbf", + ReferenceName = "Mandara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbg", + ReferenceName = "North Tairora", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbh", + ReferenceName = "Dharawal", + Scope = "I", + Type = "E" + }, + new + { + Id = "tbi", + ReferenceName = "Gaam", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbj", + ReferenceName = "Tiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbk", + ReferenceName = "Calamian Tagbanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbl", + ReferenceName = "Tboli", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbm", + ReferenceName = "Tagbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbn", + ReferenceName = "Barro Negro Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbo", + ReferenceName = "Tawala", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbp", + ReferenceName = "Taworta", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbr", + ReferenceName = "Tumtum", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbs", + ReferenceName = "Tanguat", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbt", + ReferenceName = "Tembo (Kitembo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbu", + ReferenceName = "Tubar", + Scope = "I", + Type = "E" + }, + new + { + Id = "tbv", + ReferenceName = "Tobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbw", + ReferenceName = "Tagbanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbx", + ReferenceName = "Kapin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tby", + ReferenceName = "Tabaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbz", + ReferenceName = "Ditammari", + Scope = "I", + Type = "L" + }, + new + { + Id = "tca", + ReferenceName = "Ticuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcb", + ReferenceName = "Tanacross", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcc", + ReferenceName = "Datooga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcd", + ReferenceName = "Tafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tce", + ReferenceName = "Southern Tutchone", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcf", + ReferenceName = "Malinaltepec Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcg", + ReferenceName = "Tamagario", + Scope = "I", + Type = "L" + }, + new + { + Id = "tch", + ReferenceName = "Turks And Caicos Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "tci", + ReferenceName = "Wára", + Scope = "I", + Type = "L" + }, + new + { + Id = "tck", + ReferenceName = "Tchitchege", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcl", + ReferenceName = "Taman (Myanmar)", + Scope = "I", + Type = "E" + }, + new + { + Id = "tcm", + ReferenceName = "Tanahmerah", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcn", + ReferenceName = "Tichurong", + Scope = "I", + Type = "L" + }, + new + { + Id = "tco", + ReferenceName = "Taungyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcp", + ReferenceName = "Tawr Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcq", + ReferenceName = "Kaiy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcs", + ReferenceName = "Torres Strait Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "tct", + ReferenceName = "T'en", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcu", + ReferenceName = "Southeastern Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcw", + ReferenceName = "Tecpatlán Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcx", + ReferenceName = "Toda", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcy", + ReferenceName = "Tulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcz", + ReferenceName = "Thado Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tda", + ReferenceName = "Tagdal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdb", + ReferenceName = "Panchpargania", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdc", + ReferenceName = "Emberá-Tadó", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdd", + ReferenceName = "Tai Nüa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tde", + ReferenceName = "Tiranige Diga Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdf", + ReferenceName = "Talieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdg", + ReferenceName = "Western Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdh", + ReferenceName = "Thulung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdi", + ReferenceName = "Tomadino", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdj", + ReferenceName = "Tajio", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdk", + ReferenceName = "Tambas", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdl", + ReferenceName = "Sur", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdm", + ReferenceName = "Taruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdn", + ReferenceName = "Tondano", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdo", + ReferenceName = "Teme", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdq", + ReferenceName = "Tita", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdr", + ReferenceName = "Todrah", + Scope = "I", + Type = "L" + }, + new + { + Id = "tds", + ReferenceName = "Doutai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdt", + ReferenceName = "Tetun Dili", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdv", + ReferenceName = "Toro", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdx", + ReferenceName = "Tandroy-Mahafaly Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdy", + ReferenceName = "Tadyawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tea", + ReferenceName = "Temiar", + Scope = "I", + Type = "L" + }, + new + { + Id = "teb", + ReferenceName = "Tetete", + Scope = "I", + Type = "E" + }, + new + { + Id = "tec", + ReferenceName = "Terik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ted", + ReferenceName = "Tepo Krumen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tee", + ReferenceName = "Huehuetla Tepehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tef", + ReferenceName = "Teressa", + Scope = "I", + Type = "L" + }, + new + { + Id = "teg", + ReferenceName = "Teke-Tege", + Scope = "I", + Type = "L" + }, + new + { + Id = "teh", + ReferenceName = "Tehuelche", + Scope = "I", + Type = "L" + }, + new + { + Id = "tei", + ReferenceName = "Torricelli", + Scope = "I", + Type = "L" + }, + new + { + Id = "tek", + ReferenceName = "Ibali Teke", + Scope = "I", + Type = "L" + }, + new + { + Id = "tel", + Part1 = "te", + Part2B = "tel", + Part2T = "tel", + ReferenceName = "Telugu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tem", + Part2B = "tem", + Part2T = "tem", + ReferenceName = "Timne", + Scope = "I", + Type = "L" + }, + new + { + Id = "ten", + ReferenceName = "Tama (Colombia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "teo", + ReferenceName = "Teso", + Scope = "I", + Type = "L" + }, + new + { + Id = "tep", + ReferenceName = "Tepecano", + Scope = "I", + Type = "E" + }, + new + { + Id = "teq", + ReferenceName = "Temein", + Scope = "I", + Type = "L" + }, + new + { + Id = "ter", + Part2B = "ter", + Part2T = "ter", + ReferenceName = "Tereno", + Scope = "I", + Type = "L" + }, + new + { + Id = "tes", + ReferenceName = "Tengger", + Scope = "I", + Type = "L" + }, + new + { + Id = "tet", + Part2B = "tet", + Part2T = "tet", + ReferenceName = "Tetum", + Scope = "I", + Type = "L" + }, + new + { + Id = "teu", + ReferenceName = "Soo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tev", + ReferenceName = "Teor", + Scope = "I", + Type = "L" + }, + new + { + Id = "tew", + ReferenceName = "Tewa (USA)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tex", + ReferenceName = "Tennet", + Scope = "I", + Type = "L" + }, + new + { + Id = "tey", + ReferenceName = "Tulishi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tez", + ReferenceName = "Tetserret", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfi", + ReferenceName = "Tofin Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfn", + ReferenceName = "Tanaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfo", + ReferenceName = "Tefaro", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfr", + ReferenceName = "Teribe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tft", + ReferenceName = "Ternate", + Scope = "I", + Type = "L" + }, + new + { + Id = "tga", + ReferenceName = "Sagalla", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgb", + ReferenceName = "Tobilung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgc", + ReferenceName = "Tigak", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgd", + ReferenceName = "Ciwogai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tge", + ReferenceName = "Eastern Gorkha Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgf", + ReferenceName = "Chalikha", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgh", + ReferenceName = "Tobagonian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgi", + ReferenceName = "Lawunuia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgj", + ReferenceName = "Tagin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgk", + Part1 = "tg", + Part2B = "tgk", + Part2T = "tgk", + ReferenceName = "Tajik", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgl", + Part1 = "tl", + Part2B = "tgl", + Part2T = "tgl", + ReferenceName = "Tagalog", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgn", + ReferenceName = "Tandaganon", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgo", + ReferenceName = "Sudest", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgp", + ReferenceName = "Tangoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgq", + ReferenceName = "Tring", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgr", + ReferenceName = "Tareng", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgs", + ReferenceName = "Nume", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgt", + ReferenceName = "Central Tagbanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgu", + ReferenceName = "Tanggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgv", + ReferenceName = "Tingui-Boto", + Scope = "I", + Type = "E" + }, + new + { + Id = "tgw", + ReferenceName = "Tagwana Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgx", + ReferenceName = "Tagish", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgy", + ReferenceName = "Togoyo", + Scope = "I", + Type = "E" + }, + new + { + Id = "tgz", + ReferenceName = "Tagalaka", + Scope = "I", + Type = "E" + }, + new + { + Id = "tha", + Part1 = "th", + Part2B = "tha", + Part2T = "tha", + ReferenceName = "Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "thd", + ReferenceName = "Kuuk Thaayorre", + Scope = "I", + Type = "L" + }, + new + { + Id = "the", + ReferenceName = "Chitwania Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thf", + ReferenceName = "Thangmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "thh", + ReferenceName = "Northern Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "thi", + ReferenceName = "Tai Long", + Scope = "I", + Type = "L" + }, + new + { + Id = "thk", + ReferenceName = "Tharaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "thl", + ReferenceName = "Dangaura Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thm", + ReferenceName = "Aheu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thn", + ReferenceName = "Thachanadan", + Scope = "I", + Type = "L" + }, + new + { + Id = "thp", + ReferenceName = "Thompson", + Scope = "I", + Type = "L" + }, + new + { + Id = "thq", + ReferenceName = "Kochila Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thr", + ReferenceName = "Rana Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ths", + ReferenceName = "Thakali", + Scope = "I", + Type = "L" + }, + new + { + Id = "tht", + ReferenceName = "Tahltan", + Scope = "I", + Type = "L" + }, + new + { + Id = "thu", + ReferenceName = "Thuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "thv", + ReferenceName = "Tahaggart Tamahaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "thw", + ReferenceName = "Thudam", + Scope = "I", + Type = "L" + }, + new + { + Id = "thy", + ReferenceName = "Tha", + Scope = "I", + Type = "L" + }, + new + { + Id = "thz", + ReferenceName = "Tayart Tamajeq", + Scope = "I", + Type = "L" + }, + new + { + Id = "tia", + ReferenceName = "Tidikelt Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "tic", + ReferenceName = "Tira", + Scope = "I", + Type = "L" + }, + new + { + Id = "tif", + ReferenceName = "Tifal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tig", + Part2B = "tig", + Part2T = "tig", + ReferenceName = "Tigre", + Scope = "I", + Type = "L" + }, + new + { + Id = "tih", + ReferenceName = "Timugon Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "tii", + ReferenceName = "Tiene", + Scope = "I", + Type = "L" + }, + new + { + Id = "tij", + ReferenceName = "Tilung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tik", + ReferenceName = "Tikar", + Scope = "I", + Type = "L" + }, + new + { + Id = "til", + ReferenceName = "Tillamook", + Scope = "I", + Type = "E" + }, + new + { + Id = "tim", + ReferenceName = "Timbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tin", + ReferenceName = "Tindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tio", + ReferenceName = "Teop", + Scope = "I", + Type = "L" + }, + new + { + Id = "tip", + ReferenceName = "Trimuris", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiq", + ReferenceName = "Tiéfo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tir", + Part1 = "ti", + Part2B = "tir", + Part2T = "tir", + ReferenceName = "Tigrinya", + Scope = "I", + Type = "L" + }, + new + { + Id = "tis", + ReferenceName = "Masadiit Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "tit", + ReferenceName = "Tinigua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiu", + ReferenceName = "Adasen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiv", + Part2B = "tiv", + Part2T = "tiv", + ReferenceName = "Tiv", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiw", + ReferenceName = "Tiwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tix", + ReferenceName = "Southern Tiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiy", + ReferenceName = "Tiruray", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiz", + ReferenceName = "Tai Hongjin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tja", + ReferenceName = "Tajuasohn", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjg", + ReferenceName = "Tunjung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tji", + ReferenceName = "Northern Tujia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjj", + ReferenceName = "Tjungundji", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjl", + ReferenceName = "Tai Laing", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjm", + ReferenceName = "Timucua", + Scope = "I", + Type = "E" + }, + new + { + Id = "tjn", + ReferenceName = "Tonjon", + Scope = "I", + Type = "E" + }, + new + { + Id = "tjo", + ReferenceName = "Temacine Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjp", + ReferenceName = "Tjupany", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjs", + ReferenceName = "Southern Tujia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tju", + ReferenceName = "Tjurruru", + Scope = "I", + Type = "E" + }, + new + { + Id = "tjw", + ReferenceName = "Djabwurrung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tka", + ReferenceName = "Truká", + Scope = "I", + Type = "E" + }, + new + { + Id = "tkb", + ReferenceName = "Buksa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkd", + ReferenceName = "Tukudede", + Scope = "I", + Type = "L" + }, + new + { + Id = "tke", + ReferenceName = "Takwane", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkf", + ReferenceName = "Tukumanféd", + Scope = "I", + Type = "E" + }, + new + { + Id = "tkg", + ReferenceName = "Tesaka Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkl", + Part2B = "tkl", + Part2T = "tkl", + ReferenceName = "Tokelau", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkm", + ReferenceName = "Takelma", + Scope = "I", + Type = "E" + }, + new + { + Id = "tkn", + ReferenceName = "Toku-No-Shima", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkp", + ReferenceName = "Tikopia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkq", + ReferenceName = "Tee", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkr", + ReferenceName = "Tsakhur", + Scope = "I", + Type = "L" + }, + new + { + Id = "tks", + ReferenceName = "Takestani", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkt", + ReferenceName = "Kathoriya Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tku", + ReferenceName = "Upper Necaxa Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkv", + ReferenceName = "Mur Pano", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkw", + ReferenceName = "Teanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkx", + ReferenceName = "Tangko", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkz", + ReferenceName = "Takua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tla", + ReferenceName = "Southwestern Tepehuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlb", + ReferenceName = "Tobelo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlc", + ReferenceName = "Yecuatla Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tld", + ReferenceName = "Talaud", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlf", + ReferenceName = "Telefol", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlg", + ReferenceName = "Tofanma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlh", + Part2B = "tlh", + Part2T = "tlh", + ReferenceName = "Klingon", + Scope = "I", + Type = "C" + }, + new + { + Id = "tli", + Part2B = "tli", + Part2T = "tli", + ReferenceName = "Tlingit", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlj", + ReferenceName = "Talinga-Bwisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlk", + ReferenceName = "Taloki", + Scope = "I", + Type = "L" + }, + new + { + Id = "tll", + ReferenceName = "Tetela", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlm", + ReferenceName = "Tolomako", + Scope = "I", + Type = "L" + }, + new + { + Id = "tln", + ReferenceName = "Talondo'", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlo", + ReferenceName = "Talodi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlp", + ReferenceName = "Filomena Mata-Coahuitlán Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlq", + ReferenceName = "Tai Loi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlr", + ReferenceName = "Talise", + Scope = "I", + Type = "L" + }, + new + { + Id = "tls", + ReferenceName = "Tambotalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlt", + ReferenceName = "Sou Nama", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlu", + ReferenceName = "Tulehu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlv", + ReferenceName = "Taliabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlx", + ReferenceName = "Khehek", + Scope = "I", + Type = "L" + }, + new + { + Id = "tly", + ReferenceName = "Talysh", + Scope = "I", + Type = "L" + }, + new + { + Id = "tma", + ReferenceName = "Tama (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmb", + ReferenceName = "Katbol", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmc", + ReferenceName = "Tumak", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmd", + ReferenceName = "Haruai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tme", + ReferenceName = "Tremembé", + Scope = "I", + Type = "E" + }, + new + { + Id = "tmf", + ReferenceName = "Toba-Maskoy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmg", + ReferenceName = "Ternateño", + Scope = "I", + Type = "E" + }, + new + { + Id = "tmh", + Part2B = "tmh", + Part2T = "tmh", + ReferenceName = "Tamashek", + Scope = "M", + Type = "L" + }, + new + { + Id = "tmi", + ReferenceName = "Tutuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmj", + ReferenceName = "Samarokena", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmk", + ReferenceName = "Northwestern Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tml", + ReferenceName = "Tamnim Citak", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmm", + ReferenceName = "Tai Thanh", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmn", + ReferenceName = "Taman (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmo", + ReferenceName = "Temoq", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmq", + ReferenceName = "Tumleo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmr", + ReferenceName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)", + Scope = "I", + Type = "E" + }, + new + { + Id = "tms", + ReferenceName = "Tima", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmt", + ReferenceName = "Tasmate", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmu", + ReferenceName = "Iau", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmv", + ReferenceName = "Tembo (Motembo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmw", + ReferenceName = "Temuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmy", + ReferenceName = "Tami", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmz", + ReferenceName = "Tamanaku", + Scope = "I", + Type = "E" + }, + new + { + Id = "tna", + ReferenceName = "Tacana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnb", + ReferenceName = "Western Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnc", + ReferenceName = "Tanimuca-Retuarã", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnd", + ReferenceName = "Angosturas Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tng", + ReferenceName = "Tobanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnh", + ReferenceName = "Maiani", + Scope = "I", + Type = "L" + }, + new + { + Id = "tni", + ReferenceName = "Tandia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnk", + ReferenceName = "Kwamera", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnl", + ReferenceName = "Lenakel", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnm", + ReferenceName = "Tabla", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnn", + ReferenceName = "North Tanna", + Scope = "I", + Type = "L" + }, + new + { + Id = "tno", + ReferenceName = "Toromono", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnp", + ReferenceName = "Whitesands", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnq", + ReferenceName = "Taino", + Scope = "I", + Type = "E" + }, + new + { + Id = "tnr", + ReferenceName = "Ménik", + Scope = "I", + Type = "L" + }, + new + { + Id = "tns", + ReferenceName = "Tenis", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnt", + ReferenceName = "Tontemboan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnu", + ReferenceName = "Tay Khang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnv", + ReferenceName = "Tangchangya", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnw", + ReferenceName = "Tonsawang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnx", + ReferenceName = "Tanema", + Scope = "I", + Type = "L" + }, + new + { + Id = "tny", + ReferenceName = "Tongwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnz", + ReferenceName = "Ten'edn", + Scope = "I", + Type = "L" + }, + new + { + Id = "tob", + ReferenceName = "Toba", + Scope = "I", + Type = "L" + }, + new + { + Id = "toc", + ReferenceName = "Coyutla Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tod", + ReferenceName = "Toma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tof", + ReferenceName = "Gizrra", + Scope = "I", + Type = "L" + }, + new + { + Id = "tog", + Part2B = "tog", + Part2T = "tog", + ReferenceName = "Tonga (Nyasa)", + Scope = "I", + Type = "L" + }, + new + { + Id = "toh", + ReferenceName = "Gitonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "toi", + ReferenceName = "Tonga (Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "toj", + ReferenceName = "Tojolabal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tol", + ReferenceName = "Tolowa", + Scope = "I", + Type = "E" + }, + new + { + Id = "tom", + ReferenceName = "Tombulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ton", + Part1 = "to", + Part2B = "ton", + Part2T = "ton", + ReferenceName = "Tonga (Tonga Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "too", + ReferenceName = "Xicotepec De Juárez Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "top", + ReferenceName = "Papantla Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "toq", + ReferenceName = "Toposa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tor", + ReferenceName = "Togbo-Vara Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "tos", + ReferenceName = "Highland Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tou", + ReferenceName = "Tho", + Scope = "I", + Type = "L" + }, + new + { + Id = "tov", + ReferenceName = "Upper Taromi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tow", + ReferenceName = "Jemez", + Scope = "I", + Type = "L" + }, + new + { + Id = "tox", + ReferenceName = "Tobian", + Scope = "I", + Type = "L" + }, + new + { + Id = "toy", + ReferenceName = "Topoiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "toz", + ReferenceName = "To", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpa", + ReferenceName = "Taupota", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpc", + ReferenceName = "Azoyú Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpe", + ReferenceName = "Tippera", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpf", + ReferenceName = "Tarpia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpg", + ReferenceName = "Kula", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpi", + Part2B = "tpi", + Part2T = "tpi", + ReferenceName = "Tok Pisin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpj", + ReferenceName = "Tapieté", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpk", + ReferenceName = "Tupinikin", + Scope = "I", + Type = "E" + }, + new + { + Id = "tpl", + ReferenceName = "Tlacoapa Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpm", + ReferenceName = "Tampulma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpn", + ReferenceName = "Tupinambá", + Scope = "I", + Type = "E" + }, + new + { + Id = "tpo", + ReferenceName = "Tai Pao", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpp", + ReferenceName = "Pisaflores Tepehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpq", + ReferenceName = "Tukpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpr", + ReferenceName = "Tuparí", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpt", + ReferenceName = "Tlachichilco Tepehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpu", + ReferenceName = "Tampuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpv", + ReferenceName = "Tanapag", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpw", + ReferenceName = "Tupí", + Scope = "I", + Type = "E" + }, + new + { + Id = "tpx", + ReferenceName = "Acatepec Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpy", + ReferenceName = "Trumai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpz", + ReferenceName = "Tinputz", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqb", + ReferenceName = "Tembé", + Scope = "I", + Type = "L" + }, + new + { + Id = "tql", + ReferenceName = "Lehali", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqm", + ReferenceName = "Turumsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqn", + ReferenceName = "Tenino", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqo", + ReferenceName = "Toaripi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqp", + ReferenceName = "Tomoip", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqq", + ReferenceName = "Tunni", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqr", + ReferenceName = "Torona", + Scope = "I", + Type = "E" + }, + new + { + Id = "tqt", + ReferenceName = "Western Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqu", + ReferenceName = "Touo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqw", + ReferenceName = "Tonkawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "tra", + ReferenceName = "Tirahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "trb", + ReferenceName = "Terebu", + Scope = "I", + Type = "L" + }, + new + { + Id = "trc", + ReferenceName = "Copala Triqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "trd", + ReferenceName = "Turi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tre", + ReferenceName = "East Tarangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "trf", + ReferenceName = "Trinidadian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "trg", + ReferenceName = "Lishán Didán", + Scope = "I", + Type = "L" + }, + new + { + Id = "trh", + ReferenceName = "Turaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "tri", + ReferenceName = "Trió", + Scope = "I", + Type = "L" + }, + new + { + Id = "trj", + ReferenceName = "Toram", + Scope = "I", + Type = "L" + }, + new + { + Id = "trl", + ReferenceName = "Traveller Scottish", + Scope = "I", + Type = "L" + }, + new + { + Id = "trm", + ReferenceName = "Tregami", + Scope = "I", + Type = "L" + }, + new + { + Id = "trn", + ReferenceName = "Trinitario", + Scope = "I", + Type = "L" + }, + new + { + Id = "tro", + ReferenceName = "Tarao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "trp", + ReferenceName = "Kok Borok", + Scope = "I", + Type = "L" + }, + new + { + Id = "trq", + ReferenceName = "San Martín Itunyoso Triqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "trr", + ReferenceName = "Taushiro", + Scope = "I", + Type = "L" + }, + new + { + Id = "trs", + ReferenceName = "Chicahuaxtla Triqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "trt", + ReferenceName = "Tunggare", + Scope = "I", + Type = "L" + }, + new + { + Id = "tru", + ReferenceName = "Turoyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "trv", + ReferenceName = "Taroko", + Scope = "I", + Type = "L" + }, + new + { + Id = "trw", + ReferenceName = "Torwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "trx", + ReferenceName = "Tringgus-Sembaan Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "try", + ReferenceName = "Turung", + Scope = "I", + Type = "E" + }, + new + { + Id = "trz", + ReferenceName = "Torá", + Scope = "I", + Type = "E" + }, + new + { + Id = "tsa", + ReferenceName = "Tsaangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsb", + ReferenceName = "Tsamai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsc", + ReferenceName = "Tswa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsd", + ReferenceName = "Tsakonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tse", + ReferenceName = "Tunisian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsg", + ReferenceName = "Tausug", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsh", + ReferenceName = "Tsuvan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsi", + Part2B = "tsi", + Part2T = "tsi", + ReferenceName = "Tsimshian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsj", + ReferenceName = "Tshangla", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsk", + ReferenceName = "Tseku", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsl", + ReferenceName = "Ts'ün-Lao", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsm", + ReferenceName = "Turkish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsn", + Part1 = "tn", + Part2B = "tsn", + Part2T = "tsn", + ReferenceName = "Tswana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tso", + Part1 = "ts", + Part2B = "tso", + Part2T = "tso", + ReferenceName = "Tsonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsp", + ReferenceName = "Northern Toussian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsq", + ReferenceName = "Thai Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsr", + ReferenceName = "Akei", + Scope = "I", + Type = "L" + }, + new + { + Id = "tss", + ReferenceName = "Taiwan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tst", + ReferenceName = "Tondi Songway Kiini", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsu", + ReferenceName = "Tsou", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsv", + ReferenceName = "Tsogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsw", + ReferenceName = "Tsishingini", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsx", + ReferenceName = "Mubami", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsy", + ReferenceName = "Tebul Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsz", + ReferenceName = "Purepecha", + Scope = "I", + Type = "L" + }, + new + { + Id = "tta", + ReferenceName = "Tutelo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ttb", + ReferenceName = "Gaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttc", + ReferenceName = "Tektiteko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttd", + ReferenceName = "Tauade", + Scope = "I", + Type = "L" + }, + new + { + Id = "tte", + ReferenceName = "Bwanabwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttf", + ReferenceName = "Tuotomb", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttg", + ReferenceName = "Tutong", + Scope = "I", + Type = "L" + }, + new + { + Id = "tth", + ReferenceName = "Upper Ta'oih", + Scope = "I", + Type = "L" + }, + new + { + Id = "tti", + ReferenceName = "Tobati", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttj", + ReferenceName = "Tooro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttk", + ReferenceName = "Totoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttl", + ReferenceName = "Totela", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttm", + ReferenceName = "Northern Tutchone", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttn", + ReferenceName = "Towei", + Scope = "I", + Type = "L" + }, + new + { + Id = "tto", + ReferenceName = "Lower Ta'oih", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttp", + ReferenceName = "Tombelala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttq", + ReferenceName = "Tawallammat Tamajaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttr", + ReferenceName = "Tera", + Scope = "I", + Type = "L" + }, + new + { + Id = "tts", + ReferenceName = "Northeastern Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttt", + ReferenceName = "Muslim Tat", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttu", + ReferenceName = "Torau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttv", + ReferenceName = "Titan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttw", + ReferenceName = "Long Wat", + Scope = "I", + Type = "L" + }, + new + { + Id = "tty", + ReferenceName = "Sikaritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttz", + ReferenceName = "Tsum", + Scope = "I", + Type = "L" + }, + new + { + Id = "tua", + ReferenceName = "Wiarumus", + Scope = "I", + Type = "L" + }, + new + { + Id = "tub", + ReferenceName = "Tübatulabal", + Scope = "I", + Type = "E" + }, + new + { + Id = "tuc", + ReferenceName = "Mutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tud", + ReferenceName = "Tuxá", + Scope = "I", + Type = "E" + }, + new + { + Id = "tue", + ReferenceName = "Tuyuca", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuf", + ReferenceName = "Central Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tug", + ReferenceName = "Tunia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuh", + ReferenceName = "Taulil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tui", + ReferenceName = "Tupuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuj", + ReferenceName = "Tugutil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuk", + Part1 = "tk", + Part2B = "tuk", + Part2T = "tuk", + ReferenceName = "Turkmen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tul", + ReferenceName = "Tula", + Scope = "I", + Type = "L" + }, + new + { + Id = "tum", + Part2B = "tum", + Part2T = "tum", + ReferenceName = "Tumbuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "tun", + ReferenceName = "Tunica", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuo", + ReferenceName = "Tucano", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuq", + ReferenceName = "Tedaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tur", + Part1 = "tr", + Part2B = "tur", + Part2T = "tur", + ReferenceName = "Turkish", + Scope = "I", + Type = "L" + }, + new + { + Id = "tus", + ReferenceName = "Tuscarora", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuu", + ReferenceName = "Tututni", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuv", + ReferenceName = "Turkana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tux", + ReferenceName = "Tuxináwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "tuy", + ReferenceName = "Tugen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuz", + ReferenceName = "Turka", + Scope = "I", + Type = "L" + }, + new + { + Id = "tva", + ReferenceName = "Vaghua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvd", + ReferenceName = "Tsuvadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tve", + ReferenceName = "Te'un", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvk", + ReferenceName = "Southeast Ambrym", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvl", + Part2B = "tvl", + Part2T = "tvl", + ReferenceName = "Tuvalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvm", + ReferenceName = "Tela-Masbuar", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvn", + ReferenceName = "Tavoyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvo", + ReferenceName = "Tidore", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvs", + ReferenceName = "Taveta", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvt", + ReferenceName = "Tutsa Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvu", + ReferenceName = "Tunen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvw", + ReferenceName = "Sedoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvx", + ReferenceName = "Taivoan", + Scope = "I", + Type = "E" + }, + new + { + Id = "tvy", + ReferenceName = "Timor Pidgin", + Scope = "I", + Type = "E" + }, + new + { + Id = "twa", + ReferenceName = "Twana", + Scope = "I", + Type = "E" + }, + new + { + Id = "twb", + ReferenceName = "Western Tawbuid", + Scope = "I", + Type = "L" + }, + new + { + Id = "twc", + ReferenceName = "Teshenawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "twd", + ReferenceName = "Twents", + Scope = "I", + Type = "L" + }, + new + { + Id = "twe", + ReferenceName = "Tewa (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "twf", + ReferenceName = "Northern Tiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "twg", + ReferenceName = "Tereweng", + Scope = "I", + Type = "L" + }, + new + { + Id = "twh", + ReferenceName = "Tai Dón", + Scope = "I", + Type = "L" + }, + new + { + Id = "twi", + Part1 = "tw", + Part2B = "twi", + Part2T = "twi", + ReferenceName = "Twi", + Scope = "I", + Type = "L" + }, + new + { + Id = "twl", + ReferenceName = "Tawara", + Scope = "I", + Type = "L" + }, + new + { + Id = "twm", + ReferenceName = "Tawang Monpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "twn", + ReferenceName = "Twendi", + Scope = "I", + Type = "L" + }, + new + { + Id = "two", + ReferenceName = "Tswapong", + Scope = "I", + Type = "L" + }, + new + { + Id = "twp", + ReferenceName = "Ere", + Scope = "I", + Type = "L" + }, + new + { + Id = "twq", + ReferenceName = "Tasawaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "twr", + ReferenceName = "Southwestern Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "twt", + ReferenceName = "Turiwára", + Scope = "I", + Type = "E" + }, + new + { + Id = "twu", + ReferenceName = "Termanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tww", + ReferenceName = "Tuwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "twx", + ReferenceName = "Tewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "twy", + ReferenceName = "Tawoyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "txa", + ReferenceName = "Tombonuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "txb", + ReferenceName = "Tokharian B", + Scope = "I", + Type = "A" + }, + new + { + Id = "txc", + ReferenceName = "Tsetsaut", + Scope = "I", + Type = "E" + }, + new + { + Id = "txe", + ReferenceName = "Totoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "txg", + ReferenceName = "Tangut", + Scope = "I", + Type = "A" + }, + new + { + Id = "txh", + ReferenceName = "Thracian", + Scope = "I", + Type = "A" + }, + new + { + Id = "txi", + ReferenceName = "Ikpeng", + Scope = "I", + Type = "L" + }, + new + { + Id = "txj", + ReferenceName = "Tarjumo", + Scope = "I", + Type = "L" + }, + new + { + Id = "txm", + ReferenceName = "Tomini", + Scope = "I", + Type = "L" + }, + new + { + Id = "txn", + ReferenceName = "West Tarangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "txo", + ReferenceName = "Toto", + Scope = "I", + Type = "L" + }, + new + { + Id = "txq", + ReferenceName = "Tii", + Scope = "I", + Type = "L" + }, + new + { + Id = "txr", + ReferenceName = "Tartessian", + Scope = "I", + Type = "A" + }, + new + { + Id = "txs", + ReferenceName = "Tonsea", + Scope = "I", + Type = "L" + }, + new + { + Id = "txt", + ReferenceName = "Citak", + Scope = "I", + Type = "L" + }, + new + { + Id = "txu", + ReferenceName = "Kayapó", + Scope = "I", + Type = "L" + }, + new + { + Id = "txx", + ReferenceName = "Tatana", + Scope = "I", + Type = "L" + }, + new + { + Id = "txy", + ReferenceName = "Tanosy Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tya", + ReferenceName = "Tauya", + Scope = "I", + Type = "L" + }, + new + { + Id = "tye", + ReferenceName = "Kyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyh", + ReferenceName = "O'du", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyi", + ReferenceName = "Teke-Tsaayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyj", + ReferenceName = "Tai Do", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyl", + ReferenceName = "Thu Lao", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyn", + ReferenceName = "Kombai", + Scope = "I", + Type = "L" + }, + new + { + Id = "typ", + ReferenceName = "Thaypan", + Scope = "I", + Type = "E" + }, + new + { + Id = "tyr", + ReferenceName = "Tai Daeng", + Scope = "I", + Type = "L" + }, + new + { + Id = "tys", + ReferenceName = "Tày Sa Pa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyt", + ReferenceName = "Tày Tac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyu", + ReferenceName = "Kua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyv", + Part2B = "tyv", + Part2T = "tyv", + ReferenceName = "Tuvinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyx", + ReferenceName = "Teke-Tyee", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyz", + ReferenceName = "Tày", + Scope = "I", + Type = "L" + }, + new + { + Id = "tza", + ReferenceName = "Tanzanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzh", + ReferenceName = "Tzeltal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzj", + ReferenceName = "Tz'utujil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzl", + ReferenceName = "Talossan", + Scope = "I", + Type = "C" + }, + new + { + Id = "tzm", + ReferenceName = "Central Atlas Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzn", + ReferenceName = "Tugun", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzo", + ReferenceName = "Tzotzil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzx", + ReferenceName = "Tabriak", + Scope = "I", + Type = "L" + }, + new + { + Id = "uam", + ReferenceName = "Uamué", + Scope = "I", + Type = "E" + }, + new + { + Id = "uan", + ReferenceName = "Kuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "uar", + ReferenceName = "Tairuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "uba", + ReferenceName = "Ubang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubi", + ReferenceName = "Ubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubl", + ReferenceName = "Buhi'non Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubr", + ReferenceName = "Ubir", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubu", + ReferenceName = "Umbu-Ungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "uby", + ReferenceName = "Ubykh", + Scope = "I", + Type = "E" + }, + new + { + Id = "uda", + ReferenceName = "Uda", + Scope = "I", + Type = "L" + }, + new + { + Id = "ude", + ReferenceName = "Udihe", + Scope = "I", + Type = "L" + }, + new + { + Id = "udg", + ReferenceName = "Muduga", + Scope = "I", + Type = "L" + }, + new + { + Id = "udi", + ReferenceName = "Udi", + Scope = "I", + Type = "L" + }, + new + { + Id = "udj", + ReferenceName = "Ujir", + Scope = "I", + Type = "L" + }, + new + { + Id = "udl", + ReferenceName = "Wuzlam", + Scope = "I", + Type = "L" + }, + new + { + Id = "udm", + Part2B = "udm", + Part2T = "udm", + ReferenceName = "Udmurt", + Scope = "I", + Type = "L" + }, + new + { + Id = "udu", + ReferenceName = "Uduk", + Scope = "I", + Type = "L" + }, + new + { + Id = "ues", + ReferenceName = "Kioko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ufi", + ReferenceName = "Ufim", + Scope = "I", + Type = "L" + }, + new + { + Id = "uga", + Part2B = "uga", + Part2T = "uga", + ReferenceName = "Ugaritic", + Scope = "I", + Type = "A" + }, + new + { + Id = "ugb", + ReferenceName = "Kuku-Ugbanh", + Scope = "I", + Type = "E" + }, + new + { + Id = "uge", + ReferenceName = "Ughele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ugn", + ReferenceName = "Ugandan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ugo", + ReferenceName = "Ugong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ugy", + ReferenceName = "Uruguayan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "uha", + ReferenceName = "Uhami", + Scope = "I", + Type = "L" + }, + new + { + Id = "uhn", + ReferenceName = "Damal", + Scope = "I", + Type = "L" + }, + new + { + Id = "uig", + Part1 = "ug", + Part2B = "uig", + Part2T = "uig", + ReferenceName = "Uighur", + Scope = "I", + Type = "L" + }, + new + { + Id = "uis", + ReferenceName = "Uisai", + Scope = "I", + Type = "L" + }, + new + { + Id = "uiv", + ReferenceName = "Iyive", + Scope = "I", + Type = "L" + }, + new + { + Id = "uji", + ReferenceName = "Tanjijili", + Scope = "I", + Type = "L" + }, + new + { + Id = "uka", + ReferenceName = "Kaburi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukg", + ReferenceName = "Ukuriguma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukh", + ReferenceName = "Ukhwejo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukk", + ReferenceName = "Muak Sa-aak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukl", + ReferenceName = "Ukrainian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukp", + ReferenceName = "Ukpe-Bayobiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukq", + ReferenceName = "Ukwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukr", + Part1 = "uk", + Part2B = "ukr", + Part2T = "ukr", + ReferenceName = "Ukrainian", + Scope = "I", + Type = "L" + }, + new + { + Id = "uks", + ReferenceName = "Urubú-Kaapor Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "uku", + ReferenceName = "Ukue", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukw", + ReferenceName = "Ukwuani-Aboh-Ndoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "uky", + ReferenceName = "Kuuk-Yak", + Scope = "I", + Type = "E" + }, + new + { + Id = "ula", + ReferenceName = "Fungwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulb", + ReferenceName = "Ulukwumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulc", + ReferenceName = "Ulch", + Scope = "I", + Type = "L" + }, + new + { + Id = "ule", + ReferenceName = "Lule", + Scope = "I", + Type = "E" + }, + new + { + Id = "ulf", + ReferenceName = "Usku", + Scope = "I", + Type = "L" + }, + new + { + Id = "uli", + ReferenceName = "Ulithian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulk", + ReferenceName = "Meriam Mir", + Scope = "I", + Type = "L" + }, + new + { + Id = "ull", + ReferenceName = "Ullatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulm", + ReferenceName = "Ulumanda'", + Scope = "I", + Type = "L" + }, + new + { + Id = "uln", + ReferenceName = "Unserdeutsch", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulu", + ReferenceName = "Uma' Lung", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulw", + ReferenceName = "Ulwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "uma", + ReferenceName = "Umatilla", + Scope = "I", + Type = "L" + }, + new + { + Id = "umb", + Part2B = "umb", + Part2T = "umb", + ReferenceName = "Umbundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "umc", + ReferenceName = "Marrucinian", + Scope = "I", + Type = "A" + }, + new + { + Id = "umd", + ReferenceName = "Umbindhamu", + Scope = "I", + Type = "E" + }, + new + { + Id = "umg", + ReferenceName = "Morrobalama", + Scope = "I", + Type = "E" + }, + new + { + Id = "umi", + ReferenceName = "Ukit", + Scope = "I", + Type = "L" + }, + new + { + Id = "umm", + ReferenceName = "Umon", + Scope = "I", + Type = "L" + }, + new + { + Id = "umn", + ReferenceName = "Makyan Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "umo", + ReferenceName = "Umotína", + Scope = "I", + Type = "E" + }, + new + { + Id = "ump", + ReferenceName = "Umpila", + Scope = "I", + Type = "L" + }, + new + { + Id = "umr", + ReferenceName = "Umbugarla", + Scope = "I", + Type = "E" + }, + new + { + Id = "ums", + ReferenceName = "Pendau", + Scope = "I", + Type = "L" + }, + new + { + Id = "umu", + ReferenceName = "Munsee", + Scope = "I", + Type = "L" + }, + new + { + Id = "una", + ReferenceName = "North Watut", + Scope = "I", + Type = "L" + }, + new + { + Id = "und", + Part2B = "und", + Part2T = "und", + ReferenceName = "Undetermined", + Scope = "S", + Type = "S" + }, + new + { + Id = "une", + ReferenceName = "Uneme", + Scope = "I", + Type = "L" + }, + new + { + Id = "ung", + ReferenceName = "Ngarinyin", + Scope = "I", + Type = "L" + }, + new + { + Id = "unk", + ReferenceName = "Enawené-Nawé", + Scope = "I", + Type = "L" + }, + new + { + Id = "unm", + ReferenceName = "Unami", + Scope = "I", + Type = "E" + }, + new + { + Id = "unn", + ReferenceName = "Kurnai", + Scope = "I", + Type = "L" + }, + new + { + Id = "unr", + ReferenceName = "Mundari", + Scope = "I", + Type = "L" + }, + new + { + Id = "unu", + ReferenceName = "Unubahe", + Scope = "I", + Type = "L" + }, + new + { + Id = "unx", + ReferenceName = "Munda", + Scope = "I", + Type = "L" + }, + new + { + Id = "unz", + ReferenceName = "Unde Kaili", + Scope = "I", + Type = "L" + }, + new + { + Id = "upi", + ReferenceName = "Umeda", + Scope = "I", + Type = "L" + }, + new + { + Id = "upv", + ReferenceName = "Uripiv-Wala-Rano-Atchin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ura", + ReferenceName = "Urarina", + Scope = "I", + Type = "L" + }, + new + { + Id = "urb", + ReferenceName = "Urubú-Kaapor", + Scope = "I", + Type = "L" + }, + new + { + Id = "urc", + ReferenceName = "Urningangg", + Scope = "I", + Type = "E" + }, + new + { + Id = "urd", + Part1 = "ur", + Part2B = "urd", + Part2T = "urd", + ReferenceName = "Urdu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ure", + ReferenceName = "Uru", + Scope = "I", + Type = "L" + }, + new + { + Id = "urf", + ReferenceName = "Uradhi", + Scope = "I", + Type = "E" + }, + new + { + Id = "urg", + ReferenceName = "Urigina", + Scope = "I", + Type = "L" + }, + new + { + Id = "urh", + ReferenceName = "Urhobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "uri", + ReferenceName = "Urim", + Scope = "I", + Type = "L" + }, + new + { + Id = "urk", + ReferenceName = "Urak Lawoi'", + Scope = "I", + Type = "L" + }, + new + { + Id = "url", + ReferenceName = "Urali", + Scope = "I", + Type = "L" + }, + new + { + Id = "urm", + ReferenceName = "Urapmin", + Scope = "I", + Type = "L" + }, + new + { + Id = "urn", + ReferenceName = "Uruangnirin", + Scope = "I", + Type = "L" + }, + new + { + Id = "uro", + ReferenceName = "Ura (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "urp", + ReferenceName = "Uru-Pa-In", + Scope = "I", + Type = "L" + }, + new + { + Id = "urr", + ReferenceName = "Lehalurup", + Scope = "I", + Type = "L" + }, + new + { + Id = "urt", + ReferenceName = "Urat", + Scope = "I", + Type = "L" + }, + new + { + Id = "uru", + ReferenceName = "Urumi", + Scope = "I", + Type = "E" + }, + new + { + Id = "urv", + ReferenceName = "Uruava", + Scope = "I", + Type = "E" + }, + new + { + Id = "urw", + ReferenceName = "Sop", + Scope = "I", + Type = "L" + }, + new + { + Id = "urx", + ReferenceName = "Urimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ury", + ReferenceName = "Orya", + Scope = "I", + Type = "L" + }, + new + { + Id = "urz", + ReferenceName = "Uru-Eu-Wau-Wau", + Scope = "I", + Type = "L" + }, + new + { + Id = "usa", + ReferenceName = "Usarufa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ush", + ReferenceName = "Ushojo", + Scope = "I", + Type = "L" + }, + new + { + Id = "usi", + ReferenceName = "Usui", + Scope = "I", + Type = "L" + }, + new + { + Id = "usk", + ReferenceName = "Usaghade", + Scope = "I", + Type = "L" + }, + new + { + Id = "usp", + ReferenceName = "Uspanteco", + Scope = "I", + Type = "L" + }, + new + { + Id = "uss", + ReferenceName = "us-Saare", + Scope = "I", + Type = "L" + }, + new + { + Id = "usu", + ReferenceName = "Uya", + Scope = "I", + Type = "L" + }, + new + { + Id = "uta", + ReferenceName = "Otank", + Scope = "I", + Type = "L" + }, + new + { + Id = "ute", + ReferenceName = "Ute-Southern Paiute", + Scope = "I", + Type = "L" + }, + new + { + Id = "uth", + ReferenceName = "ut-Hun", + Scope = "I", + Type = "L" + }, + new + { + Id = "utp", + ReferenceName = "Amba (Solomon Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "utr", + ReferenceName = "Etulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "utu", + ReferenceName = "Utu", + Scope = "I", + Type = "L" + }, + new + { + Id = "uum", + ReferenceName = "Urum", + Scope = "I", + Type = "L" + }, + new + { + Id = "uun", + ReferenceName = "Kulon-Pazeh", + Scope = "I", + Type = "L" + }, + new + { + Id = "uur", + ReferenceName = "Ura (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "uuu", + ReferenceName = "U", + Scope = "I", + Type = "L" + }, + new + { + Id = "uve", + ReferenceName = "West Uvean", + Scope = "I", + Type = "L" + }, + new + { + Id = "uvh", + ReferenceName = "Uri", + Scope = "I", + Type = "L" + }, + new + { + Id = "uvl", + ReferenceName = "Lote", + Scope = "I", + Type = "L" + }, + new + { + Id = "uwa", + ReferenceName = "Kuku-Uwanh", + Scope = "I", + Type = "L" + }, + new + { + Id = "uya", + ReferenceName = "Doko-Uyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "uzb", + Part1 = "uz", + Part2B = "uzb", + Part2T = "uzb", + ReferenceName = "Uzbek", + Scope = "M", + Type = "L" + }, + new + { + Id = "uzn", + ReferenceName = "Northern Uzbek", + Scope = "I", + Type = "L" + }, + new + { + Id = "uzs", + ReferenceName = "Southern Uzbek", + Scope = "I", + Type = "L" + }, + new + { + Id = "vaa", + ReferenceName = "Vaagri Booli", + Scope = "I", + Type = "L" + }, + new + { + Id = "vae", + ReferenceName = "Vale", + Scope = "I", + Type = "L" + }, + new + { + Id = "vaf", + ReferenceName = "Vafsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "vag", + ReferenceName = "Vagla", + Scope = "I", + Type = "L" + }, + new + { + Id = "vah", + ReferenceName = "Varhadi-Nagpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "vai", + Part2B = "vai", + Part2T = "vai", + ReferenceName = "Vai", + Scope = "I", + Type = "L" + }, + new + { + Id = "vaj", + ReferenceName = "Sekele", + Scope = "I", + Type = "L" + }, + new + { + Id = "val", + ReferenceName = "Vehes", + Scope = "I", + Type = "L" + }, + new + { + Id = "vam", + ReferenceName = "Vanimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "van", + ReferenceName = "Valman", + Scope = "I", + Type = "L" + }, + new + { + Id = "vao", + ReferenceName = "Vao", + Scope = "I", + Type = "L" + }, + new + { + Id = "vap", + ReferenceName = "Vaiphei", + Scope = "I", + Type = "L" + }, + new + { + Id = "var", + ReferenceName = "Huarijio", + Scope = "I", + Type = "L" + }, + new + { + Id = "vas", + ReferenceName = "Vasavi", + Scope = "I", + Type = "L" + }, + new + { + Id = "vau", + ReferenceName = "Vanuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "vav", + ReferenceName = "Varli", + Scope = "I", + Type = "L" + }, + new + { + Id = "vay", + ReferenceName = "Wayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vbb", + ReferenceName = "Southeast Babar", + Scope = "I", + Type = "L" + }, + new + { + Id = "vbk", + ReferenceName = "Southwestern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "vec", + ReferenceName = "Venetian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ved", + ReferenceName = "Veddah", + Scope = "I", + Type = "L" + }, + new + { + Id = "vel", + ReferenceName = "Veluws", + Scope = "I", + Type = "L" + }, + new + { + Id = "vem", + ReferenceName = "Vemgo-Mabas", + Scope = "I", + Type = "L" + }, + new + { + Id = "ven", + Part1 = "ve", + Part2B = "ven", + Part2T = "ven", + ReferenceName = "Venda", + Scope = "I", + Type = "L" + }, + new + { + Id = "veo", + ReferenceName = "Ventureño", + Scope = "I", + Type = "E" + }, + new + { + Id = "vep", + ReferenceName = "Veps", + Scope = "I", + Type = "L" + }, + new + { + Id = "ver", + ReferenceName = "Mom Jango", + Scope = "I", + Type = "L" + }, + new + { + Id = "vgr", + ReferenceName = "Vaghri", + Scope = "I", + Type = "L" + }, + new + { + Id = "vgt", + ReferenceName = "Vlaamse Gebarentaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "vic", + ReferenceName = "Virgin Islands Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "vid", + ReferenceName = "Vidunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "vie", + Part1 = "vi", + Part2B = "vie", + Part2T = "vie", + ReferenceName = "Vietnamese", + Scope = "I", + Type = "L" + }, + new + { + Id = "vif", + ReferenceName = "Vili", + Scope = "I", + Type = "L" + }, + new + { + Id = "vig", + ReferenceName = "Viemo", + Scope = "I", + Type = "L" + }, + new + { + Id = "vil", + ReferenceName = "Vilela", + Scope = "I", + Type = "L" + }, + new + { + Id = "vin", + ReferenceName = "Vinza", + Scope = "I", + Type = "L" + }, + new + { + Id = "vis", + ReferenceName = "Vishavan", + Scope = "I", + Type = "L" + }, + new + { + Id = "vit", + ReferenceName = "Viti", + Scope = "I", + Type = "L" + }, + new + { + Id = "viv", + ReferenceName = "Iduna", + Scope = "I", + Type = "L" + }, + new + { + Id = "vka", + ReferenceName = "Kariyarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "vki", + ReferenceName = "Ija-Zuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkj", + ReferenceName = "Kujarge", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkk", + ReferenceName = "Kaur", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkl", + ReferenceName = "Kulisusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkm", + ReferenceName = "Kamakan", + Scope = "I", + Type = "E" + }, + new + { + Id = "vko", + ReferenceName = "Kodeoha", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkp", + ReferenceName = "Korlai Creole Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkt", + ReferenceName = "Tenggarong Kutai Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "vku", + ReferenceName = "Kurrama", + Scope = "I", + Type = "L" + }, + new + { + Id = "vlp", + ReferenceName = "Valpei", + Scope = "I", + Type = "L" + }, + new + { + Id = "vls", + ReferenceName = "Vlaams", + Scope = "I", + Type = "L" + }, + new + { + Id = "vma", + ReferenceName = "Martuyhunira", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmb", + ReferenceName = "Barbaram", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmc", + ReferenceName = "Juxtlahuaca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmd", + ReferenceName = "Mudu Koraga", + Scope = "I", + Type = "L" + }, + new + { + Id = "vme", + ReferenceName = "East Masela", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmf", + ReferenceName = "Mainfränkisch", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmg", + ReferenceName = "Lungalunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmh", + ReferenceName = "Maraghei", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmi", + ReferenceName = "Miwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmj", + ReferenceName = "Ixtayutla Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmk", + ReferenceName = "Makhuwa-Shirima", + Scope = "I", + Type = "L" + }, + new + { + Id = "vml", + ReferenceName = "Malgana", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmm", + ReferenceName = "Mitlatongo Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmp", + ReferenceName = "Soyaltepec Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmq", + ReferenceName = "Soyaltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmr", + ReferenceName = "Marenje", + Scope = "I", + Type = "L" + }, + new + { + Id = "vms", + ReferenceName = "Moksela", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmu", + ReferenceName = "Muluridyi", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmv", + ReferenceName = "Valley Maidu", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmw", + ReferenceName = "Makhuwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmx", + ReferenceName = "Tamazola Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmy", + ReferenceName = "Ayautla Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmz", + ReferenceName = "Mazatlán Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vnk", + ReferenceName = "Vano", + Scope = "I", + Type = "L" + }, + new + { + Id = "vnm", + ReferenceName = "Vinmavis", + Scope = "I", + Type = "L" + }, + new + { + Id = "vnp", + ReferenceName = "Vunapu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vol", + Part1 = "vo", + Part2B = "vol", + Part2T = "vol", + ReferenceName = "Volapük", + Scope = "I", + Type = "C" + }, + new + { + Id = "vor", + ReferenceName = "Voro", + Scope = "I", + Type = "L" + }, + new + { + Id = "vot", + Part2B = "vot", + Part2T = "vot", + ReferenceName = "Votic", + Scope = "I", + Type = "L" + }, + new + { + Id = "vra", + ReferenceName = "Vera'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "vro", + ReferenceName = "Võro", + Scope = "I", + Type = "L" + }, + new + { + Id = "vrs", + ReferenceName = "Varisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "vrt", + ReferenceName = "Burmbar", + Scope = "I", + Type = "L" + }, + new + { + Id = "vsi", + ReferenceName = "Moldova Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "vsl", + ReferenceName = "Venezuelan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "vsv", + ReferenceName = "Valencian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "vto", + ReferenceName = "Vitou", + Scope = "I", + Type = "L" + }, + new + { + Id = "vum", + ReferenceName = "Vumbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vun", + ReferenceName = "Vunjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "vut", + ReferenceName = "Vute", + Scope = "I", + Type = "L" + }, + new + { + Id = "vwa", + ReferenceName = "Awa (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "waa", + ReferenceName = "Walla Walla", + Scope = "I", + Type = "L" + }, + new + { + Id = "wab", + ReferenceName = "Wab", + Scope = "I", + Type = "L" + }, + new + { + Id = "wac", + ReferenceName = "Wasco-Wishram", + Scope = "I", + Type = "E" + }, + new + { + Id = "wad", + ReferenceName = "Wandamen", + Scope = "I", + Type = "L" + }, + new + { + Id = "wae", + ReferenceName = "Walser", + Scope = "I", + Type = "L" + }, + new + { + Id = "waf", + ReferenceName = "Wakoná", + Scope = "I", + Type = "E" + }, + new + { + Id = "wag", + ReferenceName = "Wa'ema", + Scope = "I", + Type = "L" + }, + new + { + Id = "wah", + ReferenceName = "Watubela", + Scope = "I", + Type = "L" + }, + new + { + Id = "wai", + ReferenceName = "Wares", + Scope = "I", + Type = "L" + }, + new + { + Id = "waj", + ReferenceName = "Waffa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wal", + Part2B = "wal", + Part2T = "wal", + ReferenceName = "Wolaytta", + Scope = "I", + Type = "L" + }, + new + { + Id = "wam", + ReferenceName = "Wampanoag", + Scope = "I", + Type = "E" + }, + new + { + Id = "wan", + ReferenceName = "Wan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wao", + ReferenceName = "Wappo", + Scope = "I", + Type = "E" + }, + new + { + Id = "wap", + ReferenceName = "Wapishana", + Scope = "I", + Type = "L" + }, + new + { + Id = "waq", + ReferenceName = "Wagiman", + Scope = "I", + Type = "L" + }, + new + { + Id = "war", + Part2B = "war", + Part2T = "war", + ReferenceName = "Waray (Philippines)", + Scope = "I", + Type = "L" + }, + new + { + Id = "was", + Part2B = "was", + Part2T = "was", + ReferenceName = "Washo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wat", + ReferenceName = "Kaninuwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wau", + ReferenceName = "Waurá", + Scope = "I", + Type = "L" + }, + new + { + Id = "wav", + ReferenceName = "Waka", + Scope = "I", + Type = "L" + }, + new + { + Id = "waw", + ReferenceName = "Waiwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wax", + ReferenceName = "Watam", + Scope = "I", + Type = "L" + }, + new + { + Id = "way", + ReferenceName = "Wayana", + Scope = "I", + Type = "L" + }, + new + { + Id = "waz", + ReferenceName = "Wampur", + Scope = "I", + Type = "L" + }, + new + { + Id = "wba", + ReferenceName = "Warao", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbb", + ReferenceName = "Wabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbe", + ReferenceName = "Waritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbf", + ReferenceName = "Wara", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbh", + ReferenceName = "Wanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbi", + ReferenceName = "Vwanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbj", + ReferenceName = "Alagwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbk", + ReferenceName = "Waigali", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbl", + ReferenceName = "Wakhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbm", + ReferenceName = "Wa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbp", + ReferenceName = "Warlpiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbq", + ReferenceName = "Waddar", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbr", + ReferenceName = "Wagdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbs", + ReferenceName = "West Bengal Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbt", + ReferenceName = "Warnman", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbv", + ReferenceName = "Wajarri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbw", + ReferenceName = "Woi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wca", + ReferenceName = "Yanomámi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wci", + ReferenceName = "Waci Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdd", + ReferenceName = "Wandji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdg", + ReferenceName = "Wadaginam", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdj", + ReferenceName = "Wadjiginy", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdk", + ReferenceName = "Wadikali", + Scope = "I", + Type = "E" + }, + new + { + Id = "wdu", + ReferenceName = "Wadjigu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wdy", + ReferenceName = "Wadjabangayi", + Scope = "I", + Type = "E" + }, + new + { + Id = "wea", + ReferenceName = "Wewaw", + Scope = "I", + Type = "E" + }, + new + { + Id = "wec", + ReferenceName = "Wè Western", + Scope = "I", + Type = "L" + }, + new + { + Id = "wed", + ReferenceName = "Wedau", + Scope = "I", + Type = "L" + }, + new + { + Id = "weg", + ReferenceName = "Wergaia", + Scope = "I", + Type = "L" + }, + new + { + Id = "weh", + ReferenceName = "Weh", + Scope = "I", + Type = "L" + }, + new + { + Id = "wei", + ReferenceName = "Kiunum", + Scope = "I", + Type = "L" + }, + new + { + Id = "wem", + ReferenceName = "Weme Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "weo", + ReferenceName = "Wemale", + Scope = "I", + Type = "L" + }, + new + { + Id = "wep", + ReferenceName = "Westphalien", + Scope = "I", + Type = "L" + }, + new + { + Id = "wer", + ReferenceName = "Weri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wes", + ReferenceName = "Cameroon Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "wet", + ReferenceName = "Perai", + Scope = "I", + Type = "L" + }, + new + { + Id = "weu", + ReferenceName = "Rawngtu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "wew", + ReferenceName = "Wejewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wfg", + ReferenceName = "Yafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wga", + ReferenceName = "Wagaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "wgb", + ReferenceName = "Wagawaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "wgg", + ReferenceName = "Wangkangurru", + Scope = "I", + Type = "E" + }, + new + { + Id = "wgi", + ReferenceName = "Wahgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wgo", + ReferenceName = "Waigeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wgu", + ReferenceName = "Wirangu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wgy", + ReferenceName = "Warrgamay", + Scope = "I", + Type = "L" + }, + new + { + Id = "wha", + ReferenceName = "Sou Upaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "whg", + ReferenceName = "North Wahgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "whk", + ReferenceName = "Wahau Kenyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "whu", + ReferenceName = "Wahau Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wib", + ReferenceName = "Southern Toussian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wic", + ReferenceName = "Wichita", + Scope = "I", + Type = "E" + }, + new + { + Id = "wie", + ReferenceName = "Wik-Epa", + Scope = "I", + Type = "E" + }, + new + { + Id = "wif", + ReferenceName = "Wik-Keyangan", + Scope = "I", + Type = "E" + }, + new + { + Id = "wig", + ReferenceName = "Wik Ngathan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wih", + ReferenceName = "Wik-Me'anha", + Scope = "I", + Type = "L" + }, + new + { + Id = "wii", + ReferenceName = "Minidien", + Scope = "I", + Type = "L" + }, + new + { + Id = "wij", + ReferenceName = "Wik-Iiyanh", + Scope = "I", + Type = "L" + }, + new + { + Id = "wik", + ReferenceName = "Wikalkan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wil", + ReferenceName = "Wilawila", + Scope = "I", + Type = "E" + }, + new + { + Id = "wim", + ReferenceName = "Wik-Mungkan", + Scope = "I", + Type = "L" + }, + new + { + Id = "win", + ReferenceName = "Ho-Chunk", + Scope = "I", + Type = "L" + }, + new + { + Id = "wir", + ReferenceName = "Wiraféd", + Scope = "I", + Type = "E" + }, + new + { + Id = "wiu", + ReferenceName = "Wiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "wiv", + ReferenceName = "Vitu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wiy", + ReferenceName = "Wiyot", + Scope = "I", + Type = "E" + }, + new + { + Id = "wja", + ReferenceName = "Waja", + Scope = "I", + Type = "L" + }, + new + { + Id = "wji", + ReferenceName = "Warji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wka", + ReferenceName = "Kw'adza", + Scope = "I", + Type = "E" + }, + new + { + Id = "wkb", + ReferenceName = "Kumbaran", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkd", + ReferenceName = "Wakde", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkl", + ReferenceName = "Kalanadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkr", + ReferenceName = "Keerray-Woorroong", + Scope = "I", + Type = "L" + }, + new + { + Id = "wku", + ReferenceName = "Kunduvadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkw", + ReferenceName = "Wakawaka", + Scope = "I", + Type = "E" + }, + new + { + Id = "wky", + ReferenceName = "Wangkayutyuru", + Scope = "I", + Type = "E" + }, + new + { + Id = "wla", + ReferenceName = "Walio", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlc", + ReferenceName = "Mwali Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wle", + ReferenceName = "Wolane", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlg", + ReferenceName = "Kunbarlang", + Scope = "I", + Type = "L" + }, + new + { + Id = "wli", + ReferenceName = "Waioli", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlk", + ReferenceName = "Wailaki", + Scope = "I", + Type = "E" + }, + new + { + Id = "wll", + ReferenceName = "Wali (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlm", + ReferenceName = "Middle Welsh", + Scope = "I", + Type = "H" + }, + new + { + Id = "wln", + Part1 = "wa", + Part2B = "wln", + Part2T = "wln", + ReferenceName = "Walloon", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlo", + ReferenceName = "Wolio", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlr", + ReferenceName = "Wailapa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wls", + ReferenceName = "Wallisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlu", + ReferenceName = "Wuliwuli", + Scope = "I", + Type = "E" + }, + new + { + Id = "wlv", + ReferenceName = "Wichí Lhamtés Vejoz", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlw", + ReferenceName = "Walak", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlx", + ReferenceName = "Wali (Ghana)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wly", + ReferenceName = "Waling", + Scope = "I", + Type = "E" + }, + new + { + Id = "wma", + ReferenceName = "Mawa (Nigeria)", + Scope = "I", + Type = "E" + }, + new + { + Id = "wmb", + ReferenceName = "Wambaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmc", + ReferenceName = "Wamas", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmd", + ReferenceName = "Mamaindé", + Scope = "I", + Type = "L" + }, + new + { + Id = "wme", + ReferenceName = "Wambule", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmh", + ReferenceName = "Waima'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmi", + ReferenceName = "Wamin", + Scope = "I", + Type = "E" + }, + new + { + Id = "wmm", + ReferenceName = "Maiwa (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmn", + ReferenceName = "Waamwang", + Scope = "I", + Type = "E" + }, + new + { + Id = "wmo", + ReferenceName = "Wom (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wms", + ReferenceName = "Wambon", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmt", + ReferenceName = "Walmajarri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmw", + ReferenceName = "Mwani", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmx", + ReferenceName = "Womo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnb", + ReferenceName = "Wanambre", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnc", + ReferenceName = "Wantoat", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnd", + ReferenceName = "Wandarang", + Scope = "I", + Type = "E" + }, + new + { + Id = "wne", + ReferenceName = "Waneci", + Scope = "I", + Type = "L" + }, + new + { + Id = "wng", + ReferenceName = "Wanggom", + Scope = "I", + Type = "L" + }, + new + { + Id = "wni", + ReferenceName = "Ndzwani Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnk", + ReferenceName = "Wanukaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnm", + ReferenceName = "Wanggamala", + Scope = "I", + Type = "E" + }, + new + { + Id = "wnn", + ReferenceName = "Wunumara", + Scope = "I", + Type = "E" + }, + new + { + Id = "wno", + ReferenceName = "Wano", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnp", + ReferenceName = "Wanap", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnu", + ReferenceName = "Usan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnw", + ReferenceName = "Wintu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wny", + ReferenceName = "Wanyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "woa", + ReferenceName = "Kuwema", + Scope = "I", + Type = "L" + }, + new + { + Id = "wob", + ReferenceName = "Wè Northern", + Scope = "I", + Type = "L" + }, + new + { + Id = "woc", + ReferenceName = "Wogeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wod", + ReferenceName = "Wolani", + Scope = "I", + Type = "L" + }, + new + { + Id = "woe", + ReferenceName = "Woleaian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wof", + ReferenceName = "Gambian Wolof", + Scope = "I", + Type = "L" + }, + new + { + Id = "wog", + ReferenceName = "Wogamusin", + Scope = "I", + Type = "L" + }, + new + { + Id = "woi", + ReferenceName = "Kamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "wok", + ReferenceName = "Longto", + Scope = "I", + Type = "L" + }, + new + { + Id = "wol", + Part1 = "wo", + Part2B = "wol", + Part2T = "wol", + ReferenceName = "Wolof", + Scope = "I", + Type = "L" + }, + new + { + Id = "wom", + ReferenceName = "Wom (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "won", + ReferenceName = "Wongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "woo", + ReferenceName = "Manombai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wor", + ReferenceName = "Woria", + Scope = "I", + Type = "L" + }, + new + { + Id = "wos", + ReferenceName = "Hanga Hundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wow", + ReferenceName = "Wawonii", + Scope = "I", + Type = "L" + }, + new + { + Id = "woy", + ReferenceName = "Weyto", + Scope = "I", + Type = "E" + }, + new + { + Id = "wpc", + ReferenceName = "Maco", + Scope = "I", + Type = "L" + }, + new + { + Id = "wra", + ReferenceName = "Warapu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrb", + ReferenceName = "Waluwarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrd", + ReferenceName = "Warduji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrg", + ReferenceName = "Warungu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrh", + ReferenceName = "Wiradjuri", + Scope = "I", + Type = "E" + }, + new + { + Id = "wri", + ReferenceName = "Wariyangga", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrk", + ReferenceName = "Garrwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrl", + ReferenceName = "Warlmanpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrm", + ReferenceName = "Warumungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrn", + ReferenceName = "Warnang", + Scope = "I", + Type = "L" + }, + new + { + Id = "wro", + ReferenceName = "Worrorra", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrp", + ReferenceName = "Waropen", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrr", + ReferenceName = "Wardaman", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrs", + ReferenceName = "Waris", + Scope = "I", + Type = "L" + }, + new + { + Id = "wru", + ReferenceName = "Waru", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrv", + ReferenceName = "Waruna", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrw", + ReferenceName = "Gugu Warra", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrx", + ReferenceName = "Wae Rana", + Scope = "I", + Type = "L" + }, + new + { + Id = "wry", + ReferenceName = "Merwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrz", + ReferenceName = "Waray (Australia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "wsa", + ReferenceName = "Warembori", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsg", + ReferenceName = "Adilabad Gondi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsi", + ReferenceName = "Wusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsk", + ReferenceName = "Waskia", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsr", + ReferenceName = "Owenia", + Scope = "I", + Type = "L" + }, + new + { + Id = "wss", + ReferenceName = "Wasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsu", + ReferenceName = "Wasu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wsv", + ReferenceName = "Wotapuri-Katarqalai", + Scope = "I", + Type = "E" + }, + new + { + Id = "wtf", + ReferenceName = "Watiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wth", + ReferenceName = "Wathawurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "wti", + ReferenceName = "Berta", + Scope = "I", + Type = "L" + }, + new + { + Id = "wtk", + ReferenceName = "Watakataui", + Scope = "I", + Type = "L" + }, + new + { + Id = "wtm", + ReferenceName = "Mewati", + Scope = "I", + Type = "L" + }, + new + { + Id = "wtw", + ReferenceName = "Wotu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wua", + ReferenceName = "Wikngenchera", + Scope = "I", + Type = "L" + }, + new + { + Id = "wub", + ReferenceName = "Wunambal", + Scope = "I", + Type = "L" + }, + new + { + Id = "wud", + ReferenceName = "Wudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuh", + ReferenceName = "Wutunhua", + Scope = "I", + Type = "L" + }, + new + { + Id = "wul", + ReferenceName = "Silimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wum", + ReferenceName = "Wumbvu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wun", + ReferenceName = "Bungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wur", + ReferenceName = "Wurrugu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wut", + ReferenceName = "Wutung", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuu", + ReferenceName = "Wu Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuv", + ReferenceName = "Wuvulu-Aua", + Scope = "I", + Type = "L" + }, + new + { + Id = "wux", + ReferenceName = "Wulna", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuy", + ReferenceName = "Wauyai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wwa", + ReferenceName = "Waama", + Scope = "I", + Type = "L" + }, + new + { + Id = "wwb", + ReferenceName = "Wakabunga", + Scope = "I", + Type = "E" + }, + new + { + Id = "wwo", + ReferenceName = "Wetamut", + Scope = "I", + Type = "L" + }, + new + { + Id = "wwr", + ReferenceName = "Warrwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "www", + ReferenceName = "Wawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wxa", + ReferenceName = "Waxianghua", + Scope = "I", + Type = "L" + }, + new + { + Id = "wxw", + ReferenceName = "Wardandi", + Scope = "I", + Type = "E" + }, + new + { + Id = "wya", + ReferenceName = "Wyandot", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyb", + ReferenceName = "Wangaaybuwan-Ngiyambaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyi", + ReferenceName = "Woiwurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "wym", + ReferenceName = "Wymysorys", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyr", + ReferenceName = "Wayoró", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyy", + ReferenceName = "Western Fijian", + Scope = "I", + Type = "L" + }, + new + { + Id = "xaa", + ReferenceName = "Andalusian Arabic", + Scope = "I", + Type = "H" + }, + new + { + Id = "xab", + ReferenceName = "Sambe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xac", + ReferenceName = "Kachari", + Scope = "I", + Type = "L" + }, + new + { + Id = "xad", + ReferenceName = "Adai", + Scope = "I", + Type = "E" + }, + new + { + Id = "xae", + ReferenceName = "Aequian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xag", + ReferenceName = "Aghwan", + Scope = "I", + Type = "A" + }, + new + { + Id = "xai", + ReferenceName = "Kaimbé", + Scope = "I", + Type = "E" + }, + new + { + Id = "xaj", + ReferenceName = "Ararandewára", + Scope = "I", + Type = "E" + }, + new + { + Id = "xak", + ReferenceName = "Máku", + Scope = "I", + Type = "E" + }, + new + { + Id = "xal", + Part2B = "xal", + Part2T = "xal", + ReferenceName = "Kalmyk", + Scope = "I", + Type = "L" + }, + new + { + Id = "xam", + ReferenceName = "ǀXam", + Scope = "I", + Type = "E" + }, + new + { + Id = "xan", + ReferenceName = "Xamtanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "xao", + ReferenceName = "Khao", + Scope = "I", + Type = "L" + }, + new + { + Id = "xap", + ReferenceName = "Apalachee", + Scope = "I", + Type = "E" + }, + new + { + Id = "xaq", + ReferenceName = "Aquitanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xar", + ReferenceName = "Karami", + Scope = "I", + Type = "E" + }, + new + { + Id = "xas", + ReferenceName = "Kamas", + Scope = "I", + Type = "E" + }, + new + { + Id = "xat", + ReferenceName = "Katawixi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xau", + ReferenceName = "Kauwera", + Scope = "I", + Type = "L" + }, + new + { + Id = "xav", + ReferenceName = "Xavánte", + Scope = "I", + Type = "L" + }, + new + { + Id = "xaw", + ReferenceName = "Kawaiisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xay", + ReferenceName = "Kayan Mahakam", + Scope = "I", + Type = "L" + }, + new + { + Id = "xbb", + ReferenceName = "Lower Burdekin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbc", + ReferenceName = "Bactrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xbd", + ReferenceName = "Bindal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbe", + ReferenceName = "Bigambal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbg", + ReferenceName = "Bunganditj", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbi", + ReferenceName = "Kombio", + Scope = "I", + Type = "L" + }, + new + { + Id = "xbj", + ReferenceName = "Birrpayi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbm", + ReferenceName = "Middle Breton", + Scope = "I", + Type = "H" + }, + new + { + Id = "xbn", + ReferenceName = "Kenaboi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbo", + ReferenceName = "Bolgarian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xbp", + ReferenceName = "Bibbulman", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbr", + ReferenceName = "Kambera", + Scope = "I", + Type = "L" + }, + new + { + Id = "xbw", + ReferenceName = "Kambiwá", + Scope = "I", + Type = "E" + }, + new + { + Id = "xby", + ReferenceName = "Batjala", + Scope = "I", + Type = "L" + }, + new + { + Id = "xcb", + ReferenceName = "Cumbric", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcc", + ReferenceName = "Camunic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xce", + ReferenceName = "Celtiberian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xcg", + ReferenceName = "Cisalpine Gaulish", + Scope = "I", + Type = "A" + }, + new + { + Id = "xch", + ReferenceName = "Chemakum", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcl", + ReferenceName = "Classical Armenian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcm", + ReferenceName = "Comecrudo", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcn", + ReferenceName = "Cotoname", + Scope = "I", + Type = "E" + }, + new + { + Id = "xco", + ReferenceName = "Chorasmian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xcr", + ReferenceName = "Carian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xct", + ReferenceName = "Classical Tibetan", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcu", + ReferenceName = "Curonian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcv", + ReferenceName = "Chuvantsy", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcw", + ReferenceName = "Coahuilteco", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcy", + ReferenceName = "Cayuse", + Scope = "I", + Type = "E" + }, + new + { + Id = "xda", + ReferenceName = "Darkinyung", + Scope = "I", + Type = "L" + }, + new + { + Id = "xdc", + ReferenceName = "Dacian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xdk", + ReferenceName = "Dharuk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xdm", + ReferenceName = "Edomite", + Scope = "I", + Type = "A" + }, + new + { + Id = "xdo", + ReferenceName = "Kwandu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xdy", + ReferenceName = "Malayic Dayak", + Scope = "I", + Type = "L" + }, + new + { + Id = "xeb", + ReferenceName = "Eblan", + Scope = "I", + Type = "A" + }, + new + { + Id = "xed", + ReferenceName = "Hdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xeg", + ReferenceName = "ǁXegwi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xel", + ReferenceName = "Kelo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xem", + ReferenceName = "Kembayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xep", + ReferenceName = "Epi-Olmec", + Scope = "I", + Type = "A" + }, + new + { + Id = "xer", + ReferenceName = "Xerénte", + Scope = "I", + Type = "L" + }, + new + { + Id = "xes", + ReferenceName = "Kesawai", + Scope = "I", + Type = "L" + }, + new + { + Id = "xet", + ReferenceName = "Xetá", + Scope = "I", + Type = "L" + }, + new + { + Id = "xeu", + ReferenceName = "Keoru-Ahia", + Scope = "I", + Type = "L" + }, + new + { + Id = "xfa", + ReferenceName = "Faliscan", + Scope = "I", + Type = "A" + }, + new + { + Id = "xga", + ReferenceName = "Galatian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xgb", + ReferenceName = "Gbin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgd", + ReferenceName = "Gudang", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgf", + ReferenceName = "Gabrielino-Fernandeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgg", + ReferenceName = "Goreng", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgi", + ReferenceName = "Garingbal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgl", + ReferenceName = "Galindan", + Scope = "I", + Type = "H" + }, + new + { + Id = "xgm", + ReferenceName = "Dharumbal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgr", + ReferenceName = "Garza", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgu", + ReferenceName = "Unggumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xgw", + ReferenceName = "Guwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "xha", + ReferenceName = "Harami", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhc", + ReferenceName = "Hunnic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhd", + ReferenceName = "Hadrami", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhe", + ReferenceName = "Khetrani", + Scope = "I", + Type = "L" + }, + new + { + Id = "xho", + Part1 = "xh", + Part2B = "xho", + Part2T = "xho", + ReferenceName = "Xhosa", + Scope = "I", + Type = "L" + }, + new + { + Id = "xhr", + ReferenceName = "Hernican", + Scope = "I", + Type = "A" + }, + new + { + Id = "xht", + ReferenceName = "Hattic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhu", + ReferenceName = "Hurrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhv", + ReferenceName = "Khua", + Scope = "I", + Type = "L" + }, + new + { + Id = "xib", + ReferenceName = "Iberian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xii", + ReferenceName = "Xiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xil", + ReferenceName = "Illyrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xin", + ReferenceName = "Xinca", + Scope = "I", + Type = "E" + }, + new + { + Id = "xir", + ReferenceName = "Xiriâna", + Scope = "I", + Type = "E" + }, + new + { + Id = "xis", + ReferenceName = "Kisan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xiv", + ReferenceName = "Indus Valley Language", + Scope = "I", + Type = "A" + }, + new + { + Id = "xiy", + ReferenceName = "Xipaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "xjb", + ReferenceName = "Minjungbal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xjt", + ReferenceName = "Jaitmatang", + Scope = "I", + Type = "E" + }, + new + { + Id = "xka", + ReferenceName = "Kalkoti", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkb", + ReferenceName = "Northern Nago", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkc", + ReferenceName = "Kho'ini", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkd", + ReferenceName = "Mendalam Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xke", + ReferenceName = "Kereho", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkf", + ReferenceName = "Khengkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkg", + ReferenceName = "Kagoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "xki", + ReferenceName = "Kenyan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkj", + ReferenceName = "Kajali", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkk", + ReferenceName = "Kaco'", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkl", + ReferenceName = "Mainstream Kenyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkn", + ReferenceName = "Kayan River Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xko", + ReferenceName = "Kiorr", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkp", + ReferenceName = "Kabatei", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkq", + ReferenceName = "Koroni", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkr", + ReferenceName = "Xakriabá", + Scope = "I", + Type = "E" + }, + new + { + Id = "xks", + ReferenceName = "Kumbewaha", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkt", + ReferenceName = "Kantosi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xku", + ReferenceName = "Kaamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkv", + ReferenceName = "Kgalagadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkw", + ReferenceName = "Kembra", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkx", + ReferenceName = "Karore", + Scope = "I", + Type = "L" + }, + new + { + Id = "xky", + ReferenceName = "Uma' Lasan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkz", + ReferenceName = "Kurtokha", + Scope = "I", + Type = "L" + }, + new + { + Id = "xla", + ReferenceName = "Kamula", + Scope = "I", + Type = "L" + }, + new + { + Id = "xlb", + ReferenceName = "Loup B", + Scope = "I", + Type = "E" + }, + new + { + Id = "xlc", + ReferenceName = "Lycian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xld", + ReferenceName = "Lydian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xle", + ReferenceName = "Lemnian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xlg", + ReferenceName = "Ligurian (Ancient)", + Scope = "I", + Type = "A" + }, + new + { + Id = "xli", + ReferenceName = "Liburnian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xln", + ReferenceName = "Alanic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xlo", + ReferenceName = "Loup A", + Scope = "I", + Type = "E" + }, + new + { + Id = "xlp", + ReferenceName = "Lepontic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xls", + ReferenceName = "Lusitanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xlu", + ReferenceName = "Cuneiform Luwian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xly", + ReferenceName = "Elymian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xma", + ReferenceName = "Mushungulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmb", + ReferenceName = "Mbonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmc", + ReferenceName = "Makhuwa-Marrevone", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmd", + ReferenceName = "Mbudum", + Scope = "I", + Type = "L" + }, + new + { + Id = "xme", + ReferenceName = "Median", + Scope = "I", + Type = "A" + }, + new + { + Id = "xmf", + ReferenceName = "Mingrelian", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmg", + ReferenceName = "Mengaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmh", + ReferenceName = "Kugu-Muminh", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmj", + ReferenceName = "Majera", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmk", + ReferenceName = "Ancient Macedonian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xml", + ReferenceName = "Malaysian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmm", + ReferenceName = "Manado Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmn", + ReferenceName = "Manichaean Middle Persian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xmo", + ReferenceName = "Morerebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmp", + ReferenceName = "Kuku-Mu'inh", + Scope = "I", + Type = "E" + }, + new + { + Id = "xmq", + ReferenceName = "Kuku-Mangk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xmr", + ReferenceName = "Meroitic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xms", + ReferenceName = "Moroccan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmt", + ReferenceName = "Matbat", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmu", + ReferenceName = "Kamu", + Scope = "I", + Type = "E" + }, + new + { + Id = "xmv", + ReferenceName = "Antankarana Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmw", + ReferenceName = "Tsimihety Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmx", + ReferenceName = "Maden", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmy", + ReferenceName = "Mayaguduna", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmz", + ReferenceName = "Mori Bawah", + Scope = "I", + Type = "L" + }, + new + { + Id = "xna", + ReferenceName = "Ancient North Arabian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xnb", + ReferenceName = "Kanakanabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xng", + ReferenceName = "Middle Mongolian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xnh", + ReferenceName = "Kuanhua", + Scope = "I", + Type = "L" + }, + new + { + Id = "xni", + ReferenceName = "Ngarigu", + Scope = "I", + Type = "E" + }, + new + { + Id = "xnk", + ReferenceName = "Nganakarti", + Scope = "I", + Type = "E" + }, + new + { + Id = "xnn", + ReferenceName = "Northern Kankanay", + Scope = "I", + Type = "L" + }, + new + { + Id = "xno", + ReferenceName = "Anglo-Norman", + Scope = "I", + Type = "H" + }, + new + { + Id = "xnr", + ReferenceName = "Kangri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xns", + ReferenceName = "Kanashi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xnt", + ReferenceName = "Narragansett", + Scope = "I", + Type = "E" + }, + new + { + Id = "xnu", + ReferenceName = "Nukunul", + Scope = "I", + Type = "E" + }, + new + { + Id = "xny", + ReferenceName = "Nyiyaparli", + Scope = "I", + Type = "L" + }, + new + { + Id = "xnz", + ReferenceName = "Kenzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xoc", + ReferenceName = "O'chi'chi'", + Scope = "I", + Type = "E" + }, + new + { + Id = "xod", + ReferenceName = "Kokoda", + Scope = "I", + Type = "L" + }, + new + { + Id = "xog", + ReferenceName = "Soga", + Scope = "I", + Type = "L" + }, + new + { + Id = "xoi", + ReferenceName = "Kominimung", + Scope = "I", + Type = "L" + }, + new + { + Id = "xok", + ReferenceName = "Xokleng", + Scope = "I", + Type = "L" + }, + new + { + Id = "xom", + ReferenceName = "Komo (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "xon", + ReferenceName = "Konkomba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xoo", + ReferenceName = "Xukurú", + Scope = "I", + Type = "E" + }, + new + { + Id = "xop", + ReferenceName = "Kopar", + Scope = "I", + Type = "L" + }, + new + { + Id = "xor", + ReferenceName = "Korubo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xow", + ReferenceName = "Kowaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "xpa", + ReferenceName = "Pirriya", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpc", + ReferenceName = "Pecheneg", + Scope = "I", + Type = "H" + }, + new + { + Id = "xpe", + ReferenceName = "Liberia Kpelle", + Scope = "I", + Type = "L" + }, + new + { + Id = "xpg", + ReferenceName = "Phrygian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpi", + ReferenceName = "Pictish", + Scope = "I", + Type = "H" + }, + new + { + Id = "xpj", + ReferenceName = "Mpalitjanh", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpk", + ReferenceName = "Kulina Pano", + Scope = "I", + Type = "L" + }, + new + { + Id = "xpm", + ReferenceName = "Pumpokol", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpn", + ReferenceName = "Kapinawá", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpo", + ReferenceName = "Pochutec", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpp", + ReferenceName = "Puyo-Paekche", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpq", + ReferenceName = "Mohegan-Pequot", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpr", + ReferenceName = "Parthian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xps", + ReferenceName = "Pisidian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpt", + ReferenceName = "Punthamara", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpu", + ReferenceName = "Punic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpy", + ReferenceName = "Puyo", + Scope = "I", + Type = "A" + }, + new + { + Id = "xqa", + ReferenceName = "Karakhanid", + Scope = "I", + Type = "H" + }, + new + { + Id = "xqt", + ReferenceName = "Qatabanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xra", + ReferenceName = "Krahô", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrb", + ReferenceName = "Eastern Karaboro", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrd", + ReferenceName = "Gundungurra", + Scope = "I", + Type = "E" + }, + new + { + Id = "xre", + ReferenceName = "Kreye", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrg", + ReferenceName = "Minang", + Scope = "I", + Type = "E" + }, + new + { + Id = "xri", + ReferenceName = "Krikati-Timbira", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrm", + ReferenceName = "Armazic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xrn", + ReferenceName = "Arin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xrq", + ReferenceName = "Karranga", + Scope = "I", + Type = "E" + }, + new + { + Id = "xrr", + ReferenceName = "Raetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xrt", + ReferenceName = "Aranama-Tamique", + Scope = "I", + Type = "E" + }, + new + { + Id = "xru", + ReferenceName = "Marriammu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrw", + ReferenceName = "Karawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsa", + ReferenceName = "Sabaean", + Scope = "I", + Type = "A" + }, + new + { + Id = "xsb", + ReferenceName = "Sambal", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsc", + ReferenceName = "Scythian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xsd", + ReferenceName = "Sidetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xse", + ReferenceName = "Sempan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsh", + ReferenceName = "Shamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsi", + ReferenceName = "Sio", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsj", + ReferenceName = "Subi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsl", + ReferenceName = "South Slavey", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsm", + ReferenceName = "Kasem", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsn", + ReferenceName = "Sanga (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "xso", + ReferenceName = "Solano", + Scope = "I", + Type = "E" + }, + new + { + Id = "xsp", + ReferenceName = "Silopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsq", + ReferenceName = "Makhuwa-Saka", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsr", + ReferenceName = "Sherpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "xss", + ReferenceName = "Assan", + Scope = "I", + Type = "E" + }, + new + { + Id = "xsu", + ReferenceName = "Sanumá", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsv", + ReferenceName = "Sudovian", + Scope = "I", + Type = "E" + }, + new + { + Id = "xsy", + ReferenceName = "Saisiyat", + Scope = "I", + Type = "L" + }, + new + { + Id = "xta", + ReferenceName = "Alcozauca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtb", + ReferenceName = "Chazumba Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtc", + ReferenceName = "Katcha-Kadugli-Miri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtd", + ReferenceName = "Diuxi-Tilantongo Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xte", + ReferenceName = "Ketengban", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtg", + ReferenceName = "Transalpine Gaulish", + Scope = "I", + Type = "A" + }, + new + { + Id = "xth", + ReferenceName = "Yitha Yitha", + Scope = "I", + Type = "E" + }, + new + { + Id = "xti", + ReferenceName = "Sinicahua Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtj", + ReferenceName = "San Juan Teita Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtl", + ReferenceName = "Tijaltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtm", + ReferenceName = "Magdalena Peñasco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtn", + ReferenceName = "Northern Tlaxiaco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xto", + ReferenceName = "Tokharian A", + Scope = "I", + Type = "A" + }, + new + { + Id = "xtp", + ReferenceName = "San Miguel Piedras Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtq", + ReferenceName = "Tumshuqese", + Scope = "I", + Type = "H" + }, + new + { + Id = "xtr", + ReferenceName = "Early Tripuri", + Scope = "I", + Type = "A" + }, + new + { + Id = "xts", + ReferenceName = "Sindihui Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtt", + ReferenceName = "Tacahua Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtu", + ReferenceName = "Cuyamecalco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtv", + ReferenceName = "Thawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "xtw", + ReferenceName = "Tawandê", + Scope = "I", + Type = "L" + }, + new + { + Id = "xty", + ReferenceName = "Yoloxochitl Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtz", + ReferenceName = "Tasmanian", + Scope = "I", + Type = "E" + }, + new + { + Id = "xua", + ReferenceName = "Alu Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xub", + ReferenceName = "Betta Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xud", + ReferenceName = "Umiida", + Scope = "I", + Type = "E" + }, + new + { + Id = "xug", + ReferenceName = "Kunigami", + Scope = "I", + Type = "L" + }, + new + { + Id = "xuj", + ReferenceName = "Jennu Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xul", + ReferenceName = "Ngunawal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xum", + ReferenceName = "Umbrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xun", + ReferenceName = "Unggaranggu", + Scope = "I", + Type = "E" + }, + new + { + Id = "xuo", + ReferenceName = "Kuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xup", + ReferenceName = "Upper Umpqua", + Scope = "I", + Type = "E" + }, + new + { + Id = "xur", + ReferenceName = "Urartian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xut", + ReferenceName = "Kuthant", + Scope = "I", + Type = "E" + }, + new + { + Id = "xuu", + ReferenceName = "Kxoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xve", + ReferenceName = "Venetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xvi", + ReferenceName = "Kamviri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xvn", + ReferenceName = "Vandalic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xvo", + ReferenceName = "Volscian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xvs", + ReferenceName = "Vestinian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xwa", + ReferenceName = "Kwaza", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwc", + ReferenceName = "Woccon", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwd", + ReferenceName = "Wadi Wadi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwe", + ReferenceName = "Xwela Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwg", + ReferenceName = "Kwegu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwj", + ReferenceName = "Wajuk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwk", + ReferenceName = "Wangkumara", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwl", + ReferenceName = "Western Xwla Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwo", + ReferenceName = "Written Oirat", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwr", + ReferenceName = "Kwerba Mamberamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwt", + ReferenceName = "Wotjobaluk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xww", + ReferenceName = "Wemba Wemba", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxb", + ReferenceName = "Boro (Ghana)", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxk", + ReferenceName = "Ke'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "xxm", + ReferenceName = "Minkin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxr", + ReferenceName = "Koropó", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxt", + ReferenceName = "Tambora", + Scope = "I", + Type = "E" + }, + new + { + Id = "xya", + ReferenceName = "Yaygir", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyb", + ReferenceName = "Yandjibara", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyj", + ReferenceName = "Mayi-Yapi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyk", + ReferenceName = "Mayi-Kulan", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyl", + ReferenceName = "Yalakalore", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyt", + ReferenceName = "Mayi-Thakurti", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyy", + ReferenceName = "Yorta Yorta", + Scope = "I", + Type = "L" + }, + new + { + Id = "xzh", + ReferenceName = "Zhang-Zhung", + Scope = "I", + Type = "A" + }, + new + { + Id = "xzm", + ReferenceName = "Zemgalian", + Scope = "I", + Type = "E" + }, + new + { + Id = "xzp", + ReferenceName = "Ancient Zapotec", + Scope = "I", + Type = "H" + }, + new + { + Id = "yaa", + ReferenceName = "Yaminahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "yab", + ReferenceName = "Yuhup", + Scope = "I", + Type = "L" + }, + new + { + Id = "yac", + ReferenceName = "Pass Valley Yali", + Scope = "I", + Type = "L" + }, + new + { + Id = "yad", + ReferenceName = "Yagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "yae", + ReferenceName = "Pumé", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaf", + ReferenceName = "Yaka (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yag", + ReferenceName = "Yámana", + Scope = "I", + Type = "L" + }, + new + { + Id = "yah", + ReferenceName = "Yazgulyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "yai", + ReferenceName = "Yagnobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaj", + ReferenceName = "Banda-Yangere", + Scope = "I", + Type = "L" + }, + new + { + Id = "yak", + ReferenceName = "Yakama", + Scope = "I", + Type = "L" + }, + new + { + Id = "yal", + ReferenceName = "Yalunka", + Scope = "I", + Type = "L" + }, + new + { + Id = "yam", + ReferenceName = "Yamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yan", + ReferenceName = "Mayangna", + Scope = "I", + Type = "L" + }, + new + { + Id = "yao", + Part2B = "yao", + Part2T = "yao", + ReferenceName = "Yao", + Scope = "I", + Type = "L" + }, + new + { + Id = "yap", + Part2B = "yap", + Part2T = "yap", + ReferenceName = "Yapese", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaq", + ReferenceName = "Yaqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "yar", + ReferenceName = "Yabarana", + Scope = "I", + Type = "L" + }, + new + { + Id = "yas", + ReferenceName = "Nugunu (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yat", + ReferenceName = "Yambeta", + Scope = "I", + Type = "L" + }, + new + { + Id = "yau", + ReferenceName = "Yuwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "yav", + ReferenceName = "Yangben", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaw", + ReferenceName = "Yawalapití", + Scope = "I", + Type = "L" + }, + new + { + Id = "yax", + ReferenceName = "Yauma", + Scope = "I", + Type = "L" + }, + new + { + Id = "yay", + ReferenceName = "Agwagwune", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaz", + ReferenceName = "Lokaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yba", + ReferenceName = "Yala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybb", + ReferenceName = "Yemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybe", + ReferenceName = "West Yugur", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybh", + ReferenceName = "Yakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybi", + ReferenceName = "Yamphu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybj", + ReferenceName = "Hasha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybk", + ReferenceName = "Bokha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybl", + ReferenceName = "Yukuben", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybm", + ReferenceName = "Yaben", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybn", + ReferenceName = "Yabaâna", + Scope = "I", + Type = "E" + }, + new + { + Id = "ybo", + ReferenceName = "Yabong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybx", + ReferenceName = "Yawiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "yby", + ReferenceName = "Yaweyuha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ych", + ReferenceName = "Chesu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ycl", + ReferenceName = "Lolopo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ycn", + ReferenceName = "Yucuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "ycp", + ReferenceName = "Chepya", + Scope = "I", + Type = "L" + }, + new + { + Id = "yda", + ReferenceName = "Yanda", + Scope = "I", + Type = "E" + }, + new + { + Id = "ydd", + ReferenceName = "Eastern Yiddish", + Scope = "I", + Type = "L" + }, + new + { + Id = "yde", + ReferenceName = "Yangum Dey", + Scope = "I", + Type = "L" + }, + new + { + Id = "ydg", + ReferenceName = "Yidgha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ydk", + ReferenceName = "Yoidik", + Scope = "I", + Type = "L" + }, + new + { + Id = "yea", + ReferenceName = "Ravula", + Scope = "I", + Type = "L" + }, + new + { + Id = "yec", + ReferenceName = "Yeniche", + Scope = "I", + Type = "L" + }, + new + { + Id = "yee", + ReferenceName = "Yimas", + Scope = "I", + Type = "L" + }, + new + { + Id = "yei", + ReferenceName = "Yeni", + Scope = "I", + Type = "E" + }, + new + { + Id = "yej", + ReferenceName = "Yevanic", + Scope = "I", + Type = "L" + }, + new + { + Id = "yel", + ReferenceName = "Yela", + Scope = "I", + Type = "L" + }, + new + { + Id = "yer", + ReferenceName = "Tarok", + Scope = "I", + Type = "L" + }, + new + { + Id = "yes", + ReferenceName = "Nyankpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yet", + ReferenceName = "Yetfa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yeu", + ReferenceName = "Yerukula", + Scope = "I", + Type = "L" + }, + new + { + Id = "yev", + ReferenceName = "Yapunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "yey", + ReferenceName = "Yeyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yga", + ReferenceName = "Malyangapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "ygi", + ReferenceName = "Yiningayi", + Scope = "I", + Type = "E" + }, + new + { + Id = "ygl", + ReferenceName = "Yangum Gel", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygm", + ReferenceName = "Yagomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygp", + ReferenceName = "Gepo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygr", + ReferenceName = "Yagaria", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygs", + ReferenceName = "Yolŋu Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygu", + ReferenceName = "Yugul", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygw", + ReferenceName = "Yagwoia", + Scope = "I", + Type = "L" + }, + new + { + Id = "yha", + ReferenceName = "Baha Buyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "yhd", + ReferenceName = "Judeo-Iraqi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "yhl", + ReferenceName = "Hlepho Phowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yhs", + ReferenceName = "Yan-nhaŋu Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "yia", + ReferenceName = "Yinggarda", + Scope = "I", + Type = "L" + }, + new + { + Id = "yid", + Part1 = "yi", + Part2B = "yid", + Part2T = "yid", + ReferenceName = "Yiddish", + Scope = "M", + Type = "L" + }, + new + { + Id = "yif", + ReferenceName = "Ache", + Scope = "I", + Type = "L" + }, + new + { + Id = "yig", + ReferenceName = "Wusa Nasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yih", + ReferenceName = "Western Yiddish", + Scope = "I", + Type = "L" + }, + new + { + Id = "yii", + ReferenceName = "Yidiny", + Scope = "I", + Type = "L" + }, + new + { + Id = "yij", + ReferenceName = "Yindjibarndi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yik", + ReferenceName = "Dongshanba Lalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "yil", + ReferenceName = "Yindjilandji", + Scope = "I", + Type = "E" + }, + new + { + Id = "yim", + ReferenceName = "Yimchungru Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "yin", + ReferenceName = "Riang Lai", + Scope = "I", + Type = "L" + }, + new + { + Id = "yip", + ReferenceName = "Pholo", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiq", + ReferenceName = "Miqie", + Scope = "I", + Type = "L" + }, + new + { + Id = "yir", + ReferenceName = "North Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yis", + ReferenceName = "Yis", + Scope = "I", + Type = "L" + }, + new + { + Id = "yit", + ReferenceName = "Eastern Lalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiu", + ReferenceName = "Awu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiv", + ReferenceName = "Northern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yix", + ReferenceName = "Axi Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiz", + ReferenceName = "Azhe", + Scope = "I", + Type = "L" + }, + new + { + Id = "yka", + ReferenceName = "Yakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykg", + ReferenceName = "Northern Yukaghir", + Scope = "I", + Type = "L" + }, + new + { + Id = "yki", + ReferenceName = "Yoke", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykk", + ReferenceName = "Yakaikeke", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykl", + ReferenceName = "Khlula", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykm", + ReferenceName = "Kap", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykn", + ReferenceName = "Kua-nsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yko", + ReferenceName = "Yasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykr", + ReferenceName = "Yekora", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykt", + ReferenceName = "Kathu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yku", + ReferenceName = "Kuamasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yky", + ReferenceName = "Yakoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "yla", + ReferenceName = "Yaul", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylb", + ReferenceName = "Yaleba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yle", + ReferenceName = "Yele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylg", + ReferenceName = "Yelogu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yli", + ReferenceName = "Angguruk Yali", + Scope = "I", + Type = "L" + }, + new + { + Id = "yll", + ReferenceName = "Yil", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylm", + ReferenceName = "Limi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yln", + ReferenceName = "Langnian Buyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylo", + ReferenceName = "Naluo Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylr", + ReferenceName = "Yalarnnga", + Scope = "I", + Type = "E" + }, + new + { + Id = "ylu", + ReferenceName = "Aribwaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "yly", + ReferenceName = "Nyâlayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymb", + ReferenceName = "Yambes", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymc", + ReferenceName = "Southern Muji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymd", + ReferenceName = "Muda", + Scope = "I", + Type = "L" + }, + new + { + Id = "yme", + ReferenceName = "Yameo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ymg", + ReferenceName = "Yamongeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymh", + ReferenceName = "Mili", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymi", + ReferenceName = "Moji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymk", + ReferenceName = "Makwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "yml", + ReferenceName = "Iamalele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymm", + ReferenceName = "Maay", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymn", + ReferenceName = "Yamna", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymo", + ReferenceName = "Yangum Mon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymp", + ReferenceName = "Yamap", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymq", + ReferenceName = "Qila Muji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymr", + ReferenceName = "Malasar", + Scope = "I", + Type = "L" + }, + new + { + Id = "yms", + ReferenceName = "Mysian", + Scope = "I", + Type = "A" + }, + new + { + Id = "ymx", + ReferenceName = "Northern Muji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymz", + ReferenceName = "Muzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yna", + ReferenceName = "Aluo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynd", + ReferenceName = "Yandruwandha", + Scope = "I", + Type = "E" + }, + new + { + Id = "yne", + ReferenceName = "Lang'e", + Scope = "I", + Type = "L" + }, + new + { + Id = "yng", + ReferenceName = "Yango", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynk", + ReferenceName = "Naukan Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynl", + ReferenceName = "Yangulam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynn", + ReferenceName = "Yana", + Scope = "I", + Type = "E" + }, + new + { + Id = "yno", + ReferenceName = "Yong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynq", + ReferenceName = "Yendang", + Scope = "I", + Type = "L" + }, + new + { + Id = "yns", + ReferenceName = "Yansi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynu", + ReferenceName = "Yahuna", + Scope = "I", + Type = "E" + }, + new + { + Id = "yob", + ReferenceName = "Yoba", + Scope = "I", + Type = "E" + }, + new + { + Id = "yog", + ReferenceName = "Yogad", + Scope = "I", + Type = "L" + }, + new + { + Id = "yoi", + ReferenceName = "Yonaguni", + Scope = "I", + Type = "L" + }, + new + { + Id = "yok", + ReferenceName = "Yokuts", + Scope = "I", + Type = "L" + }, + new + { + Id = "yol", + ReferenceName = "Yola", + Scope = "I", + Type = "E" + }, + new + { + Id = "yom", + ReferenceName = "Yombe", + Scope = "I", + Type = "L" + }, + new + { + Id = "yon", + ReferenceName = "Yongkom", + Scope = "I", + Type = "L" + }, + new + { + Id = "yor", + Part1 = "yo", + Part2B = "yor", + Part2T = "yor", + ReferenceName = "Yoruba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yot", + ReferenceName = "Yotti", + Scope = "I", + Type = "L" + }, + new + { + Id = "yox", + ReferenceName = "Yoron", + Scope = "I", + Type = "L" + }, + new + { + Id = "yoy", + ReferenceName = "Yoy", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypa", + ReferenceName = "Phala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypb", + ReferenceName = "Labo Phowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypg", + ReferenceName = "Phola", + Scope = "I", + Type = "L" + }, + new + { + Id = "yph", + ReferenceName = "Phupha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypm", + ReferenceName = "Phuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypn", + ReferenceName = "Ani Phowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypo", + ReferenceName = "Alo Phola", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypp", + ReferenceName = "Phupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypz", + ReferenceName = "Phuza", + Scope = "I", + Type = "L" + }, + new + { + Id = "yra", + ReferenceName = "Yerakai", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrb", + ReferenceName = "Yareba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yre", + ReferenceName = "Yaouré", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrk", + ReferenceName = "Nenets", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrl", + ReferenceName = "Nhengatu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrm", + ReferenceName = "Yirrk-Mel", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrn", + ReferenceName = "Yerong", + Scope = "I", + Type = "L" + }, + new + { + Id = "yro", + ReferenceName = "Yaroamë", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrs", + ReferenceName = "Yarsun", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrw", + ReferenceName = "Yarawata", + Scope = "I", + Type = "L" + }, + new + { + Id = "yry", + ReferenceName = "Yarluyandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysc", + ReferenceName = "Yassic", + Scope = "I", + Type = "E" + }, + new + { + Id = "ysd", + ReferenceName = "Samatao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysg", + ReferenceName = "Sonaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysl", + ReferenceName = "Yugoslavian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysn", + ReferenceName = "Sani", + Scope = "I", + Type = "L" + }, + new + { + Id = "yso", + ReferenceName = "Nisi (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysp", + ReferenceName = "Southern Lolopo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysr", + ReferenceName = "Sirenik Yupik", + Scope = "I", + Type = "E" + }, + new + { + Id = "yss", + ReferenceName = "Yessan-Mayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysy", + ReferenceName = "Sanie", + Scope = "I", + Type = "L" + }, + new + { + Id = "yta", + ReferenceName = "Talu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ytl", + ReferenceName = "Tanglang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ytp", + ReferenceName = "Thopho", + Scope = "I", + Type = "L" + }, + new + { + Id = "ytw", + ReferenceName = "Yout Wam", + Scope = "I", + Type = "L" + }, + new + { + Id = "yty", + ReferenceName = "Yatay", + Scope = "I", + Type = "E" + }, + new + { + Id = "yua", + ReferenceName = "Yucateco", + Scope = "I", + Type = "L" + }, + new + { + Id = "yub", + ReferenceName = "Yugambal", + Scope = "I", + Type = "E" + }, + new + { + Id = "yuc", + ReferenceName = "Yuchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yud", + ReferenceName = "Judeo-Tripolitanian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "yue", + ReferenceName = "Yue Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuf", + ReferenceName = "Havasupai-Walapai-Yavapai", + Scope = "I", + Type = "L" + }, + new + { + Id = "yug", + ReferenceName = "Yug", + Scope = "I", + Type = "E" + }, + new + { + Id = "yui", + ReferenceName = "Yurutí", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuj", + ReferenceName = "Karkar-Yuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuk", + ReferenceName = "Yuki", + Scope = "I", + Type = "E" + }, + new + { + Id = "yul", + ReferenceName = "Yulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yum", + ReferenceName = "Quechan", + Scope = "I", + Type = "L" + }, + new + { + Id = "yun", + ReferenceName = "Bena (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yup", + ReferenceName = "Yukpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuq", + ReferenceName = "Yuqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "yur", + ReferenceName = "Yurok", + Scope = "I", + Type = "E" + }, + new + { + Id = "yut", + ReferenceName = "Yopno", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuw", + ReferenceName = "Yau (Morobe Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yux", + ReferenceName = "Southern Yukaghir", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuy", + ReferenceName = "East Yugur", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuz", + ReferenceName = "Yuracare", + Scope = "I", + Type = "L" + }, + new + { + Id = "yva", + ReferenceName = "Yawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yvt", + ReferenceName = "Yavitero", + Scope = "I", + Type = "E" + }, + new + { + Id = "ywa", + ReferenceName = "Kalou", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywg", + ReferenceName = "Yinhawangka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywl", + ReferenceName = "Western Lalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywn", + ReferenceName = "Yawanawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywq", + ReferenceName = "Wuding-Luquan Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywr", + ReferenceName = "Yawuru", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywt", + ReferenceName = "Xishanba Lalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywu", + ReferenceName = "Wumeng Nasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yww", + ReferenceName = "Yawarawarga", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxa", + ReferenceName = "Mayawali", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxg", + ReferenceName = "Yagara", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxl", + ReferenceName = "Yardliyawarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxm", + ReferenceName = "Yinwum", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxu", + ReferenceName = "Yuyu", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxy", + ReferenceName = "Yabula Yabula", + Scope = "I", + Type = "E" + }, + new + { + Id = "yyr", + ReferenceName = "Yir Yoront", + Scope = "I", + Type = "E" + }, + new + { + Id = "yyu", + ReferenceName = "Yau (Sandaun Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yyz", + ReferenceName = "Ayizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yzg", + ReferenceName = "E'ma Buyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "yzk", + ReferenceName = "Zokhuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaa", + ReferenceName = "Sierra de Juárez Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zab", + ReferenceName = "Western Tlacolula Valley Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zac", + ReferenceName = "Ocotlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zad", + ReferenceName = "Cajonos Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zae", + ReferenceName = "Yareni Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaf", + ReferenceName = "Ayoquesco Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zag", + ReferenceName = "Zaghawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zah", + ReferenceName = "Zangwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "zai", + ReferenceName = "Isthmus Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaj", + ReferenceName = "Zaramo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zak", + ReferenceName = "Zanaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "zal", + ReferenceName = "Zauzou", + Scope = "I", + Type = "L" + }, + new + { + Id = "zam", + ReferenceName = "Miahuatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zao", + ReferenceName = "Ozolotepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zap", + Part2B = "zap", + Part2T = "zap", + ReferenceName = "Zapotec", + Scope = "M", + Type = "L" + }, + new + { + Id = "zaq", + ReferenceName = "Aloápam Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zar", + ReferenceName = "Rincón Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zas", + ReferenceName = "Santo Domingo Albarradas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zat", + ReferenceName = "Tabaa Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zau", + ReferenceName = "Zangskari", + Scope = "I", + Type = "L" + }, + new + { + Id = "zav", + ReferenceName = "Yatzachi Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaw", + ReferenceName = "Mitla Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zax", + ReferenceName = "Xadani Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zay", + ReferenceName = "Zayse-Zergulla", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaz", + ReferenceName = "Zari", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbc", + ReferenceName = "Central Berawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbe", + ReferenceName = "East Berawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbl", + Part2B = "zbl", + Part2T = "zbl", + ReferenceName = "Blissymbols", + Scope = "I", + Type = "C" + }, + new + { + Id = "zbt", + ReferenceName = "Batui", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbw", + ReferenceName = "West Berawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zca", + ReferenceName = "Coatecas Altas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zch", + ReferenceName = "Central Hongshuihe Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zdj", + ReferenceName = "Ngazidja Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "zea", + ReferenceName = "Zeeuws", + Scope = "I", + Type = "L" + }, + new + { + Id = "zeg", + ReferenceName = "Zenag", + Scope = "I", + Type = "L" + }, + new + { + Id = "zeh", + ReferenceName = "Eastern Hongshuihe Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zen", + Part2B = "zen", + Part2T = "zen", + ReferenceName = "Zenaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "zga", + ReferenceName = "Kinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgb", + ReferenceName = "Guibei Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgh", + Part2B = "zgh", + Part2T = "zgh", + ReferenceName = "Standard Moroccan Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgm", + ReferenceName = "Minz Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgn", + ReferenceName = "Guibian Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgr", + ReferenceName = "Magori", + Scope = "I", + Type = "L" + }, + new + { + Id = "zha", + Part1 = "za", + Part2B = "zha", + Part2T = "zha", + ReferenceName = "Zhuang", + Scope = "M", + Type = "L" + }, + new + { + Id = "zhb", + ReferenceName = "Zhaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "zhd", + ReferenceName = "Dai Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zhi", + ReferenceName = "Zhire", + Scope = "I", + Type = "L" + }, + new + { + Id = "zhn", + ReferenceName = "Nong Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zho", + Part1 = "zh", + Part2B = "chi", + Part2T = "zho", + ReferenceName = "Chinese", + Scope = "M", + Type = "L" + }, + new + { + Id = "zhw", + ReferenceName = "Zhoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zia", + ReferenceName = "Zia", + Scope = "I", + Type = "L" + }, + new + { + Id = "zib", + ReferenceName = "Zimbabwe Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "zik", + ReferenceName = "Zimakani", + Scope = "I", + Type = "L" + }, + new + { + Id = "zil", + ReferenceName = "Zialo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zim", + ReferenceName = "Mesme", + Scope = "I", + Type = "L" + }, + new + { + Id = "zin", + ReferenceName = "Zinza", + Scope = "I", + Type = "L" + }, + new + { + Id = "zir", + ReferenceName = "Ziriya", + Scope = "I", + Type = "E" + }, + new + { + Id = "ziw", + ReferenceName = "Zigula", + Scope = "I", + Type = "L" + }, + new + { + Id = "ziz", + ReferenceName = "Zizilivakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zka", + ReferenceName = "Kaimbulawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkb", + ReferenceName = "Koibal", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkd", + ReferenceName = "Kadu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkg", + ReferenceName = "Koguryo", + Scope = "I", + Type = "A" + }, + new + { + Id = "zkh", + ReferenceName = "Khorezmian", + Scope = "I", + Type = "H" + }, + new + { + Id = "zkk", + ReferenceName = "Karankawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkn", + ReferenceName = "Kanan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zko", + ReferenceName = "Kott", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkp", + ReferenceName = "São Paulo Kaingáng", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkr", + ReferenceName = "Zakhring", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkt", + ReferenceName = "Kitan", + Scope = "I", + Type = "H" + }, + new + { + Id = "zku", + ReferenceName = "Kaurna", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkv", + ReferenceName = "Krevinian", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkz", + ReferenceName = "Khazar", + Scope = "I", + Type = "H" + }, + new + { + Id = "zlj", + ReferenceName = "Liujiang Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zlm", + ReferenceName = "Malay (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zln", + ReferenceName = "Lianshan Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zlq", + ReferenceName = "Liuqian Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zma", + ReferenceName = "Manda (Australia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmb", + ReferenceName = "Zimba", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmc", + ReferenceName = "Margany", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmd", + ReferenceName = "Maridan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zme", + ReferenceName = "Mangerr", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmf", + ReferenceName = "Mfinu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmg", + ReferenceName = "Marti Ke", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmh", + ReferenceName = "Makolkol", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmi", + ReferenceName = "Negeri Sembilan Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmj", + ReferenceName = "Maridjabin", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmk", + ReferenceName = "Mandandanyi", + Scope = "I", + Type = "E" + }, + new + { + Id = "zml", + ReferenceName = "Matngala", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmm", + ReferenceName = "Marimanindji", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmn", + ReferenceName = "Mbangwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmo", + ReferenceName = "Molo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmp", + ReferenceName = "Mpuono", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmq", + ReferenceName = "Mituku", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmr", + ReferenceName = "Maranunggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zms", + ReferenceName = "Mbesa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmt", + ReferenceName = "Maringarr", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmu", + ReferenceName = "Muruwari", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmv", + ReferenceName = "Mbariman-Gudhinma", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmw", + ReferenceName = "Mbo (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmx", + ReferenceName = "Bomitaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmy", + ReferenceName = "Mariyedi", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmz", + ReferenceName = "Mbandja", + Scope = "I", + Type = "L" + }, + new + { + Id = "zna", + ReferenceName = "Zan Gula", + Scope = "I", + Type = "L" + }, + new + { + Id = "zne", + ReferenceName = "Zande (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zng", + ReferenceName = "Mang", + Scope = "I", + Type = "L" + }, + new + { + Id = "znk", + ReferenceName = "Manangkari", + Scope = "I", + Type = "E" + }, + new + { + Id = "zns", + ReferenceName = "Mangas", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoc", + ReferenceName = "Copainalá Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoh", + ReferenceName = "Chimalapa Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zom", + ReferenceName = "Zou", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoo", + ReferenceName = "Asunción Mixtepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoq", + ReferenceName = "Tabasco Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zor", + ReferenceName = "Rayón Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zos", + ReferenceName = "Francisco León Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpa", + ReferenceName = "Lachiguiri Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpb", + ReferenceName = "Yautepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpc", + ReferenceName = "Choapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpd", + ReferenceName = "Southeastern Ixtlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpe", + ReferenceName = "Petapa Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpf", + ReferenceName = "San Pedro Quiatoni Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpg", + ReferenceName = "Guevea De Humboldt Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zph", + ReferenceName = "Totomachapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpi", + ReferenceName = "Santa María Quiegolani Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpj", + ReferenceName = "Quiavicuzas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpk", + ReferenceName = "Tlacolulita Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpl", + ReferenceName = "Lachixío Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpm", + ReferenceName = "Mixtepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpn", + ReferenceName = "Santa Inés Yatzechi Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpo", + ReferenceName = "Amatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpp", + ReferenceName = "El Alto Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpq", + ReferenceName = "Zoogocho Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpr", + ReferenceName = "Santiago Xanica Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zps", + ReferenceName = "Coatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpt", + ReferenceName = "San Vicente Coatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpu", + ReferenceName = "Yalálag Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpv", + ReferenceName = "Chichicapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpw", + ReferenceName = "Zaniza Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpx", + ReferenceName = "San Baltazar Loxicha Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpy", + ReferenceName = "Mazaltepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpz", + ReferenceName = "Texmelucan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zqe", + ReferenceName = "Qiubei Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zra", + ReferenceName = "Kara (Korea)", + Scope = "I", + Type = "A" + }, + new + { + Id = "zrg", + ReferenceName = "Mirgan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zrn", + ReferenceName = "Zerenkel", + Scope = "I", + Type = "L" + }, + new + { + Id = "zro", + ReferenceName = "Záparo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zrp", + ReferenceName = "Zarphatic", + Scope = "I", + Type = "E" + }, + new + { + Id = "zrs", + ReferenceName = "Mairasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsa", + ReferenceName = "Sarasira", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsk", + ReferenceName = "Kaskean", + Scope = "I", + Type = "A" + }, + new + { + Id = "zsl", + ReferenceName = "Zambian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsm", + ReferenceName = "Standard Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsr", + ReferenceName = "Southern Rincon Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsu", + ReferenceName = "Sukurum", + Scope = "I", + Type = "L" + }, + new + { + Id = "zte", + ReferenceName = "Elotepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztg", + ReferenceName = "Xanaguía Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztl", + ReferenceName = "Lapaguía-Guivini Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztm", + ReferenceName = "San Agustín Mixtepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztn", + ReferenceName = "Santa Catarina Albarradas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztp", + ReferenceName = "Loxicha Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztq", + ReferenceName = "Quioquitani-Quierí Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zts", + ReferenceName = "Tilquiapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztt", + ReferenceName = "Tejalapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztu", + ReferenceName = "Güilá Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztx", + ReferenceName = "Zaachila Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zty", + ReferenceName = "Yatee Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zua", + ReferenceName = "Zeem", + Scope = "I", + Type = "L" + }, + new + { + Id = "zuh", + ReferenceName = "Tokano", + Scope = "I", + Type = "L" + }, + new + { + Id = "zul", + Part1 = "zu", + Part2B = "zul", + Part2T = "zul", + ReferenceName = "Zulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zum", + ReferenceName = "Kumzari", + Scope = "I", + Type = "L" + }, + new + { + Id = "zun", + Part2B = "zun", + Part2T = "zun", + ReferenceName = "Zuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "zuy", + ReferenceName = "Zumaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "zwa", + ReferenceName = "Zay", + Scope = "I", + Type = "L" + }, + new + { + Id = "zxx", + Part2B = "zxx", + Part2T = "zxx", + ReferenceName = "No linguistic content", + Scope = "S", + Type = "S" + }, + new + { + Id = "zyb", + ReferenceName = "Yongbei Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyg", + ReferenceName = "Yang Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyj", + ReferenceName = "Youjiang Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyn", + ReferenceName = "Yongnan Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyp", + ReferenceName = "Zyphe Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "zza", + Part2B = "zza", + Part2T = "zza", + ReferenceName = "Zaza", + Scope = "M", + Type = "L" + }, + new + { + Id = "zzj", + ReferenceName = "Zuojiang Zhuang", + Scope = "I", + Type = "L" + }); + }); + + modelBuilder.Entity("Cicm.Database.Models.License", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("FsfApproved"); + + b.Property("Link") + .HasMaxLength(512); + + b.Property("Name") + .IsRequired(); + + b.Property("OsiApproved"); + + b.Property("SPDX"); + + b.Property("Text") + .HasColumnType("longtext") + .HasMaxLength(131072); + + b.HasKey("Id"); + + b.HasIndex("FsfApproved"); + + b.HasIndex("Name"); + + b.HasIndex("OsiApproved"); + + b.HasIndex("SPDX"); + + b.ToTable("Licenses"); + + b.HasData( + new + { + Id = 1, + FsfApproved = false, + Name = "Fair use", + OsiApproved = false + }, + new + { + Id = 2, + FsfApproved = false, + Name = "Advertisement use", + OsiApproved = false + }, + new + { + Id = 3, + FsfApproved = false, + Name = "All rights reserved", + OsiApproved = false + }, + new + { + Id = 4, + FsfApproved = false, + Link = "https://spdx.org/licenses/0BSD.html#licenseText", + Name = "BSD Zero Clause License", + OsiApproved = true, + SPDX = "0BSD" + }, + new + { + Id = 5, + FsfApproved = false, + Link = "https://spdx.org/licenses/AAL.html#licenseText", + Name = "Attribution Assurance License", + OsiApproved = true, + SPDX = "AAL" + }, + new + { + Id = 6, + FsfApproved = false, + Link = "https://spdx.org/licenses/Abstyles.html#licenseText", + Name = "Abstyles License", + OsiApproved = false, + SPDX = "Abstyles" + }, + new + { + Id = 7, + FsfApproved = false, + Link = "https://spdx.org/licenses/Adobe-2006.html#licenseText", + Name = "Adobe Systems Incorporated Source Code License Agreement", + OsiApproved = false, + SPDX = "Adobe-2006" + }, + new + { + Id = 8, + FsfApproved = false, + Link = "https://spdx.org/licenses/Adobe-Glyph.html#licenseText", + Name = "Adobe Glyph List License", + OsiApproved = false, + SPDX = "Adobe-Glyph" + }, + new + { + Id = 9, + FsfApproved = false, + Link = "https://spdx.org/licenses/ADSL.html#licenseText", + Name = "Amazon Digital Services License", + OsiApproved = false, + SPDX = "ADSL" + }, + new + { + Id = 10, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-1.1.html#licenseText", + Name = "Academic Free License v1.1", + OsiApproved = true, + SPDX = "AFL-1.1" + }, + new + { + Id = 11, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-1.2.html#licenseText", + Name = "Academic Free License v1.2", + OsiApproved = true, + SPDX = "AFL-1.2" + }, + new + { + Id = 12, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-2.0.html#licenseText", + Name = "Academic Free License v2.0", + OsiApproved = true, + SPDX = "AFL-2.0" + }, + new + { + Id = 13, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-2.1.html#licenseText", + Name = "Academic Free License v2.1", + OsiApproved = true, + SPDX = "AFL-2.1" + }, + new + { + Id = 14, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-3.0.html#licenseText", + Name = "Academic Free License v3.0", + OsiApproved = true, + SPDX = "AFL-3.0" + }, + new + { + Id = 15, + FsfApproved = false, + Link = "https://spdx.org/licenses/Afmparse.html#licenseText", + Name = "Afmparse License", + OsiApproved = false, + SPDX = "Afmparse" + }, + new + { + Id = 16, + FsfApproved = false, + Link = "https://spdx.org/licenses/AGPL-1.0-only.html#licenseText", + Name = "Affero General Public License v1.0 only", + OsiApproved = false, + SPDX = "AGPL-1.0-only" + }, + new + { + Id = 17, + FsfApproved = false, + Link = "https://spdx.org/licenses/AGPL-1.0-or-later.html#licenseText", + Name = "Affero General Public License v1.0 or later", + OsiApproved = false, + SPDX = "AGPL-1.0-or-later" + }, + new + { + Id = 18, + FsfApproved = true, + Link = "https://spdx.org/licenses/AGPL-3.0-only.html#licenseText", + Name = "GNU Affero General Public License v3.0 only", + OsiApproved = true, + SPDX = "AGPL-3.0-only" + }, + new + { + Id = 19, + FsfApproved = true, + Link = "https://spdx.org/licenses/AGPL-3.0-or-later.html#licenseText", + Name = "GNU Affero General Public License v3.0 or later", + OsiApproved = true, + SPDX = "AGPL-3.0-or-later" + }, + new + { + Id = 20, + FsfApproved = false, + Link = "https://spdx.org/licenses/Aladdin.html#licenseText", + Name = "Aladdin Free Public License", + OsiApproved = false, + SPDX = "Aladdin" + }, + new + { + Id = 21, + FsfApproved = false, + Link = "https://spdx.org/licenses/AMDPLPA.html#licenseText", + Name = "AMD's plpa_map.c License", + OsiApproved = false, + SPDX = "AMDPLPA" + }, + new + { + Id = 22, + FsfApproved = false, + Link = "https://spdx.org/licenses/AML.html#licenseText", + Name = "Apple MIT License", + OsiApproved = false, + SPDX = "AML" + }, + new + { + Id = 23, + FsfApproved = false, + Link = "https://spdx.org/licenses/AMPAS.html#licenseText", + Name = "Academy of Motion Picture Arts and Sciences BSD", + OsiApproved = false, + SPDX = "AMPAS" + }, + new + { + Id = 24, + FsfApproved = false, + Link = "https://spdx.org/licenses/ANTLR-PD.html#licenseText", + Name = "ANTLR Software Rights Notice", + OsiApproved = false, + SPDX = "ANTLR-PD" + }, + new + { + Id = 25, + FsfApproved = true, + Link = "https://spdx.org/licenses/Apache-1.0.html#licenseText", + Name = "Apache License 1.0", + OsiApproved = false, + SPDX = "Apache-1.0" + }, + new + { + Id = 26, + FsfApproved = true, + Link = "https://spdx.org/licenses/Apache-1.1.html#licenseText", + Name = "Apache License 1.1", + OsiApproved = true, + SPDX = "Apache-1.1" + }, + new + { + Id = 27, + FsfApproved = true, + Link = "https://spdx.org/licenses/Apache-2.0.html#licenseText", + Name = "Apache License 2.0", + OsiApproved = true, + SPDX = "Apache-2.0" + }, + new + { + Id = 28, + FsfApproved = false, + Link = "https://spdx.org/licenses/APAFML.html#licenseText", + Name = "Adobe Postscript AFM License", + OsiApproved = false, + SPDX = "APAFML" + }, + new + { + Id = 29, + FsfApproved = false, + Link = "https://spdx.org/licenses/APL-1.0.html#licenseText", + Name = "Adaptive Public License 1.0", + OsiApproved = true, + SPDX = "APL-1.0" + }, + new + { + Id = 30, + FsfApproved = false, + Link = "https://spdx.org/licenses/APSL-1.0.html#licenseText", + Name = "Apple Public Source License 1.0", + OsiApproved = true, + SPDX = "APSL-1.0" + }, + new + { + Id = 31, + FsfApproved = false, + Link = "https://spdx.org/licenses/APSL-1.1.html#licenseText", + Name = "Apple Public Source License 1.1", + OsiApproved = true, + SPDX = "APSL-1.1" + }, + new + { + Id = 32, + FsfApproved = false, + Link = "https://spdx.org/licenses/APSL-1.2.html#licenseText", + Name = "Apple Public Source License 1.2", + OsiApproved = true, + SPDX = "APSL-1.2" + }, + new + { + Id = 33, + FsfApproved = true, + Link = "https://spdx.org/licenses/APSL-2.0.html#licenseText", + Name = "Apple Public Source License 2.0", + OsiApproved = true, + SPDX = "APSL-2.0" + }, + new + { + Id = 34, + FsfApproved = false, + Link = "https://spdx.org/licenses/Artistic-1.0.html#licenseText", + Name = "Artistic License 1.0", + OsiApproved = true, + SPDX = "Artistic-1.0" + }, + new + { + Id = 35, + FsfApproved = false, + Link = "https://spdx.org/licenses/Artistic-1.0-cl8.html#licenseText", + Name = "Artistic License 1.0 w/clause 8", + OsiApproved = true, + SPDX = "Artistic-1.0-cl8" + }, + new + { + Id = 36, + FsfApproved = false, + Link = "https://spdx.org/licenses/Artistic-1.0-Perl.html#licenseText", + Name = "Artistic License 1.0 (Perl)", + OsiApproved = true, + SPDX = "Artistic-1.0-Perl" + }, + new + { + Id = 37, + FsfApproved = true, + Link = "https://spdx.org/licenses/Artistic-2.0.html#licenseText", + Name = "Artistic License 2.0", + OsiApproved = true, + SPDX = "Artistic-2.0" + }, + new + { + Id = 38, + FsfApproved = false, + Link = "https://spdx.org/licenses/Bahyph.html#licenseText", + Name = "Bahyph License", + OsiApproved = false, + SPDX = "Bahyph" + }, + new + { + Id = 39, + FsfApproved = false, + Link = "https://spdx.org/licenses/Barr.html#licenseText", + Name = "Barr License", + OsiApproved = false, + SPDX = "Barr" + }, + new + { + Id = 40, + FsfApproved = false, + Link = "https://spdx.org/licenses/Beerware.html#licenseText", + Name = "Beerware License", + OsiApproved = false, + SPDX = "Beerware" + }, + new + { + Id = 41, + FsfApproved = false, + Link = "https://spdx.org/licenses/BitTorrent-1.0.html#licenseText", + Name = "BitTorrent Open Source License v1.0", + OsiApproved = false, + SPDX = "BitTorrent-1.0" + }, + new + { + Id = 42, + FsfApproved = true, + Link = "https://spdx.org/licenses/BitTorrent-1.1.html#licenseText", + Name = "BitTorrent Open Source License v1.1", + OsiApproved = false, + SPDX = "BitTorrent-1.1" + }, + new + { + Id = 43, + FsfApproved = false, + Link = "https://spdx.org/licenses/Borceux.html#licenseText", + Name = "Borceux license", + OsiApproved = false, + SPDX = "Borceux" + }, + new + { + Id = 44, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-1-Clause.html#licenseText", + Name = "BSD 1-Clause License", + OsiApproved = false, + SPDX = "BSD-1-Clause" + }, + new + { + Id = 45, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-2-Clause.html#licenseText", + Name = "BSD 2-Clause \"Simplified\" License", + OsiApproved = true, + SPDX = "BSD-2-Clause" + }, + new + { + Id = 46, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html#licenseText", + Name = "BSD 2-Clause FreeBSD License", + OsiApproved = false, + SPDX = "BSD-2-Clause-FreeBSD" + }, + new + { + Id = 47, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html#licenseText", + Name = "BSD 2-Clause NetBSD License", + OsiApproved = false, + SPDX = "BSD-2-Clause-NetBSD" + }, + new + { + Id = 48, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-2-Clause-Patent.html#licenseText", + Name = "BSD-2-Clause Plus Patent License", + OsiApproved = true, + SPDX = "BSD-2-Clause-Patent" + }, + new + { + Id = 49, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-3-Clause.html#licenseText", + Name = "BSD 3-Clause \"New\" or \"Revised\" License", + OsiApproved = true, + SPDX = "BSD-3-Clause" + }, + new + { + Id = 50, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-Attribution.html#licenseText", + Name = "BSD with attribution", + OsiApproved = false, + SPDX = "BSD-3-Clause-Attribution" + }, + new + { + Id = 51, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-3-Clause-Clear.html#licenseText", + Name = "BSD 3-Clause Clear License", + OsiApproved = false, + SPDX = "BSD-3-Clause-Clear" + }, + new + { + Id = 52, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-LBNL.html#licenseText", + Name = "Lawrence Berkeley National Labs BSD variant license", + OsiApproved = false, + SPDX = "BSD-3-Clause-LBNL" + }, + new + { + Id = 53, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html#licenseText", + Name = "BSD 3-Clause No Nuclear License", + OsiApproved = false, + SPDX = "BSD-3-Clause-No-Nuclear-License" + }, + new + { + Id = 54, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html#licenseText", + Name = "BSD 3-Clause No Nuclear License 2014", + OsiApproved = false, + SPDX = "BSD-3-Clause-No-Nuclear-License-2014" + }, + new + { + Id = 55, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html#licenseText", + Name = "BSD 3-Clause No Nuclear Warranty", + OsiApproved = false, + SPDX = "BSD-3-Clause-No-Nuclear-Warranty" + }, + new + { + Id = 56, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-4-Clause.html#licenseText", + Name = "BSD 4-Clause \"Original\" or \"Old\" License", + OsiApproved = false, + SPDX = "BSD-4-Clause" + }, + new + { + Id = 57, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-4-Clause-UC.html#licenseText", + Name = "BSD-4-Clause (University of California-Specific)", + OsiApproved = false, + SPDX = "BSD-4-Clause-UC" + }, + new + { + Id = 58, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-Protection.html#licenseText", + Name = "BSD Protection License", + OsiApproved = false, + SPDX = "BSD-Protection" + }, + new + { + Id = 59, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-Source-Code.html#licenseText", + Name = "BSD Source Code Attribution", + OsiApproved = false, + SPDX = "BSD-Source-Code" + }, + new + { + Id = 60, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSL-1.0.html#licenseText", + Name = "Boost Software License 1.0", + OsiApproved = true, + SPDX = "BSL-1.0" + }, + new + { + Id = 61, + FsfApproved = false, + Link = "https://spdx.org/licenses/bzip2-1.0.5.html#licenseText", + Name = "bzip2 and libbzip2 License v1.0.5", + OsiApproved = false, + SPDX = "bzip2-1.0.5" + }, + new + { + Id = 62, + FsfApproved = false, + Link = "https://spdx.org/licenses/bzip2-1.0.6.html#licenseText", + Name = "bzip2 and libbzip2 License v1.0.6", + OsiApproved = false, + SPDX = "bzip2-1.0.6" + }, + new + { + Id = 63, + FsfApproved = false, + Link = "https://spdx.org/licenses/Caldera.html#licenseText", + Name = "Caldera License", + OsiApproved = false, + SPDX = "Caldera" + }, + new + { + Id = 64, + FsfApproved = false, + Link = "https://spdx.org/licenses/CATOSL-1.1.html#licenseText", + Name = "Computer Associates Trusted Open Source License 1.1", + OsiApproved = true, + SPDX = "CATOSL-1.1" + }, + new + { + Id = 65, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-1.0.html#licenseText", + Name = "Creative Commons Attribution 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-1.0" + }, + new + { + Id = 66, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-2.0.html#licenseText", + Name = "Creative Commons Attribution 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-2.0" + }, + new + { + Id = 67, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-2.5.html#licenseText", + Name = "Creative Commons Attribution 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-2.5" + }, + new + { + Id = 68, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-3.0.html#licenseText", + Name = "Creative Commons Attribution 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-3.0" + }, + new + { + Id = 69, + FsfApproved = true, + Link = "https://spdx.org/licenses/CC-BY-4.0.html#licenseText", + Name = "Creative Commons Attribution 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-4.0" + }, + new + { + Id = 70, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-1.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-1.0" + }, + new + { + Id = 71, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-2.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-2.0" + }, + new + { + Id = 72, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-2.5.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-2.5" + }, + new + { + Id = 73, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-3.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-NC-3.0" + }, + new + { + Id = 74, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-4.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-NC-4.0" + }, + new + { + Id = 75, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-1.0" + }, + new + { + Id = 76, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-2.0" + }, + new + { + Id = 77, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-2.5" + }, + new + { + Id = 78, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-3.0" + }, + new + { + Id = 79, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-4.0" + }, + new + { + Id = 80, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-1.0" + }, + new + { + Id = 81, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-2.0" + }, + new + { + Id = 82, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-2.5" + }, + new + { + Id = 83, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-3.0" + }, + new + { + Id = 84, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-4.0" + }, + new + { + Id = 85, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-1.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-ND-1.0" + }, + new + { + Id = 86, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-2.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-ND-2.0" + }, + new + { + Id = 87, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-2.5.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-ND-2.5" + }, + new + { + Id = 88, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-3.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-ND-3.0" + }, + new + { + Id = 89, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-4.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-ND-4.0" + }, + new + { + Id = 90, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-1.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-SA-1.0" + }, + new + { + Id = 91, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-2.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-SA-2.0" + }, + new + { + Id = 92, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-2.5.html#licenseText", + Name = "Creative Commons Attribution Share Alike 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-SA-2.5" + }, + new + { + Id = 93, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-3.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-SA-3.0" + }, + new + { + Id = 94, + FsfApproved = true, + Link = "https://spdx.org/licenses/CC-BY-SA-4.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-SA-4.0" + }, + new + { + Id = 95, + FsfApproved = true, + Link = "https://spdx.org/licenses/CC0-1.0.html#licenseText", + Name = "Creative Commons Zero v1.0 Universal", + OsiApproved = false, + SPDX = "CC0-1.0" + }, + new + { + Id = 96, + FsfApproved = true, + Link = "https://spdx.org/licenses/CDDL-1.0.html#licenseText", + Name = "Common Development and Distribution License 1.0", + OsiApproved = true, + SPDX = "CDDL-1.0" + }, + new + { + Id = 97, + FsfApproved = false, + Link = "https://spdx.org/licenses/CDDL-1.1.html#licenseText", + Name = "Common Development and Distribution License 1.1", + OsiApproved = false, + SPDX = "CDDL-1.1" + }, + new + { + Id = 98, + FsfApproved = false, + Link = "https://spdx.org/licenses/CDLA-Permissive-1.0.html#licenseText", + Name = "Community Data License Agreement Permissive 1.0", + OsiApproved = false, + SPDX = "CDLA-Permissive-1.0" + }, + new + { + Id = 99, + FsfApproved = false, + Link = "https://spdx.org/licenses/CDLA-Sharing-1.0.html#licenseText", + Name = "Community Data License Agreement Sharing 1.0", + OsiApproved = false, + SPDX = "CDLA-Sharing-1.0" + }, + new + { + Id = 100, + FsfApproved = false, + Link = "https://spdx.org/licenses/CECILL-1.0.html#licenseText", + Name = "CeCILL Free Software License Agreement v1.0", + OsiApproved = false, + SPDX = "CECILL-1.0" + }, + new + { + Id = 101, + FsfApproved = false, + Link = "https://spdx.org/licenses/CECILL-1.1.html#licenseText", + Name = "CeCILL Free Software License Agreement v1.1", + OsiApproved = false, + SPDX = "CECILL-1.1" + }, + new + { + Id = 102, + FsfApproved = true, + Link = "https://spdx.org/licenses/CECILL-2.0.html#licenseText", + Name = "CeCILL Free Software License Agreement v2.0", + OsiApproved = false, + SPDX = "CECILL-2.0" + }, + new + { + Id = 103, + FsfApproved = false, + Link = "https://spdx.org/licenses/CECILL-2.1.html#licenseText", + Name = "CeCILL Free Software License Agreement v2.1", + OsiApproved = true, + SPDX = "CECILL-2.1" + }, + new + { + Id = 104, + FsfApproved = true, + Link = "https://spdx.org/licenses/CECILL-B.html#licenseText", + Name = "CeCILL-B Free Software License Agreement", + OsiApproved = false, + SPDX = "CECILL-B" + }, + new + { + Id = 105, + FsfApproved = true, + Link = "https://spdx.org/licenses/CECILL-C.html#licenseText", + Name = "CeCILL-C Free Software License Agreement", + OsiApproved = false, + SPDX = "CECILL-C" + }, + new + { + Id = 106, + FsfApproved = false, + Link = "https://spdx.org/licenses/CERN-OHL-1.1.html#licenseText", + Name = "CERN Open Hardware License v1.1", + OsiApproved = false, + SPDX = "CERN-OHL-1.1" + }, + new + { + Id = 107, + FsfApproved = false, + Link = "https://spdx.org/licenses/CERN-OHL-1.2.html#licenseText", + Name = "CERN Open Hardware Licence v1.2", + OsiApproved = false, + SPDX = "CERN-OHL-1.2" + }, + new + { + Id = 108, + FsfApproved = true, + Link = "https://spdx.org/licenses/ClArtistic.html#licenseText", + Name = "Clarified Artistic License", + OsiApproved = false, + SPDX = "ClArtistic" + }, + new + { + Id = 109, + FsfApproved = false, + Link = "https://spdx.org/licenses/CNRI-Jython.html#licenseText", + Name = "CNRI Jython License", + OsiApproved = false, + SPDX = "CNRI-Jython" + }, + new + { + Id = 110, + FsfApproved = false, + Link = "https://spdx.org/licenses/CNRI-Python.html#licenseText", + Name = "CNRI Python License", + OsiApproved = true, + SPDX = "CNRI-Python" + }, + new + { + Id = 111, + FsfApproved = false, + Link = "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html#licenseText", + Name = "CNRI Python Open Source GPL Compatible License Agreement", + OsiApproved = false, + SPDX = "CNRI-Python-GPL-Compatible" + }, + new + { + Id = 112, + FsfApproved = true, + Link = "https://spdx.org/licenses/Condor-1.1.html#licenseText", + Name = "Condor Public License v1.1", + OsiApproved = false, + SPDX = "Condor-1.1" + }, + new + { + Id = 113, + FsfApproved = false, + Link = "https://spdx.org/licenses/copyleft-next-0.3.0.html#licenseText", + Name = "copyleft-next 0.3.0", + OsiApproved = false, + SPDX = "copyleft-next-0.3.0" + }, + new + { + Id = 114, + FsfApproved = false, + Link = "https://spdx.org/licenses/copyleft-next-0.3.1.html#licenseText", + Name = "copyleft-next 0.3.1", + OsiApproved = false, + SPDX = "copyleft-next-0.3.1" + }, + new + { + Id = 115, + FsfApproved = true, + Link = "https://spdx.org/licenses/CPAL-1.0.html#licenseText", + Name = "Common Public Attribution License 1.0", + OsiApproved = true, + SPDX = "CPAL-1.0" + }, + new + { + Id = 116, + FsfApproved = true, + Link = "https://spdx.org/licenses/CPL-1.0.html#licenseText", + Name = "Common Public License 1.0", + OsiApproved = true, + SPDX = "CPL-1.0" + }, + new + { + Id = 117, + FsfApproved = false, + Link = "https://spdx.org/licenses/CPOL-1.02.html#licenseText", + Name = "Code Project Open License 1.02", + OsiApproved = false, + SPDX = "CPOL-1.02" + }, + new + { + Id = 118, + FsfApproved = false, + Link = "https://spdx.org/licenses/Crossword.html#licenseText", + Name = "Crossword License", + OsiApproved = false, + SPDX = "Crossword" + }, + new + { + Id = 119, + FsfApproved = false, + Link = "https://spdx.org/licenses/CrystalStacker.html#licenseText", + Name = "CrystalStacker License", + OsiApproved = false, + SPDX = "CrystalStacker" + }, + new + { + Id = 120, + FsfApproved = false, + Link = "https://spdx.org/licenses/CUA-OPL-1.0.html#licenseText", + Name = "CUA Office Public License v1.0", + OsiApproved = true, + SPDX = "CUA-OPL-1.0" + }, + new + { + Id = 121, + FsfApproved = false, + Link = "https://spdx.org/licenses/Cube.html#licenseText", + Name = "Cube License", + OsiApproved = false, + SPDX = "Cube" + }, + new + { + Id = 122, + FsfApproved = false, + Link = "https://spdx.org/licenses/curl.html#licenseText", + Name = "curl License", + OsiApproved = false, + SPDX = "curl" + }, + new + { + Id = 123, + FsfApproved = false, + Link = "https://spdx.org/licenses/D-FSL-1.0.html#licenseText", + Name = "Deutsche Freie Software Lizenz", + OsiApproved = false, + SPDX = "D-FSL-1.0" + }, + new + { + Id = 124, + FsfApproved = false, + Link = "https://spdx.org/licenses/diffmark.html#licenseText", + Name = "diffmark license", + OsiApproved = false, + SPDX = "diffmark" + }, + new + { + Id = 125, + FsfApproved = false, + Link = "https://spdx.org/licenses/DOC.html#licenseText", + Name = "DOC License", + OsiApproved = false, + SPDX = "DOC" + }, + new + { + Id = 126, + FsfApproved = false, + Link = "https://spdx.org/licenses/Dotseqn.html#licenseText", + Name = "Dotseqn License", + OsiApproved = false, + SPDX = "Dotseqn" + }, + new + { + Id = 127, + FsfApproved = false, + Link = "https://spdx.org/licenses/DSDP.html#licenseText", + Name = "DSDP License", + OsiApproved = false, + SPDX = "DSDP" + }, + new + { + Id = 128, + FsfApproved = false, + Link = "https://spdx.org/licenses/dvipdfm.html#licenseText", + Name = "dvipdfm License", + OsiApproved = false, + SPDX = "dvipdfm" + }, + new + { + Id = 129, + FsfApproved = false, + Link = "https://spdx.org/licenses/ECL-1.0.html#licenseText", + Name = "Educational Community License v1.0", + OsiApproved = true, + SPDX = "ECL-1.0" + }, + new + { + Id = 130, + FsfApproved = true, + Link = "https://spdx.org/licenses/ECL-2.0.html#licenseText", + Name = "Educational Community License v2.0", + OsiApproved = true, + SPDX = "ECL-2.0" + }, + new + { + Id = 131, + FsfApproved = false, + Link = "https://spdx.org/licenses/EFL-1.0.html#licenseText", + Name = "Eiffel Forum License v1.0", + OsiApproved = true, + SPDX = "EFL-1.0" + }, + new + { + Id = 132, + FsfApproved = true, + Link = "https://spdx.org/licenses/EFL-2.0.html#licenseText", + Name = "Eiffel Forum License v2.0", + OsiApproved = true, + SPDX = "EFL-2.0" + }, + new + { + Id = 133, + FsfApproved = false, + Link = "https://spdx.org/licenses/eGenix.html#licenseText", + Name = "eGenix.com Public License 1.1.0", + OsiApproved = false, + SPDX = "eGenix" + }, + new + { + Id = 134, + FsfApproved = false, + Link = "https://spdx.org/licenses/Entessa.html#licenseText", + Name = "Entessa Public License v1.0", + OsiApproved = true, + SPDX = "Entessa" + }, + new + { + Id = 135, + FsfApproved = true, + Link = "https://spdx.org/licenses/EPL-1.0.html#licenseText", + Name = "Eclipse Public License 1.0", + OsiApproved = true, + SPDX = "EPL-1.0" + }, + new + { + Id = 136, + FsfApproved = true, + Link = "https://spdx.org/licenses/EPL-2.0.html#licenseText", + Name = "Eclipse Public License 2.0", + OsiApproved = true, + SPDX = "EPL-2.0" + }, + new + { + Id = 137, + FsfApproved = false, + Link = "https://spdx.org/licenses/ErlPL-1.1.html#licenseText", + Name = "Erlang Public License v1.1", + OsiApproved = false, + SPDX = "ErlPL-1.1" + }, + new + { + Id = 138, + FsfApproved = true, + Link = "https://spdx.org/licenses/EUDatagrid.html#licenseText", + Name = "EU DataGrid Software License", + OsiApproved = true, + SPDX = "EUDatagrid" + }, + new + { + Id = 139, + FsfApproved = false, + Link = "https://spdx.org/licenses/EUPL-1.0.html#licenseText", + Name = "European Union Public License 1.0", + OsiApproved = false, + SPDX = "EUPL-1.0" + }, + new + { + Id = 140, + FsfApproved = true, + Link = "https://spdx.org/licenses/EUPL-1.1.html#licenseText", + Name = "European Union Public License 1.1", + OsiApproved = true, + SPDX = "EUPL-1.1" + }, + new + { + Id = 141, + FsfApproved = true, + Link = "https://spdx.org/licenses/EUPL-1.2.html#licenseText", + Name = "European Union Public License 1.2", + OsiApproved = true, + SPDX = "EUPL-1.2" + }, + new + { + Id = 142, + FsfApproved = false, + Link = "https://spdx.org/licenses/Eurosym.html#licenseText", + Name = "Eurosym License", + OsiApproved = false, + SPDX = "Eurosym" + }, + new + { + Id = 143, + FsfApproved = false, + Link = "https://spdx.org/licenses/Fair.html#licenseText", + Name = "Fair License", + OsiApproved = true, + SPDX = "Fair" + }, + new + { + Id = 144, + FsfApproved = false, + Link = "https://spdx.org/licenses/Frameworx-1.0.html#licenseText", + Name = "Frameworx Open License 1.0", + OsiApproved = true, + SPDX = "Frameworx-1.0" + }, + new + { + Id = 145, + FsfApproved = false, + Link = "https://spdx.org/licenses/FreeImage.html#licenseText", + Name = "FreeImage Public License v1.0", + OsiApproved = false, + SPDX = "FreeImage" + }, + new + { + Id = 146, + FsfApproved = true, + Link = "https://spdx.org/licenses/FSFAP.html#licenseText", + Name = "FSF All Permissive License", + OsiApproved = false, + SPDX = "FSFAP" + }, + new + { + Id = 147, + FsfApproved = false, + Link = "https://spdx.org/licenses/FSFUL.html#licenseText", + Name = "FSF Unlimited License", + OsiApproved = false, + SPDX = "FSFUL" + }, + new + { + Id = 148, + FsfApproved = false, + Link = "https://spdx.org/licenses/FSFULLR.html#licenseText", + Name = "FSF Unlimited License (with License Retention)", + OsiApproved = false, + SPDX = "FSFULLR" + }, + new + { + Id = 149, + FsfApproved = true, + Link = "https://spdx.org/licenses/FTL.html#licenseText", + Name = "Freetype Project License", + OsiApproved = false, + SPDX = "FTL" + }, + new + { + Id = 150, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.1-only.html#licenseText", + Name = "GNU Free Documentation License v1.1 only", + OsiApproved = false, + SPDX = "GFDL-1.1-only" + }, + new + { + Id = 151, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.1-or-later.html#licenseText", + Name = "GNU Free Documentation License v1.1 or later", + OsiApproved = false, + SPDX = "GFDL-1.1-or-later" + }, + new + { + Id = 152, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.2-only.html#licenseText", + Name = "GNU Free Documentation License v1.2 only", + OsiApproved = false, + SPDX = "GFDL-1.2-only" + }, + new + { + Id = 153, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.2-or-later.html#licenseText", + Name = "GNU Free Documentation License v1.2 or later", + OsiApproved = false, + SPDX = "GFDL-1.2-or-later" + }, + new + { + Id = 154, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.3-only.html#licenseText", + Name = "GNU Free Documentation License v1.3 only", + OsiApproved = false, + SPDX = "GFDL-1.3-only" + }, + new + { + Id = 155, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.3-or-later.html#licenseText", + Name = "GNU Free Documentation License v1.3 or later", + OsiApproved = false, + SPDX = "GFDL-1.3-or-later" + }, + new + { + Id = 156, + FsfApproved = false, + Link = "https://spdx.org/licenses/Giftware.html#licenseText", + Name = "Giftware License", + OsiApproved = false, + SPDX = "Giftware" + }, + new + { + Id = 157, + FsfApproved = false, + Link = "https://spdx.org/licenses/GL2PS.html#licenseText", + Name = "GL2PS License", + OsiApproved = false, + SPDX = "GL2PS" + }, + new + { + Id = 158, + FsfApproved = false, + Link = "https://spdx.org/licenses/Glide.html#licenseText", + Name = "3dfx Glide License", + OsiApproved = false, + SPDX = "Glide" + }, + new + { + Id = 159, + FsfApproved = false, + Link = "https://spdx.org/licenses/Glulxe.html#licenseText", + Name = "Glulxe License", + OsiApproved = false, + SPDX = "Glulxe" + }, + new + { + Id = 160, + FsfApproved = true, + Link = "https://spdx.org/licenses/gnuplot.html#licenseText", + Name = "gnuplot License", + OsiApproved = false, + SPDX = "gnuplot" + }, + new + { + Id = 161, + FsfApproved = false, + Link = "https://spdx.org/licenses/GPL-1.0-only.html#licenseText", + Name = "GNU General Public License v1.0 only", + OsiApproved = false, + SPDX = "GPL-1.0-only" + }, + new + { + Id = 162, + FsfApproved = false, + Link = "https://spdx.org/licenses/GPL-1.0-or-later.html#licenseText", + Name = "GNU General Public License v1.0 or later", + OsiApproved = false, + SPDX = "GPL-1.0-or-later" + }, + new + { + Id = 163, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-2.0-only.html#licenseText", + Name = "GNU General Public License v2.0 only", + OsiApproved = true, + SPDX = "GPL-2.0-only" + }, + new + { + Id = 164, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-2.0-or-later.html#licenseText", + Name = "GNU General Public License v2.0 or later", + OsiApproved = true, + SPDX = "GPL-2.0-or-later" + }, + new + { + Id = 165, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-3.0-only.html#licenseText", + Name = "GNU General Public License v3.0 only", + OsiApproved = true, + SPDX = "GPL-3.0-only" + }, + new + { + Id = 166, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-3.0-or-later.html#licenseText", + Name = "GNU General Public License v3.0 or later", + OsiApproved = true, + SPDX = "GPL-3.0-or-later" + }, + new + { + Id = 167, + FsfApproved = false, + Link = "https://spdx.org/licenses/gSOAP-1.3b.html#licenseText", + Name = "gSOAP Public License v1.3b", + OsiApproved = false, + SPDX = "gSOAP-1.3b" + }, + new + { + Id = 168, + FsfApproved = false, + Link = "https://spdx.org/licenses/HaskellReport.html#licenseText", + Name = "Haskell Language Report License", + OsiApproved = false, + SPDX = "HaskellReport" + }, + new + { + Id = 169, + FsfApproved = true, + Link = "https://spdx.org/licenses/HPND.html#licenseText", + Name = "Historical Permission Notice and Disclaimer", + OsiApproved = true, + SPDX = "HPND" + }, + new + { + Id = 170, + FsfApproved = false, + Link = "https://spdx.org/licenses/HPND-sell-variant.html#licenseText", + Name = "Historical Permission Notice and Disclaimer - sell variant", + OsiApproved = false, + SPDX = "HPND-sell-variant" + }, + new + { + Id = 171, + FsfApproved = false, + Link = "https://spdx.org/licenses/IBM-pibs.html#licenseText", + Name = "IBM PowerPC Initialization and Boot Software", + OsiApproved = false, + SPDX = "IBM-pibs" + }, + new + { + Id = 172, + FsfApproved = false, + Link = "https://spdx.org/licenses/ICU.html#licenseText", + Name = "ICU License", + OsiApproved = false, + SPDX = "ICU" + }, + new + { + Id = 173, + FsfApproved = true, + Link = "https://spdx.org/licenses/IJG.html#licenseText", + Name = "Independent JPEG Group License", + OsiApproved = false, + SPDX = "IJG" + }, + new + { + Id = 174, + FsfApproved = false, + Link = "https://spdx.org/licenses/ImageMagick.html#licenseText", + Name = "ImageMagick License", + OsiApproved = false, + SPDX = "ImageMagick" + }, + new + { + Id = 175, + FsfApproved = true, + Link = "https://spdx.org/licenses/iMatix.html#licenseText", + Name = "iMatix Standard Function Library Agreement", + OsiApproved = false, + SPDX = "iMatix" + }, + new + { + Id = 176, + FsfApproved = true, + Link = "https://spdx.org/licenses/Imlib2.html#licenseText", + Name = "Imlib2 License", + OsiApproved = false, + SPDX = "Imlib2" + }, + new + { + Id = 177, + FsfApproved = false, + Link = "https://spdx.org/licenses/Info-ZIP.html#licenseText", + Name = "Info-ZIP License", + OsiApproved = false, + SPDX = "Info-ZIP" + }, + new + { + Id = 178, + FsfApproved = true, + Link = "https://spdx.org/licenses/Intel.html#licenseText", + Name = "Intel Open Source License", + OsiApproved = true, + SPDX = "Intel" + }, + new + { + Id = 179, + FsfApproved = false, + Link = "https://spdx.org/licenses/Intel-ACPI.html#licenseText", + Name = "Intel ACPI Software License Agreement", + OsiApproved = false, + SPDX = "Intel-ACPI" + }, + new + { + Id = 180, + FsfApproved = false, + Link = "https://spdx.org/licenses/Interbase-1.0.html#licenseText", + Name = "Interbase Public License v1.0", + OsiApproved = false, + SPDX = "Interbase-1.0" + }, + new + { + Id = 181, + FsfApproved = true, + Link = "https://spdx.org/licenses/IPA.html#licenseText", + Name = "IPA Font License", + OsiApproved = true, + SPDX = "IPA" + }, + new + { + Id = 182, + FsfApproved = true, + Link = "https://spdx.org/licenses/IPL-1.0.html#licenseText", + Name = "IBM Public License v1.0", + OsiApproved = true, + SPDX = "IPL-1.0" + }, + new + { + Id = 183, + FsfApproved = true, + Link = "https://spdx.org/licenses/ISC.html#licenseText", + Name = "ISC License", + OsiApproved = true, + SPDX = "ISC" + }, + new + { + Id = 184, + FsfApproved = false, + Link = "https://spdx.org/licenses/JasPer-2.0.html#licenseText", + Name = "JasPer License", + OsiApproved = false, + SPDX = "JasPer-2.0" + }, + new + { + Id = 185, + FsfApproved = false, + Link = "https://spdx.org/licenses/JPNIC.html#licenseText", + Name = "Japan Network Information Center License", + OsiApproved = false, + SPDX = "JPNIC" + }, + new + { + Id = 186, + FsfApproved = false, + Link = "https://spdx.org/licenses/JSON.html#licenseText", + Name = "JSON License", + OsiApproved = false, + SPDX = "JSON" + }, + new + { + Id = 187, + FsfApproved = false, + Link = "https://spdx.org/licenses/LAL-1.2.html#licenseText", + Name = "Licence Art Libre 1.2", + OsiApproved = false, + SPDX = "LAL-1.2" + }, + new + { + Id = 188, + FsfApproved = false, + Link = "https://spdx.org/licenses/LAL-1.3.html#licenseText", + Name = "Licence Art Libre 1.3", + OsiApproved = false, + SPDX = "LAL-1.3" + }, + new + { + Id = 189, + FsfApproved = false, + Link = "https://spdx.org/licenses/Latex2e.html#licenseText", + Name = "Latex2e License", + OsiApproved = false, + SPDX = "Latex2e" + }, + new + { + Id = 190, + FsfApproved = false, + Link = "https://spdx.org/licenses/Leptonica.html#licenseText", + Name = "Leptonica License", + OsiApproved = false, + SPDX = "Leptonica" + }, + new + { + Id = 191, + FsfApproved = false, + Link = "https://spdx.org/licenses/LGPL-2.0-only.html#licenseText", + Name = "GNU Library General Public License v2 only", + OsiApproved = true, + SPDX = "LGPL-2.0-only" + }, + new + { + Id = 192, + FsfApproved = false, + Link = "https://spdx.org/licenses/LGPL-2.0-or-later.html#licenseText", + Name = "GNU Library General Public License v2 or later", + OsiApproved = true, + SPDX = "LGPL-2.0-or-later" + }, + new + { + Id = 193, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-2.1-only.html#licenseText", + Name = "GNU Lesser General Public License v2.1 only", + OsiApproved = true, + SPDX = "LGPL-2.1-only" + }, + new + { + Id = 194, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-2.1-or-later.html#licenseText", + Name = "GNU Lesser General Public License v2.1 or later", + OsiApproved = true, + SPDX = "LGPL-2.1-or-later" + }, + new + { + Id = 195, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-3.0-only.html#licenseText", + Name = "GNU Lesser General Public License v3.0 only", + OsiApproved = true, + SPDX = "LGPL-3.0-only" + }, + new + { + Id = 196, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-3.0-or-later.html#licenseText", + Name = "GNU Lesser General Public License v3.0 or later", + OsiApproved = true, + SPDX = "LGPL-3.0-or-later" + }, + new + { + Id = 197, + FsfApproved = false, + Link = "https://spdx.org/licenses/LGPLLR.html#licenseText", + Name = "Lesser General Public License For Linguistic Resources", + OsiApproved = false, + SPDX = "LGPLLR" + }, + new + { + Id = 198, + FsfApproved = false, + Link = "https://spdx.org/licenses/Libpng.html#licenseText", + Name = "libpng License", + OsiApproved = false, + SPDX = "Libpng" + }, + new + { + Id = 199, + FsfApproved = false, + Link = "https://spdx.org/licenses/libpng-2.0.html#licenseText", + Name = "PNG Reference Library version 2", + OsiApproved = false, + SPDX = "libpng-2.0" + }, + new + { + Id = 200, + FsfApproved = false, + Link = "https://spdx.org/licenses/libtiff.html#licenseText", + Name = "libtiff License", + OsiApproved = false, + SPDX = "libtiff" + }, + new + { + Id = 201, + FsfApproved = false, + Link = "https://spdx.org/licenses/LiLiQ-P-1.1.html#licenseText", + Name = "Licence Libre du Québec – Permissive version 1.1", + OsiApproved = true, + SPDX = "LiLiQ-P-1.1" + }, + new + { + Id = 202, + FsfApproved = false, + Link = "https://spdx.org/licenses/LiLiQ-R-1.1.html#licenseText", + Name = "Licence Libre du Québec – Réciprocité version 1.1", + OsiApproved = true, + SPDX = "LiLiQ-R-1.1" + }, + new + { + Id = 203, + FsfApproved = false, + Link = "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html#licenseText", + Name = "Licence Libre du Québec – Réciprocité forte version 1.1", + OsiApproved = true, + SPDX = "LiLiQ-Rplus-1.1" + }, + new + { + Id = 204, + FsfApproved = false, + Link = "https://spdx.org/licenses/Linux-OpenIB.html#licenseText", + Name = "Linux Kernel Variant of OpenIB.org license", + OsiApproved = false, + SPDX = "Linux-OpenIB" + }, + new + { + Id = 205, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPL-1.0.html#licenseText", + Name = "Lucent Public License Version 1.0", + OsiApproved = true, + SPDX = "LPL-1.0" + }, + new + { + Id = 206, + FsfApproved = true, + Link = "https://spdx.org/licenses/LPL-1.02.html#licenseText", + Name = "Lucent Public License v1.02", + OsiApproved = true, + SPDX = "LPL-1.02" + }, + new + { + Id = 207, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPPL-1.0.html#licenseText", + Name = "LaTeX Project Public License v1.0", + OsiApproved = false, + SPDX = "LPPL-1.0" + }, + new + { + Id = 208, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPPL-1.1.html#licenseText", + Name = "LaTeX Project Public License v1.1", + OsiApproved = false, + SPDX = "LPPL-1.1" + }, + new + { + Id = 209, + FsfApproved = true, + Link = "https://spdx.org/licenses/LPPL-1.2.html#licenseText", + Name = "LaTeX Project Public License v1.2", + OsiApproved = false, + SPDX = "LPPL-1.2" + }, + new + { + Id = 210, + FsfApproved = true, + Link = "https://spdx.org/licenses/LPPL-1.3a.html#licenseText", + Name = "LaTeX Project Public License v1.3a", + OsiApproved = false, + SPDX = "LPPL-1.3a" + }, + new + { + Id = 211, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPPL-1.3c.html#licenseText", + Name = "LaTeX Project Public License v1.3c", + OsiApproved = true, + SPDX = "LPPL-1.3c" + }, + new + { + Id = 212, + FsfApproved = false, + Link = "https://spdx.org/licenses/MakeIndex.html#licenseText", + Name = "MakeIndex License", + OsiApproved = false, + SPDX = "MakeIndex" + }, + new + { + Id = 213, + FsfApproved = false, + Link = "https://spdx.org/licenses/MirOS.html#licenseText", + Name = "MirOS License", + OsiApproved = true, + SPDX = "MirOS" + }, + new + { + Id = 214, + FsfApproved = true, + Link = "https://spdx.org/licenses/MIT.html#licenseText", + Name = "MIT License", + OsiApproved = true, + SPDX = "MIT" + }, + new + { + Id = 215, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-0.html#licenseText", + Name = "MIT No Attribution", + OsiApproved = true, + SPDX = "MIT-0" + }, + new + { + Id = 216, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-advertising.html#licenseText", + Name = "Enlightenment License (e16)", + OsiApproved = false, + SPDX = "MIT-advertising" + }, + new + { + Id = 217, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-CMU.html#licenseText", + Name = "CMU License", + OsiApproved = false, + SPDX = "MIT-CMU" + }, + new + { + Id = 218, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-enna.html#licenseText", + Name = "enna License", + OsiApproved = false, + SPDX = "MIT-enna" + }, + new + { + Id = 219, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-feh.html#licenseText", + Name = "feh License", + OsiApproved = false, + SPDX = "MIT-feh" + }, + new + { + Id = 220, + FsfApproved = false, + Link = "https://spdx.org/licenses/MITNFA.html#licenseText", + Name = "MIT +no-false-attribs license", + OsiApproved = false, + SPDX = "MITNFA" + }, + new + { + Id = 221, + FsfApproved = false, + Link = "https://spdx.org/licenses/Motosoto.html#licenseText", + Name = "Motosoto License", + OsiApproved = true, + SPDX = "Motosoto" + }, + new + { + Id = 222, + FsfApproved = false, + Link = "https://spdx.org/licenses/mpich2.html#licenseText", + Name = "mpich2 License", + OsiApproved = false, + SPDX = "mpich2" + }, + new + { + Id = 223, + FsfApproved = false, + Link = "https://spdx.org/licenses/MPL-1.0.html#licenseText", + Name = "Mozilla Public License 1.0", + OsiApproved = true, + SPDX = "MPL-1.0" + }, + new + { + Id = 224, + FsfApproved = true, + Link = "https://spdx.org/licenses/MPL-1.1.html#licenseText", + Name = "Mozilla Public License 1.1", + OsiApproved = true, + SPDX = "MPL-1.1" + }, + new + { + Id = 225, + FsfApproved = true, + Link = "https://spdx.org/licenses/MPL-2.0.html#licenseText", + Name = "Mozilla Public License 2.0", + OsiApproved = true, + SPDX = "MPL-2.0" + }, + new + { + Id = 226, + FsfApproved = false, + Link = "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html#licenseText", + Name = "Mozilla Public License 2.0 (no copyleft exception)", + OsiApproved = true, + SPDX = "MPL-2.0-no-copyleft-exception" + }, + new + { + Id = 227, + FsfApproved = true, + Link = "https://spdx.org/licenses/MS-PL.html#licenseText", + Name = "Microsoft Public License", + OsiApproved = true, + SPDX = "MS-PL" + }, + new + { + Id = 228, + FsfApproved = true, + Link = "https://spdx.org/licenses/MS-RL.html#licenseText", + Name = "Microsoft Reciprocal License", + OsiApproved = true, + SPDX = "MS-RL" + }, + new + { + Id = 229, + FsfApproved = false, + Link = "https://spdx.org/licenses/MTLL.html#licenseText", + Name = "Matrix Template Library License", + OsiApproved = false, + SPDX = "MTLL" + }, + new + { + Id = 230, + FsfApproved = false, + Link = "https://spdx.org/licenses/Multics.html#licenseText", + Name = "Multics License", + OsiApproved = true, + SPDX = "Multics" + }, + new + { + Id = 231, + FsfApproved = false, + Link = "https://spdx.org/licenses/Mup.html#licenseText", + Name = "Mup License", + OsiApproved = false, + SPDX = "Mup" + }, + new + { + Id = 232, + FsfApproved = false, + Link = "https://spdx.org/licenses/NASA-1.3.html#licenseText", + Name = "NASA Open Source Agreement 1.3", + OsiApproved = true, + SPDX = "NASA-1.3" + }, + new + { + Id = 233, + FsfApproved = false, + Link = "https://spdx.org/licenses/Naumen.html#licenseText", + Name = "Naumen Public License", + OsiApproved = true, + SPDX = "Naumen" + }, + new + { + Id = 234, + FsfApproved = false, + Link = "https://spdx.org/licenses/NBPL-1.0.html#licenseText", + Name = "Net Boolean Public License v1", + OsiApproved = false, + SPDX = "NBPL-1.0" + }, + new + { + Id = 235, + FsfApproved = true, + Link = "https://spdx.org/licenses/NCSA.html#licenseText", + Name = "University of Illinois/NCSA Open Source License", + OsiApproved = true, + SPDX = "NCSA" + }, + new + { + Id = 236, + FsfApproved = false, + Link = "https://spdx.org/licenses/Net-SNMP.html#licenseText", + Name = "Net-SNMP License", + OsiApproved = false, + SPDX = "Net-SNMP" + }, + new + { + Id = 237, + FsfApproved = false, + Link = "https://spdx.org/licenses/NetCDF.html#licenseText", + Name = "NetCDF license", + OsiApproved = false, + SPDX = "NetCDF" + }, + new + { + Id = 238, + FsfApproved = false, + Link = "https://spdx.org/licenses/Newsletr.html#licenseText", + Name = "Newsletr License", + OsiApproved = false, + SPDX = "Newsletr" + }, + new + { + Id = 239, + FsfApproved = false, + Link = "https://spdx.org/licenses/NGPL.html#licenseText", + Name = "Nethack General Public License", + OsiApproved = true, + SPDX = "NGPL" + }, + new + { + Id = 240, + FsfApproved = false, + Link = "https://spdx.org/licenses/NLOD-1.0.html#licenseText", + Name = "Norwegian Licence for Open Government Data", + OsiApproved = false, + SPDX = "NLOD-1.0" + }, + new + { + Id = 241, + FsfApproved = false, + Link = "https://spdx.org/licenses/NLPL.html#licenseText", + Name = "No Limit Public License", + OsiApproved = false, + SPDX = "NLPL" + }, + new + { + Id = 242, + FsfApproved = true, + Link = "https://spdx.org/licenses/Nokia.html#licenseText", + Name = "Nokia Open Source License", + OsiApproved = true, + SPDX = "Nokia" + }, + new + { + Id = 243, + FsfApproved = true, + Link = "https://spdx.org/licenses/NOSL.html#licenseText", + Name = "Netizen Open Source License", + OsiApproved = false, + SPDX = "NOSL" + }, + new + { + Id = 244, + FsfApproved = false, + Link = "https://spdx.org/licenses/Noweb.html#licenseText", + Name = "Noweb License", + OsiApproved = false, + SPDX = "Noweb" + }, + new + { + Id = 245, + FsfApproved = true, + Link = "https://spdx.org/licenses/NPL-1.0.html#licenseText", + Name = "Netscape Public License v1.0", + OsiApproved = false, + SPDX = "NPL-1.0" + }, + new + { + Id = 246, + FsfApproved = true, + Link = "https://spdx.org/licenses/NPL-1.1.html#licenseText", + Name = "Netscape Public License v1.1", + OsiApproved = false, + SPDX = "NPL-1.1" + }, + new + { + Id = 247, + FsfApproved = false, + Link = "https://spdx.org/licenses/NPOSL-3.0.html#licenseText", + Name = "Non-Profit Open Software License 3.0", + OsiApproved = true, + SPDX = "NPOSL-3.0" + }, + new + { + Id = 248, + FsfApproved = false, + Link = "https://spdx.org/licenses/NRL.html#licenseText", + Name = "NRL License", + OsiApproved = false, + SPDX = "NRL" + }, + new + { + Id = 249, + FsfApproved = false, + Link = "https://spdx.org/licenses/NTP.html#licenseText", + Name = "NTP License", + OsiApproved = true, + SPDX = "NTP" + }, + new + { + Id = 250, + FsfApproved = false, + Link = "https://spdx.org/licenses/OCCT-PL.html#licenseText", + Name = "Open CASCADE Technology Public License", + OsiApproved = false, + SPDX = "OCCT-PL" + }, + new + { + Id = 251, + FsfApproved = false, + Link = "https://spdx.org/licenses/OCLC-2.0.html#licenseText", + Name = "OCLC Research Public License 2.0", + OsiApproved = true, + SPDX = "OCLC-2.0" + }, + new + { + Id = 252, + FsfApproved = true, + Link = "https://spdx.org/licenses/ODbL-1.0.html#licenseText", + Name = "ODC Open Database License v1.0", + OsiApproved = false, + SPDX = "ODbL-1.0" + }, + new + { + Id = 253, + FsfApproved = false, + Link = "https://spdx.org/licenses/ODC-By-1.0.html#licenseText", + Name = "Open Data Commons Attribution License v1.0", + OsiApproved = false, + SPDX = "ODC-By-1.0" + }, + new + { + Id = 254, + FsfApproved = true, + Link = "https://spdx.org/licenses/OFL-1.0.html#licenseText", + Name = "SIL Open Font License 1.0", + OsiApproved = false, + SPDX = "OFL-1.0" + }, + new + { + Id = 255, + FsfApproved = true, + Link = "https://spdx.org/licenses/OFL-1.1.html#licenseText", + Name = "SIL Open Font License 1.1", + OsiApproved = true, + SPDX = "OFL-1.1" + }, + new + { + Id = 256, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGL-UK-1.0.html#licenseText", + Name = "Open Government Licence v1.0", + OsiApproved = false, + SPDX = "OGL-UK-1.0" + }, + new + { + Id = 257, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGL-UK-2.0.html#licenseText", + Name = "Open Government Licence v2.0", + OsiApproved = false, + SPDX = "OGL-UK-2.0" + }, + new + { + Id = 258, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGL-UK-3.0.html#licenseText", + Name = "Open Government Licence v3.0", + OsiApproved = false, + SPDX = "OGL-UK-3.0" + }, + new + { + Id = 259, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGTSL.html#licenseText", + Name = "Open Group Test Suite License", + OsiApproved = true, + SPDX = "OGTSL" + }, + new + { + Id = 260, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.1.html#licenseText", + Name = "Open LDAP Public License v1.1", + OsiApproved = false, + SPDX = "OLDAP-1.1" + }, + new + { + Id = 261, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.2.html#licenseText", + Name = "Open LDAP Public License v1.2", + OsiApproved = false, + SPDX = "OLDAP-1.2" + }, + new + { + Id = 262, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.3.html#licenseText", + Name = "Open LDAP Public License v1.3", + OsiApproved = false, + SPDX = "OLDAP-1.3" + }, + new + { + Id = 263, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.4.html#licenseText", + Name = "Open LDAP Public License v1.4", + OsiApproved = false, + SPDX = "OLDAP-1.4" + }, + new + { + Id = 264, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.0.html#licenseText", + Name = "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", + OsiApproved = false, + SPDX = "OLDAP-2.0" + }, + new + { + Id = 265, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.0.1.html#licenseText", + Name = "Open LDAP Public License v2.0.1", + OsiApproved = false, + SPDX = "OLDAP-2.0.1" + }, + new + { + Id = 266, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.1.html#licenseText", + Name = "Open LDAP Public License v2.1", + OsiApproved = false, + SPDX = "OLDAP-2.1" + }, + new + { + Id = 267, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.2.html#licenseText", + Name = "Open LDAP Public License v2.2", + OsiApproved = false, + SPDX = "OLDAP-2.2" + }, + new + { + Id = 268, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.2.1.html#licenseText", + Name = "Open LDAP Public License v2.2.1", + OsiApproved = false, + SPDX = "OLDAP-2.2.1" + }, + new + { + Id = 269, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.2.2.html#licenseText", + Name = "Open LDAP Public License 2.2.2", + OsiApproved = false, + SPDX = "OLDAP-2.2.2" + }, + new + { + Id = 270, + FsfApproved = true, + Link = "https://spdx.org/licenses/OLDAP-2.3.html#licenseText", + Name = "Open LDAP Public License v2.3", + OsiApproved = false, + SPDX = "OLDAP-2.3" + }, + new + { + Id = 271, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.4.html#licenseText", + Name = "Open LDAP Public License v2.4", + OsiApproved = false, + SPDX = "OLDAP-2.4" + }, + new + { + Id = 272, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.5.html#licenseText", + Name = "Open LDAP Public License v2.5", + OsiApproved = false, + SPDX = "OLDAP-2.5" + }, + new + { + Id = 273, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.6.html#licenseText", + Name = "Open LDAP Public License v2.6", + OsiApproved = false, + SPDX = "OLDAP-2.6" + }, + new + { + Id = 274, + FsfApproved = true, + Link = "https://spdx.org/licenses/OLDAP-2.7.html#licenseText", + Name = "Open LDAP Public License v2.7", + OsiApproved = false, + SPDX = "OLDAP-2.7" + }, + new + { + Id = 275, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.8.html#licenseText", + Name = "Open LDAP Public License v2.8", + OsiApproved = false, + SPDX = "OLDAP-2.8" + }, + new + { + Id = 276, + FsfApproved = false, + Link = "https://spdx.org/licenses/OML.html#licenseText", + Name = "Open Market License", + OsiApproved = false, + SPDX = "OML" + }, + new + { + Id = 277, + FsfApproved = true, + Link = "https://spdx.org/licenses/OpenSSL.html#licenseText", + Name = "OpenSSL License", + OsiApproved = false, + SPDX = "OpenSSL" + }, + new + { + Id = 278, + FsfApproved = false, + Link = "https://spdx.org/licenses/OPL-1.0.html#licenseText", + Name = "Open Public License v1.0", + OsiApproved = false, + SPDX = "OPL-1.0" + }, + new + { + Id = 279, + FsfApproved = false, + Link = "https://spdx.org/licenses/OSET-PL-2.1.html#licenseText", + Name = "OSET Public License version 2.1", + OsiApproved = true, + SPDX = "OSET-PL-2.1" + }, + new + { + Id = 280, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-1.0.html#licenseText", + Name = "Open Software License 1.0", + OsiApproved = true, + SPDX = "OSL-1.0" + }, + new + { + Id = 281, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-1.1.html#licenseText", + Name = "Open Software License 1.1", + OsiApproved = false, + SPDX = "OSL-1.1" + }, + new + { + Id = 282, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-2.0.html#licenseText", + Name = "Open Software License 2.0", + OsiApproved = true, + SPDX = "OSL-2.0" + }, + new + { + Id = 283, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-2.1.html#licenseText", + Name = "Open Software License 2.1", + OsiApproved = true, + SPDX = "OSL-2.1" + }, + new + { + Id = 284, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-3.0.html#licenseText", + Name = "Open Software License 3.0", + OsiApproved = true, + SPDX = "OSL-3.0" + }, + new + { + Id = 285, + FsfApproved = false, + Link = "https://spdx.org/licenses/PDDL-1.0.html#licenseText", + Name = "ODC Public Domain Dedication & License 1.0", + OsiApproved = false, + SPDX = "PDDL-1.0" + }, + new + { + Id = 286, + FsfApproved = false, + Link = "https://spdx.org/licenses/PHP-3.0.html#licenseText", + Name = "PHP License v3.0", + OsiApproved = true, + SPDX = "PHP-3.0" + }, + new + { + Id = 287, + FsfApproved = true, + Link = "https://spdx.org/licenses/PHP-3.01.html#licenseText", + Name = "PHP License v3.01", + OsiApproved = false, + SPDX = "PHP-3.01" + }, + new + { + Id = 288, + FsfApproved = false, + Link = "https://spdx.org/licenses/Plexus.html#licenseText", + Name = "Plexus Classworlds License", + OsiApproved = false, + SPDX = "Plexus" + }, + new + { + Id = 289, + FsfApproved = false, + Link = "https://spdx.org/licenses/PostgreSQL.html#licenseText", + Name = "PostgreSQL License", + OsiApproved = true, + SPDX = "PostgreSQL" + }, + new + { + Id = 290, + FsfApproved = false, + Link = "https://spdx.org/licenses/psfrag.html#licenseText", + Name = "psfrag License", + OsiApproved = false, + SPDX = "psfrag" + }, + new + { + Id = 291, + FsfApproved = false, + Link = "https://spdx.org/licenses/psutils.html#licenseText", + Name = "psutils License", + OsiApproved = false, + SPDX = "psutils" + }, + new + { + Id = 292, + FsfApproved = true, + Link = "https://spdx.org/licenses/Python-2.0.html#licenseText", + Name = "Python License 2.0", + OsiApproved = true, + SPDX = "Python-2.0" + }, + new + { + Id = 293, + FsfApproved = false, + Link = "https://spdx.org/licenses/Qhull.html#licenseText", + Name = "Qhull License", + OsiApproved = false, + SPDX = "Qhull" + }, + new + { + Id = 294, + FsfApproved = true, + Link = "https://spdx.org/licenses/QPL-1.0.html#licenseText", + Name = "Q Public License 1.0", + OsiApproved = true, + SPDX = "QPL-1.0" + }, + new + { + Id = 295, + FsfApproved = false, + Link = "https://spdx.org/licenses/Rdisc.html#licenseText", + Name = "Rdisc License", + OsiApproved = false, + SPDX = "Rdisc" + }, + new + { + Id = 296, + FsfApproved = false, + Link = "https://spdx.org/licenses/RHeCos-1.1.html#licenseText", + Name = "Red Hat eCos Public License v1.1", + OsiApproved = false, + SPDX = "RHeCos-1.1" + }, + new + { + Id = 297, + FsfApproved = false, + Link = "https://spdx.org/licenses/RPL-1.1.html#licenseText", + Name = "Reciprocal Public License 1.1", + OsiApproved = true, + SPDX = "RPL-1.1" + }, + new + { + Id = 298, + FsfApproved = false, + Link = "https://spdx.org/licenses/RPL-1.5.html#licenseText", + Name = "Reciprocal Public License 1.5", + OsiApproved = true, + SPDX = "RPL-1.5" + }, + new + { + Id = 299, + FsfApproved = true, + Link = "https://spdx.org/licenses/RPSL-1.0.html#licenseText", + Name = "RealNetworks Public Source License v1.0", + OsiApproved = true, + SPDX = "RPSL-1.0" + }, + new + { + Id = 300, + FsfApproved = false, + Link = "https://spdx.org/licenses/RSA-MD.html#licenseText", + Name = "RSA Message-Digest License", + OsiApproved = false, + SPDX = "RSA-MD" + }, + new + { + Id = 301, + FsfApproved = false, + Link = "https://spdx.org/licenses/RSCPL.html#licenseText", + Name = "Ricoh Source Code Public License", + OsiApproved = true, + SPDX = "RSCPL" + }, + new + { + Id = 302, + FsfApproved = true, + Link = "https://spdx.org/licenses/Ruby.html#licenseText", + Name = "Ruby License", + OsiApproved = false, + SPDX = "Ruby" + }, + new + { + Id = 303, + FsfApproved = false, + Link = "https://spdx.org/licenses/SAX-PD.html#licenseText", + Name = "Sax Public Domain Notice", + OsiApproved = false, + SPDX = "SAX-PD" + }, + new + { + Id = 304, + FsfApproved = false, + Link = "https://spdx.org/licenses/Saxpath.html#licenseText", + Name = "Saxpath License", + OsiApproved = false, + SPDX = "Saxpath" + }, + new + { + Id = 305, + FsfApproved = false, + Link = "https://spdx.org/licenses/SCEA.html#licenseText", + Name = "SCEA Shared Source License", + OsiApproved = false, + SPDX = "SCEA" + }, + new + { + Id = 306, + FsfApproved = false, + Link = "https://spdx.org/licenses/Sendmail.html#licenseText", + Name = "Sendmail License", + OsiApproved = false, + SPDX = "Sendmail" + }, + new + { + Id = 307, + FsfApproved = false, + Link = "https://spdx.org/licenses/Sendmail-8.23.html#licenseText", + Name = "Sendmail License 8.23", + OsiApproved = false, + SPDX = "Sendmail-8.23" + }, + new + { + Id = 308, + FsfApproved = false, + Link = "https://spdx.org/licenses/SGI-B-1.0.html#licenseText", + Name = "SGI Free Software License B v1.0", + OsiApproved = false, + SPDX = "SGI-B-1.0" + }, + new + { + Id = 309, + FsfApproved = false, + Link = "https://spdx.org/licenses/SGI-B-1.1.html#licenseText", + Name = "SGI Free Software License B v1.1", + OsiApproved = false, + SPDX = "SGI-B-1.1" + }, + new + { + Id = 310, + FsfApproved = true, + Link = "https://spdx.org/licenses/SGI-B-2.0.html#licenseText", + Name = "SGI Free Software License B v2.0", + OsiApproved = false, + SPDX = "SGI-B-2.0" + }, + new + { + Id = 311, + FsfApproved = false, + Link = "https://spdx.org/licenses/SimPL-2.0.html#licenseText", + Name = "Simple Public License 2.0", + OsiApproved = true, + SPDX = "SimPL-2.0" + }, + new + { + Id = 312, + FsfApproved = true, + Link = "https://spdx.org/licenses/SISSL.html#licenseText", + Name = "Sun Industry Standards Source License v1.1", + OsiApproved = true, + SPDX = "SISSL" + }, + new + { + Id = 313, + FsfApproved = false, + Link = "https://spdx.org/licenses/SISSL-1.2.html#licenseText", + Name = "Sun Industry Standards Source License v1.2", + OsiApproved = false, + SPDX = "SISSL-1.2" + }, + new + { + Id = 314, + FsfApproved = true, + Link = "https://spdx.org/licenses/Sleepycat.html#licenseText", + Name = "Sleepycat License", + OsiApproved = true, + SPDX = "Sleepycat" + }, + new + { + Id = 315, + FsfApproved = true, + Link = "https://spdx.org/licenses/SMLNJ.html#licenseText", + Name = "Standard ML of New Jersey License", + OsiApproved = false, + SPDX = "SMLNJ" + }, + new + { + Id = 316, + FsfApproved = false, + Link = "https://spdx.org/licenses/SMPPL.html#licenseText", + Name = "Secure Messaging Protocol Public License", + OsiApproved = false, + SPDX = "SMPPL" + }, + new + { + Id = 317, + FsfApproved = false, + Link = "https://spdx.org/licenses/SNIA.html#licenseText", + Name = "SNIA Public License 1.1", + OsiApproved = false, + SPDX = "SNIA" + }, + new + { + Id = 318, + FsfApproved = false, + Link = "https://spdx.org/licenses/Spencer-86.html#licenseText", + Name = "Spencer License 86", + OsiApproved = false, + SPDX = "Spencer-86" + }, + new + { + Id = 319, + FsfApproved = false, + Link = "https://spdx.org/licenses/Spencer-94.html#licenseText", + Name = "Spencer License 94", + OsiApproved = false, + SPDX = "Spencer-94" + }, + new + { + Id = 320, + FsfApproved = false, + Link = "https://spdx.org/licenses/Spencer-99.html#licenseText", + Name = "Spencer License 99", + OsiApproved = false, + SPDX = "Spencer-99" + }, + new + { + Id = 321, + FsfApproved = true, + Link = "https://spdx.org/licenses/SPL-1.0.html#licenseText", + Name = "Sun Public License v1.0", + OsiApproved = true, + SPDX = "SPL-1.0" + }, + new + { + Id = 322, + FsfApproved = false, + Link = "https://spdx.org/licenses/SugarCRM-1.1.3.html#licenseText", + Name = "SugarCRM Public License v1.1.3", + OsiApproved = false, + SPDX = "SugarCRM-1.1.3" + }, + new + { + Id = 323, + FsfApproved = false, + Link = "https://spdx.org/licenses/SWL.html#licenseText", + Name = "Scheme Widget Library (SWL) Software License Agreement", + OsiApproved = false, + SPDX = "SWL" + }, + new + { + Id = 324, + FsfApproved = false, + Link = "https://spdx.org/licenses/TAPR-OHL-1.0.html#licenseText", + Name = "TAPR Open Hardware License v1.0", + OsiApproved = false, + SPDX = "TAPR-OHL-1.0" + }, + new + { + Id = 325, + FsfApproved = false, + Link = "https://spdx.org/licenses/TCL.html#licenseText", + Name = "TCL/TK License", + OsiApproved = false, + SPDX = "TCL" + }, + new + { + Id = 326, + FsfApproved = false, + Link = "https://spdx.org/licenses/TCP-wrappers.html#licenseText", + Name = "TCP Wrappers License", + OsiApproved = false, + SPDX = "TCP-wrappers" + }, + new + { + Id = 327, + FsfApproved = false, + Link = "https://spdx.org/licenses/TMate.html#licenseText", + Name = "TMate Open Source License", + OsiApproved = false, + SPDX = "TMate" + }, + new + { + Id = 328, + FsfApproved = false, + Link = "https://spdx.org/licenses/TORQUE-1.1.html#licenseText", + Name = "TORQUE v2.5+ Software License v1.1", + OsiApproved = false, + SPDX = "TORQUE-1.1" + }, + new + { + Id = 329, + FsfApproved = false, + Link = "https://spdx.org/licenses/TOSL.html#licenseText", + Name = "Trusster Open Source License", + OsiApproved = false, + SPDX = "TOSL" + }, + new + { + Id = 330, + FsfApproved = false, + Link = "https://spdx.org/licenses/TU-Berlin-1.0.html#licenseText", + Name = "Technische Universitaet Berlin License 1.0", + OsiApproved = false, + SPDX = "TU-Berlin-1.0" + }, + new + { + Id = 331, + FsfApproved = false, + Link = "https://spdx.org/licenses/TU-Berlin-2.0.html#licenseText", + Name = "Technische Universitaet Berlin License 2.0", + OsiApproved = false, + SPDX = "TU-Berlin-2.0" + }, + new + { + Id = 332, + FsfApproved = false, + Link = "https://spdx.org/licenses/Unicode-DFS-2015.html#licenseText", + Name = "Unicode License Agreement - Data Files and Software (2015)", + OsiApproved = false, + SPDX = "Unicode-DFS-2015" + }, + new + { + Id = 333, + FsfApproved = false, + Link = "https://spdx.org/licenses/Unicode-DFS-2016.html#licenseText", + Name = "Unicode License Agreement - Data Files and Software (2016)", + OsiApproved = false, + SPDX = "Unicode-DFS-2016" + }, + new + { + Id = 334, + FsfApproved = false, + Link = "https://spdx.org/licenses/Unicode-TOU.html#licenseText", + Name = "Unicode Terms of Use", + OsiApproved = false, + SPDX = "Unicode-TOU" + }, + new + { + Id = 335, + FsfApproved = true, + Link = "https://spdx.org/licenses/Unlicense.html#licenseText", + Name = "The Unlicense", + OsiApproved = false, + SPDX = "Unlicense" + }, + new + { + Id = 336, + FsfApproved = true, + Link = "https://spdx.org/licenses/UPL-1.0.html#licenseText", + Name = "Universal Permissive License v1.0", + OsiApproved = true, + SPDX = "UPL-1.0" + }, + new + { + Id = 337, + FsfApproved = true, + Link = "https://spdx.org/licenses/Vim.html#licenseText", + Name = "Vim License", + OsiApproved = false, + SPDX = "Vim" + }, + new + { + Id = 338, + FsfApproved = false, + Link = "https://spdx.org/licenses/VOSTROM.html#licenseText", + Name = "VOSTROM Public License for Open Source", + OsiApproved = false, + SPDX = "VOSTROM" + }, + new + { + Id = 339, + FsfApproved = false, + Link = "https://spdx.org/licenses/VSL-1.0.html#licenseText", + Name = "Vovida Software License v1.0", + OsiApproved = true, + SPDX = "VSL-1.0" + }, + new + { + Id = 340, + FsfApproved = true, + Link = "https://spdx.org/licenses/W3C.html#licenseText", + Name = "W3C Software Notice and License (2002-12-31)", + OsiApproved = true, + SPDX = "W3C" + }, + new + { + Id = 341, + FsfApproved = false, + Link = "https://spdx.org/licenses/W3C-19980720.html#licenseText", + Name = "W3C Software Notice and License (1998-07-20)", + OsiApproved = false, + SPDX = "W3C-19980720" + }, + new + { + Id = 342, + FsfApproved = false, + Link = "https://spdx.org/licenses/W3C-20150513.html#licenseText", + Name = "W3C Software Notice and Document License (2015-05-13)", + OsiApproved = false, + SPDX = "W3C-20150513" + }, + new + { + Id = 343, + FsfApproved = false, + Link = "https://spdx.org/licenses/Watcom-1.0.html#licenseText", + Name = "Sybase Open Watcom Public License 1.0", + OsiApproved = true, + SPDX = "Watcom-1.0" + }, + new + { + Id = 344, + FsfApproved = false, + Link = "https://spdx.org/licenses/Wsuipa.html#licenseText", + Name = "Wsuipa License", + OsiApproved = false, + SPDX = "Wsuipa" + }, + new + { + Id = 345, + FsfApproved = true, + Link = "https://spdx.org/licenses/WTFPL.html#licenseText", + Name = "Do What The F*ck You Want To Public License", + OsiApproved = false, + SPDX = "WTFPL" + }, + new + { + Id = 346, + FsfApproved = true, + Link = "https://spdx.org/licenses/X11.html#licenseText", + Name = "X11 License", + OsiApproved = false, + SPDX = "X11" + }, + new + { + Id = 347, + FsfApproved = false, + Link = "https://spdx.org/licenses/Xerox.html#licenseText", + Name = "Xerox License", + OsiApproved = false, + SPDX = "Xerox" + }, + new + { + Id = 348, + FsfApproved = true, + Link = "https://spdx.org/licenses/XFree86-1.1.html#licenseText", + Name = "XFree86 License 1.1", + OsiApproved = false, + SPDX = "XFree86-1.1" + }, + new + { + Id = 349, + FsfApproved = true, + Link = "https://spdx.org/licenses/xinetd.html#licenseText", + Name = "xinetd License", + OsiApproved = false, + SPDX = "xinetd" + }, + new + { + Id = 350, + FsfApproved = false, + Link = "https://spdx.org/licenses/Xnet.html#licenseText", + Name = "X.Net License", + OsiApproved = true, + SPDX = "Xnet" + }, + new + { + Id = 351, + FsfApproved = false, + Link = "https://spdx.org/licenses/xpp.html#licenseText", + Name = "XPP License", + OsiApproved = false, + SPDX = "xpp" + }, + new + { + Id = 352, + FsfApproved = false, + Link = "https://spdx.org/licenses/XSkat.html#licenseText", + Name = "XSkat License", + OsiApproved = false, + SPDX = "XSkat" + }, + new + { + Id = 353, + FsfApproved = false, + Link = "https://spdx.org/licenses/YPL-1.0.html#licenseText", + Name = "Yahoo! Public License v1.0", + OsiApproved = false, + SPDX = "YPL-1.0" + }, + new + { + Id = 354, + FsfApproved = true, + Link = "https://spdx.org/licenses/YPL-1.1.html#licenseText", + Name = "Yahoo! Public License v1.1", + OsiApproved = false, + SPDX = "YPL-1.1" + }, + new + { + Id = 355, + FsfApproved = false, + Link = "https://spdx.org/licenses/Zed.html#licenseText", + Name = "Zed License", + OsiApproved = false, + SPDX = "Zed" + }, + new + { + Id = 356, + FsfApproved = true, + Link = "https://spdx.org/licenses/Zend-2.0.html#licenseText", + Name = "Zend License v2.0", + OsiApproved = false, + SPDX = "Zend-2.0" + }, + new + { + Id = 357, + FsfApproved = true, + Link = "https://spdx.org/licenses/Zimbra-1.3.html#licenseText", + Name = "Zimbra Public License v1.3", + OsiApproved = false, + SPDX = "Zimbra-1.3" + }, + new + { + Id = 358, + FsfApproved = false, + Link = "https://spdx.org/licenses/Zimbra-1.4.html#licenseText", + Name = "Zimbra Public License v1.4", + OsiApproved = false, + SPDX = "Zimbra-1.4" + }, + new + { + Id = 359, + FsfApproved = true, + Link = "https://spdx.org/licenses/Zlib.html#licenseText", + Name = "zlib License", + OsiApproved = true, + SPDX = "Zlib" + }, + new + { + Id = 360, + FsfApproved = false, + Link = "https://spdx.org/licenses/zlib-acknowledgement.html#licenseText", + Name = "zlib/libpng License with Acknowledgement", + OsiApproved = false, + SPDX = "zlib-acknowledgement" + }, + new + { + Id = 361, + FsfApproved = false, + Link = "https://spdx.org/licenses/ZPL-1.1.html#licenseText", + Name = "Zope Public License 1.1", + OsiApproved = false, + SPDX = "ZPL-1.1" + }, + new + { + Id = 362, + FsfApproved = true, + Link = "https://spdx.org/licenses/ZPL-2.0.html#licenseText", + Name = "Zope Public License 2.0", + OsiApproved = true, + SPDX = "ZPL-2.0" + }, + new + { + Id = 363, + FsfApproved = true, + Link = "https://spdx.org/licenses/ZPL-2.1.html#licenseText", + Name = "Zope Public License 2.1", + OsiApproved = false, + SPDX = "ZPL-2.1" + }); + }); + + modelBuilder.Entity("Cicm.Database.Models.Log", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Browser") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("browser") + .HasColumnType("char(128)") + .HasDefaultValueSql("''"); + + b.Property("Date") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("date") + .HasColumnType("char(20)") + .HasDefaultValueSql("''"); + + b.Property("Ip") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("ip") + .HasColumnType("char(16)") + .HasDefaultValueSql("''"); + + b.Property("Referer") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("referer") + .HasColumnType("char(255)") + .HasDefaultValueSql("''"); + + b.HasKey("Id"); + + b.HasIndex("Browser") + .HasName("idx_log_browser"); + + b.HasIndex("Date") + .HasName("idx_log_date"); + + b.HasIndex("Ip") + .HasName("idx_log_ip"); + + b.HasIndex("Referer") + .HasName("idx_log_referer"); + + b.ToTable("log"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Machine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("CompanyId") + .ValueGeneratedOnAdd() + .HasColumnName("company") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.Property("FamilyId") + .HasColumnName("family") + .HasColumnType("int(11)"); + + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); + + b.Property("Model") + .HasColumnName("model") + .HasColumnType("varchar(50)") + .HasMaxLength(50); + + b.Property("Name") + .IsRequired() + .HasColumnName("name") + .HasColumnType("varchar(255)") + .HasMaxLength(255); + + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.HasKey("Id"); + + b.HasIndex("CompanyId") + .HasName("idx_machines_company"); + + b.HasIndex("FamilyId") + .HasName("idx_machines_family"); + + b.HasIndex("Introduced") + .HasName("idx_machines_introduced"); + + b.HasIndex("Model") + .HasName("idx_machines_model"); + + b.HasIndex("Name") + .HasName("idx_machines_name"); + + b.HasIndex("Type") + .HasName("idx_machines_type"); + + b.ToTable("machines"); + }); + + modelBuilder.Entity("Cicm.Database.Models.MachineFamily", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); + + b.Property("Name") + .IsRequired() + .HasColumnName("name") + .HasColumnType("varchar(255)") + .HasMaxLength(255); + + b.HasKey("Id"); + + b.HasIndex("CompanyId") + .HasName("idx_machine_families_company"); + + b.HasIndex("Name") + .HasName("idx_machine_families_name"); + + b.ToTable("machine_families"); + }); + + modelBuilder.Entity("Cicm.Database.Models.MachinePhoto", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Author"); + + b.Property("CameraManufacturer"); + + b.Property("CameraModel"); + + b.Property("ColorSpace"); + + b.Property("Comments"); + + b.Property("Contrast"); + + b.Property("CreationDate"); + + b.Property("DigitalZoomRatio"); + + b.Property("ExifVersion"); + + b.Property("Exposure"); + + b.Property("ExposureMethod"); + + b.Property("ExposureProgram"); + + b.Property("Flash"); + + b.Property("Focal"); + + b.Property("FocalLength"); + + b.Property("FocalLengthEquivalent"); + + b.Property("HorizontalResolution"); + + b.Property("IsoRating"); + + b.Property("Lens"); + + b.Property("LicenseId"); + + b.Property("LightSource"); + + b.Property("MachineId"); + + b.Property("MeteringMode"); + + b.Property("Orientation"); + + b.Property("ResolutionUnit"); + + b.Property("Saturation"); + + b.Property("SceneCaptureType"); + + b.Property("SensingMethod"); + + b.Property("Sharpness"); + + b.Property("SoftwareUsed"); + + b.Property("Source"); + + b.Property("SubjectDistanceRange"); + + b.Property("UploadDate") + .IsConcurrencyToken() + .ValueGeneratedOnAddOrUpdate(); + + b.Property("UserId"); + + b.Property("VerticalResolution"); + + b.Property("WhiteBalance"); + + b.HasKey("Id"); + + b.HasIndex("Author"); + + b.HasIndex("CameraManufacturer"); + + b.HasIndex("CameraModel"); + + b.HasIndex("ColorSpace"); + + b.HasIndex("Comments"); + + b.HasIndex("Contrast"); + + b.HasIndex("CreationDate"); + + b.HasIndex("DigitalZoomRatio"); + + b.HasIndex("ExifVersion"); + + b.HasIndex("Exposure"); + + b.HasIndex("ExposureMethod"); + + b.HasIndex("ExposureProgram"); + + b.HasIndex("Flash"); + + b.HasIndex("Focal"); + + b.HasIndex("FocalLength"); + + b.HasIndex("FocalLengthEquivalent"); + + b.HasIndex("HorizontalResolution"); + + b.HasIndex("IsoRating"); + + b.HasIndex("Lens"); + + b.HasIndex("LicenseId"); + + b.HasIndex("LightSource"); + + b.HasIndex("MachineId"); + + b.HasIndex("MeteringMode"); + + b.HasIndex("Orientation"); + + b.HasIndex("ResolutionUnit"); + + b.HasIndex("Saturation"); + + b.HasIndex("SceneCaptureType"); + + b.HasIndex("SensingMethod"); + + b.HasIndex("Sharpness"); + + b.HasIndex("SoftwareUsed"); + + b.HasIndex("SubjectDistanceRange"); + + b.HasIndex("UploadDate"); + + b.HasIndex("UserId"); + + b.HasIndex("VerticalResolution"); + + b.HasIndex("WhiteBalance"); + + b.ToTable("MachinePhotos"); + }); + + modelBuilder.Entity("Cicm.Database.Models.MemoryByMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); + + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); + + b.Property("Size") + .HasColumnName("size") + .HasColumnType("bigint(20)"); + + b.Property("Speed") + .HasColumnName("speed"); + + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.Property("Usage") + .ValueGeneratedOnAdd() + .HasColumnName("usage") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.HasKey("Id"); + + b.HasIndex("MachineId") + .HasName("idx_memory_by_machine_machine"); + + b.HasIndex("Size") + .HasName("idx_memory_by_machine_size"); + + b.HasIndex("Speed") + .HasName("idx_memory_by_machine_speed"); + + b.HasIndex("Type") + .HasName("idx_memory_by_machine_type"); + + b.HasIndex("Usage") + .HasName("idx_memory_by_machine_usage"); + + b.ToTable("memory_by_machine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.MemoryByOwnedMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("OwnedMachineId"); + + b.Property("Size"); + + b.Property("Speed"); + + b.Property("Type"); + + b.Property("Usage"); + + b.HasKey("Id"); + + b.HasIndex("OwnedMachineId"); + + b.HasIndex("Size"); + + b.HasIndex("Speed"); + + b.HasIndex("Type"); + + b.HasIndex("Usage"); + + b.ToTable("MemoryByOwnedMachine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.MoneyDonation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Donator") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("donator") + .HasColumnType("char(128)") + .HasDefaultValueSql("''"); + + b.Property("Quantity") + .ValueGeneratedOnAdd() + .HasColumnName("quantity") + .HasColumnType("decimal(11,2)") + .HasDefaultValueSql("'0.00'"); + + b.HasKey("Id"); + + b.HasIndex("Donator") + .HasName("idx_money_donations_donator"); + + b.HasIndex("Quantity") + .HasName("idx_money_donations_quantity"); + + b.ToTable("money_donations"); + }); + + modelBuilder.Entity("Cicm.Database.Models.News", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("AddedId") + .ValueGeneratedOnAdd() + .HasColumnName("added_id") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.Property("Date") + .HasColumnName("date") + .HasColumnType("datetime"); + + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.HasKey("Id"); + + b.HasIndex("AddedId") + .HasName("idx_news_ip"); + + b.HasIndex("Date") + .HasName("idx_news_date"); + + b.HasIndex("Type") + .HasName("idx_news_type"); + + b.ToTable("news"); + }); + + modelBuilder.Entity("Cicm.Database.Models.OwnedMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AcquisitionDate"); + + b.Property("Boxed"); + + b.Property("LastStatusDate"); + + b.Property("LostDate"); + + b.Property("MachineId"); + + b.Property("Manuals"); + + b.Property("SerialNumber"); + + b.Property("SerialNumberVisible") + .ValueGeneratedOnAdd() + .HasDefaultValue(true); + + b.Property("Status"); + + b.Property("Trade"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("AcquisitionDate"); + + b.HasIndex("Boxed"); + + b.HasIndex("LastStatusDate"); + + b.HasIndex("LostDate"); + + b.HasIndex("MachineId"); + + b.HasIndex("Manuals"); + + b.HasIndex("SerialNumber"); + + b.HasIndex("SerialNumberVisible"); + + b.HasIndex("Status"); + + b.HasIndex("Trade"); + + b.HasIndex("UserId"); + + b.ToTable("OwnedMachines"); + }); + + modelBuilder.Entity("Cicm.Database.Models.OwnedMachinePhoto", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Author"); + + b.Property("CameraManufacturer"); + + b.Property("CameraModel"); + + b.Property("ColorSpace"); + + b.Property("Comments"); + + b.Property("Contrast"); + + b.Property("CreationDate"); + + b.Property("DigitalZoomRatio"); + + b.Property("ExifVersion"); + + b.Property("Exposure"); + + b.Property("ExposureMethod"); + + b.Property("ExposureProgram"); + + b.Property("Flash"); + + b.Property("Focal"); + + b.Property("FocalLength"); + + b.Property("FocalLengthEquivalent"); + + b.Property("HorizontalResolution"); + + b.Property("IsoRating"); + + b.Property("Lens"); + + b.Property("LicenseId"); + + b.Property("LightSource"); + + b.Property("MeteringMode"); + + b.Property("Orientation"); + + b.Property("OwnedMachineId"); + + b.Property("ResolutionUnit"); + + b.Property("Saturation"); + + b.Property("SceneCaptureType"); + + b.Property("SensingMethod"); + + b.Property("Sharpness"); + + b.Property("SoftwareUsed"); + + b.Property("SubjectDistanceRange"); + + b.Property("UploadDate") + .IsConcurrencyToken() + .ValueGeneratedOnAddOrUpdate(); + + b.Property("UserId"); + + b.Property("VerticalResolution"); + + b.Property("WhiteBalance"); + + b.HasKey("Id"); + + b.HasIndex("Author"); + + b.HasIndex("CameraManufacturer"); + + b.HasIndex("CameraModel"); + + b.HasIndex("ColorSpace"); + + b.HasIndex("Comments"); + + b.HasIndex("Contrast"); + + b.HasIndex("CreationDate"); + + b.HasIndex("DigitalZoomRatio"); + + b.HasIndex("ExifVersion"); + + b.HasIndex("Exposure"); + + b.HasIndex("ExposureMethod"); + + b.HasIndex("ExposureProgram"); + + b.HasIndex("Flash"); + + b.HasIndex("Focal"); + + b.HasIndex("FocalLength"); + + b.HasIndex("FocalLengthEquivalent"); + + b.HasIndex("HorizontalResolution"); + + b.HasIndex("IsoRating"); + + b.HasIndex("Lens"); + + b.HasIndex("LicenseId"); + + b.HasIndex("LightSource"); + + b.HasIndex("MeteringMode"); + + b.HasIndex("Orientation"); + + b.HasIndex("OwnedMachineId"); + + b.HasIndex("ResolutionUnit"); + + b.HasIndex("Saturation"); + + b.HasIndex("SceneCaptureType"); + + b.HasIndex("SensingMethod"); + + b.HasIndex("Sharpness"); + + b.HasIndex("SoftwareUsed"); + + b.HasIndex("SubjectDistanceRange"); + + b.HasIndex("UploadDate"); + + b.HasIndex("UserId"); + + b.HasIndex("VerticalResolution"); + + b.HasIndex("WhiteBalance"); + + b.ToTable("OwnedMachinePhotos"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Person", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BirthDate"); + + b.Property("CountryOfBirthId"); + + b.Property("DeathDate"); + + b.Property("Facebook"); + + b.Property("Name") + .IsRequired(); + + b.Property("Photo"); + + b.Property("Surname") + .IsRequired(); + + b.Property("Twitter"); + + b.Property("Webpage"); + + b.HasKey("Id"); + + b.HasIndex("BirthDate"); + + b.HasIndex("CountryOfBirthId"); + + b.HasIndex("DeathDate"); + + b.HasIndex("Facebook"); + + b.HasIndex("Name"); + + b.HasIndex("Photo"); + + b.HasIndex("Surname"); + + b.HasIndex("Twitter"); + + b.HasIndex("Webpage"); + + b.ToTable("People"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Processor", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("AddrBus") + .HasColumnName("addr_bus") + .HasColumnType("int(11)"); + + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); + + b.Property("Cores") + .HasColumnName("cores") + .HasColumnType("int(11)"); + + b.Property("DataBus") + .HasColumnName("data_bus") + .HasColumnType("int(11)"); + + b.Property("DieSize") + .HasColumnName("die_size"); + + b.Property("FprSize") + .HasColumnName("FPR_size") + .HasColumnType("int(11)"); + + b.Property("Fprs") + .HasColumnName("FPRs") + .HasColumnType("int(11)"); + + b.Property("GprSize") + .HasColumnName("GPR_size") + .HasColumnType("int(11)"); + + b.Property("Gprs") + .HasColumnName("GPRs") + .HasColumnType("int(11)"); + + b.Property("InstructionSetId") + .HasColumnName("instruction_set") + .HasColumnType("int(11)"); + + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); + + b.Property("L1Data") + .HasColumnName("L1_data"); + + b.Property("L1Instruction") + .HasColumnName("L1_instruction"); + + b.Property("L2"); + + b.Property("L3"); + + b.Property("ModelCode") + .HasColumnName("model_code") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("char(50)") + .HasDefaultValueSql("''") + .HasMaxLength(50); + + b.Property("Package") + .HasColumnName("package") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("Process") + .HasColumnName("process") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("ProcessNm") + .HasColumnName("process_nm"); + + b.Property("SimdRegisters") + .HasColumnName("SIMD_registers") + .HasColumnType("int(11)"); + + b.Property("SimdSize") + .HasColumnName("SIMD_size") + .HasColumnType("int(11)"); + + b.Property("Speed") + .HasColumnName("speed"); + + b.Property("ThreadsPerCore") + .HasColumnName("threads_per_core") + .HasColumnType("int(11)"); + + b.Property("Transistors") + .HasColumnName("transistors") + .HasColumnType("bigint(20)"); + + b.HasKey("Id"); + + b.HasIndex("AddrBus") + .HasName("idx_processors_addr_bus"); + + b.HasIndex("CompanyId") + .HasName("idx_processors_company"); + + b.HasIndex("Cores") + .HasName("idx_processors_cores"); + + b.HasIndex("DataBus") + .HasName("idx_processors_data_bus"); + + b.HasIndex("DieSize") + .HasName("idx_processors_die_size"); + + b.HasIndex("FprSize") + .HasName("idx_processors_FPR_size"); + + b.HasIndex("Fprs") + .HasName("idx_processors_FPRs"); + + b.HasIndex("GprSize") + .HasName("idx_processors_GPR_size"); + + b.HasIndex("Gprs") + .HasName("idx_processors_GPRs"); + + b.HasIndex("InstructionSetId") + .HasName("idx_processors_instruction_set"); + + b.HasIndex("Introduced") + .HasName("idx_processors_introduced"); + + b.HasIndex("L1Data") + .HasName("idx_processors_L1_data"); + + b.HasIndex("L1Instruction") + .HasName("idx_processors_L1_instruction"); + + b.HasIndex("L2") + .HasName("idx_processors_L2"); + + b.HasIndex("L3") + .HasName("idx_processors_L3"); + + b.HasIndex("ModelCode") + .HasName("idx_processors_model_code"); + + b.HasIndex("Name") + .HasName("idx_processors_name"); + + b.HasIndex("Package") + .HasName("idx_processors_package"); + + b.HasIndex("Process") + .HasName("idx_processors_process"); + + b.HasIndex("ProcessNm") + .HasName("idx_processors_process_nm"); + + b.HasIndex("SimdRegisters") + .HasName("idx_processors_SIMD_registers"); + + b.HasIndex("SimdSize") + .HasName("idx_processors_SIMD_size"); + + b.HasIndex("Speed") + .HasName("idx_processors_speed"); + + b.HasIndex("ThreadsPerCore") + .HasName("idx_processors_threads_per_core"); + + b.HasIndex("Transistors") + .HasName("idx_processors_transistors"); + + b.ToTable("processors"); + }); + + modelBuilder.Entity("Cicm.Database.Models.ProcessorsByMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); + + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); + + b.Property("ProcessorId") + .HasColumnName("processor") + .HasColumnType("int(11)"); + + b.Property("Speed") + .HasColumnName("speed"); + + b.HasKey("Id"); + + b.HasIndex("MachineId") + .HasName("idx_processors_by_machine_machine"); + + b.HasIndex("ProcessorId") + .HasName("idx_processors_by_machine_processor"); + + b.HasIndex("Speed") + .HasName("idx_processors_by_machine_speed"); + + b.ToTable("processors_by_machine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.ProcessorsByOwnedMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("OwnedMachineId"); + + b.Property("ProcessorId"); + + b.Property("Speed"); + + b.HasKey("Id"); + + b.HasIndex("OwnedMachineId"); + + b.HasIndex("ProcessorId"); + + b.HasIndex("Speed"); + + b.ToTable("ProcessorsByOwnedMachine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Resolution", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("Chars") + .ValueGeneratedOnAdd() + .HasColumnName("chars") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); + + b.Property("Colors") + .HasColumnName("colors") + .HasColumnType("bigint(20)"); + + b.Property("Grayscale"); + + b.Property("Height") + .ValueGeneratedOnAdd() + .HasColumnName("height") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.Property("Palette") + .HasColumnName("palette") + .HasColumnType("bigint(20)"); + + b.Property("Width") + .ValueGeneratedOnAdd() + .HasColumnName("width") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.HasKey("Id"); + + b.HasIndex("Colors") + .HasName("idx_resolutions_colors"); + + b.HasIndex("Height") + .HasName("idx_resolutions_height"); + + b.HasIndex("Palette") + .HasName("idx_resolutions_palette"); + + b.HasIndex("Width") + .HasName("idx_resolutions_width"); + + b.HasIndex("Width", "Height") + .HasName("idx_resolutions_resolution"); + + b.HasIndex("Width", "Height", "Colors") + .HasName("idx_resolutions_resolution_with_color"); + + b.HasIndex("Width", "Height", "Colors", "Palette") + .HasName("idx_resolutions_resolution_with_color_and_palette"); + + b.ToTable("resolutions"); + }); + + modelBuilder.Entity("Cicm.Database.Models.ResolutionsByGpu", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); + + b.Property("GpuId") + .HasColumnName("gpu") + .HasColumnType("int(11)"); + + b.Property("ResolutionId") + .HasColumnName("resolution") + .HasColumnType("int(11)"); + + b.HasKey("Id"); + + b.HasIndex("GpuId") + .HasName("idx_resolutions_by_gpu_gpu"); + + b.HasIndex("ResolutionId") + .HasName("idx_resolutions_by_gpu_resolution"); + + b.ToTable("resolutions_by_gpu"); + }); + + modelBuilder.Entity("Cicm.Database.Models.ResolutionsByScreen", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ResolutionId"); + + b.Property("ScreenId"); + + b.HasKey("Id"); + + b.HasIndex("ResolutionId"); + + b.HasIndex("ScreenId"); + + b.ToTable("ResolutionsByScreen"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Screen", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Diagonal"); + + b.Property("EffectiveColors"); + + b.Property("Height"); + + b.Property("NativeResolutionId"); + + b.Property("Type") + .IsRequired(); + + b.Property("Width"); + + b.HasKey("Id"); + + b.HasIndex("Diagonal"); + + b.HasIndex("EffectiveColors"); + + b.HasIndex("Height"); + + b.HasIndex("NativeResolutionId"); + + b.HasIndex("Type"); + + b.HasIndex("Width"); + + b.ToTable("Screens"); + }); + + modelBuilder.Entity("Cicm.Database.Models.ScreensByMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("MachineId"); + + b.Property("ScreenId"); + + b.HasKey("Id"); + + b.HasIndex("MachineId"); + + b.HasIndex("ScreenId"); + + b.ToTable("ScreensByMachine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.SoundByMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); + + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); + + b.Property("SoundSynthId") + .HasColumnName("sound_synth") + .HasColumnType("int(11)"); + + b.HasKey("Id"); + + b.HasIndex("MachineId") + .HasName("idx_sound_by_machine_machine"); + + b.HasIndex("SoundSynthId") + .HasName("idx_sound_by_machine_sound_synth"); + + b.ToTable("sound_by_machine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.SoundByOwnedMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("OwnedMachineId"); + + b.Property("SoundSynthId"); + + b.HasKey("Id"); + + b.HasIndex("OwnedMachineId"); + + b.HasIndex("SoundSynthId"); + + b.ToTable("SoundByOwnedMachine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.SoundSynth", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); + + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); + + b.Property("Depth") + .HasColumnName("depth") + .HasColumnType("int(11)"); + + b.Property("Frequency") + .HasColumnName("frequency"); + + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); + + b.Property("ModelCode") + .HasColumnName("model_code") + .HasColumnType("varchar(45)") + .HasMaxLength(45); + + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("char(50)") + .HasDefaultValueSql("''") + .HasMaxLength(50); + + b.Property("SquareWave") + .HasColumnName("square_wave") + .HasColumnType("int(11)"); + + b.Property("Type") + .HasColumnName("type") + .HasColumnType("int(11)"); + + b.Property("Voices") + .HasColumnName("voices") + .HasColumnType("int(11)"); + + b.Property("WhiteNoise") + .HasColumnName("white_noise") + .HasColumnType("int(11)"); + + b.HasKey("Id"); + + b.HasIndex("CompanyId") + .HasName("idx_sound_synths_company"); + + b.HasIndex("Depth") + .HasName("idx_sound_synths_depth"); + + b.HasIndex("Frequency") + .HasName("idx_sound_synths_frequency"); + + b.HasIndex("Introduced") + .HasName("idx_sound_synths_introduced"); + + b.HasIndex("ModelCode") + .HasName("idx_sound_synths_model_code"); + + b.HasIndex("Name") + .HasName("idx_sound_synths_name"); + + b.HasIndex("SquareWave") + .HasName("idx_sound_synths_square_wave"); + + b.HasIndex("Type") + .HasName("idx_sound_synths_type"); + + b.HasIndex("Voices") + .HasName("idx_sound_synths_voices"); + + b.HasIndex("WhiteNoise") + .HasName("idx_sound_synths_white_noise"); + + b.ToTable("sound_synths"); + }); + + modelBuilder.Entity("Cicm.Database.Models.StorageByMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); + + b.Property("Capacity") + .HasColumnName("capacity") + .HasColumnType("bigint(20)"); + + b.Property("Interface") + .ValueGeneratedOnAdd() + .HasColumnName("interface") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); + + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); + + b.HasKey("Id"); + + b.HasIndex("Capacity") + .HasName("idx_storage_capacity"); + + b.HasIndex("Interface") + .HasName("idx_storage_interface"); + + b.HasIndex("MachineId") + .HasName("idx_storage_machine"); + + b.HasIndex("Type") + .HasName("idx_storage_type"); + + b.ToTable("storage_by_machine"); + }); + + modelBuilder.Entity("Cicm.Database.Models.StorageByOwnedMachine", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Capacity"); + + b.Property("Interface"); + + b.Property("OwnedMachineId"); + + b.Property("Type"); + + b.HasKey("Id"); + + b.HasIndex("Capacity"); + + b.HasIndex("Interface"); + + b.HasIndex("OwnedMachineId"); + + b.HasIndex("Type"); + + b.ToTable("StorageByOwnedMachine"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken(); + + b.Property("Name") + .HasMaxLength(256); + + b.Property("NormalizedName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasName("RoleNameIndex"); + + b.ToTable("AspNetRoles"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType"); + + b.Property("ClaimValue"); + + b.Property("RoleId") + .IsRequired(); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken(); + + b.Property("Discriminator") + .IsRequired(); + + b.Property("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed"); + + b.Property("LockoutEnabled"); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash"); + + b.Property("PhoneNumber"); + + b.Property("PhoneNumberConfirmed"); + + b.Property("SecurityStamp"); + + b.Property("TwoFactorEnabled"); + + b.Property("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasName("UserNameIndex"); + + b.ToTable("AspNetUsers"); + + b.HasDiscriminator("Discriminator").HasValue("IdentityUser"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType"); + + b.Property("ClaimValue"); + + b.Property("UserId") + .IsRequired(); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(128); + + b.Property("ProviderDisplayName"); + + b.Property("UserId") + .IsRequired(); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name") + .HasMaxLength(128); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens"); + }); + + modelBuilder.Entity("Cicm.Database.Models.ApplicationUser", b => + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser"); + + b.HasDiscriminator().HasValue("ApplicationUser"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Company", b => + { + b.HasOne("Cicm.Database.Models.Iso31661Numeric", "Country") + .WithMany("Companies") + .HasForeignKey("CountryId") + .HasConstraintName("fk_companies_country"); + + b.HasOne("Cicm.Database.Models.Company", "SoldTo") + .WithMany("InverseSoldToNavigation") + .HasForeignKey("SoldToId") + .HasConstraintName("fk_companies_sold_to"); + }); + + modelBuilder.Entity("Cicm.Database.Models.CompanyDescription", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Descriptions") + .HasForeignKey("CompanyId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.CompanyLogo", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Logos") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_company_logos_company1"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Gpu", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Gpus") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_gpus_company"); + }); + + modelBuilder.Entity("Cicm.Database.Models.GpusByMachine", b => + { + b.HasOne("Cicm.Database.Models.Gpu", "Gpu") + .WithMany("GpusByMachine") + .HasForeignKey("GpuId") + .HasConstraintName("fk_gpus_by_machine_gpu") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Gpus") + .HasForeignKey("MachineId") + .HasConstraintName("fk_gpus_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.GpusByOwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.Gpu", "Gpu") + .WithMany() + .HasForeignKey("GpuId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Gpus") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.InstructionSetExtensionsByProcessor", b => + { + b.HasOne("Cicm.Database.Models.InstructionSetExtension", "Extension") + .WithMany("InstructionSetExtensionsByProcessor") + .HasForeignKey("ExtensionId") + .HasConstraintName("fk_extension_extension_id"); + + b.HasOne("Cicm.Database.Models.Processor", "Processor") + .WithMany("InstructionSetExtensions") + .HasForeignKey("ProcessorId") + .HasConstraintName("fk_extension_processor_id"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Machine", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Machines") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_machines_company"); + + b.HasOne("Cicm.Database.Models.MachineFamily", "Family") + .WithMany("Machines") + .HasForeignKey("FamilyId") + .HasConstraintName("fk_machines_family"); + }); + + modelBuilder.Entity("Cicm.Database.Models.MachineFamily", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("MachineFamilies") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_machine_families_company") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.MachinePhoto", b => + { + b.HasOne("Cicm.Database.Models.License", "License") + .WithMany("Photos") + .HasForeignKey("LicenseId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Photos") + .HasForeignKey("MachineId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.ApplicationUser", "User") + .WithMany("Photos") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("Cicm.Database.Models.MemoryByMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Memory") + .HasForeignKey("MachineId") + .HasConstraintName("fk_memory_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.MemoryByOwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Memory") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.OwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany() + .HasForeignKey("MachineId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.ApplicationUser", "User") + .WithMany("OwnedMachines") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.OwnedMachinePhoto", b => + { + b.HasOne("Cicm.Database.Models.License", "License") + .WithMany("OwnedMachinePhotos") + .HasForeignKey("LicenseId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Photos") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.ApplicationUser", "User") + .WithMany("OwnedMachinePhotos") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.Person", b => + { + b.HasOne("Cicm.Database.Models.Iso31661Numeric", "CountryOfBirth") + .WithMany("People") + .HasForeignKey("CountryOfBirthId"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Processor", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Processors") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_processors_company"); + + b.HasOne("Cicm.Database.Models.InstructionSet", "InstructionSet") + .WithMany("Processors") + .HasForeignKey("InstructionSetId") + .HasConstraintName("fk_processors_instruction_set"); + }); + + modelBuilder.Entity("Cicm.Database.Models.ProcessorsByMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Processors") + .HasForeignKey("MachineId") + .HasConstraintName("fk_processors_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.Processor", "Processor") + .WithMany("ProcessorsByMachine") + .HasForeignKey("ProcessorId") + .HasConstraintName("fk_processors_by_machine_processor") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.ProcessorsByOwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Processors") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.Processor", "Processor") + .WithMany() + .HasForeignKey("ProcessorId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.ResolutionsByGpu", b => + { + b.HasOne("Cicm.Database.Models.Gpu", "Gpu") + .WithMany("ResolutionsByGpu") + .HasForeignKey("GpuId") + .HasConstraintName("fk_resolutions_by_gpu_gpu") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.Resolution", "Resolution") + .WithMany("ResolutionsByGpu") + .HasForeignKey("ResolutionId") + .HasConstraintName("fk_resolutions_by_gpu_resolution") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.ResolutionsByScreen", b => + { + b.HasOne("Cicm.Database.Models.Resolution", "Resolution") + .WithMany("ResolutionsByScreen") + .HasForeignKey("ResolutionId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.Screen", "Screen") + .WithMany("Resolutions") + .HasForeignKey("ScreenId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.Screen", b => + { + b.HasOne("Cicm.Database.Models.Resolution", "NativeResolution") + .WithMany("Screens") + .HasForeignKey("NativeResolutionId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.ScreensByMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Screens") + .HasForeignKey("MachineId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.Screen", "Screen") + .WithMany("ScreensByMachines") + .HasForeignKey("ScreenId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.SoundByMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Sound") + .HasForeignKey("MachineId") + .HasConstraintName("fk_sound_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.SoundSynth", "SoundSynth") + .WithMany("SoundByMachine") + .HasForeignKey("SoundSynthId") + .HasConstraintName("fk_sound_by_machine_sound_synth") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.SoundByOwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Sound") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Cicm.Database.Models.SoundSynth", "SoundSynth") + .WithMany() + .HasForeignKey("SoundSynthId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.SoundSynth", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("SoundSynths") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_sound_synths_company"); + }); + + modelBuilder.Entity("Cicm.Database.Models.StorageByMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Storage") + .HasForeignKey("MachineId") + .HasConstraintName("fk_storage_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Cicm.Database.Models.StorageByOwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Storage") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Cicm.Database/Migrations/20190603165746_AddIso639.cs b/Cicm.Database/Migrations/20190603165746_AddIso639.cs new file mode 100644 index 00000000..6eaaff85 --- /dev/null +++ b/Cicm.Database/Migrations/20190603165746_AddIso639.cs @@ -0,0 +1,8154 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Cicm.Database.Migrations +{ + public partial class AddIso639 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "ISO_639-3", + columns: table => new + { + Id = table.Column(type: "char(3)", nullable: false), + Part2B = table.Column(type: "char(3)", nullable: true), + Part2T = table.Column(type: "char(3)", nullable: true), + Part1 = table.Column(type: "char(2)", nullable: true), + Scope = table.Column(type: "char(1)", nullable: false), + Type = table.Column(type: "char(1)", nullable: false), + Ref_Name = table.Column(type: "varchar(150)", nullable: false), + Comment = table.Column(type: "varchar(150)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_ISO_639-3", x => x.Id); + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "aaa", null, null, null, null, "Ghotuo", "I", "L" }, + { "pku", null, null, null, null, "Paku", "I", "L" }, + { "pkt", null, null, null, null, "Maleng", "I", "L" }, + { "pks", null, null, null, null, "Pakistan Sign Language", "I", "L" }, + { "pkr", null, null, null, null, "Attapady Kurumba", "I", "L" }, + { "pkp", null, null, null, null, "Pukapuka", "I", "L" }, + { "pko", null, null, null, null, "Pökoot", "I", "L" }, + { "pkn", null, null, null, null, "Pakanha", "I", "L" }, + { "pkh", null, null, null, null, "Pankhu", "I", "L" }, + { "pkg", null, null, null, null, "Pak-Tong", "I", "L" }, + { "pkc", null, null, null, null, "Paekche", "I", "A" }, + { "pkb", null, null, null, null, "Pokomo", "I", "L" }, + { "pka", null, null, null, null, "Ardhamāgadhī Prākrit", "I", "H" }, + { "pla", null, null, null, null, "Miani", "I", "L" }, + { "pjt", null, null, null, null, "Pitjantjatjara", "I", "L" }, + { "piy", null, null, null, null, "Piya-Kwonci", "I", "L" }, + { "pix", null, null, null, null, "Piu", "I", "L" }, + { "piw", null, null, null, null, "Pimbwe", "I", "L" }, + { "piv", null, null, null, null, "Pileni", "I", "L" }, + { "piu", null, null, null, null, "Pintupi-Luritja", "I", "L" }, + { "pit", null, null, null, null, "Pitta Pitta", "I", "E" }, + { "pis", null, null, null, null, "Pijin", "I", "L" }, + { "pir", null, null, null, null, "Piratapuyo", "I", "L" }, + { "pip", null, null, null, null, "Pero", "I", "L" }, + { "pio", null, null, null, null, "Piapoco", "I", "L" }, + { "pin", null, null, null, null, "Piame", "I", "L" }, + { "pim", null, null, null, null, "Powhatan", "I", "E" }, + { "piz", null, null, null, null, "Pije", "I", "L" }, + { "plb", null, null, null, null, "Polonombauk", "I", "L" }, + { "plc", null, null, null, null, "Central Palawano", "I", "L" }, + { "pld", null, null, null, null, "Polari", "I", "L" }, + { "pmj", null, null, null, null, "Southern Pumi", "I", "L" }, + { "pmi", null, null, null, null, "Northern Pumi", "I", "L" }, + { "pmh", null, null, null, null, "Māhārāṣṭri Prākrit", "I", "H" }, + { "pmf", null, null, null, null, "Pamona", "I", "L" }, + { "pme", null, null, null, null, "Pwaamei", "I", "L" }, + { "pmd", null, null, null, null, "Pallanganmiddang", "I", "E" }, + { "pmb", null, null, null, null, "Pambia", "I", "L" }, + { "pma", null, null, null, null, "Paama", "I", "L" }, + { "plz", null, null, null, null, "Paluan", "I", "L" }, + { "ply", null, null, null, null, "Bolyu", "I", "L" }, + { "plw", null, null, null, null, "Brooke's Point Palawano", "I", "L" }, + { "plv", null, null, null, null, "Southwest Palawano", "I", "L" }, + { "plu", null, null, null, null, "Palikúr", "I", "L" }, + { "plt", null, null, null, null, "Plateau Malagasy", "I", "L" }, + { "pls", null, null, null, null, "San Marcos Tlacoyalco Popoloca", "I", "L" }, + { "plr", null, null, null, null, "Palaka Senoufo", "I", "L" }, + { "plq", null, null, null, null, "Palaic", "I", "A" }, + { "plp", null, null, null, null, "Palpa", "I", "L" }, + { "plo", null, null, null, null, "Oluta Popoluca", "I", "L" }, + { "pln", null, null, null, null, "Palenquero", "I", "L" }, + { "pll", null, null, null, null, "Shwe Palaung", "I", "L" }, + { "plk", null, null, null, null, "Kohistani Shina", "I", "L" }, + { "plj", null, null, null, null, "Polci", "I", "L" }, + { "pli", null, "pi", "pli", "pli", "Pali", "I", "A" }, + { "plh", null, null, null, null, "Paulohi", "I", "L" }, + { "plg", null, null, null, null, "Pilagá", "I", "L" }, + { "ple", null, null, null, null, "Palu'e", "I", "L" }, + { "pil", null, null, null, null, "Yom", "I", "L" }, + { "pmk", null, null, null, null, "Pamlico", "I", "E" }, + { "pij", null, null, null, null, "Pijao", "I", "E" }, + { "pih", null, null, null, null, "Pitcairn-Norfolk", "I", "L" }, + { "pga", null, null, null, null, "Sudanese Creole Arabic", "I", "L" }, + { "pfl", null, null, null, null, "Pfaelzisch", "I", "L" }, + { "pfe", null, null, null, null, "Peere", "I", "L" }, + { "pfa", null, null, null, null, "Pááfang", "I", "L" }, + { "pez", null, null, null, null, "Eastern Penan", "I", "L" }, + { "pey", null, null, null, null, "Petjo", "I", "L" }, + { "pex", null, null, null, null, "Petats", "I", "L" }, + { "pev", null, null, null, null, "Pémono", "I", "L" }, + { "pes", null, null, null, null, "Iranian Persian", "I", "L" }, + { "peq", null, null, null, null, "Southern Pomo", "I", "L" }, + { "pep", null, null, null, null, "Kunja", "I", "L" }, + { "peo", null, null, "peo", "peo", "Old Persian (ca. 600-400 B.C.)", "I", "H" }, + { "pgd", null, null, null, null, "Gāndhārī", "I", "H" }, + { "pem", null, null, null, null, "Phende", "I", "L" }, + { "pek", null, null, null, null, "Penchal", "I", "L" }, + { "pej", null, null, null, null, "Northern Pomo", "I", "E" }, + { "pei", null, null, null, null, "Chichimeca-Jonaz", "I", "L" }, + { "peh", null, null, null, null, "Bonan", "I", "L" }, + { "peg", null, null, null, null, "Pengo", "I", "L" }, + { "pef", null, null, null, null, "Northeastern Pomo", "I", "E" }, + { "pee", null, null, null, null, "Taje", "I", "L" }, + { "ped", null, null, null, null, "Mala (Papua New Guinea)", "I", "L" }, + { "peb", null, null, null, null, "Eastern Pomo", "I", "E" }, + { "pea", null, null, null, null, "Peranakan Indonesian", "I", "L" }, + { "pdu", null, null, null, null, "Kayan", "I", "L" }, + { "pdt", null, null, null, null, "Plautdietsch", "I", "L" }, + { "pel", null, null, null, null, "Pekal", "I", "L" }, + { "pgg", null, null, null, null, "Pangwali", "I", "L" }, + { "pgi", null, null, null, null, "Pagi", "I", "L" }, + { "pgk", null, null, null, null, "Rerep", "I", "L" }, + { "pig", null, null, null, null, "Pisabo", "I", "L" }, + { "pif", null, null, null, null, "Pingelapese", "I", "L" }, + { "pie", null, null, null, null, "Piro", "I", "E" }, + { "pid", null, null, null, null, "Piaroa", "I", "L" }, + { "pic", null, null, null, null, "Pinji", "I", "L" }, + { "pib", null, null, null, null, "Yine", "I", "L" }, + { "pia", null, null, null, null, "Pima Bajo", "I", "L" }, + { "phw", null, null, null, null, "Phangduwali", "I", "L" }, + { "phv", null, null, null, null, "Pahlavani", "I", "L" }, + { "phu", null, null, null, null, "Phuan", "I", "L" }, + { "pht", null, null, null, null, "Phu Thai", "I", "L" }, + { "phr", null, null, null, null, "Pahari-Potwari", "I", "L" }, + { "phq", null, null, null, null, "Phana'", "I", "L" }, + { "pho", null, null, null, null, "Phunoi", "I", "L" }, + { "phn", null, null, "phn", "phn", "Phoenician", "I", "A" }, + { "phm", null, null, null, null, "Phimbi", "I", "L" }, + { "phl", null, null, null, null, "Phalura", "I", "L" }, + { "phk", null, null, null, null, "Phake", "I", "L" }, + { "phh", null, null, null, null, "Phukha", "I", "L" }, + { "phg", null, null, null, null, "Phuong", "I", "L" }, + { "phd", null, null, null, null, "Phudagi", "I", "L" }, + { "pha", null, null, null, null, "Pa-Hng", "I", "L" }, + { "pgz", null, null, null, null, "Papua New Guinean Sign Language", "I", "L" }, + { "pgu", null, null, null, null, "Pagu", "I", "L" }, + { "pgs", null, null, null, null, "Pangseng", "I", "L" }, + { "pgn", null, null, null, null, "Paelignian", "I", "A" }, + { "pgl", null, null, null, null, "Primitive Irish", "I", "A" }, + { "pii", null, null, null, null, "Pini", "I", "L" }, + { "pml", null, null, null, null, "Lingua Franca", "I", "E" }, + { "pmm", null, null, null, null, "Pomo", "I", "L" }, + { "pmn", null, null, null, null, "Pam", "I", "L" }, + { "prx", null, null, null, null, "Purik", "I", "L" }, + { "prw", null, null, null, null, "Parawen", "I", "L" }, + { "pru", null, null, null, null, "Puragi", "I", "L" }, + { "prt", null, null, null, null, "Phai", "I", "L" }, + { "prs", null, null, null, null, "Dari", "I", "L" }, + { "prr", null, null, null, null, "Puri", "I", "E" }, + { "prq", null, null, null, null, "Ashéninka Perené", "I", "L" }, + { "prp", null, null, null, null, "Parsi", "I", "L" }, + { "pro", null, null, "pro", "pro", "Old Provençal (to 1500)", "I", "H" }, + { "prn", null, null, null, null, "Prasuni", "I", "L" }, + { "prm", null, null, null, null, "Kibiri", "I", "L" }, + { "prl", null, null, null, null, "Peruvian Sign Language", "I", "L" }, + { "prz", null, null, null, null, "Providencia Sign Language", "I", "L" }, + { "prk", null, null, null, null, "Parauk", "I", "L" }, + { "prh", null, null, null, null, "Porohanon", "I", "L" }, + { "prg", null, null, null, null, "Prussian", "I", "L" }, + { "prf", null, null, null, null, "Paranan", "I", "L" }, + { "pre", null, null, null, null, "Principense", "I", "L" }, + { "prd", null, null, null, null, "Parsi-Dari", "I", "L" }, + { "prc", null, null, null, null, "Parachi", "I", "L" }, + { "pqm", null, null, null, null, "Malecite-Passamaquoddy", "I", "L" }, + { "pqa", null, null, null, null, "Pa'a", "I", "L" }, + { "ppu", null, null, null, null, "Papora", "I", "E" }, + { "ppt", null, null, null, null, "Pare", "I", "L" }, + { "pps", null, null, null, null, "San Luís Temalacayuca Popoloca", "I", "L" }, + { "ppq", null, null, null, null, "Pei", "I", "L" }, + { "pri", null, null, null, null, "Paicî", "I", "L" }, + { "psa", null, null, null, null, "Asue Awyu", "I", "L" }, + { "psc", null, null, null, null, "Persian Sign Language", "I", "L" }, + { "psd", null, null, null, null, "Plains Indian Sign Language", "I", "L" }, + { "ptv", null, null, null, null, "Port Vato", "I", "L" }, + { "ptu", null, null, null, null, "Bambam", "I", "L" }, + { "ptt", null, null, null, null, "Enrekang", "I", "L" }, + { "ptr", null, null, null, null, "Piamatsina", "I", "L" }, + { "ptq", null, null, null, null, "Pattapu", "I", "L" }, + { "ptp", null, null, null, null, "Patep", "I", "L" }, + { "pto", null, null, null, null, "Zo'é", "I", "L" }, + { "ptn", null, null, null, null, "Patani", "I", "L" }, + { "pti", null, null, null, null, "Pindiini", "I", "L" }, + { "pth", null, null, null, null, "Pataxó Hã-Ha-Hãe", "I", "E" }, + { "pta", null, null, null, null, "Pai Tavytera", "I", "L" }, + { "psy", null, null, null, null, "Piscataway", "I", "E" }, + { "psw", null, null, null, null, "Port Sandwich", "I", "L" }, + { "psu", null, null, null, null, "Sauraseni Prākrit", "I", "H" }, + { "pst", null, null, null, null, "Central Pashto", "I", "L" }, + { "pss", null, null, null, null, "Kaulong", "I", "L" }, + { "psr", null, null, null, null, "Portuguese Sign Language", "I", "L" }, + { "psq", null, null, null, null, "Pasi", "I", "L" }, + { "psp", null, null, null, null, "Philippine Sign Language", "I", "L" }, + { "pso", null, null, null, null, "Polish Sign Language", "I", "L" }, + { "psn", null, null, null, null, "Panasuan", "I", "L" }, + { "psm", null, null, null, null, "Pauserna", "I", "E" }, + { "psl", null, null, null, null, "Puerto Rican Sign Language", "I", "L" }, + { "psi", null, null, null, null, "Southeast Pashai", "I", "L" }, + { "psh", null, null, null, null, "Southwest Pashai", "I", "L" }, + { "psg", null, null, null, null, "Penang Sign Language", "I", "L" }, + { "pse", null, null, null, null, "Central Malay", "I", "L" }, + { "ppp", null, null, null, null, "Pelende", "I", "L" }, + { "ppo", null, null, null, null, "Folopa", "I", "L" }, + { "ppn", null, null, null, null, "Papapana", "I", "L" }, + { "ppm", null, null, null, null, "Papuma", "I", "L" }, + { "pns", null, null, null, null, "Ponosakan", "I", "L" }, + { "pnr", null, null, null, null, "Panim", "I", "L" }, + { "pnq", null, null, null, null, "Pana (Burkina Faso)", "I", "L" }, + { "pnp", null, null, null, null, "Pancana", "I", "L" }, + { "pno", null, null, null, null, "Panobo", "I", "E" }, + { "pnn", null, null, null, null, "Pinai-Hagahai", "I", "L" }, + { "pnm", null, null, null, null, "Punan Batu 1", "I", "L" }, + { "pnl", null, null, null, null, "Paleni", "I", "L" }, + { "pnk", null, null, null, null, "Paunaka", "I", "L" }, + { "pnj", null, null, null, null, "Pinjarup", "I", "E" }, + { "pni", null, null, null, null, "Aoheng", "I", "L" }, + { "pnh", null, null, null, null, "Penrhyn", "I", "L" }, + { "png", null, null, null, null, "Pongu", "I", "L" }, + { "pne", null, null, null, null, "Western Penan", "I", "L" }, + { "pnd", null, null, null, null, "Mpinda", "I", "L" }, + { "pnc", null, null, null, null, "Pannei", "I", "L" }, + { "pnb", null, null, null, null, "Western Panjabi", "I", "L" }, + { "pna", null, null, null, null, "Punan Bah-Biau", "I", "L" }, + { "pmz", null, null, null, null, "Southern Pame", "I", "E" }, + { "pmy", null, null, null, null, "Papuan Malay", "I", "L" }, + { "pmx", null, null, null, null, "Poumei Naga", "I", "L" }, + { "pmw", null, null, null, null, "Plains Miwok", "I", "L" }, + { "pmt", null, null, null, null, "Tuamotuan", "I", "L" }, + { "pms", null, null, null, null, "Piemontese", "I", "L" }, + { "pmr", null, null, null, null, "Paynamar", "I", "L" }, + { "pmq", null, null, null, null, "Northern Pame", "I", "L" }, + { "pmo", null, null, null, null, "Pom", "I", "L" }, + { "pnt", null, null, null, null, "Pontic", "I", "L" }, + { "pdo", null, null, null, null, "Padoe", "I", "L" }, + { "pnu", null, null, null, null, "Jiongnai Bunu", "I", "L" }, + { "pnw", null, null, null, null, "Banyjima", "I", "L" }, + { "ppl", null, null, null, null, "Pipil", "I", "L" }, + { "ppk", null, null, null, null, "Uma", "I", "L" }, + { "ppi", null, null, null, null, "Paipai", "I", "L" }, + { "ppe", null, null, null, null, "Papi", "I", "L" }, + { "poy", null, null, null, null, "Pogolo", "I", "L" }, + { "pox", null, null, null, null, "Polabian", "I", "E" }, + { "pow", null, null, null, null, "San Felipe Otlaltepec Popoloca", "I", "L" }, + { "pov", null, null, null, null, "Upper Guinea Crioulo", "I", "L" }, + { "pot", null, null, null, null, "Potawatomi", "I", "L" }, + { "pos", null, null, null, null, "Sayula Popoluca", "I", "L" }, + { "por", null, "pt", "por", "por", "Portuguese", "I", "L" }, + { "poq", null, null, null, null, "Texistepec Popoluca", "I", "L" }, + { "pop", null, null, null, null, "Pwapwâ", "I", "L" }, + { "poo", null, null, null, null, "Central Pomo", "I", "E" }, + { "pon", null, null, "pon", "pon", "Pohnpeian", "I", "L" }, + { "pom", null, null, null, null, "Southeastern Pomo", "I", "L" }, + { "pol", null, "pl", "pol", "pol", "Polish", "I", "L" }, + { "pok", null, null, null, null, "Pokangá", "I", "L" }, + { "poi", null, null, null, null, "Highland Popoluca", "I", "L" }, + { "poh", null, null, null, null, "Poqomchi'", "I", "L" }, + { "pog", null, null, null, null, "Potiguára", "I", "E" }, + { "pof", null, null, null, null, "Poke", "I", "L" }, + { "poe", null, null, null, null, "San Juan Atzingo Popoloca", "I", "L" }, + { "poc", null, null, null, null, "Poqomam", "I", "L" }, + { "pnz", null, null, null, null, "Pana (Central African Republic)", "I", "L" }, + { "pny", null, null, null, null, "Pinyin", "I", "L" }, + { "pnx", null, null, null, null, "Phong-Kniang", "I", "L" }, + { "pnv", null, null, null, null, "Pinigura", "I", "L" }, + { "pdn", null, null, null, null, "Podena", "I", "L" }, + { "pdi", null, null, null, null, "Pa Di", "I", "L" }, + { "pdc", null, null, null, null, "Pennsylvania German", "I", "L" }, + { "omi", null, null, null, null, "Omi", "I", "L" }, + { "omg", null, null, null, null, "Omagua", "I", "L" }, + { "omc", null, null, null, null, "Mochica", "I", "E" }, + { "omb", null, null, null, null, "East Ambae", "I", "L" }, + { "oma", null, null, null, null, "Omaha-Ponca", "I", "L" }, + { "olu", null, null, null, null, "Kuvale", "I", "L" }, + { "olt", null, null, null, null, "Old Lithuanian", "I", "H" }, + { "olr", null, null, null, null, "Olrat", "I", "L" }, + { "olo", null, null, null, null, "Livvi", "I", "L" }, + { "olm", null, null, null, null, "Oloma", "I", "L" }, + { "olk", null, null, null, null, "Olkol", "I", "E" }, + { "ole", null, null, null, null, "Olekha", "I", "L" }, + { "omk", null, null, null, null, "Omok", "I", "E" }, + { "old", null, null, null, null, "Mochi", "I", "L" }, + { "okx", null, null, null, null, "Okpe (Northwestern Edo)", "I", "L" }, + { "okv", null, null, null, null, "Orokaiva", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "oku", null, null, null, null, "Oku", "I", "L" }, + { "oks", null, null, null, null, "Oko-Eni-Osayen", "I", "L" }, + { "okr", null, null, null, null, "Kirike", "I", "L" }, + { "oko", null, null, null, null, "Old Korean (3rd-9th cent.)", "I", "H" }, + { "okn", null, null, null, null, "Oki-No-Erabu", "I", "L" }, + { "okm", null, null, null, null, "Middle Korean (10th-16th cent.)", "I", "H" }, + { "okl", null, null, null, null, "Old Kentish Sign Language", "I", "E" }, + { "okk", null, null, null, null, "Kwamtim One", "I", "L" }, + { "okj", null, null, null, null, "Oko-Juwoi", "I", "E" }, + { "oki", null, null, null, null, "Okiek", "I", "L" }, + { "ola", null, null, null, null, "Walungge", "I", "L" }, + { "oml", null, null, null, null, "Ombo", "I", "L" }, + { "omn", null, null, null, null, "Minoan", "I", "A" }, + { "omo", null, null, null, null, "Utarmbung", "I", "L" }, + { "oos", null, null, null, null, "Old Ossetic", "I", "A" }, + { "oor", null, null, null, null, "Oorlams", "I", "L" }, + { "oon", null, null, null, null, "Önge", "I", "L" }, + { "oog", null, null, null, null, "Ong", "I", "L" }, + { "ood", null, null, null, null, "Tohono O'odham", "I", "L" }, + { "onx", null, null, null, null, "Onin Based Pidgin", "I", "L" }, + { "onw", null, null, null, null, "Old Nubian", "I", "H" }, + { "onu", null, null, null, null, "Unua", "I", "L" }, + { "ont", null, null, null, null, "Ontenu", "I", "L" }, + { "ons", null, null, null, null, "Ono", "I", "L" }, + { "onr", null, null, null, null, "Northern One", "I", "L" }, + { "onp", null, null, null, null, "Sartang", "I", "L" }, + { "ono", null, null, null, null, "Onondaga", "I", "L" }, + { "onn", null, null, null, null, "Onobasulu", "I", "L" }, + { "onk", null, null, null, null, "Kabore One", "I", "L" }, + { "onj", null, null, null, null, "Onjob", "I", "L" }, + { "oni", null, null, null, null, "Onin", "I", "L" }, + { "ong", null, null, null, null, "Olo", "I", "L" }, + { "one", null, null, null, null, "Oneida", "I", "L" }, + { "onb", null, null, null, null, "Lingao", "I", "L" }, + { "ona", null, null, null, null, "Ona", "I", "L" }, + { "omx", null, null, null, null, "Old Mon", "I", "H" }, + { "omw", null, null, null, null, "South Tairora", "I", "L" }, + { "omu", null, null, null, null, "Omurano", "I", "E" }, + { "omt", null, null, null, null, "Omotik", "I", "L" }, + { "omr", null, null, null, null, "Old Marathi", "I", "H" }, + { "omp", null, null, null, null, "Old Manipuri", "I", "H" }, + { "okh", null, null, null, null, "Koresh-e Rostam", "I", "L" }, + { "okg", null, null, null, null, "Koko Babangk", "I", "E" }, + { "oke", null, null, null, null, "Okpe (Southwestern Edo)", "I", "L" }, + { "okd", null, null, null, null, "Okodia", "I", "L" }, + { "oca", null, null, null, null, "Ocaina", "I", "L" }, + { "obu", null, null, null, null, "Obulom", "I", "L" }, + { "obt", null, null, null, null, "Old Breton", "I", "H" }, + { "obr", null, null, null, null, "Old Burmese", "I", "H" }, + { "obo", null, null, null, null, "Obo Manobo", "I", "L" }, + { "obm", null, null, null, null, "Moabite", "I", "A" }, + { "obl", null, null, null, null, "Oblo", "I", "L" }, + { "obk", null, null, null, null, "Southern Bontok", "I", "L" }, + { "obi", null, null, null, null, "Obispeño", "I", "E" }, + { "oav", null, null, null, null, "Old Avar", "I", "H" }, + { "oar", null, null, null, null, "Old Aramaic (up to 700 BCE)", "I", "A" }, + { "oac", null, null, null, null, "Oroch", "I", "L" }, + { "oaa", null, null, null, null, "Orok", "I", "L" }, + { "nzz", null, null, null, null, "Nanga Dama Dogon", "I", "L" }, + { "nzy", null, null, null, null, "Nzakambay", "I", "L" }, + { "nzu", null, null, null, null, "Teke-Nzikou", "I", "L" }, + { "nzs", null, null, null, null, "New Zealand Sign Language", "I", "L" }, + { "nzm", null, null, null, null, "Zeme Naga", "I", "L" }, + { "nzk", null, null, null, null, "Nzakara", "I", "L" }, + { "nzi", null, null, "nzi", "nzi", "Nzima", "I", "L" }, + { "nzd", null, null, null, null, "Nzadi", "I", "L" }, + { "nzb", null, null, null, null, "Njebi", "I", "L" }, + { "nza", null, null, null, null, "Tigon Mbembe", "I", "L" }, + { "nyy", null, null, null, null, "Nyakyusa-Ngonde", "I", "L" }, + { "nyx", null, null, null, null, "Nganyaywana", "I", "E" }, + { "nyw", null, null, null, null, "Nyaw", "I", "L" }, + { "nyv", null, null, null, null, "Nyulnyul", "I", "E" }, + { "och", null, null, null, null, "Old Chinese", "I", "A" }, + { "opa", null, null, null, null, "Okpamheri", "I", "L" }, + { "oci", null, "oc", "oci", "oci", "Occitan (post 1500)", "I", "L" }, + { "ocu", null, null, null, null, "Atzingo Matlatzinca", "I", "L" }, + { "okb", null, null, null, null, "Okobo", "I", "L" }, + { "oka", null, null, null, null, "Okanagan", "I", "L" }, + { "ojw", null, null, null, null, "Western Ojibwa", "I", "L" }, + { "ojv", null, null, null, null, "Ontong Java", "I", "L" }, + { "ojs", null, null, null, null, "Severn Ojibwa", "I", "L" }, + { "ojp", null, null, null, null, "Old Japanese", "I", "H" }, + { "oji", null, "oj", "oji", "oji", "Ojibwa", "M", "L" }, + { "ojg", null, null, null, null, "Eastern Ojibwa", "I", "L" }, + { "ojc", null, null, null, null, "Central Ojibwa", "I", "L" }, + { "ojb", null, null, null, null, "Northwestern Ojibwa", "I", "L" }, + { "oin", null, null, null, null, "Inebu One", "I", "L" }, + { "oia", null, null, null, null, "Oirata", "I", "L" }, + { "ohu", null, null, null, null, "Old Hungarian", "I", "H" }, + { "oht", null, null, null, null, "Old Hittite", "I", "A" }, + { "ogu", null, null, null, null, "Ogbronuagum", "I", "L" }, + { "ogo", null, null, null, null, "Khana", "I", "L" }, + { "ogg", null, null, null, null, "Ogbogolo", "I", "L" }, + { "oge", null, null, null, null, "Old Georgian", "I", "H" }, + { "ogc", null, null, null, null, "Ogbah", "I", "L" }, + { "ogb", null, null, null, null, "Ogbia", "I", "L" }, + { "ofu", null, null, null, null, "Efutop", "I", "L" }, + { "ofs", null, null, null, null, "Old Frisian", "I", "H" }, + { "ofo", null, null, null, null, "Ofo", "I", "E" }, + { "odu", null, null, null, null, "Odual", "I", "L" }, + { "odt", null, null, null, null, "Old Dutch", "I", "H" }, + { "odk", null, null, null, null, "Od", "I", "L" }, + { "oda", null, null, null, null, "Odut", "I", "L" }, + { "oco", null, null, null, null, "Old Cornish", "I", "H" }, + { "ptw", null, null, null, null, "Pentlatch", "I", "E" }, + { "opk", null, null, null, null, "Kopkaka", "I", "L" }, + { "opo", null, null, null, null, "Opao", "I", "L" }, + { "pbf", null, null, null, null, "Coyotepec Popoloca", "I", "L" }, + { "pbe", null, null, null, null, "Mezontla Popoloca", "I", "L" }, + { "pbc", null, null, null, null, "Patamona", "I", "L" }, + { "pbb", null, null, null, null, "Páez", "I", "L" }, + { "paz", null, null, null, null, "Pankararú", "I", "E" }, + { "pay", null, null, null, null, "Pech", "I", "L" }, + { "pax", null, null, null, null, "Pankararé", "I", "E" }, + { "paw", null, null, null, null, "Pawnee", "I", "L" }, + { "pav", null, null, null, null, "Pakaásnovos", "I", "L" }, + { "pau", null, null, "pau", "pau", "Palauan", "I", "L" }, + { "pat", null, null, null, null, "Papitalai", "I", "L" }, + { "pas", null, null, null, null, "Papasena", "I", "L" }, + { "pbg", null, null, null, null, "Paraujano", "I", "E" }, + { "par", null, null, null, null, "Panamint", "I", "L" }, + { "pap", null, null, "pap", "pap", "Papiamento", "I", "L" }, + { "pao", null, null, null, null, "Northern Paiute", "I", "L" }, + { "pan", null, "pa", "pan", "pan", "Panjabi", "I", "L" }, + { "pam", null, null, "pam", "pam", "Pampanga", "I", "L" }, + { "pal", null, null, "pal", "pal", "Pahlavi", "I", "A" }, + { "pak", null, null, null, null, "Parakanã", "I", "L" }, + { "pai", null, null, null, null, "Pe", "I", "L" }, + { "pah", null, null, null, null, "Tenharim", "I", "L" }, + { "pag", null, null, "pag", "pag", "Pangasinan", "I", "L" }, + { "paf", null, null, null, null, "Paranawát", "I", "E" }, + { "pae", null, null, null, null, "Pagibete", "I", "L" }, + { "pad", null, null, null, null, "Paumarí", "I", "L" }, + { "paq", null, null, null, null, "Parya", "I", "L" }, + { "pbh", null, null, null, null, "E'ñapa Woromaipu", "I", "L" }, + { "pbi", null, null, null, null, "Parkwa", "I", "L" }, + { "pbl", null, null, null, null, "Mak (Nigeria)", "I", "L" }, + { "pda", null, null, null, null, "Anam", "I", "L" }, + { "pcw", null, null, null, null, "Pyapun", "I", "L" }, + { "pcp", null, null, null, null, "Pacahuara", "I", "L" }, + { "pcn", null, null, null, null, "Piti", "I", "L" }, + { "pcm", null, null, null, null, "Nigerian Pidgin", "I", "L" }, + { "pcl", null, null, null, null, "Pardhi", "I", "L" }, + { "pck", null, null, null, null, "Paite Chin", "I", "L" }, + { "pcj", null, null, null, null, "Parenga", "I", "L" }, + { "pci", null, null, null, null, "Duruwa", "I", "L" }, + { "pch", null, null, null, null, "Pardhan", "I", "L" }, + { "pcg", null, null, null, null, "Paniya", "I", "L" }, + { "pcf", null, null, null, null, "Paliyan", "I", "L" }, + { "pce", null, null, null, null, "Ruching Palaung", "I", "L" }, + { "pcd", null, null, null, null, "Picard", "I", "L" }, + { "pcc", null, null, null, null, "Bouyei", "I", "L" }, + { "pcb", null, null, null, null, "Pear", "I", "L" }, + { "pca", null, null, null, null, "Santa Inés Ahuatempan Popoloca", "I", "L" }, + { "pby", null, null, null, null, "Pyu (Papua New Guinea)", "I", "L" }, + { "pbv", null, null, null, null, "Pnar", "I", "L" }, + { "pbu", null, null, null, null, "Northern Pashto", "I", "L" }, + { "pbt", null, null, null, null, "Southern Pashto", "I", "L" }, + { "pbs", null, null, null, null, "Central Pame", "I", "L" }, + { "pbr", null, null, null, null, "Pangwa", "I", "L" }, + { "pbp", null, null, null, null, "Badyara", "I", "L" }, + { "pbo", null, null, null, null, "Papel", "I", "L" }, + { "pbn", null, null, null, null, "Kpasam", "I", "L" }, + { "pbm", null, null, null, null, "Puebla Mazatec", "I", "L" }, + { "pac", null, null, null, null, "Pacoh", "I", "L" }, + { "pab", null, null, null, null, "Parecís", "I", "L" }, + { "ozm", null, null, null, null, "Koonzime", "I", "L" }, + { "oyy", null, null, null, null, "Oya'oya", "I", "L" }, + { "ost", null, null, null, null, "Osatu", "I", "L" }, + { "oss", null, "os", "oss", "oss", "Ossetian", "I", "L" }, + { "osp", null, null, null, null, "Old Spanish", "I", "H" }, + { "oso", null, null, null, null, "Ososo", "I", "L" }, + { "osi", null, null, null, null, "Osing", "I", "L" }, + { "osc", null, null, null, null, "Oscan", "I", "A" }, + { "osa", null, null, "osa", "osa", "Osage", "I", "L" }, + { "orz", null, null, null, null, "Ormu", "I", "L" }, + { "ory", null, null, null, null, "Odia", "I", "L" }, + { "orx", null, null, null, null, "Oro", "I", "L" }, + { "orw", null, null, null, null, "Oro Win", "I", "L" }, + { "orv", null, null, null, null, "Old Russian", "I", "H" }, + { "oru", null, null, null, null, "Ormuri", "I", "L" }, + { "ort", null, null, null, null, "Adivasi Oriya", "I", "L" }, + { "ors", null, null, null, null, "Orang Seletar", "I", "L" }, + { "orr", null, null, null, null, "Oruma", "I", "L" }, + { "oro", null, null, null, null, "Orokolo", "I", "L" }, + { "orn", null, null, null, null, "Orang Kanaq", "I", "L" }, + { "orm", null, "om", "orm", "orm", "Oromo", "M", "L" }, + { "ori", null, "or", "ori", "ori", "Oriya (macrolanguage)", "M", "L" }, + { "orh", null, null, null, null, "Oroqen", "I", "L" }, + { "org", null, null, null, null, "Oring", "I", "L" }, + { "ore", null, null, null, null, "Orejón", "I", "L" }, + { "orc", null, null, null, null, "Orma", "I", "L" }, + { "ora", null, null, null, null, "Oroha", "I", "L" }, + { "opy", null, null, null, null, "Ofayé", "I", "L" }, + { "opt", null, null, null, null, "Opata", "I", "E" }, + { "osu", null, null, null, null, "Southern One", "I", "L" }, + { "opm", null, null, null, null, "Oksapmin", "I", "L" }, + { "osx", null, null, null, null, "Old Saxon", "I", "H" }, + { "otb", null, null, null, null, "Old Tibetan", "I", "H" }, + { "oym", null, null, null, null, "Wayampi", "I", "L" }, + { "oyd", null, null, null, null, "Oyda", "I", "L" }, + { "oyb", null, null, null, null, "Oy", "I", "L" }, + { "owl", null, null, null, null, "Old Welsh", "I", "H" }, + { "owi", null, null, null, null, "Owiniga", "I", "L" }, + { "ovd", null, null, null, null, "Elfdalian", "I", "L" }, + { "oum", null, null, null, null, "Ouma", "I", "E" }, + { "oui", null, null, null, null, "Old Uighur", "I", "H" }, + { "oue", null, null, null, null, "Oune", "I", "L" }, + { "oub", null, null, null, null, "Glio-Oubi", "I", "L" }, + { "oua", null, null, null, null, "Tagargrent", "I", "L" }, + { "otz", null, null, null, null, "Ixtenco Otomi", "I", "L" }, + { "oty", null, null, null, null, "Old Tamil", "I", "A" }, + { "otx", null, null, null, null, "Texcatepec Otomi", "I", "L" }, + { "otw", null, null, null, null, "Ottawa", "I", "L" }, + { "otu", null, null, null, null, "Otuke", "I", "E" }, + { "ott", null, null, null, null, "Temoaya Otomi", "I", "L" }, + { "ots", null, null, null, null, "Estado de México Otomi", "I", "L" }, + { "otr", null, null, null, null, "Otoro", "I", "L" }, + { "otq", null, null, null, null, "Querétaro Otomi", "I", "L" }, + { "otn", null, null, null, null, "Tenango Otomi", "I", "L" }, + { "otm", null, null, null, null, "Eastern Highland Otomi", "I", "L" }, + { "otl", null, null, null, null, "Tilapa Otomi", "I", "L" }, + { "otk", null, null, null, null, "Old Turkish", "I", "H" }, + { "oti", null, null, null, null, "Oti", "I", "E" }, + { "ote", null, null, null, null, "Mezquital Otomi", "I", "L" }, + { "otd", null, null, null, null, "Ot Danum", "I", "L" }, + { "ota", null, null, "ota", "ota", "Ottoman Turkish (1500-1928)", "I", "H" }, + { "pty", null, null, null, null, "Pathiya", "I", "L" }, + { "pua", null, null, null, null, "Western Highland Purepecha", "I", "L" }, + { "pub", null, null, null, null, "Purum", "I", "L" }, + { "sdr", null, null, null, null, "Oraon Sadri", "I", "L" }, + { "sdp", null, null, null, null, "Sherdukpen", "I", "L" }, + { "sdo", null, null, null, null, "Bukar-Sadung Bidayuh", "I", "L" }, + { "sdn", null, null, null, null, "Gallurese Sardinian", "I", "L" }, + { "sdm", null, null, null, null, "Semandang", "I", "L" }, + { "sdl", null, null, null, null, "Saudi Arabian Sign Language", "I", "L" }, + { "sdk", null, null, null, null, "Sos Kundi", "I", "L" }, + { "sdj", null, null, null, null, "Suundi", "I", "L" }, + { "sdh", null, null, null, null, "Southern Kurdish", "I", "L" }, + { "sdg", null, null, null, null, "Savi", "I", "L" }, + { "sdf", null, null, null, null, "Sarli", "I", "L" }, + { "sde", null, null, null, null, "Surubu", "I", "L" }, + { "sds", null, null, null, null, "Sened", "I", "E" }, + { "sdc", null, null, null, null, "Sassarese Sardinian", "I", "L" }, + { "sda", null, null, null, null, "Toraja-Sa'dan", "I", "L" }, + { "scx", null, null, null, null, "Sicel", "I", "A" }, + { "scw", null, null, null, null, "Sha", "I", "L" }, + { "scv", null, null, null, null, "Sheni", "I", "L" }, + { "scu", null, null, null, null, "Shumcho", "I", "L" }, + { "sct", null, null, null, null, "Southern Katang", "I", "L" }, + { "scs", null, null, null, null, "North Slavey", "I", "L" }, + { "scq", null, null, null, null, "Sa'och", "I", "L" }, + { "scp", null, null, null, null, "Hyolmo", "I", "L" }, + { "sco", null, null, "sco", "sco", "Scots", "I", "L" }, + { "scn", null, null, "scn", "scn", "Sicilian", "I", "L" }, + { "scl", null, null, null, null, "Shina", "I", "L" }, + { "sdb", null, null, null, null, "Shabak", "I", "L" }, + { "sdt", null, null, null, null, "Shuadit", "I", "E" }, + { "sdu", null, null, null, null, "Sarudu", "I", "L" }, + { "sdx", null, null, null, null, "Sibu Melanau", "I", "L" }, + { "sfe", null, null, null, null, "Eastern Subanen", "I", "L" }, + { "sfb", null, null, null, null, "Langue des signes de Belgique Francophone", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "sez", null, null, null, null, "Senthang Chin", "I", "L" }, + { "sey", null, null, null, null, "Secoya", "I", "L" }, + { "sew", null, null, null, null, "Sewa Bay", "I", "L" }, + { "sev", null, null, null, null, "Nyarafolo Senoufo", "I", "L" }, + { "seu", null, null, null, null, "Serui-Laut", "I", "L" }, + { "set", null, null, null, null, "Sentani", "I", "L" }, + { "ses", null, null, null, null, "Koyraboro Senni Songhai", "I", "L" }, + { "ser", null, null, null, null, "Serrano", "I", "L" }, + { "seq", null, null, null, null, "Senara Sénoufo", "I", "L" }, + { "sep", null, null, null, null, "Sìcìté Sénoufo", "I", "L" }, + { "seo", null, null, null, null, "Suarmin", "I", "L" }, + { "sen", null, null, null, null, "Nanerigé Sénoufo", "I", "L" }, + { "sel", null, null, "sel", "sel", "Selkup", "I", "L" }, + { "sek", null, null, null, null, "Sekani", "I", "L" }, + { "sej", null, null, null, null, "Sene", "I", "L" }, + { "sei", null, null, null, null, "Seri", "I", "L" }, + { "seh", null, null, null, null, "Sena", "I", "L" }, + { "seg", null, null, null, null, "Segeju", "I", "L" }, + { "sef", null, null, null, null, "Cebaara Senoufo", "I", "L" }, + { "see", null, null, null, null, "Seneca", "I", "L" }, + { "sed", null, null, null, null, "Sedang", "I", "L" }, + { "sec", null, null, null, null, "Sechelt", "I", "L" }, + { "seb", null, null, null, null, "Shempire Senoufo", "I", "L" }, + { "sea", null, null, null, null, "Semai", "I", "L" }, + { "sdz", null, null, null, null, "Sallands", "I", "L" }, + { "sck", null, null, null, null, "Sadri", "I", "L" }, + { "sci", null, null, null, null, "Sri Lankan Creole Malay", "I", "L" }, + { "sch", null, null, null, null, "Sakachep", "I", "L" }, + { "scg", null, null, null, null, "Sanggau", "I", "L" }, + { "sax", null, null, null, null, "Sa", "I", "L" }, + { "saw", null, null, null, null, "Sawi", "I", "L" }, + { "sav", null, null, null, null, "Saafi-Saafi", "I", "L" }, + { "sau", null, null, null, null, "Saleman", "I", "L" }, + { "sat", null, null, "sat", "sat", "Santali", "I", "L" }, + { "sas", null, null, "sas", "sas", "Sasak", "I", "L" }, + { "sar", null, null, null, null, "Saraveca", "I", "E" }, + { "saq", null, null, null, null, "Samburu", "I", "L" }, + { "sao", null, null, null, null, "Sause", "I", "L" }, + { "san", null, "sa", "san", "san", "Sanskrit", "I", "A" }, + { "sam", null, null, "sam", "sam", "Samaritan Aramaic", "I", "E" }, + { "sak", null, null, null, null, "Sake", "I", "L" }, + { "saj", null, null, null, null, "Sahu", "I", "L" }, + { "sah", null, null, "sah", "sah", "Yakut", "I", "L" }, + { "sag", null, "sg", "sag", "sag", "Sango", "I", "L" }, + { "saf", null, null, null, null, "Safaliba", "I", "L" }, + { "sae", null, null, null, null, "Sabanê", "I", "L" }, + { "sad", null, null, "sad", "sad", "Sandawe", "I", "L" }, + { "sac", null, null, null, null, "Meskwaki", "I", "L" }, + { "sab", null, null, null, null, "Buglere", "I", "L" }, + { "saa", null, null, null, null, "Saba", "I", "L" }, + { "rzh", null, null, null, null, "Rāziḥī", "I", "L" }, + { "ryu", null, null, null, null, "Central Okinawan", "I", "L" }, + { "rys", null, null, null, null, "Yaeyama", "I", "L" }, + { "ryn", null, null, null, null, "Northern Amami-Oshima", "I", "L" }, + { "rxw", null, null, null, null, "Karuwali", "I", "E" }, + { "rxd", null, null, null, null, "Ngardi", "I", "L" }, + { "say", null, null, null, null, "Saya", "I", "L" }, + { "sfm", null, null, null, null, "Small Flowery Miao", "I", "L" }, + { "saz", null, null, null, null, "Saurashtra", "I", "L" }, + { "sbb", null, null, null, null, "Simbo", "I", "L" }, + { "scf", null, null, null, null, "San Miguel Creole French", "I", "L" }, + { "sce", null, null, null, null, "Dongxiang", "I", "L" }, + { "scb", null, null, null, null, "Chut", "I", "L" }, + { "sbz", null, null, null, null, "Sara Kaba", "I", "L" }, + { "sby", null, null, null, null, "Soli", "I", "L" }, + { "sbx", null, null, null, null, "Seberuang", "I", "L" }, + { "sbw", null, null, null, null, "Simba", "I", "L" }, + { "sbv", null, null, null, null, "Sabine", "I", "A" }, + { "sbu", null, null, null, null, "Stod Bhoti", "I", "L" }, + { "sbt", null, null, null, null, "Kimki", "I", "L" }, + { "sbs", null, null, null, null, "Subiya", "I", "L" }, + { "sbr", null, null, null, null, "Sembakung Murut", "I", "L" }, + { "sbq", null, null, null, null, "Sileibi", "I", "L" }, + { "sbp", null, null, null, null, "Sangu (Tanzania)", "I", "L" }, + { "sbo", null, null, null, null, "Sabüm", "I", "L" }, + { "sbn", null, null, null, null, "Sindhi Bhil", "I", "L" }, + { "sbm", null, null, null, null, "Sagala", "I", "L" }, + { "sbl", null, null, null, null, "Botolan Sambal", "I", "L" }, + { "sbk", null, null, null, null, "Safwa", "I", "L" }, + { "sbj", null, null, null, null, "Surbakhal", "I", "L" }, + { "sbi", null, null, null, null, "Seti", "I", "L" }, + { "sbh", null, null, null, null, "Sori-Harengan", "I", "L" }, + { "sbg", null, null, null, null, "Seget", "I", "L" }, + { "sbf", null, null, null, null, "Chabu", "I", "L" }, + { "sbe", null, null, null, null, "Saliba", "I", "L" }, + { "sbd", null, null, null, null, "Southern Samo", "I", "L" }, + { "sbc", null, null, null, null, "Kele (Papua New Guinea)", "I", "L" }, + { "sba", null, null, null, null, "Ngambay", "I", "L" }, + { "rwr", null, null, null, null, "Marwari (India)", "I", "L" }, + { "sfs", null, null, null, null, "South African Sign Language", "I", "L" }, + { "sga", null, null, "sga", "sga", "Old Irish (to 900)", "I", "H" }, + { "ske", null, null, null, null, "Seke (Vanuatu)", "I", "L" }, + { "skd", null, null, null, null, "Southern Sierra Miwok", "I", "L" }, + { "skc", null, null, null, null, "Ma Manda", "I", "L" }, + { "skb", null, null, null, null, "Saek", "I", "L" }, + { "ska", null, null, null, null, "Skagit", "I", "L" }, + { "sjw", null, null, null, null, "Shawnee", "I", "L" }, + { "sju", null, null, null, null, "Ume Sami", "I", "L" }, + { "sjt", null, null, null, null, "Ter Sami", "I", "L" }, + { "sjs", null, null, null, null, "Senhaja De Srair", "I", "E" }, + { "sjr", null, null, null, null, "Siar-Lak", "I", "L" }, + { "sjp", null, null, null, null, "Surjapuri", "I", "L" }, + { "sjo", null, null, null, null, "Xibe", "I", "L" }, + { "skf", null, null, null, null, "Sakirabiá", "I", "L" }, + { "sjn", null, null, null, null, "Sindarin", "I", "C" }, + { "sjl", null, null, null, null, "Sajalong", "I", "L" }, + { "sjk", null, null, null, null, "Kemi Sami", "I", "E" }, + { "sjg", null, null, null, null, "Assangori", "I", "L" }, + { "sje", null, null, null, null, "Pite Sami", "I", "L" }, + { "sjd", null, null, null, null, "Kildin Sami", "I", "L" }, + { "sjb", null, null, null, null, "Sajau Basap", "I", "L" }, + { "sja", null, null, null, null, "Epena", "I", "L" }, + { "siz", null, null, null, null, "Siwi", "I", "L" }, + { "siy", null, null, null, null, "Sivandi", "I", "L" }, + { "six", null, null, null, null, "Sumau", "I", "L" }, + { "siw", null, null, null, null, "Siwai", "I", "L" }, + { "siv", null, null, null, null, "Sumariup", "I", "L" }, + { "sjm", null, null, null, null, "Mapun", "I", "L" }, + { "skg", null, null, null, null, "Sakalava Malagasy", "I", "L" }, + { "skh", null, null, null, null, "Sikule", "I", "L" }, + { "ski", null, null, null, null, "Sika", "I", "L" }, + { "sln", null, null, null, null, "Salinan", "I", "E" }, + { "slm", null, null, null, null, "Pangutaran Sama", "I", "L" }, + { "sll", null, null, null, null, "Salt-Yui", "I", "L" }, + { "slk", null, "sk", "slo", "slk", "Slovak", "I", "L" }, + { "slj", null, null, null, null, "Salumá", "I", "L" }, + { "sli", null, null, null, null, "Lower Silesian", "I", "L" }, + { "slh", null, null, null, null, "Southern Puget Sound Salish", "I", "L" }, + { "slg", null, null, null, null, "Selungai Murut", "I", "L" }, + { "slf", null, null, null, null, "Swiss-Italian Sign Language", "I", "L" }, + { "sle", null, null, null, null, "Sholaga", "I", "L" }, + { "sld", null, null, null, null, "Sissala", "I", "L" }, + { "slc", null, null, null, null, "Sáliba", "I", "L" }, + { "skz", null, null, null, null, "Sekar", "I", "L" }, + { "sky", null, null, null, null, "Sikaiana", "I", "L" }, + { "skx", null, null, null, null, "Seko Padang", "I", "L" }, + { "skw", null, null, null, null, "Skepi Creole Dutch", "I", "E" }, + { "skv", null, null, null, null, "Skou", "I", "L" }, + { "sku", null, null, null, null, "Sakao", "I", "L" }, + { "skt", null, null, null, null, "Sakata", "I", "L" }, + { "sks", null, null, null, null, "Maia", "I", "L" }, + { "skr", null, null, null, null, "Saraiki", "I", "L" }, + { "skq", null, null, null, null, "Sininkere", "I", "L" }, + { "skp", null, null, null, null, "Sekapan", "I", "L" }, + { "sko", null, null, null, null, "Seko Tengah", "I", "L" }, + { "skn", null, null, null, null, "Kolibugan Subanon", "I", "L" }, + { "skm", null, null, null, null, "Kutong", "I", "L" }, + { "skj", null, null, null, null, "Seke (Nepal)", "I", "L" }, + { "siu", null, null, null, null, "Sinagen", "I", "L" }, + { "sis", null, null, null, null, "Siuslaw", "I", "E" }, + { "sir", null, null, null, null, "Siri", "I", "L" }, + { "siq", null, null, null, null, "Sonia", "I", "L" }, + { "shi", null, null, null, null, "Tachelhit", "I", "L" }, + { "shh", null, null, null, null, "Shoshoni", "I", "L" }, + { "shg", null, null, null, null, "Shua", "I", "L" }, + { "she", null, null, null, null, "Sheko", "I", "L" }, + { "shd", null, null, null, null, "Kundal Shahi", "I", "L" }, + { "shc", null, null, null, null, "Sonde", "I", "L" }, + { "shb", null, null, null, null, "Ninam", "I", "L" }, + { "sha", null, null, null, null, "Shall-Zwall", "I", "L" }, + { "sgz", null, null, null, null, "Sursurunga", "I", "L" }, + { "sgy", null, null, null, null, "Sanglechi", "I", "L" }, + { "sgx", null, null, null, null, "Sierra Leone Sign Language", "I", "L" }, + { "sgw", null, null, null, null, "Sebat Bet Gurage", "I", "L" }, + { "sgu", null, null, null, null, "Salas", "I", "L" }, + { "sgt", null, null, null, null, "Brokpake", "I", "L" }, + { "sgs", null, null, null, null, "Samogitian", "I", "L" }, + { "sgr", null, null, null, null, "Sangisari", "I", "L" }, + { "sgp", null, null, null, null, "Singpho", "I", "L" }, + { "sgm", null, null, null, null, "Singa", "I", "E" }, + { "sgk", null, null, null, null, "Sangkong", "I", "L" }, + { "sgj", null, null, null, null, "Surgujia", "I", "L" }, + { "sgi", null, null, null, null, "Suga", "I", "L" }, + { "sgh", null, null, null, null, "Shughni", "I", "L" }, + { "sgg", null, null, null, null, "Swiss-German Sign Language", "I", "L" }, + { "sge", null, null, null, null, "Segai", "I", "L" }, + { "sgd", null, null, null, null, "Surigaonon", "I", "L" }, + { "sgc", null, null, null, null, "Kipsigis", "I", "L" }, + { "sgb", null, null, null, null, "Mag-antsi Ayta", "I", "L" }, + { "shj", null, null, null, null, "Shatt", "I", "L" }, + { "sfw", null, null, null, null, "Sehwi", "I", "L" }, + { "shk", null, null, null, null, "Shilluk", "I", "L" }, + { "shm", null, null, null, null, "Shahrudi", "I", "L" }, + { "sip", null, null, null, null, "Sikkimese", "I", "L" }, + { "sin", null, "si", "sin", "sin", "Sinhala", "I", "L" }, + { "sim", null, null, null, null, "Mende (Papua New Guinea)", "I", "L" }, + { "sil", null, null, null, null, "Tumulung Sisaala", "I", "L" }, + { "sik", null, null, null, null, "Sikiana", "I", "L" }, + { "sij", null, null, null, null, "Numbami", "I", "L" }, + { "sii", null, null, null, null, "Shom Peng", "I", "L" }, + { "sih", null, null, null, null, "Zire", "I", "L" }, + { "sig", null, null, null, null, "Paasaal", "I", "L" }, + { "sif", null, null, null, null, "Siamou", "I", "L" }, + { "sie", null, null, null, null, "Simaa", "I", "L" }, + { "sid", null, null, "sid", "sid", "Sidamo", "I", "L" }, + { "sib", null, null, null, null, "Sebop", "I", "L" }, + { "sia", null, null, null, null, "Akkala Sami", "I", "E" }, + { "shz", null, null, null, null, "Syenara Senoufo", "I", "L" }, + { "shy", null, null, null, null, "Tachawit", "I", "L" }, + { "shx", null, null, null, null, "She", "I", "L" }, + { "shw", null, null, null, null, "Shwai", "I", "L" }, + { "shv", null, null, null, null, "Shehri", "I", "L" }, + { "shu", null, null, null, null, "Chadian Arabic", "I", "L" }, + { "sht", null, null, null, null, "Shasta", "I", "E" }, + { "shs", null, null, null, null, "Shuswap", "I", "L" }, + { "shr", null, null, null, null, "Shi", "I", "L" }, + { "shq", null, null, null, null, "Sala", "I", "L" }, + { "shp", null, null, null, null, "Shipibo-Conibo", "I", "L" }, + { "sho", null, null, null, null, "Shanga", "I", "L" }, + { "shn", null, null, "shn", "shn", "Shan", "I", "L" }, + { "shl", null, null, null, null, "Shendu", "I", "L" }, + { "nyu", null, null, null, null, "Nyungwe", "I", "L" }, + { "rwo", null, null, null, null, "Rawa", "I", "L" }, + { "rwk", null, null, null, null, "Rwa", "I", "L" }, + { "qxr", null, null, null, null, "Cañar Highland Quichua", "I", "L" }, + { "qxq", null, null, null, null, "Qashqa'i", "I", "L" }, + { "qxp", null, null, null, null, "Puno Quechua", "I", "L" }, + { "qxo", null, null, null, null, "Southern Conchucos Ancash Quechua", "I", "L" }, + { "qxn", null, null, null, null, "Northern Conchucos Ancash Quechua", "I", "L" }, + { "qxl", null, null, null, null, "Salasaca Highland Quichua", "I", "L" }, + { "qxh", null, null, null, null, "Panao Huánuco Quechua", "I", "L" }, + { "qxc", null, null, null, null, "Chincha Quechua", "I", "L" }, + { "qxa", null, null, null, null, "Chiquián Ancash Quechua", "I", "L" }, + { "qwt", null, null, null, null, "Kwalhioqua-Tlatskanai", "I", "E" }, + { "qws", null, null, null, null, "Sihuas Ancash Quechua", "I", "L" }, + { "qwm", null, null, null, null, "Kuman (Russia)", "I", "E" }, + { "qxs", null, null, null, null, "Southern Qiang", "I", "L" }, + { "qwh", null, null, null, null, "Huaylas Ancash Quechua", "I", "L" }, + { "qwa", null, null, null, null, "Corongo Ancash Quechua", "I", "L" }, + { "qvz", null, null, null, null, "Northern Pastaza Quichua", "I", "L" }, + { "qvy", null, null, null, null, "Queyu", "I", "L" }, + { "qvw", null, null, null, null, "Huaylla Wanca Quechua", "I", "L" }, + { "qvs", null, null, null, null, "San Martín Quechua", "I", "L" }, + { "qvp", null, null, null, null, "Pacaraos Quechua", "I", "L" }, + { "qvo", null, null, null, null, "Napo Lowland Quechua", "I", "L" }, + { "qvn", null, null, null, null, "North Junín Quechua", "I", "L" }, + { "qvm", null, null, null, null, "Margos-Yarowilca-Lauricocha Quechua", "I", "L" }, + { "qvl", null, null, null, null, "Cajatambo North Lima Quechua", "I", "L" }, + { "qvj", null, null, null, null, "Loja Highland Quichua", "I", "L" }, + { "qvi", null, null, null, null, "Imbabura Highland Quichua", "I", "L" }, + { "qwc", null, null, null, null, "Classical Quechua", "I", "H" }, + { "qxt", null, null, null, null, "Santa Ana de Tusi Pasco Quechua", "I", "L" }, + { "qxu", null, null, null, null, "Arequipa-La Unión Quechua", "I", "L" }, + { "qxw", null, null, null, null, "Jauja Wanca Quechua", "I", "L" }, + { "raz", null, null, null, null, "Rahambuu", "I", "L" }, + { "ray", null, null, null, null, "Rapa", "I", "L" }, + { "rax", null, null, null, null, "Rang", "I", "L" }, + { "raw", null, null, null, null, "Rawang", "I", "L" }, + { "rav", null, null, null, null, "Sampang", "I", "L" }, + { "rau", null, null, null, null, "Raute", "I", "L" }, + { "rat", null, null, null, null, "Razajerdi", "I", "L" }, + { "ras", null, null, null, null, "Tegali", "I", "L" }, + { "rar", null, null, "rar", "rar", "Rarotongan", "I", "L" }, + { "raq", null, null, null, null, "Saam", "I", "L" }, + { "rap", null, null, "rap", "rap", "Rapanui", "I", "L" }, + { "rao", null, null, null, null, "Rao", "I", "L" }, + { "ran", null, null, null, null, "Riantana", "I", "L" }, + { "ram", null, null, null, null, "Canela", "I", "L" }, + { "ral", null, null, null, null, "Ralte", "I", "L" }, + { "rak", null, null, null, null, "Tulu-Bohuai", "I", "L" }, + { "raj", null, null, "raj", "raj", "Rajasthani", "M", "L" }, + { "rai", null, null, null, null, "Ramoaaina", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "rah", null, null, null, null, "Rabha", "I", "L" }, + { "rag", null, null, null, null, "Logooli", "I", "L" }, + { "raf", null, null, null, null, "Western Meohang", "I", "L" }, + { "rad", null, null, null, null, "Rade", "I", "L" }, + { "rac", null, null, null, null, "Rasawa", "I", "L" }, + { "rab", null, null, null, null, "Camling", "I", "L" }, + { "raa", null, null, null, null, "Dungmali", "I", "L" }, + { "qyp", null, null, null, null, "Quiripi", "I", "E" }, + { "qya", null, null, null, null, "Quenya", "I", "C" }, + { "qvh", null, null, null, null, "Huamalíes-Dos de Mayo Huánuco Quechua", "I", "L" }, + { "qve", null, null, null, null, "Eastern Apurímac Quechua", "I", "L" }, + { "qvc", null, null, null, null, "Cajamarca Quechua", "I", "L" }, + { "qva", null, null, null, null, "Ambo-Pasco Quechua", "I", "L" }, + { "pww", null, null, null, null, "Pwo Northern Karen", "I", "L" }, + { "pwr", null, null, null, null, "Powari", "I", "L" }, + { "pwo", null, null, null, null, "Pwo Western Karen", "I", "L" }, + { "pwn", null, null, null, null, "Paiwan", "I", "L" }, + { "pwm", null, null, null, null, "Molbog", "I", "L" }, + { "pwi", null, null, null, null, "Patwin", "I", "E" }, + { "pwg", null, null, null, null, "Gapapaiwa", "I", "L" }, + { "pwb", null, null, null, null, "Panawa", "I", "L" }, + { "pwa", null, null, null, null, "Pawaia", "I", "L" }, + { "puy", null, null, null, null, "Purisimeño", "I", "E" }, + { "pux", null, null, null, null, "Puare", "I", "L" }, + { "puw", null, null, null, null, "Puluwatese", "I", "L" }, + { "puu", null, null, null, null, "Punu", "I", "L" }, + { "put", null, null, null, null, "Putoh", "I", "L" }, + { "pus", null, "ps", "pus", "pus", "Pushto", "M", "L" }, + { "pur", null, null, null, null, "Puruborá", "I", "L" }, + { "puq", null, null, null, null, "Puquina", "I", "E" }, + { "pup", null, null, null, null, "Pulabu", "I", "L" }, + { "puo", null, null, null, null, "Puoc", "I", "L" }, + { "pum", null, null, null, null, "Puma", "I", "L" }, + { "puj", null, null, null, null, "Punan Tubu", "I", "L" }, + { "pui", null, null, null, null, "Puinave", "I", "L" }, + { "pug", null, null, null, null, "Phuie", "I", "L" }, + { "puf", null, null, null, null, "Punan Merah", "I", "L" }, + { "pue", null, null, null, null, "Puelche", "I", "E" }, + { "pud", null, null, null, null, "Punan Aput", "I", "L" }, + { "puc", null, null, null, null, "Punan Merap", "I", "L" }, + { "pxm", null, null, null, null, "Quetzaltepec Mixe", "I", "L" }, + { "rbb", null, null, null, null, "Rumai Palaung", "I", "L" }, + { "pye", null, null, null, null, "Pye Krumen", "I", "L" }, + { "pyn", null, null, null, null, "Poyanáwa", "I", "L" }, + { "quz", null, null, null, null, "Cusco Quechua", "I", "L" }, + { "quy", null, null, null, null, "Ayacucho Quechua", "I", "L" }, + { "qux", null, null, null, null, "Yauyos Quechua", "I", "L" }, + { "quw", null, null, null, null, "Tena Lowland Quichua", "I", "L" }, + { "quv", null, null, null, null, "Sacapulteco", "I", "L" }, + { "qus", null, null, null, null, "Santiago del Estero Quichua", "I", "L" }, + { "qur", null, null, null, null, "Yanahuanca Pasco Quechua", "I", "L" }, + { "quq", null, null, null, null, "Quinqui", "I", "L" }, + { "qup", null, null, null, null, "Southern Pastaza Quechua", "I", "L" }, + { "qun", null, null, null, null, "Quinault", "I", "E" }, + { "qum", null, null, null, null, "Sipacapense", "I", "L" }, + { "qul", null, null, null, null, "North Bolivian Quechua", "I", "L" }, + { "quk", null, null, null, null, "Chachapoyas Quechua", "I", "L" }, + { "qui", null, null, null, null, "Quileute", "I", "L" }, + { "quh", null, null, null, null, "South Bolivian Quechua", "I", "L" }, + { "qug", null, null, null, null, "Chimborazo Highland Quichua", "I", "L" }, + { "quf", null, null, null, null, "Lambayeque Quechua", "I", "L" }, + { "que", null, "qu", "que", "que", "Quechua", "M", "L" }, + { "qud", null, null, null, null, "Calderón Highland Quichua", "I", "L" }, + { "quc", null, null, null, null, "K'iche'", "I", "L" }, + { "qub", null, null, null, null, "Huallaga Huánuco Quechua", "I", "L" }, + { "qua", null, null, null, null, "Quapaw", "I", "L" }, + { "pzn", null, null, null, null, "Para Naga", "I", "L" }, + { "pyy", null, null, null, null, "Pyen", "I", "L" }, + { "pyx", null, null, null, null, "Pyu (Myanmar)", "I", "A" }, + { "pyu", null, null, null, null, "Puyuma", "I", "L" }, + { "pys", null, null, null, null, "Paraguayan Sign Language", "I", "L" }, + { "pym", null, null, null, null, "Fyam", "I", "L" }, + { "rwm", null, null, null, null, "Amba (Uganda)", "I", "L" }, + { "rbk", null, null, null, null, "Northern Bontok", "I", "L" }, + { "rbp", null, null, null, null, "Barababaraba", "I", "E" }, + { "row", null, null, null, null, "Dela-Oenale", "I", "L" }, + { "rou", null, null, null, null, "Runga", "I", "L" }, + { "ror", null, null, null, null, "Rongga", "I", "L" }, + { "rop", null, null, null, null, "Kriol", "I", "L" }, + { "roo", null, null, null, null, "Rotokas", "I", "L" }, + { "ron", null, "ro", "rum", "ron", "Romanian", "I", "L" }, + { "rom", null, null, "rom", "rom", "Romany", "M", "L" }, + { "rol", null, null, null, null, "Romblomanon", "I", "L" }, + { "roh", null, "rm", "roh", "roh", "Romansh", "I", "L" }, + { "rog", null, null, null, null, "Northern Roglai", "I", "L" }, + { "rof", null, null, null, null, "Rombo", "I", "L" }, + { "roe", null, null, null, null, "Ronji", "I", "L" }, + { "rpn", null, null, null, null, "Repanbitip", "I", "L" }, + { "rod", null, null, null, null, "Rogo", "I", "L" }, + { "rob", null, null, null, null, "Tae'", "I", "L" }, + { "rnw", null, null, null, null, "Rungwa", "I", "L" }, + { "rnr", null, null, null, null, "Nari Nari", "I", "E" }, + { "rnp", null, null, null, null, "Rongpo", "I", "L" }, + { "rnn", null, null, null, null, "Roon", "I", "L" }, + { "rnl", null, null, null, null, "Ranglong", "I", "L" }, + { "rng", null, null, null, null, "Ronga", "I", "L" }, + { "rnd", null, null, null, null, "Ruund", "I", "L" }, + { "rmz", null, null, null, null, "Marma", "I", "L" }, + { "rmy", null, null, null, null, "Vlax Romani", "I", "L" }, + { "rmx", null, null, null, null, "Romam", "I", "L" }, + { "rmw", null, null, null, null, "Welsh Romani", "I", "L" }, + { "roc", null, null, null, null, "Cacgia Roglai", "I", "L" }, + { "rpt", null, null, null, null, "Rapting", "I", "L" }, + { "rri", null, null, null, null, "Ririo", "I", "L" }, + { "rro", null, null, null, null, "Waima", "I", "L" }, + { "rwa", null, null, null, null, "Rawo", "I", "L" }, + { "ruz", null, null, null, null, "Ruma", "I", "L" }, + { "ruy", null, null, null, null, "Mala (Nigeria)", "I", "L" }, + { "ruu", null, null, null, null, "Lanas Lobu", "I", "L" }, + { "rut", null, null, null, null, "Rutul", "I", "L" }, + { "rus", null, "ru", "rus", "rus", "Russian", "I", "L" }, + { "ruq", null, null, null, null, "Megleno Romanian", "I", "L" }, + { "rup", null, null, "rup", "rup", "Macedo-Romanian", "I", "L" }, + { "ruo", null, null, null, null, "Istro Romanian", "I", "L" }, + { "run", null, "rn", "run", "run", "Rundi", "I", "L" }, + { "ruk", null, null, null, null, "Che", "I", "L" }, + { "rui", null, null, null, null, "Rufiji", "I", "L" }, + { "ruh", null, null, null, null, "Ruga", "I", "L" }, + { "rug", null, null, null, null, "Roviana", "I", "L" }, + { "ruf", null, null, null, null, "Luguru", "I", "L" }, + { "rue", null, null, null, null, "Rusyn", "I", "L" }, + { "ruc", null, null, null, null, "Ruuli", "I", "L" }, + { "rub", null, null, null, null, "Gungu", "I", "L" }, + { "rtw", null, null, null, null, "Rathawi", "I", "L" }, + { "rts", null, null, null, null, "Yurats", "I", "E" }, + { "rtm", null, null, null, null, "Rotuman", "I", "L" }, + { "rth", null, null, null, null, "Ratahan", "I", "L" }, + { "rtc", null, null, null, null, "Rungtu Chin", "I", "L" }, + { "rsm", null, null, null, null, "Miriwoong Sign Language", "I", "L" }, + { "rsl", null, null, null, null, "Russian Sign Language", "I", "L" }, + { "rsb", null, null, null, null, "Romano-Serbian", "I", "L" }, + { "rrt", null, null, null, null, "Arritinngithigh", "I", "E" }, + { "rmv", null, null, null, null, "Romanova", "I", "C" }, + { "rmu", null, null, null, null, "Tavringer Romani", "I", "L" }, + { "rmt", null, null, null, null, "Domari", "I", "L" }, + { "rms", null, null, null, null, "Romanian Sign Language", "I", "L" }, + { "ril", null, null, null, null, "Riang Lang", "I", "L" }, + { "rif", null, null, null, null, "Tarifit", "I", "L" }, + { "ria", null, null, null, null, "Riang (India)", "I", "L" }, + { "rhp", null, null, null, null, "Yahang", "I", "L" }, + { "rhg", null, null, null, null, "Rohingya", "I", "L" }, + { "rgu", null, null, null, null, "Ringgou", "I", "L" }, + { "rgs", null, null, null, null, "Southern Roglai", "I", "L" }, + { "rgr", null, null, null, null, "Resígaro", "I", "L" }, + { "rgn", null, null, null, null, "Romagnol", "I", "L" }, + { "rgk", null, null, null, null, "Rangkas", "I", "E" }, + { "rge", null, null, null, null, "Romano-Greek", "I", "L" }, + { "rga", null, null, null, null, "Roria", "I", "L" }, + { "rey", null, null, null, null, "Reyesano", "I", "L" }, + { "ret", null, null, null, null, "Retta", "I", "L" }, + { "res", null, null, null, null, "Reshe", "I", "L" }, + { "rer", null, null, null, null, "Rer Bare", "I", "E" }, + { "ren", null, null, null, null, "Rengao", "I", "L" }, + { "rem", null, null, null, null, "Remo", "I", "E" }, + { "rel", null, null, null, null, "Rendille", "I", "L" }, + { "rej", null, null, null, null, "Rejang", "I", "L" }, + { "rei", null, null, null, null, "Reli", "I", "L" }, + { "reg", null, null, null, null, "Kara (Tanzania)", "I", "L" }, + { "ree", null, null, null, null, "Rejang Kayan", "I", "L" }, + { "reb", null, null, null, null, "Rembong", "I", "L" }, + { "rea", null, null, null, null, "Rerau", "I", "L" }, + { "rdb", null, null, null, null, "Rudbari", "I", "L" }, + { "rcf", null, null, null, null, "Réunion Creole French", "I", "L" }, + { "rim", null, null, null, null, "Nyaturu", "I", "L" }, + { "rbl", null, null, null, null, "Miraya Bikol", "I", "L" }, + { "rin", null, null, null, null, "Nungu", "I", "L" }, + { "rit", null, null, null, null, "Ritharrngu", "I", "L" }, + { "rmq", null, null, null, null, "Caló", "I", "L" }, + { "rmp", null, null, null, null, "Rempi", "I", "L" }, + { "rmo", null, null, null, null, "Sinte Romani", "I", "L" }, + { "rmn", null, null, null, null, "Balkan Romani", "I", "L" }, + { "rmm", null, null, null, null, "Roma", "I", "L" }, + { "rml", null, null, null, null, "Baltic Romani", "I", "L" }, + { "rmk", null, null, null, null, "Romkun", "I", "L" }, + { "rmi", null, null, null, null, "Lomavren", "I", "L" }, + { "rmh", null, null, null, null, "Murkim", "I", "L" }, + { "rmg", null, null, null, null, "Traveller Norwegian", "I", "L" }, + { "rmf", null, null, null, null, "Kalo Finnish Romani", "I", "L" }, + { "rme", null, null, null, null, "Angloromani", "I", "L" }, + { "rmd", null, null, null, null, "Traveller Danish", "I", "E" }, + { "rmc", null, null, null, null, "Carpathian Romani", "I", "L" }, + { "rmb", null, null, null, null, "Rembarrnga", "I", "L" }, + { "rma", null, null, null, null, "Rama", "I", "L" }, + { "rkw", null, null, null, null, "Arakwal", "I", "E" }, + { "rkt", null, null, null, null, "Rangpuri", "I", "L" }, + { "rkm", null, null, null, null, "Marka", "I", "L" }, + { "rki", null, null, null, null, "Rakhine", "I", "L" }, + { "rkh", null, null, null, null, "Rakahanga-Manihiki", "I", "L" }, + { "rkb", null, null, null, null, "Rikbaktsa", "I", "L" }, + { "rka", null, null, null, null, "Kraol", "I", "L" }, + { "rjs", null, null, null, null, "Rajbanshi", "I", "L" }, + { "rji", null, null, null, null, "Raji", "I", "L" }, + { "rjg", null, null, null, null, "Rajong", "I", "L" }, + { "riu", null, null, null, null, "Riung", "I", "L" }, + { "rir", null, null, null, null, "Ribun", "I", "L" }, + { "slp", null, null, null, null, "Lamaholot", "I", "L" }, + { "nyt", null, null, null, null, "Nyawaygi", "I", "E" }, + { "nyr", null, null, null, null, "Nyiha (Malawi)", "I", "L" }, + { "msu", null, null, null, null, "Musom", "I", "L" }, + { "mss", null, null, null, null, "West Masela", "I", "L" }, + { "msr", null, null, null, null, "Mongolian Sign Language", "I", "L" }, + { "msq", null, null, null, null, "Caac", "I", "L" }, + { "msp", null, null, null, null, "Maritsauá", "I", "E" }, + { "mso", null, null, null, null, "Mombum", "I", "L" }, + { "msn", null, null, null, null, "Vurës", "I", "L" }, + { "msm", null, null, null, null, "Agusan Manobo", "I", "L" }, + { "msl", null, null, null, null, "Molof", "I", "L" }, + { "msk", null, null, null, null, "Mansaka", "I", "L" }, + { "msj", null, null, null, null, "Ma (Democratic Republic of Congo)", "I", "L" }, + { "msi", null, null, null, null, "Sabah Malay", "I", "L" }, + { "msv", null, null, null, null, "Maslam", "I", "L" }, + { "msh", null, null, null, null, "Masikoro Malagasy", "I", "L" }, + { "msf", null, null, null, null, "Mekwei", "I", "L" }, + { "mse", null, null, null, null, "Musey", "I", "L" }, + { "msd", null, null, null, null, "Yucatec Maya Sign Language", "I", "L" }, + { "msc", null, null, null, null, "Sankaran Maninka", "I", "L" }, + { "msb", null, null, null, null, "Masbatenyo", "I", "L" }, + { "msa", null, "ms", "may", "msa", "Malay (macrolanguage)", "M", "L" }, + { "mrz", null, null, null, null, "Marind", "I", "L" }, + { "mry", null, null, null, null, "Mandaya", "I", "L" }, + { "mrx", null, null, null, null, "Maremgi", "I", "L" }, + { "mrw", null, null, null, null, "Maranao", "I", "L" }, + { "mrv", null, null, null, null, "Mangareva", "I", "L" }, + { "mru", null, null, null, null, "Mono (Cameroon)", "I", "L" }, + { "msg", null, null, null, null, "Moraid", "I", "L" }, + { "msw", null, null, null, null, "Mansoanka", "I", "L" }, + { "msx", null, null, null, null, "Moresada", "I", "L" }, + { "msy", null, null, null, null, "Aruamu", "I", "L" }, + { "mua", null, null, null, null, "Mundang", "I", "L" }, + { "mty", null, null, null, null, "Nabi", "I", "L" }, + { "mtx", null, null, null, null, "Tidaá Mixtec", "I", "L" }, + { "mtw", null, null, null, null, "Southern Binukidnon", "I", "L" }, + { "mtv", null, null, null, null, "Asaro'o", "I", "L" }, + { "mtu", null, null, null, null, "Tututepec Mixtec", "I", "L" }, + { "mtt", null, null, null, null, "Mota", "I", "L" }, + { "mts", null, null, null, null, "Yora", "I", "L" }, + { "mtr", null, null, null, null, "Mewari", "I", "L" }, + { "mtq", null, null, null, null, "Muong", "I", "L" }, + { "mtp", null, null, null, null, "Wichí Lhamtés Nocten", "I", "L" }, + { "mto", null, null, null, null, "Totontepec Mixe", "I", "L" }, + { "mtn", null, null, null, null, "Matagalpa", "I", "E" }, + { "mtm", null, null, null, null, "Mator", "I", "E" }, + { "mtl", null, null, null, null, "Montol", "I", "L" }, + { "mtk", null, null, null, null, "Mbe'", "I", "L" }, + { "mtj", null, null, null, null, "Moskona", "I", "L" }, + { "mti", null, null, null, null, "Maiwa (Papua New Guinea)", "I", "L" }, + { "mth", null, null, null, null, "Munggui", "I", "L" }, + { "mtg", null, null, null, null, "Una", "I", "L" }, + { "mtf", null, null, null, null, "Murik (Papua New Guinea)", "I", "L" }, + { "mte", null, null, null, null, "Mono (Solomon Islands)", "I", "L" }, + { "mtd", null, null, null, null, "Mualang", "I", "L" }, + { "mtc", null, null, null, null, "Munit", "I", "L" }, + { "mtb", null, null, null, null, "Anyin Morofo", "I", "L" }, + { "mta", null, null, null, null, "Cotabato Manobo", "I", "L" }, + { "msz", null, null, null, null, "Momare", "I", "L" }, + { "mrt", null, null, null, null, "Marghi Central", "I", "L" }, + { "mub", null, null, null, null, "Mubi", "I", "L" }, + { "mrs", null, null, null, null, "Maragus", "I", "L" }, + { "mrq", null, null, null, null, "North Marquesan", "I", "L" }, + { "mqk", null, null, null, null, "Rajah Kabunsuwan Manobo", "I", "L" }, + { "mqj", null, null, null, null, "Mamasa", "I", "L" }, + { "mqi", null, null, null, null, "Mariri", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "mqh", null, null, null, null, "Tlazoyaltepec Mixtec", "I", "L" }, + { "mqg", null, null, null, null, "Kota Bangun Kutai Malay", "I", "L" }, + { "mqf", null, null, null, null, "Momuna", "I", "L" }, + { "mqe", null, null, null, null, "Matepi", "I", "L" }, + { "mqc", null, null, null, null, "Mangole", "I", "L" }, + { "mqb", null, null, null, null, "Mbuko", "I", "L" }, + { "mqa", null, null, null, null, "Maba (Indonesia)", "I", "L" }, + { "mpz", null, null, null, null, "Mpi", "I", "L" }, + { "mpy", null, null, null, null, "Mapia", "I", "L" }, + { "mql", null, null, null, null, "Mbelime", "I", "L" }, + { "mpx", null, null, null, null, "Misima-Panaeati", "I", "L" }, + { "mpv", null, null, null, null, "Mungkip", "I", "L" }, + { "mpu", null, null, null, null, "Makuráp", "I", "L" }, + { "mpt", null, null, null, null, "Mian", "I", "L" }, + { "mps", null, null, null, null, "Dadibi", "I", "L" }, + { "mpr", null, null, null, null, "Vangunu", "I", "L" }, + { "mpq", null, null, null, null, "Matís", "I", "L" }, + { "mpp", null, null, null, null, "Migabac", "I", "L" }, + { "mpo", null, null, null, null, "Miu", "I", "L" }, + { "mpn", null, null, null, null, "Mindiri", "I", "L" }, + { "mpm", null, null, null, null, "Yosondúa Mixtec", "I", "L" }, + { "mpl", null, null, null, null, "Middle Watut", "I", "L" }, + { "mpk", null, null, null, null, "Mbara (Chad)", "I", "L" }, + { "mpw", null, null, null, null, "Mapidian", "I", "L" }, + { "mqm", null, null, null, null, "South Marquesan", "I", "L" }, + { "mqn", null, null, null, null, "Moronene", "I", "L" }, + { "mqo", null, null, null, null, "Modole", "I", "L" }, + { "mrp", null, null, null, null, "Morouas", "I", "L" }, + { "mro", null, null, null, null, "Mru", "I", "L" }, + { "mrn", null, null, null, null, "Cheke Holo", "I", "L" }, + { "mrm", null, null, null, null, "Merlav", "I", "L" }, + { "mrl", null, null, null, null, "Mortlockese", "I", "L" }, + { "mrk", null, null, null, null, "Hmwaveke", "I", "L" }, + { "mrj", null, null, null, null, "Western Mari", "I", "L" }, + { "mri", null, "mi", "mao", "mri", "Maori", "I", "L" }, + { "mrh", null, null, null, null, "Mara Chin", "I", "L" }, + { "mrg", null, null, null, null, "Mising", "I", "L" }, + { "mrf", null, null, null, null, "Elseng", "I", "L" }, + { "mre", null, null, null, null, "Martha's Vineyard Sign Language", "I", "E" }, + { "mrd", null, null, null, null, "Western Magar", "I", "L" }, + { "mrc", null, null, null, null, "Maricopa", "I", "L" }, + { "mrb", null, null, null, null, "Marino", "I", "L" }, + { "mra", null, null, null, null, "Mlabri", "I", "L" }, + { "mqz", null, null, null, null, "Pano", "I", "L" }, + { "mqy", null, null, null, null, "Manggarai", "I", "L" }, + { "mqx", null, null, null, null, "Mamuju", "I", "L" }, + { "mqw", null, null, null, null, "Murupi", "I", "L" }, + { "mqv", null, null, null, null, "Mosimo", "I", "L" }, + { "mqu", null, null, null, null, "Mandari", "I", "L" }, + { "mqt", null, null, null, null, "Mok", "I", "L" }, + { "mqs", null, null, null, null, "West Makian", "I", "L" }, + { "mqr", null, null, null, null, "Mander", "I", "L" }, + { "mqq", null, null, null, null, "Minokok", "I", "L" }, + { "mqp", null, null, null, null, "Manipa", "I", "L" }, + { "mrr", null, null, null, null, "Maria (India)", "I", "L" }, + { "muc", null, null, null, null, "Ajumbu", "I", "L" }, + { "mud", null, null, null, null, "Mednyj Aleut", "I", "L" }, + { "mue", null, null, null, null, "Media Lengua", "I", "L" }, + { "mxx", null, null, null, null, "Mahou", "I", "L" }, + { "mxw", null, null, null, null, "Namo", "I", "L" }, + { "mxv", null, null, null, null, "Metlatónoc Mixtec", "I", "L" }, + { "mxu", null, null, null, null, "Mada (Cameroon)", "I", "L" }, + { "mxt", null, null, null, null, "Jamiltepec Mixtec", "I", "L" }, + { "mxs", null, null, null, null, "Huitepec Mixtec", "I", "L" }, + { "mxr", null, null, null, null, "Murik (Malaysia)", "I", "L" }, + { "mxq", null, null, null, null, "Juquila Mixe", "I", "L" }, + { "mxp", null, null, null, null, "Tlahuitoltepec Mixe", "I", "L" }, + { "mxo", null, null, null, null, "Mbowe", "I", "L" }, + { "mxn", null, null, null, null, "Moi (Indonesia)", "I", "L" }, + { "mxm", null, null, null, null, "Meramera", "I", "L" }, + { "mxy", null, null, null, null, "Southeastern Nochixtlán Mixtec", "I", "L" }, + { "mxl", null, null, null, null, "Maxi Gbe", "I", "L" }, + { "mxj", null, null, null, null, "Miju-Mishmi", "I", "L" }, + { "mxi", null, null, null, null, "Mozarabic", "I", "H" }, + { "mxh", null, null, null, null, "Mvuba", "I", "L" }, + { "mxg", null, null, null, null, "Mbangala", "I", "L" }, + { "mxf", null, null, null, null, "Malgbe", "I", "L" }, + { "mxe", null, null, null, null, "Mele-Fila", "I", "L" }, + { "mxd", null, null, null, null, "Modang", "I", "L" }, + { "mxc", null, null, null, null, "Manyika", "I", "L" }, + { "mxb", null, null, null, null, "Tezoatlán Mixtec", "I", "L" }, + { "mxa", null, null, null, null, "Northwest Oaxaca Mixtec", "I", "L" }, + { "mwz", null, null, null, null, "Moingi", "I", "L" }, + { "mww", null, null, null, null, "Hmong Daw", "I", "L" }, + { "mxk", null, null, null, null, "Monumbo", "I", "L" }, + { "mxz", null, null, null, null, "Central Masela", "I", "L" }, + { "mya", null, "my", "bur", "mya", "Burmese", "I", "L" }, + { "myb", null, null, null, null, "Mbay", "I", "L" }, + { "mzi", null, null, null, null, "Ixcatlán Mazatec", "I", "L" }, + { "mzh", null, null, null, null, "Wichí Lhamtés Güisnay", "I", "L" }, + { "mzg", null, null, null, null, "Monastic Sign Language", "I", "L" }, + { "mze", null, null, null, null, "Morawa", "I", "L" }, + { "mzd", null, null, null, null, "Malimba", "I", "L" }, + { "mzc", null, null, null, null, "Madagascar Sign Language", "I", "L" }, + { "mzb", null, null, null, null, "Tumzabt", "I", "L" }, + { "mza", null, null, null, null, "Santa María Zacatepec Mixtec", "I", "L" }, + { "myz", null, null, null, null, "Classical Mandaic", "I", "H" }, + { "myy", null, null, null, null, "Macuna", "I", "L" }, + { "myx", null, null, null, null, "Masaaba", "I", "L" }, + { "myw", null, null, null, null, "Muyuw", "I", "L" }, + { "myv", null, null, "myv", "myv", "Erzya", "I", "L" }, + { "myu", null, null, null, null, "Mundurukú", "I", "L" }, + { "mys", null, null, null, null, "Mesmes", "I", "E" }, + { "myr", null, null, null, null, "Muniche", "I", "L" }, + { "myp", null, null, null, null, "Pirahã", "I", "L" }, + { "myo", null, null, null, null, "Anfillo", "I", "L" }, + { "mym", null, null, null, null, "Me'en", "I", "L" }, + { "myl", null, null, null, null, "Moma", "I", "L" }, + { "myk", null, null, null, null, "Mamara Senoufo", "I", "L" }, + { "myj", null, null, null, null, "Mangayat", "I", "L" }, + { "myh", null, null, null, null, "Makah", "I", "L" }, + { "myg", null, null, null, null, "Manta", "I", "L" }, + { "myf", null, null, null, null, "Bambassi", "I", "L" }, + { "mye", null, null, null, null, "Myene", "I", "L" }, + { "myc", null, null, null, null, "Mayeka", "I", "L" }, + { "mwv", null, null, null, null, "Mentawai", "I", "L" }, + { "mwu", null, null, null, null, "Mittu", "I", "E" }, + { "mwt", null, null, null, null, "Moken", "I", "L" }, + { "mws", null, null, null, null, "Mwimbi-Muthambi", "I", "L" }, + { "mvk", null, null, null, null, "Mekmek", "I", "L" }, + { "mvi", null, null, null, null, "Miyako", "I", "L" }, + { "mvh", null, null, null, null, "Mulgi", "I", "L" }, + { "mvg", null, null, null, null, "Yucuañe Mixtec", "I", "L" }, + { "mvf", null, null, null, null, "Peripheral Mongolian", "I", "L" }, + { "mve", null, null, null, null, "Marwari (Pakistan)", "I", "L" }, + { "mvd", null, null, null, null, "Mamboru", "I", "L" }, + { "mvb", null, null, null, null, "Mattole", "I", "E" }, + { "mva", null, null, null, null, "Manam", "I", "L" }, + { "muz", null, null, null, null, "Mursi", "I", "L" }, + { "muy", null, null, null, null, "Muyang", "I", "L" }, + { "mux", null, null, null, null, "Bo-Ung", "I", "L" }, + { "muv", null, null, null, null, "Muthuvan", "I", "L" }, + { "muu", null, null, null, null, "Yaaku", "I", "L" }, + { "mut", null, null, null, null, "Western Muria", "I", "L" }, + { "mus", null, null, "mus", "mus", "Creek", "I", "L" }, + { "mur", null, null, null, null, "Murle", "I", "L" }, + { "muq", null, null, null, null, "Eastern Xiangxi Miao", "I", "L" }, + { "mup", null, null, null, null, "Malvi", "I", "L" }, + { "muo", null, null, null, null, "Nyong", "I", "L" }, + { "mum", null, null, null, null, "Maiwala", "I", "L" }, + { "mul", null, null, "mul", "mul", "Multiple languages", "S", "S" }, + { "muk", null, null, null, null, "Mugom", "I", "L" }, + { "muj", null, null, null, null, "Mabire", "I", "L" }, + { "mui", null, null, null, null, "Musi", "I", "L" }, + { "muh", null, null, null, null, "Mündü", "I", "L" }, + { "mug", null, null, null, null, "Musgu", "I", "L" }, + { "mvl", null, null, null, null, "Mbara (Australia)", "I", "E" }, + { "mpj", null, null, null, null, "Martu Wangka", "I", "L" }, + { "mvm", null, null, null, null, "Muya", "I", "L" }, + { "mvo", null, null, null, null, "Marovo", "I", "L" }, + { "mwr", null, null, "mwr", "mwr", "Marwari", "M", "L" }, + { "mwq", null, null, null, null, "Mün Chin", "I", "L" }, + { "mwp", null, null, null, null, "Kala Lagaw Ya", "I", "L" }, + { "mwo", null, null, null, null, "Central Maewo", "I", "L" }, + { "mwn", null, null, null, null, "Nyamwanga", "I", "L" }, + { "mwm", null, null, null, null, "Sar", "I", "L" }, + { "mwl", null, null, "mwl", "mwl", "Mirandese", "I", "L" }, + { "mwk", null, null, null, null, "Kita Maninkakan", "I", "L" }, + { "mwi", null, null, null, null, "Labo", "I", "L" }, + { "mwh", null, null, null, null, "Mouk-Aria", "I", "L" }, + { "mwg", null, null, null, null, "Aiklep", "I", "L" }, + { "mwf", null, null, null, null, "Murrinh-Patha", "I", "L" }, + { "mwe", null, null, null, null, "Mwera (Chimwera)", "I", "L" }, + { "mwc", null, null, null, null, "Are", "I", "L" }, + { "mwb", null, null, null, null, "Juwal", "I", "L" }, + { "mwa", null, null, null, null, "Mwatebu", "I", "L" }, + { "mvz", null, null, null, null, "Mesqan", "I", "L" }, + { "mvy", null, null, null, null, "Indus Kohistani", "I", "L" }, + { "mvx", null, null, null, null, "Meoswar", "I", "L" }, + { "mvw", null, null, null, null, "Machinga", "I", "L" }, + { "mvv", null, null, null, null, "Tagal Murut", "I", "L" }, + { "mvu", null, null, null, null, "Marfa", "I", "L" }, + { "mvt", null, null, null, null, "Mpotovoro", "I", "L" }, + { "mvs", null, null, null, null, "Massep", "I", "L" }, + { "mvr", null, null, null, null, "Marau", "I", "L" }, + { "mvq", null, null, null, null, "Moere", "I", "L" }, + { "mvp", null, null, null, null, "Duri", "I", "L" }, + { "mvn", null, null, null, null, "Minaveha", "I", "L" }, + { "mpi", null, null, null, null, "Mpade", "I", "L" }, + { "mph", null, null, null, null, "Maung", "I", "L" }, + { "mpg", null, null, null, null, "Marba", "I", "L" }, + { "miu", null, null, null, null, "Cacaloxtepec Mixtec", "I", "L" }, + { "mit", null, null, null, null, "Southern Puebla Mixtec", "I", "L" }, + { "mis", null, null, "mis", "mis", "Uncoded languages", "S", "S" }, + { "mir", null, null, null, null, "Isthmus Mixe", "I", "L" }, + { "miq", null, null, null, null, "Mískito", "I", "L" }, + { "mip", null, null, null, null, "Apasco-Apoala Mixtec", "I", "L" }, + { "mio", null, null, null, null, "Pinotepa Nacional Mixtec", "I", "L" }, + { "min", null, null, "min", "min", "Minangkabau", "I", "L" }, + { "mim", null, null, null, null, "Alacatlatzala Mixtec", "I", "L" }, + { "mil", null, null, null, null, "Peñoles Mixtec", "I", "L" }, + { "mik", null, null, null, null, "Mikasuki", "I", "L" }, + { "mij", null, null, null, null, "Abar", "I", "L" }, + { "miw", null, null, null, null, "Akoye", "I", "L" }, + { "mii", null, null, null, null, "Chigmecatitlán Mixtec", "I", "L" }, + { "mig", null, null, null, null, "San Miguel El Grande Mixtec", "I", "L" }, + { "mif", null, null, null, null, "Mofu-Gudur", "I", "L" }, + { "mie", null, null, null, null, "Ocotepec Mixtec", "I", "L" }, + { "mid", null, null, null, null, "Mandaic", "I", "L" }, + { "mic", null, null, "mic", "mic", "Mi'kmaq", "I", "L" }, + { "mib", null, null, null, null, "Atatláhuca Mixtec", "I", "L" }, + { "mia", null, null, null, null, "Miami", "I", "L" }, + { "mhz", null, null, null, null, "Mor (Mor Islands)", "I", "L" }, + { "mhy", null, null, null, null, "Ma'anyan", "I", "L" }, + { "mhx", null, null, null, null, "Maru", "I", "L" }, + { "mhw", null, null, null, null, "Mbukushu", "I", "L" }, + { "mhu", null, null, null, null, "Digaro-Mishmi", "I", "L" }, + { "mih", null, null, null, null, "Chayuco Mixtec", "I", "L" }, + { "mix", null, null, null, null, "Mixtepec Mixtec", "I", "L" }, + { "miy", null, null, null, null, "Ayutla Mixtec", "I", "L" }, + { "miz", null, null, null, null, "Coatzospan Mixtec", "I", "L" }, + { "mkc", null, null, null, null, "Siliput", "I", "L" }, + { "mkb", null, null, null, null, "Mal Paharia", "I", "L" }, + { "mka", null, null, null, null, "Mbre", "I", "L" }, + { "mjz", null, null, null, null, "Majhi", "I", "L" }, + { "mjy", null, null, null, null, "Mahican", "I", "E" }, + { "mjx", null, null, null, null, "Mahali", "I", "L" }, + { "mjw", null, null, null, null, "Karbi", "I", "L" }, + { "mjv", null, null, null, null, "Mannan", "I", "L" }, + { "mju", null, null, null, null, "Manna-Dora", "I", "L" }, + { "mjt", null, null, null, null, "Sauria Paharia", "I", "L" }, + { "mjs", null, null, null, null, "Miship", "I", "L" }, + { "mjr", null, null, null, null, "Malavedan", "I", "L" }, + { "mjq", null, null, null, null, "Malaryan", "I", "E" }, + { "mjp", null, null, null, null, "Malapandaram", "I", "L" }, + { "mjo", null, null, null, null, "Malankuravan", "I", "L" }, + { "mjn", null, null, null, null, "Ma (Papua New Guinea)", "I", "L" }, + { "mjm", null, null, null, null, "Medebur", "I", "L" }, + { "mjl", null, null, null, null, "Mandeali", "I", "L" }, + { "mjk", null, null, null, null, "Matukar", "I", "L" }, + { "mjj", null, null, null, null, "Mawak", "I", "L" }, + { "mji", null, null, null, null, "Kim Mun", "I", "L" }, + { "mjh", null, null, null, null, "Mwera (Nyasa)", "I", "L" }, + { "mjg", null, null, null, null, "Tu", "I", "L" }, + { "mje", null, null, null, null, "Muskum", "I", "E" }, + { "mjd", null, null, null, null, "Northwest Maidu", "I", "L" }, + { "mjc", null, null, null, null, "San Juan Colorado Mixtec", "I", "L" }, + { "mjb", null, null, null, null, "Makalero", "I", "L" }, + { "mht", null, null, null, null, "Mandahuaca", "I", "L" }, + { "mhs", null, null, null, null, "Buru (Indonesia)", "I", "L" }, + { "mhr", null, null, null, null, "Eastern Mari", "I", "L" }, + { "mhq", null, null, null, null, "Mandan", "I", "L" }, + { "mgi", null, null, null, null, "Lijili", "I", "L" }, + { "mgh", null, null, null, null, "Makhuwa-Meetto", "I", "L" }, + { "mgg", null, null, null, null, "Mpumpong", "I", "L" }, + { "mgf", null, null, null, null, "Maklew", "I", "L" }, + { "mge", null, null, null, null, "Mango", "I", "L" }, + { "mgd", null, null, null, null, "Moru", "I", "L" }, + { "mgc", null, null, null, null, "Morokodo", "I", "L" }, + { "mgb", null, null, null, null, "Mararit", "I", "L" }, + { "mga", null, null, "mga", "mga", "Middle Irish (900-1200)", "I", "H" }, + { "mfz", null, null, null, null, "Mabaan", "I", "L" }, + { "mfy", null, null, null, null, "Mayo", "I", "L" }, + { "mfx", null, null, null, null, "Melo", "I", "L" }, + { "mfw", null, null, null, null, "Mulaha", "I", "E" }, + { "mfv", null, null, null, null, "Mandjak", "I", "L" }, + { "mfu", null, null, null, null, "Mbwela", "I", "L" }, + { "mft", null, null, null, null, "Mokerang", "I", "L" }, + { "mfs", null, null, null, null, "Mexican Sign Language", "I", "L" }, + { "mfr", null, null, null, null, "Marrithiyel", "I", "L" }, + { "mfq", null, null, null, null, "Moba", "I", "L" }, + { "mfp", null, null, null, null, "Makassar Malay", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "mfo", null, null, null, null, "Mbe", "I", "L" }, + { "mfn", null, null, null, null, "Cross River Mbembe", "I", "L" }, + { "mfm", null, null, null, null, "Marghi South", "I", "L" }, + { "mfl", null, null, null, null, "Putai", "I", "L" }, + { "mfk", null, null, null, null, "North Mofu", "I", "L" }, + { "mfj", null, null, null, null, "Mefele", "I", "L" }, + { "mfi", null, null, null, null, "Wandala", "I", "L" }, + { "mgj", null, null, null, null, "Abureni", "I", "L" }, + { "mkd", null, "mk", "mac", "mkd", "Macedonian", "I", "L" }, + { "mgk", null, null, null, null, "Mawes", "I", "L" }, + { "mgm", null, null, null, null, "Mambae", "I", "L" }, + { "mhp", null, null, null, null, "Balinese Malay", "I", "L" }, + { "mho", null, null, null, null, "Mashi (Zambia)", "I", "L" }, + { "mhn", null, null, null, null, "Mócheno", "I", "L" }, + { "mhm", null, null, null, null, "Makhuwa-Moniga", "I", "L" }, + { "mhl", null, null, null, null, "Mauwake", "I", "L" }, + { "mhk", null, null, null, null, "Mungaka", "I", "L" }, + { "mhj", null, null, null, null, "Mogholi", "I", "L" }, + { "mhi", null, null, null, null, "Ma'di", "I", "L" }, + { "mhg", null, null, null, null, "Margu", "I", "L" }, + { "mhf", null, null, null, null, "Mamaa", "I", "L" }, + { "mhe", null, null, null, null, "Besisi", "I", "L" }, + { "mhd", null, null, null, null, "Mbugu", "I", "L" }, + { "mhc", null, null, null, null, "Mocho", "I", "L" }, + { "mhb", null, null, null, null, "Mahongwe", "I", "L" }, + { "mha", null, null, null, null, "Manda (India)", "I", "L" }, + { "mgz", null, null, null, null, "Mbugwe", "I", "L" }, + { "mgy", null, null, null, null, "Mbunga", "I", "L" }, + { "mgw", null, null, null, null, "Matumbi", "I", "L" }, + { "mgv", null, null, null, null, "Matengo", "I", "L" }, + { "mgu", null, null, null, null, "Mailu", "I", "L" }, + { "mgt", null, null, null, null, "Mongol", "I", "L" }, + { "mgs", null, null, null, null, "Manda (Tanzania)", "I", "L" }, + { "mgr", null, null, null, null, "Mambwe-Lungu", "I", "L" }, + { "mgq", null, null, null, null, "Malila", "I", "L" }, + { "mgp", null, null, null, null, "Eastern Magar", "I", "L" }, + { "mgo", null, null, null, null, "Meta'", "I", "L" }, + { "mgn", null, null, null, null, "Mbangi", "I", "L" }, + { "mgl", null, null, null, null, "Maleu-Kilenge", "I", "L" }, + { "mzj", null, null, null, null, "Manya", "I", "L" }, + { "mke", null, null, null, null, "Mawchi", "I", "L" }, + { "mkg", null, null, null, null, "Mak (China)", "I", "L" }, + { "mnw", null, null, null, null, "Mon", "I", "L" }, + { "mnv", null, null, null, null, "Rennell-Bellona", "I", "L" }, + { "mnu", null, null, null, null, "Mer", "I", "L" }, + { "mns", null, null, null, null, "Mansi", "I", "L" }, + { "mnr", null, null, null, null, "Mono (USA)", "I", "L" }, + { "mnq", null, null, null, null, "Minriq", "I", "L" }, + { "mnp", null, null, null, null, "Min Bei Chinese", "I", "L" }, + { "mnn", null, null, null, null, "Southern Mnong", "I", "L" }, + { "mnm", null, null, null, null, "Mapena", "I", "L" }, + { "mnl", null, null, null, null, "Tiale", "I", "L" }, + { "mnk", null, null, null, null, "Mandinka", "I", "L" }, + { "mnj", null, null, null, null, "Munji", "I", "L" }, + { "mnx", null, null, null, null, "Manikion", "I", "L" }, + { "mni", null, null, "mni", "mni", "Manipuri", "I", "L" }, + { "mng", null, null, null, null, "Eastern Mnong", "I", "L" }, + { "mnf", null, null, null, null, "Mundani", "I", "L" }, + { "mne", null, null, null, null, "Naba", "I", "L" }, + { "mnd", null, null, null, null, "Mondé", "I", "L" }, + { "mnc", null, null, "mnc", "mnc", "Manchu", "I", "L" }, + { "mnb", null, null, null, null, "Muna", "I", "L" }, + { "mna", null, null, null, null, "Mbula", "I", "L" }, + { "mmz", null, null, null, null, "Mabaale", "I", "L" }, + { "mmy", null, null, null, null, "Migaama", "I", "L" }, + { "mmx", null, null, null, null, "Madak", "I", "L" }, + { "mmw", null, null, null, null, "Emae", "I", "L" }, + { "mmv", null, null, null, null, "Miriti", "I", "E" }, + { "mnh", null, null, null, null, "Mono (Democratic Republic of Congo)", "I", "L" }, + { "mny", null, null, null, null, "Manyawa", "I", "L" }, + { "mnz", null, null, null, null, "Moni", "I", "L" }, + { "moa", null, null, null, null, "Mwan", "I", "L" }, + { "mpe", null, null, null, null, "Majang", "I", "L" }, + { "mpd", null, null, null, null, "Machinere", "I", "L" }, + { "mpc", null, null, null, null, "Mangarrayi", "I", "L" }, + { "mpb", null, null, null, null, "Malak Malak", "I", "L" }, + { "mpa", null, null, null, null, "Mpoto", "I", "L" }, + { "moz", null, null, null, null, "Mukulu", "I", "L" }, + { "moy", null, null, null, null, "Shekkacho", "I", "L" }, + { "mox", null, null, null, null, "Molima", "I", "L" }, + { "mow", null, null, null, null, "Moi (Congo)", "I", "L" }, + { "mov", null, null, null, null, "Mohave", "I", "L" }, + { "mou", null, null, null, null, "Mogum", "I", "L" }, + { "mot", null, null, null, null, "Barí", "I", "L" }, + { "mos", null, null, "mos", "mos", "Mossi", "I", "L" }, + { "mor", null, null, null, null, "Moro", "I", "L" }, + { "moq", null, null, null, null, "Mor (Bomberai Peninsula)", "I", "L" }, + { "mop", null, null, null, null, "Mopán Maya", "I", "L" }, + { "moo", null, null, null, null, "Monom", "I", "L" }, + { "mon", null, "mn", "mon", "mon", "Mongolian", "M", "L" }, + { "mom", null, null, null, null, "Mangue", "I", "E" }, + { "mok", null, null, null, null, "Morori", "I", "L" }, + { "moj", null, null, null, null, "Monzombo", "I", "L" }, + { "moi", null, null, null, null, "Mboi", "I", "L" }, + { "moh", null, null, "moh", "moh", "Mohawk", "I", "L" }, + { "mog", null, null, null, null, "Mongondow", "I", "L" }, + { "moe", null, null, null, null, "Montagnais", "I", "L" }, + { "mod", null, null, null, null, "Mobilian", "I", "E" }, + { "moc", null, null, null, null, "Mocoví", "I", "L" }, + { "mmu", null, null, null, null, "Mmaala", "I", "L" }, + { "mmt", null, null, null, null, "Malalamai", "I", "L" }, + { "mmr", null, null, null, null, "Western Xiangxi Miao", "I", "L" }, + { "mmq", null, null, null, null, "Musak", "I", "L" }, + { "mlj", null, null, null, null, "Miltu", "I", "L" }, + { "mli", null, null, null, null, "Malimpung", "I", "L" }, + { "mlh", null, null, null, null, "Mape", "I", "L" }, + { "mlg", null, "mg", "mlg", "mlg", "Malagasy", "M", "L" }, + { "mlf", null, null, null, null, "Mal", "I", "L" }, + { "mle", null, null, null, null, "Manambu", "I", "L" }, + { "mlc", null, null, null, null, "Cao Lan", "I", "L" }, + { "mlb", null, null, null, null, "Mbule", "I", "L" }, + { "mla", null, null, null, null, "Malo", "I", "L" }, + { "mkz", null, null, null, null, "Makasae", "I", "L" }, + { "mky", null, null, null, null, "East Makian", "I", "L" }, + { "mkx", null, null, null, null, "Kinamiging Manobo", "I", "L" }, + { "mkw", null, null, null, null, "Kituba (Congo)", "I", "L" }, + { "mkv", null, null, null, null, "Mafea", "I", "L" }, + { "mku", null, null, null, null, "Konyanka Maninka", "I", "L" }, + { "mkt", null, null, null, null, "Vamale", "I", "L" }, + { "mks", null, null, null, null, "Silacayoapan Mixtec", "I", "L" }, + { "mkr", null, null, null, null, "Malas", "I", "L" }, + { "mkq", null, null, null, null, "Bay Miwok", "I", "E" }, + { "mkp", null, null, null, null, "Moikodi", "I", "L" }, + { "mko", null, null, null, null, "Mingang Doso", "I", "L" }, + { "mkn", null, null, null, null, "Kupang Malay", "I", "L" }, + { "mkm", null, null, null, null, "Moklen", "I", "L" }, + { "mkl", null, null, null, null, "Mokole", "I", "L" }, + { "mkk", null, null, null, null, "Byep", "I", "L" }, + { "mkj", null, null, null, null, "Mokilese", "I", "L" }, + { "mki", null, null, null, null, "Dhatki", "I", "L" }, + { "mlk", null, null, null, null, "Ilwana", "I", "L" }, + { "mkf", null, null, null, null, "Miya", "I", "L" }, + { "mll", null, null, null, null, "Malua Bay", "I", "L" }, + { "mln", null, null, null, null, "Malango", "I", "L" }, + { "mmp", null, null, null, null, "Siawi", "I", "L" }, + { "mmo", null, null, null, null, "Mangga Buang", "I", "L" }, + { "mmn", null, null, null, null, "Mamanwa", "I", "L" }, + { "mmm", null, null, null, null, "Maii", "I", "L" }, + { "mml", null, null, null, null, "Man Met", "I", "L" }, + { "mmk", null, null, null, null, "Mukha-Dora", "I", "L" }, + { "mmj", null, null, null, null, "Majhwar", "I", "L" }, + { "mmi", null, null, null, null, "Musar", "I", "L" }, + { "mmh", null, null, null, null, "Mehináku", "I", "L" }, + { "mmg", null, null, null, null, "North Ambrym", "I", "L" }, + { "mmf", null, null, null, null, "Mundat", "I", "L" }, + { "mme", null, null, null, null, "Mae", "I", "L" }, + { "mmd", null, null, null, null, "Maonan", "I", "L" }, + { "mmc", null, null, null, null, "Michoacán Mazahua", "I", "L" }, + { "mmb", null, null, null, null, "Momina", "I", "L" }, + { "mma", null, null, null, null, "Mama", "I", "L" }, + { "mlz", null, null, null, null, "Malaynon", "I", "L" }, + { "mlx", null, null, null, null, "Malfaxal", "I", "L" }, + { "mlw", null, null, null, null, "Moloko", "I", "L" }, + { "mlv", null, null, null, null, "Motlav", "I", "L" }, + { "mlu", null, null, null, null, "To'abaita", "I", "L" }, + { "mlt", null, "mt", "mlt", "mlt", "Maltese", "I", "L" }, + { "mls", null, null, null, null, "Masalit", "I", "L" }, + { "mlr", null, null, null, null, "Vame", "I", "L" }, + { "mlq", null, null, null, null, "Western Maninkakan", "I", "L" }, + { "mlp", null, null, null, null, "Bargam", "I", "L" }, + { "mlo", null, null, null, null, "Mlomp", "I", "L" }, + { "mlm", null, null, null, null, "Mulam", "I", "L" }, + { "mzk", null, null, null, null, "Nigeria Mambila", "I", "L" }, + { "mzl", null, null, null, null, "Mazatlán Mixe", "I", "L" }, + { "mzm", null, null, null, null, "Mumuye", "I", "L" }, + { "noq", null, null, null, null, "Ngongo", "I", "L" }, + { "nop", null, null, null, null, "Numanggang", "I", "L" }, + { "non", null, null, "non", "non", "Old Norse", "I", "H" }, + { "nom", null, null, null, null, "Nocamán", "I", "E" }, + { "nol", null, null, null, null, "Nomlaki", "I", "E" }, + { "nok", null, null, null, null, "Nooksack", "I", "E" }, + { "noj", null, null, null, null, "Nonuya", "I", "L" }, + { "noi", null, null, null, null, "Noiri", "I", "L" }, + { "noh", null, null, null, null, "Nomu", "I", "L" }, + { "nog", null, null, "nog", "nog", "Nogai", "I", "L" }, + { "nof", null, null, null, null, "Nomane", "I", "L" }, + { "noe", null, null, null, null, "Nimadi", "I", "L" }, + { "nor", null, "no", "nor", "nor", "Norwegian", "M", "L" }, + { "nod", null, null, null, null, "Northern Thai", "I", "L" }, + { "nob", null, "nb", "nob", "nob", "Norwegian Bokmål", "I", "L" }, + { "noa", null, null, null, null, "Woun Meu", "I", "L" }, + { "nnz", null, null, null, null, "Nda'nda'", "I", "L" }, + { "nny", null, null, null, null, "Nyangga", "I", "E" }, + { "nnw", null, null, null, null, "Southern Nuni", "I", "L" }, + { "nnv", null, null, null, null, "Nugunu (Australia)", "I", "E" }, + { "nnu", null, null, null, null, "Dwang", "I", "L" }, + { "nnt", null, null, null, null, "Nanticoke", "I", "E" }, + { "nnr", null, null, null, null, "Narungga", "I", "E" }, + { "nnq", null, null, null, null, "Ngindo", "I", "L" }, + { "nnp", null, null, null, null, "Wancho Naga", "I", "L" }, + { "nno", null, "nn", "nno", "nno", "Norwegian Nynorsk", "I", "L" }, + { "noc", null, null, null, null, "Nuk", "I", "L" }, + { "nos", null, null, null, null, "Eastern Nisu", "I", "L" }, + { "not", null, null, null, null, "Nomatsiguenga", "I", "L" }, + { "nou", null, null, null, null, "Ewage-Notu", "I", "L" }, + { "nrc", null, null, null, null, "Noric", "I", "A" }, + { "nrb", null, null, null, null, "Nara", "I", "L" }, + { "nra", null, null, null, null, "Ngom", "I", "L" }, + { "nqy", null, null, null, null, "Akyaung Ari Naga", "I", "L" }, + { "nqq", null, null, null, null, "Kyan-Karyaw Naga", "I", "L" }, + { "nqo", null, null, "nqo", "nqo", "N'Ko", "I", "L" }, + { "nqn", null, null, null, null, "Nen", "I", "L" }, + { "nqm", null, null, null, null, "Ndom", "I", "L" }, + { "nql", null, null, null, null, "Ngendelengo", "I", "L" }, + { "nqk", null, null, null, null, "Kura Ede Nago", "I", "L" }, + { "nqg", null, null, null, null, "Southern Nago", "I", "L" }, + { "npy", null, null, null, null, "Napu", "I", "L" }, + { "npx", null, null, null, null, "Noipx", "I", "L" }, + { "npu", null, null, null, null, "Puimei Naga", "I", "L" }, + { "nps", null, null, null, null, "Nipsan", "I", "L" }, + { "npo", null, null, null, null, "Pochuri Naga", "I", "L" }, + { "npn", null, null, null, null, "Mondropolon", "I", "L" }, + { "npl", null, null, null, null, "Southeastern Puebla Nahuatl", "I", "L" }, + { "npi", null, null, null, null, "Nepali (individual language)", "I", "L" }, + { "nph", null, null, null, null, "Phom Naga", "I", "L" }, + { "npg", null, null, null, null, "Ponyo-Gongwang Naga", "I", "L" }, + { "npb", null, null, null, null, "Nupbikha", "I", "L" }, + { "npa", null, null, null, null, "Nar Phu", "I", "L" }, + { "noz", null, null, null, null, "Nayi", "I", "L" }, + { "noy", null, null, null, null, "Noy", "I", "L" }, + { "now", null, null, null, null, "Nyambo", "I", "L" }, + { "nov", null, null, null, null, "Novial", "I", "C" }, + { "nnn", null, null, null, null, "Ngete", "I", "L" }, + { "nnm", null, null, null, null, "Namia", "I", "L" }, + { "nnl", null, null, null, null, "Northern Rengma Naga", "I", "L" }, + { "nnk", null, null, null, null, "Nankina", "I", "L" }, + { "nme", null, null, null, null, "Mzieme Naga", "I", "L" }, + { "nmd", null, null, null, null, "Ndumu", "I", "L" }, + { "nmc", null, null, null, null, "Ngam", "I", "L" }, + { "nmb", null, null, null, null, "Big Nambas", "I", "L" }, + { "nma", null, null, null, null, "Maram Naga", "I", "L" }, + { "nlz", null, null, null, null, "Nalögo", "I", "L" }, + { "nly", null, null, null, null, "Nyamal", "I", "L" }, + { "nlx", null, null, null, null, "Nahali", "I", "L" }, + { "nlw", null, null, null, null, "Walangama", "I", "E" }, + { "nlv", null, null, null, null, "Orizaba Nahuatl", "I", "L" }, + { "nlu", null, null, null, null, "Nchumbulu", "I", "L" }, + { "nlq", null, null, null, null, "Lao Naga", "I", "L" }, + { "nlo", null, null, null, null, "Ngul", "I", "L" }, + { "nlm", null, null, null, null, "Mankiyali", "I", "L" }, + { "nll", null, null, null, null, "Nihali", "I", "L" }, + { "nlk", null, null, null, null, "Ninia Yali", "I", "L" }, + { "nlj", null, null, null, null, "Nyali", "I", "L" }, + { "nli", null, null, null, null, "Grangali", "I", "L" }, + { "nlg", null, null, null, null, "Gela", "I", "L" }, + { "nle", null, null, null, null, "East Nyala", "I", "L" }, + { "nld", null, "nl", "dut", "nld", "Dutch", "I", "L" }, + { "nlc", null, null, null, null, "Nalca", "I", "L" }, + { "nla", null, null, null, null, "Ngombale", "I", "L" }, + { "nkz", null, null, null, null, "Nkari", "I", "L" }, + { "nkx", null, null, null, null, "Nkoroo", "I", "L" }, + { "nkw", null, null, null, null, "Nkutu", "I", "L" }, + { "nkv", null, null, null, null, "Nyika (Malawi and Zambia)", "I", "L" }, + { "nmf", null, null, null, null, "Tangkhul Naga (India)", "I", "L" }, + { "nre", null, null, null, null, "Southern Rengma Naga", "I", "L" }, + { "nmg", null, null, null, null, "Kwasio", "I", "L" }, + { "nmi", null, null, null, null, "Nyam", "I", "L" }, + { "nnj", null, null, null, null, "Nyangatom", "I", "L" }, + { "nni", null, null, null, null, "North Nuaulu", "I", "L" }, + { "nnh", null, null, null, null, "Ngiemboon", "I", "L" }, + { "nng", null, null, null, null, "Maring Naga", "I", "L" }, + { "nnf", null, null, null, null, "Ngaing", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "nne", null, null, null, null, "Ngandyera", "I", "L" }, + { "nnd", null, null, null, null, "West Ambae", "I", "L" }, + { "nnc", null, null, null, null, "Nancere", "I", "L" }, + { "nnb", null, null, null, null, "Nande", "I", "L" }, + { "nna", null, null, null, null, "Nyangumarta", "I", "L" }, + { "nmz", null, null, null, null, "Nawdm", "I", "L" }, + { "nmy", null, null, null, null, "Namuyi", "I", "L" }, + { "nmx", null, null, null, null, "Nama (Papua New Guinea)", "I", "L" }, + { "nmw", null, null, null, null, "Nimoa", "I", "L" }, + { "nmv", null, null, null, null, "Ngamini", "I", "E" }, + { "nmu", null, null, null, null, "Northeast Maidu", "I", "L" }, + { "nmt", null, null, null, null, "Namonuito", "I", "L" }, + { "nms", null, null, null, null, "Letemboi", "I", "L" }, + { "nmr", null, null, null, null, "Nimbari", "I", "E" }, + { "nmq", null, null, null, null, "Nambya", "I", "L" }, + { "nmp", null, null, null, null, "Nimanbur", "I", "E" }, + { "nmo", null, null, null, null, "Moyon Naga", "I", "L" }, + { "nmn", null, null, null, null, "ǃXóõ", "I", "L" }, + { "nmm", null, null, null, null, "Manangba", "I", "L" }, + { "nml", null, null, null, null, "Ndemli", "I", "L" }, + { "nmk", null, null, null, null, "Namakura", "I", "L" }, + { "nmj", null, null, null, null, "Ngombe (Central African Republic)", "I", "L" }, + { "nmh", null, null, null, null, "Monsang Naga", "I", "L" }, + { "nku", null, null, null, null, "Bouna Kulango", "I", "L" }, + { "nrf", null, null, null, null, "Jèrriais", "I", "L" }, + { "nri", null, null, null, null, "Chokri Naga", "I", "L" }, + { "nwy", null, null, null, null, "Nottoway-Meherrin", "I", "E" }, + { "nwx", null, null, null, null, "Middle Newar", "I", "H" }, + { "nwr", null, null, null, null, "Nawaru", "I", "L" }, + { "nwo", null, null, null, null, "Nauo", "I", "E" }, + { "nwm", null, null, null, null, "Nyamusa-Molo", "I", "L" }, + { "nwi", null, null, null, null, "Southwest Tanna", "I", "L" }, + { "nwg", null, null, null, null, "Ngayawung", "I", "E" }, + { "nwe", null, null, null, null, "Ngwe", "I", "L" }, + { "nwc", null, null, "nwc", "nwc", "Classical Newari", "I", "H" }, + { "nwb", null, null, null, null, "Nyabwa", "I", "L" }, + { "nwa", null, null, null, null, "Nawathinehena", "I", "E" }, + { "nvo", null, null, null, null, "Nyokon", "I", "L" }, + { "nxa", null, null, null, null, "Nauete", "I", "L" }, + { "nvm", null, null, null, null, "Namiae", "I", "L" }, + { "nuz", null, null, null, null, "Tlamacazapa Nahuatl", "I", "L" }, + { "nuy", null, null, null, null, "Nunggubuyu", "I", "L" }, + { "nux", null, null, null, null, "Mehek", "I", "L" }, + { "nuw", null, null, null, null, "Nguluwan", "I", "L" }, + { "nuv", null, null, null, null, "Northern Nuni", "I", "L" }, + { "nuu", null, null, null, null, "Ngbundu", "I", "L" }, + { "nut", null, null, null, null, "Nung (Viet Nam)", "I", "L" }, + { "nus", null, null, null, null, "Nuer", "I", "L" }, + { "nur", null, null, null, null, "Nukuria", "I", "L" }, + { "nuq", null, null, null, null, "Nukumanu", "I", "L" }, + { "nup", null, null, null, null, "Nupe-Nupe-Tako", "I", "L" }, + { "nuo", null, null, null, null, "Nguôn", "I", "L" }, + { "nvh", null, null, null, null, "Nasarian", "I", "L" }, + { "nxd", null, null, null, null, "Ngando (Democratic Republic of Congo)", "I", "L" }, + { "nxe", null, null, null, null, "Nage", "I", "L" }, + { "nxg", null, null, null, null, "Ngad'a", "I", "L" }, + { "nyq", null, null, null, null, "Nayini", "I", "L" }, + { "nyp", null, null, null, null, "Nyang'i", "I", "E" }, + { "nyo", null, null, "nyo", "nyo", "Nyoro", "I", "L" }, + { "nyn", null, null, "nyn", "nyn", "Nyankole", "I", "L" }, + { "nym", null, null, "nym", "nym", "Nyamwezi", "I", "L" }, + { "nyl", null, null, null, null, "Nyeu", "I", "L" }, + { "nyk", null, null, null, null, "Nyaneka", "I", "L" }, + { "nyj", null, null, null, null, "Nyanga", "I", "L" }, + { "nyi", null, null, null, null, "Ama (Sudan)", "I", "L" }, + { "nyh", null, null, null, null, "Nyikina", "I", "L" }, + { "nyg", null, null, null, null, "Nyindu", "I", "L" }, + { "nyf", null, null, null, null, "Giryama", "I", "L" }, + { "nye", null, null, null, null, "Nyengo", "I", "L" }, + { "nyd", null, null, null, null, "Nyore", "I", "L" }, + { "nyc", null, null, null, null, "Nyanga-li", "I", "L" }, + { "nyb", null, null, null, null, "Nyangbo", "I", "L" }, + { "nya", null, "ny", "nya", "nya", "Nyanja", "I", "L" }, + { "nxx", null, null, null, null, "Nafri", "I", "L" }, + { "nxu", null, null, null, null, "Narau", "I", "E" }, + { "nxr", null, null, null, null, "Ninggerum", "I", "L" }, + { "nxq", null, null, null, null, "Naxi", "I", "L" }, + { "nxo", null, null, null, null, "Ndambomo", "I", "L" }, + { "nxn", null, null, null, null, "Ngawun", "I", "E" }, + { "nxm", null, null, null, null, "Numidian", "I", "A" }, + { "nxl", null, null, null, null, "South Nuaulu", "I", "L" }, + { "nxk", null, null, null, null, "Koki Naga", "I", "L" }, + { "nxi", null, null, null, null, "Nindi", "I", "L" }, + { "nun", null, null, null, null, "Anong", "I", "L" }, + { "num", null, null, null, null, "Niuafo'ou", "I", "L" }, + { "nul", null, null, null, null, "Nusa Laut", "I", "E" }, + { "nuk", null, null, null, null, "Nuu-chah-nulth", "I", "L" }, + { "nss", null, null, null, null, "Nali", "I", "L" }, + { "nsr", null, null, null, null, "Maritime Sign Language", "I", "L" }, + { "nsq", null, null, null, null, "Northern Sierra Miwok", "I", "L" }, + { "nsp", null, null, null, null, "Nepalese Sign Language", "I", "L" }, + { "nso", null, null, "nso", "nso", "Pedi", "I", "L" }, + { "nsn", null, null, null, null, "Nehan", "I", "L" }, + { "nsm", null, null, null, null, "Sumi Naga", "I", "L" }, + { "nsl", null, null, null, null, "Norwegian Sign Language", "I", "L" }, + { "nsk", null, null, null, null, "Naskapi", "I", "L" }, + { "nsi", null, null, null, null, "Nigerian Sign Language", "I", "L" }, + { "nsh", null, null, null, null, "Ngoshie", "I", "L" }, + { "nsg", null, null, null, null, "Ngasa", "I", "L" }, + { "nsf", null, null, null, null, "Northwestern Nisu", "I", "L" }, + { "nse", null, null, null, null, "Nsenga", "I", "L" }, + { "nsd", null, null, null, null, "Southern Nisu", "I", "L" }, + { "nsc", null, null, null, null, "Nshi", "I", "L" }, + { "nsa", null, null, null, null, "Sangtam Naga", "I", "L" }, + { "nrz", null, null, null, null, "Lala", "I", "L" }, + { "nrx", null, null, null, null, "Ngurmbur", "I", "E" }, + { "nru", null, null, null, null, "Narua", "I", "L" }, + { "nrt", null, null, null, null, "Northern Kalapuya", "I", "E" }, + { "nrr", null, null, null, null, "Norra", "I", "E" }, + { "nrp", null, null, null, null, "North Picene", "I", "A" }, + { "nrn", null, null, null, null, "Norn", "I", "E" }, + { "nrm", null, null, null, null, "Narom", "I", "L" }, + { "nrl", null, null, null, null, "Ngarluma", "I", "L" }, + { "nrk", null, null, null, null, "Ngarla", "I", "L" }, + { "nst", null, null, null, null, "Tase Naga", "I", "L" }, + { "nrg", null, null, null, null, "Narango", "I", "L" }, + { "nsu", null, null, null, null, "Sierra Negra Nahuatl", "I", "L" }, + { "nsw", null, null, null, null, "Navut", "I", "L" }, + { "nuj", null, null, null, null, "Nyole", "I", "L" }, + { "nui", null, null, null, null, "Ngumbi", "I", "L" }, + { "nuh", null, null, null, null, "Ndunda", "I", "L" }, + { "nug", null, null, null, null, "Nungali", "I", "E" }, + { "nuf", null, null, null, null, "Nusu", "I", "L" }, + { "nue", null, null, null, null, "Ngundu", "I", "L" }, + { "nud", null, null, null, null, "Ngala", "I", "L" }, + { "nuc", null, null, null, null, "Nukuini", "I", "E" }, + { "nua", null, null, null, null, "Yuanga", "I", "L" }, + { "ntz", null, null, null, null, "Natanzi", "I", "L" }, + { "nty", null, null, null, null, "Mantsi", "I", "L" }, + { "ntx", null, null, null, null, "Tangkhul Naga (Myanmar)", "I", "L" }, + { "ntw", null, null, null, null, "Nottoway", "I", "E" }, + { "ntu", null, null, null, null, "Natügu", "I", "L" }, + { "ntr", null, null, null, null, "Delo", "I", "L" }, + { "ntp", null, null, null, null, "Northern Tepehuan", "I", "L" }, + { "nto", null, null, null, null, "Ntomba", "I", "L" }, + { "ntm", null, null, null, null, "Nateni", "I", "L" }, + { "ntk", null, null, null, null, "Ikoma-Nata-Isenye", "I", "L" }, + { "ntj", null, null, null, null, "Ngaanyatjarra", "I", "L" }, + { "nti", null, null, null, null, "Natioro", "I", "L" }, + { "ntg", null, null, null, null, "Ngantangarra", "I", "E" }, + { "nte", null, null, null, null, "Nathembo", "I", "L" }, + { "ntd", null, null, null, null, "Northern Tidung", "I", "L" }, + { "nsz", null, null, null, null, "Nisenan", "I", "L" }, + { "nsy", null, null, null, null, "Nasal", "I", "L" }, + { "nsx", null, null, null, null, "Nsongo", "I", "L" }, + { "nsv", null, null, null, null, "Southwestern Nisu", "I", "L" }, + { "nys", null, null, null, null, "Nyungar", "I", "L" }, + { "nkt", null, null, null, null, "Nyika (Tanzania)", "I", "L" }, + { "nkr", null, null, null, null, "Nukuoro", "I", "L" }, + { "ndg", null, null, null, null, "Ndengereko", "I", "L" }, + { "ndf", null, null, null, null, "Nadruvian", "I", "H" }, + { "nde", null, "nd", "nde", "nde", "North Ndebele", "I", "L" }, + { "ndd", null, null, null, null, "Nde-Nsele-Nta", "I", "L" }, + { "ndc", null, null, null, null, "Ndau", "I", "L" }, + { "ndb", null, null, null, null, "Kenswei Nsei", "I", "L" }, + { "nda", null, null, null, null, "Ndasa", "I", "L" }, + { "ncz", null, null, null, null, "Natchez", "I", "E" }, + { "ncx", null, null, null, null, "Central Puebla Nahuatl", "I", "L" }, + { "ncu", null, null, null, null, "Chumburung", "I", "L" }, + { "nct", null, null, null, null, "Chothe Naga", "I", "L" }, + { "ncs", null, null, null, null, "Nicaraguan Sign Language", "I", "L" }, + { "ndh", null, null, null, null, "Ndali", "I", "L" }, + { "ncr", null, null, null, null, "Ncane", "I", "L" }, + { "nco", null, null, null, null, "Sibe", "I", "L" }, + { "ncn", null, null, null, null, "Nauna", "I", "L" }, + { "ncm", null, null, null, null, "Nambo", "I", "L" }, + { "ncl", null, null, null, null, "Michoacán Nahuatl", "I", "L" }, + { "nck", null, null, null, null, "Na-kara", "I", "L" }, + { "ncj", null, null, null, null, "Northern Puebla Nahuatl", "I", "L" }, + { "nci", null, null, null, null, "Classical Nahuatl", "I", "H" }, + { "nch", null, null, null, null, "Central Huasteca Nahuatl", "I", "L" }, + { "ncg", null, null, null, null, "Nisga'a", "I", "L" }, + { "ncf", null, null, null, null, "Notsi", "I", "L" }, + { "nce", null, null, null, null, "Yale", "I", "L" }, + { "ncd", null, null, null, null, "Nachering", "I", "L" }, + { "ncq", null, null, null, null, "Northern Katang", "I", "L" }, + { "ndi", null, null, null, null, "Samba Leko", "I", "L" }, + { "ndj", null, null, null, null, "Ndamba", "I", "L" }, + { "ndk", null, null, null, null, "Ndaka", "I", "L" }, + { "nem", null, null, null, null, "Nemi", "I", "L" }, + { "nek", null, null, null, null, "Neku", "I", "L" }, + { "nej", null, null, null, null, "Neko", "I", "L" }, + { "nei", null, null, null, null, "Neo-Hittite", "I", "A" }, + { "neh", null, null, null, null, "Nyenkha", "I", "L" }, + { "neg", null, null, null, null, "Negidal", "I", "L" }, + { "nef", null, null, null, null, "Nefamese", "I", "L" }, + { "nee", null, null, null, null, "Nêlêmwa-Nixumwak", "I", "L" }, + { "ned", null, null, null, null, "Nde-Gbite", "I", "L" }, + { "nec", null, null, null, null, "Nedebang", "I", "L" }, + { "neb", null, null, null, null, "Toura (Côte d'Ivoire)", "I", "L" }, + { "nea", null, null, null, null, "Eastern Ngad'a", "I", "L" }, + { "ndz", null, null, null, null, "Ndogo", "I", "L" }, + { "ndy", null, null, null, null, "Lutos", "I", "L" }, + { "ndx", null, null, null, null, "Nduga", "I", "L" }, + { "ndw", null, null, null, null, "Ndobo", "I", "L" }, + { "ndv", null, null, null, null, "Ndut", "I", "L" }, + { "ndu", null, null, null, null, "Dugun", "I", "L" }, + { "ndt", null, null, null, null, "Ndunga", "I", "L" }, + { "nds", null, null, "nds", "nds", "Low German", "I", "L" }, + { "ndr", null, null, null, null, "Ndoola", "I", "L" }, + { "ndq", null, null, null, null, "Ndombe", "I", "L" }, + { "ndp", null, null, null, null, "Ndo", "I", "L" }, + { "ndo", null, "ng", "ndo", "ndo", "Ndonga", "I", "L" }, + { "ndn", null, null, null, null, "Ngundi", "I", "L" }, + { "ndm", null, null, null, null, "Ndam", "I", "L" }, + { "ndl", null, null, null, null, "Ndolo", "I", "L" }, + { "ncc", null, null, null, null, "Ponam", "I", "L" }, + { "ncb", null, null, null, null, "Central Nicobarese", "I", "L" }, + { "nca", null, null, null, null, "Iyo", "I", "L" }, + { "nby", null, null, null, null, "Ningera", "I", "L" }, + { "naq", null, null, null, null, "Khoekhoe", "I", "L" }, + { "nap", null, null, "nap", "nap", "Neapolitan", "I", "L" }, + { "nao", null, null, null, null, "Naaba", "I", "L" }, + { "nan", null, null, null, null, "Min Nan Chinese", "I", "L" }, + { "nam", null, null, null, null, "Ngan'gityemerri", "I", "L" }, + { "nal", null, null, null, null, "Nalik", "I", "L" }, + { "nak", null, null, null, null, "Nakanai", "I", "L" }, + { "naj", null, null, null, null, "Nalu", "I", "L" }, + { "nag", null, null, null, null, "Naga Pidgin", "I", "L" }, + { "naf", null, null, null, null, "Nabak", "I", "L" }, + { "nae", null, null, null, null, "Naka'ela", "I", "E" }, + { "nac", null, null, null, null, "Narak", "I", "L" }, + { "nab", null, null, null, null, "Southern Nambikuára", "I", "L" }, + { "naa", null, null, null, null, "Namla", "I", "L" }, + { "mzz", null, null, null, null, "Maiadomu", "I", "L" }, + { "mzy", null, null, null, null, "Mozambican Sign Language", "I", "L" }, + { "mzx", null, null, null, null, "Mawayana", "I", "L" }, + { "mzw", null, null, null, null, "Deg", "I", "L" }, + { "mzv", null, null, null, null, "Manza", "I", "L" }, + { "mzu", null, null, null, null, "Inapang", "I", "L" }, + { "mzt", null, null, null, null, "Mintil", "I", "L" }, + { "mzs", null, null, null, null, "Macanese", "I", "L" }, + { "mzr", null, null, null, null, "Marúbo", "I", "L" }, + { "mzq", null, null, null, null, "Mori Atas", "I", "L" }, + { "mzp", null, null, null, null, "Movima", "I", "L" }, + { "mzo", null, null, null, null, "Matipuhy", "I", "E" }, + { "mzn", null, null, null, null, "Mazanderani", "I", "L" }, + { "nar", null, null, null, null, "Iguta", "I", "L" }, + { "nen", null, null, null, null, "Nengone", "I", "L" }, + { "nas", null, null, null, null, "Naasioi", "I", "L" }, + { "nau", null, "na", "nau", "nau", "Nauru", "I", "L" }, + { "nbw", null, null, null, null, "Southern Ngbandi", "I", "L" }, + { "nbv", null, null, null, null, "Ngamambo", "I", "L" }, + { "nbu", null, null, null, null, "Rongmei Naga", "I", "L" }, + { "nbt", null, null, null, null, "Na", "I", "L" }, + { "nbs", null, null, null, null, "Namibian Sign Language", "I", "L" }, + { "nbr", null, null, null, null, "Numana", "I", "L" }, + { "nbq", null, null, null, null, "Nggem", "I", "L" }, + { "nbp", null, null, null, null, "Nnam", "I", "L" }, + { "nbo", null, null, null, null, "Nkukoli", "I", "L" }, + { "nbn", null, null, null, null, "Kuri", "I", "L" }, + { "nbm", null, null, null, null, "Ngbaka Ma'bo", "I", "L" }, + { "nbl", null, "nr", "nbl", "nbl", "South Ndebele", "I", "L" }, + { "nbk", null, null, null, null, "Nake", "I", "L" }, + { "nbj", null, null, null, null, "Ngarinyman", "I", "L" }, + { "nbi", null, null, null, null, "Mao Naga", "I", "L" }, + { "nbh", null, null, null, null, "Ngamo", "I", "L" }, + { "nbg", null, null, null, null, "Nagarchal", "I", "L" }, + { "nbe", null, null, null, null, "Konyak Naga", "I", "L" }, + { "nbd", null, null, null, null, "Ngbinda", "I", "L" }, + { "nbc", null, null, null, null, "Chang Naga", "I", "L" }, + { "nbb", null, null, null, null, "Ndoe", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "nba", null, null, null, null, "Nyemba", "I", "L" }, + { "naz", null, null, null, null, "Coatepec Nahuatl", "I", "L" }, + { "nay", null, null, null, null, "Ngarrindjeri", "I", "E" }, + { "nax", null, null, null, null, "Nakwi", "I", "L" }, + { "naw", null, null, null, null, "Nawuri", "I", "L" }, + { "nav", null, "nv", "nav", "nav", "Navajo", "I", "L" }, + { "nat", null, null, null, null, "Ca̱hungwa̱rya̱", "I", "L" }, + { "nks", null, null, null, null, "North Asmat", "I", "L" }, + { "neo", null, null, null, null, "Ná-Meo", "I", "L" }, + { "neq", null, null, null, null, "North Central Mixe", "I", "L" }, + { "njb", null, null, null, null, "Nocte Naga", "I", "L" }, + { "nja", null, null, null, null, "Nzanyi", "I", "L" }, + { "niz", null, null, null, null, "Ningil", "I", "L" }, + { "niy", null, null, null, null, "Ngiti", "I", "L" }, + { "nix", null, null, null, null, "Hema", "I", "L" }, + { "niw", null, null, null, null, "Nimo", "I", "L" }, + { "niv", null, null, null, null, "Gilyak", "I", "L" }, + { "niu", null, null, "niu", "niu", "Niuean", "I", "L" }, + { "nit", null, null, null, null, "Southeastern Kolami", "I", "L" }, + { "nis", null, null, null, null, "Nimi", "I", "L" }, + { "nir", null, null, null, null, "Nimboran", "I", "L" }, + { "niq", null, null, null, null, "Nandi", "I", "L" }, + { "njd", null, null, null, null, "Ndonde Hamba", "I", "L" }, + { "nio", null, null, null, null, "Nganasan", "I", "L" }, + { "nim", null, null, null, null, "Nilamba", "I", "L" }, + { "nil", null, null, null, null, "Nila", "I", "L" }, + { "nik", null, null, null, null, "Southern Nicobarese", "I", "L" }, + { "nij", null, null, null, null, "Ngaju", "I", "L" }, + { "nii", null, null, null, null, "Nii", "I", "L" }, + { "nih", null, null, null, null, "Nyiha (Tanzania)", "I", "L" }, + { "nig", null, null, null, null, "Ngalakgan", "I", "E" }, + { "nif", null, null, null, null, "Nek", "I", "L" }, + { "nie", null, null, null, null, "Niellim", "I", "L" }, + { "nid", null, null, null, null, "Ngandi", "I", "E" }, + { "nib", null, null, null, null, "Nakame", "I", "L" }, + { "nia", null, null, "nia", "nia", "Nias", "I", "L" }, + { "nin", null, null, null, null, "Ninzo", "I", "L" }, + { "njh", null, null, null, null, "Lotha Naga", "I", "L" }, + { "nji", null, null, null, null, "Gudanji", "I", "L" }, + { "njj", null, null, null, null, "Njen", "I", "L" }, + { "nkq", null, null, null, null, "Nkami", "I", "L" }, + { "nkp", null, null, null, null, "Niuatoputapu", "I", "E" }, + { "nko", null, null, null, null, "Nkonya", "I", "L" }, + { "nkn", null, null, null, null, "Nkangala", "I", "L" }, + { "nkm", null, null, null, null, "Namat", "I", "L" }, + { "nkk", null, null, null, null, "Nokuku", "I", "L" }, + { "nkj", null, null, null, null, "Nakai", "I", "L" }, + { "nki", null, null, null, null, "Thangal Naga", "I", "L" }, + { "nkh", null, null, null, null, "Khezha Naga", "I", "L" }, + { "nkg", null, null, null, null, "Nekgini", "I", "L" }, + { "nkf", null, null, null, null, "Inpui Naga", "I", "L" }, + { "nke", null, null, null, null, "Duke", "I", "L" }, + { "nkd", null, null, null, null, "Koireng", "I", "L" }, + { "nkc", null, null, null, null, "Nkongho", "I", "L" }, + { "nkb", null, null, null, null, "Khoibu Naga", "I", "L" }, + { "nka", null, null, null, null, "Nkoya", "I", "L" }, + { "njz", null, null, null, null, "Nyishi", "I", "L" }, + { "njy", null, null, null, null, "Njyem", "I", "L" }, + { "njx", null, null, null, null, "Kunyi", "I", "L" }, + { "nju", null, null, null, null, "Ngadjunmaya", "I", "L" }, + { "njt", null, null, null, null, "Ndyuka-Trio Pidgin", "I", "L" }, + { "njs", null, null, null, null, "Nisa", "I", "L" }, + { "njr", null, null, null, null, "Njerep", "I", "L" }, + { "njo", null, null, null, null, "Ao Naga", "I", "L" }, + { "njn", null, null, null, null, "Liangmai Naga", "I", "L" }, + { "njm", null, null, null, null, "Angami Naga", "I", "L" }, + { "njl", null, null, null, null, "Njalgulgule", "I", "L" }, + { "nhz", null, null, null, null, "Santa María La Alta Nahuatl", "I", "L" }, + { "nhy", null, null, null, null, "Northern Oaxaca Nahuatl", "I", "L" }, + { "nhx", null, null, null, null, "Isthmus-Mecayapan Nahuatl", "I", "L" }, + { "nhw", null, null, null, null, "Western Huasteca Nahuatl", "I", "L" }, + { "ngn", null, null, null, null, "Ngwo", "I", "L" }, + { "ngm", null, null, null, null, "Ngatik Men's Creole", "I", "L" }, + { "ngl", null, null, null, null, "Lomwe", "I", "L" }, + { "ngk", null, null, null, null, "Dalabon", "I", "L" }, + { "ngj", null, null, null, null, "Ngie", "I", "L" }, + { "ngi", null, null, null, null, "Ngizim", "I", "L" }, + { "ngh", null, null, null, null, "Nǁng", "I", "L" }, + { "ngg", null, null, null, null, "Ngbaka Manza", "I", "L" }, + { "nge", null, null, null, null, "Ngemba", "I", "L" }, + { "ngd", null, null, null, null, "Ngando (Central African Republic)", "I", "L" }, + { "ngc", null, null, null, null, "Ngombe (Democratic Republic of Congo)", "I", "L" }, + { "ngb", null, null, null, null, "Northern Ngbandi", "I", "L" }, + { "nga", null, null, null, null, "Ngbaka", "I", "L" }, + { "nfu", null, null, null, null, "Mfumte", "I", "L" }, + { "nfr", null, null, null, null, "Nafaanra", "I", "L" }, + { "nfl", null, null, null, null, "Ayiwo", "I", "L" }, + { "nfd", null, null, null, null, "Ahwai", "I", "L" }, + { "nfa", null, null, null, null, "Dhao", "I", "L" }, + { "nez", null, null, null, null, "Nez Perce", "I", "L" }, + { "ney", null, null, null, null, "Neyo", "I", "L" }, + { "nex", null, null, null, null, "Neme", "I", "L" }, + { "new", null, null, "new", "new", "Newari", "I", "L" }, + { "nev", null, null, null, null, "Nyaheun", "I", "L" }, + { "neu", null, null, null, null, "Neo", "I", "C" }, + { "net", null, null, null, null, "Nete", "I", "L" }, + { "nes", null, null, null, null, "Bhoti Kinnauri", "I", "L" }, + { "ner", null, null, null, null, "Yahadian", "I", "L" }, + { "ngo", null, null, null, null, "Ngoni", "I", "L" }, + { "nep", null, "ne", "nep", "nep", "Nepali (macrolanguage)", "M", "L" }, + { "ngp", null, null, null, null, "Ngulu", "I", "L" }, + { "ngr", null, null, null, null, "Engdewu", "I", "L" }, + { "nhv", null, null, null, null, "Temascaltepec Nahuatl", "I", "L" }, + { "nhu", null, null, null, null, "Noone", "I", "L" }, + { "nht", null, null, null, null, "Ometepec Nahuatl", "I", "L" }, + { "nhr", null, null, null, null, "Naro", "I", "L" }, + { "nhq", null, null, null, null, "Huaxcaleca Nahuatl", "I", "L" }, + { "nhp", null, null, null, null, "Isthmus-Pajapan Nahuatl", "I", "L" }, + { "nho", null, null, null, null, "Takuu", "I", "L" }, + { "nhn", null, null, null, null, "Central Nahuatl", "I", "L" }, + { "nhm", null, null, null, null, "Morelos Nahuatl", "I", "L" }, + { "nhk", null, null, null, null, "Isthmus-Cosoleacaque Nahuatl", "I", "L" }, + { "nhi", null, null, null, null, "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", "I", "L" }, + { "nhh", null, null, null, null, "Nahari", "I", "L" }, + { "nhg", null, null, null, null, "Tetelcingo Nahuatl", "I", "L" }, + { "nhf", null, null, null, null, "Nhuwala", "I", "L" }, + { "nhe", null, null, null, null, "Eastern Huasteca Nahuatl", "I", "L" }, + { "nhd", null, null, null, null, "Chiripá", "I", "L" }, + { "nhc", null, null, null, null, "Tabasco Nahuatl", "I", "E" }, + { "nhb", null, null, null, null, "Beng", "I", "L" }, + { "nha", null, null, null, null, "Nhanda", "I", "L" }, + { "ngz", null, null, null, null, "Ngungwel", "I", "L" }, + { "ngy", null, null, null, null, "Tibea", "I", "L" }, + { "ngx", null, null, null, null, "Nggwahyi", "I", "L" }, + { "ngw", null, null, null, null, "Ngwaba", "I", "L" }, + { "ngv", null, null, null, null, "Nagumi", "I", "E" }, + { "ngu", null, null, null, null, "Guerrero Nahuatl", "I", "L" }, + { "ngt", null, null, null, null, "Kriang", "I", "L" }, + { "ngs", null, null, null, null, "Gvoko", "I", "L" }, + { "ngq", null, null, null, null, "Ngurimi", "I", "L" }, + { "mfh", null, null, null, null, "Matal", "I", "L" }, + { "slq", null, null, null, null, "Salchuq", "I", "E" }, + { "sls", null, null, null, null, "Singapore Sign Language", "I", "L" }, + { "xgf", null, null, null, null, "Gabrielino-Fernandeño", "I", "E" }, + { "xgd", null, null, null, null, "Gudang", "I", "E" }, + { "xgb", null, null, null, null, "Gbin", "I", "E" }, + { "xga", null, null, null, null, "Galatian", "I", "A" }, + { "xfa", null, null, null, null, "Faliscan", "I", "A" }, + { "xeu", null, null, null, null, "Keoru-Ahia", "I", "L" }, + { "xet", null, null, null, null, "Xetá", "I", "L" }, + { "xes", null, null, null, null, "Kesawai", "I", "L" }, + { "xer", null, null, null, null, "Xerénte", "I", "L" }, + { "xep", null, null, null, null, "Epi-Olmec", "I", "A" }, + { "xem", null, null, null, null, "Kembayan", "I", "L" }, + { "xel", null, null, null, null, "Kelo", "I", "L" }, + { "xgg", null, null, null, null, "Goreng", "I", "E" }, + { "xeg", null, null, null, null, "ǁXegwi", "I", "E" }, + { "xeb", null, null, null, null, "Eblan", "I", "A" }, + { "xdy", null, null, null, null, "Malayic Dayak", "I", "L" }, + { "xdo", null, null, null, null, "Kwandu", "I", "L" }, + { "xdm", null, null, null, null, "Edomite", "I", "A" }, + { "xdk", null, null, null, null, "Dharuk", "I", "E" }, + { "xdc", null, null, null, null, "Dacian", "I", "A" }, + { "xda", null, null, null, null, "Darkinyung", "I", "L" }, + { "xcy", null, null, null, null, "Cayuse", "I", "E" }, + { "xcw", null, null, null, null, "Coahuilteco", "I", "E" }, + { "xcv", null, null, null, null, "Chuvantsy", "I", "E" }, + { "xcu", null, null, null, null, "Curonian", "I", "H" }, + { "xct", null, null, null, null, "Classical Tibetan", "I", "H" }, + { "xed", null, null, null, null, "Hdi", "I", "L" }, + { "xgi", null, null, null, null, "Garingbal", "I", "E" }, + { "xgl", null, null, null, null, "Galindan", "I", "H" }, + { "xgm", null, null, null, null, "Dharumbal", "I", "E" }, + { "xke", null, null, null, null, "Kereho", "I", "L" }, + { "xkd", null, null, null, null, "Mendalam Kayan", "I", "L" }, + { "xkc", null, null, null, null, "Kho'ini", "I", "L" }, + { "xkb", null, null, null, null, "Northern Nago", "I", "L" }, + { "xka", null, null, null, null, "Kalkoti", "I", "L" }, + { "xjt", null, null, null, null, "Jaitmatang", "I", "E" }, + { "xjb", null, null, null, null, "Minjungbal", "I", "E" }, + { "xiy", null, null, null, null, "Xipaya", "I", "L" }, + { "xiv", null, null, null, null, "Indus Valley Language", "I", "A" }, + { "xis", null, null, null, null, "Kisan", "I", "L" }, + { "xir", null, null, null, null, "Xiriâna", "I", "E" }, + { "xin", null, null, null, null, "Xinca", "I", "E" }, + { "xil", null, null, null, null, "Illyrian", "I", "A" }, + { "xii", null, null, null, null, "Xiri", "I", "L" }, + { "xib", null, null, null, null, "Iberian", "I", "A" }, + { "xhv", null, null, null, null, "Khua", "I", "L" }, + { "xhu", null, null, null, null, "Hurrian", "I", "A" }, + { "xht", null, null, null, null, "Hattic", "I", "A" }, + { "xhr", null, null, null, null, "Hernican", "I", "A" }, + { "xho", null, "xh", "xho", "xho", "Xhosa", "I", "L" }, + { "xhe", null, null, null, null, "Khetrani", "I", "L" }, + { "xhd", null, null, null, null, "Hadrami", "I", "A" }, + { "xhc", null, null, null, null, "Hunnic", "I", "A" }, + { "xha", null, null, null, null, "Harami", "I", "A" }, + { "xgw", null, null, null, null, "Guwa", "I", "E" }, + { "xgu", null, null, null, null, "Unggumi", "I", "L" }, + { "xgr", null, null, null, null, "Garza", "I", "E" }, + { "xcr", null, null, null, null, "Carian", "I", "A" }, + { "xkf", null, null, null, null, "Khengkha", "I", "L" }, + { "xco", null, null, null, null, "Chorasmian", "I", "A" }, + { "xcm", null, null, null, null, "Comecrudo", "I", "E" }, + { "xam", null, null, null, null, "ǀXam", "I", "E" }, + { "xal", null, null, "xal", "xal", "Kalmyk", "I", "L" }, + { "xak", null, null, null, null, "Máku", "I", "E" }, + { "xaj", null, null, null, null, "Ararandewára", "I", "E" }, + { "xai", null, null, null, null, "Kaimbé", "I", "E" }, + { "xag", null, null, null, null, "Aghwan", "I", "A" }, + { "xae", null, null, null, null, "Aequian", "I", "A" }, + { "xad", null, null, null, null, "Adai", "I", "E" }, + { "xac", null, null, null, null, "Kachari", "I", "L" }, + { "xab", null, null, null, null, "Sambe", "I", "L" }, + { "xaa", null, null, null, null, "Andalusian Arabic", "I", "H" }, + { "wyy", null, null, null, null, "Western Fijian", "I", "L" }, + { "xan", null, null, null, null, "Xamtanga", "I", "L" }, + { "wyr", null, null, null, null, "Wayoró", "I", "L" }, + { "wyi", null, null, null, null, "Woiwurrung", "I", "E" }, + { "wyb", null, null, null, null, "Wangaaybuwan-Ngiyambaa", "I", "L" }, + { "wya", null, null, null, null, "Wyandot", "I", "L" }, + { "wxw", null, null, null, null, "Wardandi", "I", "E" }, + { "wxa", null, null, null, null, "Waxianghua", "I", "L" }, + { "www", null, null, null, null, "Wawa", "I", "L" }, + { "wwr", null, null, null, null, "Warrwa", "I", "E" }, + { "wwo", null, null, null, null, "Wetamut", "I", "L" }, + { "wwb", null, null, null, null, "Wakabunga", "I", "E" }, + { "wwa", null, null, null, null, "Waama", "I", "L" }, + { "wuy", null, null, null, null, "Wauyai", "I", "L" }, + { "wux", null, null, null, null, "Wulna", "I", "L" }, + { "wym", null, null, null, null, "Wymysorys", "I", "L" }, + { "xao", null, null, null, null, "Khao", "I", "L" }, + { "xap", null, null, null, null, "Apalachee", "I", "E" }, + { "xaq", null, null, null, null, "Aquitanian", "I", "A" }, + { "xcl", null, null, null, null, "Classical Armenian", "I", "H" }, + { "xch", null, null, null, null, "Chemakum", "I", "E" }, + { "xcg", null, null, null, null, "Cisalpine Gaulish", "I", "A" }, + { "xce", null, null, null, null, "Celtiberian", "I", "A" }, + { "xcc", null, null, null, null, "Camunic", "I", "A" }, + { "xcb", null, null, null, null, "Cumbric", "I", "H" }, + { "xby", null, null, null, null, "Batjala", "I", "L" }, + { "xbw", null, null, null, null, "Kambiwá", "I", "E" }, + { "xbr", null, null, null, null, "Kambera", "I", "L" }, + { "xbp", null, null, null, null, "Bibbulman", "I", "E" }, + { "xbo", null, null, null, null, "Bolgarian", "I", "H" }, + { "xbn", null, null, null, null, "Kenaboi", "I", "E" }, + { "xbm", null, null, null, null, "Middle Breton", "I", "H" }, + { "xbj", null, null, null, null, "Birrpayi", "I", "E" }, + { "xbi", null, null, null, null, "Kombio", "I", "L" }, + { "xbg", null, null, null, null, "Bunganditj", "I", "E" }, + { "xbe", null, null, null, null, "Bigambal", "I", "E" }, + { "xbd", null, null, null, null, "Bindal", "I", "E" }, + { "xbc", null, null, null, null, "Bactrian", "I", "A" }, + { "xbb", null, null, null, null, "Lower Burdekin", "I", "E" }, + { "xay", null, null, null, null, "Kayan Mahakam", "I", "L" }, + { "xaw", null, null, null, null, "Kawaiisu", "I", "L" }, + { "xav", null, null, null, null, "Xavánte", "I", "L" }, + { "xau", null, null, null, null, "Kauwera", "I", "L" }, + { "xat", null, null, null, null, "Katawixi", "I", "L" }, + { "xas", null, null, null, null, "Kamas", "I", "E" }, + { "xar", null, null, null, null, "Karami", "I", "E" }, + { "xcn", null, null, null, null, "Cotoname", "I", "E" }, + { "xkg", null, null, null, null, "Kagoro", "I", "L" }, + { "xki", null, null, null, null, "Kenyan Sign Language", "I", "L" }, + { "xkj", null, null, null, null, "Kajali", "I", "L" }, + { "xpo", null, null, null, null, "Pochutec", "I", "E" }, + { "xpn", null, null, null, null, "Kapinawá", "I", "E" }, + { "xpm", null, null, null, null, "Pumpokol", "I", "E" }, + { "xpk", null, null, null, null, "Kulina Pano", "I", "L" }, + { "xpj", null, null, null, null, "Mpalitjanh", "I", "E" }, + { "xpi", null, null, null, null, "Pictish", "I", "H" }, + { "xpg", null, null, null, null, "Phrygian", "I", "A" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "xpe", null, null, null, null, "Liberia Kpelle", "I", "L" }, + { "xpc", null, null, null, null, "Pecheneg", "I", "H" }, + { "xpa", null, null, null, null, "Pirriya", "I", "E" }, + { "xow", null, null, null, null, "Kowaki", "I", "L" }, + { "xor", null, null, null, null, "Korubo", "I", "L" }, + { "xpp", null, null, null, null, "Puyo-Paekche", "I", "A" }, + { "xop", null, null, null, null, "Kopar", "I", "L" }, + { "xon", null, null, null, null, "Konkomba", "I", "L" }, + { "xom", null, null, null, null, "Komo (Sudan)", "I", "L" }, + { "xok", null, null, null, null, "Xokleng", "I", "L" }, + { "xoi", null, null, null, null, "Kominimung", "I", "L" }, + { "xog", null, null, null, null, "Soga", "I", "L" }, + { "xod", null, null, null, null, "Kokoda", "I", "L" }, + { "xoc", null, null, null, null, "O'chi'chi'", "I", "E" }, + { "xnz", null, null, null, null, "Kenzi", "I", "L" }, + { "xny", null, null, null, null, "Nyiyaparli", "I", "L" }, + { "xnu", null, null, null, null, "Nukunul", "I", "E" }, + { "xnt", null, null, null, null, "Narragansett", "I", "E" }, + { "xns", null, null, null, null, "Kanashi", "I", "L" }, + { "xoo", null, null, null, null, "Xukurú", "I", "E" }, + { "xpq", null, null, null, null, "Mohegan-Pequot", "I", "E" }, + { "xpr", null, null, null, null, "Parthian", "I", "A" }, + { "xps", null, null, null, null, "Pisidian", "I", "A" }, + { "xsl", null, null, null, null, "South Slavey", "I", "L" }, + { "xsj", null, null, null, null, "Subi", "I", "L" }, + { "xsi", null, null, null, null, "Sio", "I", "L" }, + { "xsh", null, null, null, null, "Shamang", "I", "L" }, + { "xse", null, null, null, null, "Sempan", "I", "L" }, + { "xsd", null, null, null, null, "Sidetic", "I", "A" }, + { "xsc", null, null, null, null, "Scythian", "I", "A" }, + { "xsb", null, null, null, null, "Sambal", "I", "L" }, + { "xsa", null, null, null, null, "Sabaean", "I", "A" }, + { "xrw", null, null, null, null, "Karawa", "I", "L" }, + { "xru", null, null, null, null, "Marriammu", "I", "L" }, + { "xrt", null, null, null, null, "Aranama-Tamique", "I", "E" }, + { "xrr", null, null, null, null, "Raetic", "I", "A" }, + { "xrq", null, null, null, null, "Karranga", "I", "E" }, + { "xrn", null, null, null, null, "Arin", "I", "E" }, + { "xrm", null, null, null, null, "Armazic", "I", "A" }, + { "xri", null, null, null, null, "Krikati-Timbira", "I", "L" }, + { "xrg", null, null, null, null, "Minang", "I", "E" }, + { "xre", null, null, null, null, "Kreye", "I", "L" }, + { "xrd", null, null, null, null, "Gundungurra", "I", "E" }, + { "xrb", null, null, null, null, "Eastern Karaboro", "I", "L" }, + { "xra", null, null, null, null, "Krahô", "I", "L" }, + { "xqt", null, null, null, null, "Qatabanian", "I", "A" }, + { "xqa", null, null, null, null, "Karakhanid", "I", "H" }, + { "xpy", null, null, null, null, "Puyo", "I", "A" }, + { "xpu", null, null, null, null, "Punic", "I", "A" }, + { "xpt", null, null, null, null, "Punthamara", "I", "E" }, + { "xnr", null, null, null, null, "Kangri", "I", "L" }, + { "xno", null, null, null, null, "Anglo-Norman", "I", "H" }, + { "xnn", null, null, null, null, "Northern Kankanay", "I", "L" }, + { "xnk", null, null, null, null, "Nganakarti", "I", "E" }, + { "xlu", null, null, null, null, "Cuneiform Luwian", "I", "A" }, + { "xls", null, null, null, null, "Lusitanian", "I", "A" }, + { "xlp", null, null, null, null, "Lepontic", "I", "A" }, + { "xlo", null, null, null, null, "Loup A", "I", "E" }, + { "xln", null, null, null, null, "Alanic", "I", "A" }, + { "xli", null, null, null, null, "Liburnian", "I", "A" }, + { "xlg", null, null, null, null, "Ligurian (Ancient)", "I", "A" }, + { "xle", null, null, null, null, "Lemnian", "I", "A" }, + { "xld", null, null, null, null, "Lydian", "I", "A" }, + { "xlc", null, null, null, null, "Lycian", "I", "A" }, + { "xlb", null, null, null, null, "Loup B", "I", "E" }, + { "xla", null, null, null, null, "Kamula", "I", "L" }, + { "xkz", null, null, null, null, "Kurtokha", "I", "L" }, + { "xky", null, null, null, null, "Uma' Lasan", "I", "L" }, + { "xkx", null, null, null, null, "Karore", "I", "L" }, + { "xkw", null, null, null, null, "Kembra", "I", "L" }, + { "xkv", null, null, null, null, "Kgalagadi", "I", "L" }, + { "xku", null, null, null, null, "Kaamba", "I", "L" }, + { "xkt", null, null, null, null, "Kantosi", "I", "L" }, + { "xks", null, null, null, null, "Kumbewaha", "I", "L" }, + { "xkr", null, null, null, null, "Xakriabá", "I", "E" }, + { "xkq", null, null, null, null, "Koroni", "I", "L" }, + { "xkp", null, null, null, null, "Kabatei", "I", "L" }, + { "xko", null, null, null, null, "Kiorr", "I", "L" }, + { "xkn", null, null, null, null, "Kayan River Kayan", "I", "L" }, + { "xkl", null, null, null, null, "Mainstream Kenyah", "I", "L" }, + { "xkk", null, null, null, null, "Kaco'", "I", "L" }, + { "xly", null, null, null, null, "Elymian", "I", "A" }, + { "wuv", null, null, null, null, "Wuvulu-Aua", "I", "L" }, + { "xma", null, null, null, null, "Mushungulu", "I", "L" }, + { "xmc", null, null, null, null, "Makhuwa-Marrevone", "I", "L" }, + { "xni", null, null, null, null, "Ngarigu", "I", "E" }, + { "xnh", null, null, null, null, "Kuanhua", "I", "L" }, + { "xng", null, null, null, null, "Middle Mongolian", "I", "H" }, + { "xnb", null, null, null, null, "Kanakanabu", "I", "L" }, + { "xna", null, null, null, null, "Ancient North Arabian", "I", "A" }, + { "xmz", null, null, null, null, "Mori Bawah", "I", "L" }, + { "xmy", null, null, null, null, "Mayaguduna", "I", "L" }, + { "xmx", null, null, null, null, "Maden", "I", "L" }, + { "xmw", null, null, null, null, "Tsimihety Malagasy", "I", "L" }, + { "xmv", null, null, null, null, "Antankarana Malagasy", "I", "L" }, + { "xmu", null, null, null, null, "Kamu", "I", "E" }, + { "xmt", null, null, null, null, "Matbat", "I", "L" }, + { "xms", null, null, null, null, "Moroccan Sign Language", "I", "L" }, + { "xmr", null, null, null, null, "Meroitic", "I", "A" }, + { "xmq", null, null, null, null, "Kuku-Mangk", "I", "E" }, + { "xmp", null, null, null, null, "Kuku-Mu'inh", "I", "E" }, + { "xmo", null, null, null, null, "Morerebi", "I", "L" }, + { "xmn", null, null, null, null, "Manichaean Middle Persian", "I", "H" }, + { "xmm", null, null, null, null, "Manado Malay", "I", "L" }, + { "xml", null, null, null, null, "Malaysian Sign Language", "I", "L" }, + { "xmk", null, null, null, null, "Ancient Macedonian", "I", "A" }, + { "xmj", null, null, null, null, "Majera", "I", "L" }, + { "xmh", null, null, null, null, "Kugu-Muminh", "I", "L" }, + { "xmg", null, null, null, null, "Mengaka", "I", "L" }, + { "xmf", null, null, null, null, "Mingrelian", "I", "L" }, + { "xme", null, null, null, null, "Median", "I", "A" }, + { "xmd", null, null, null, null, "Mbudum", "I", "L" }, + { "xmb", null, null, null, null, "Mbonga", "I", "L" }, + { "wuu", null, null, null, null, "Wu Chinese", "I", "L" }, + { "wut", null, null, null, null, "Wutung", "I", "L" }, + { "wur", null, null, null, null, "Wurrugu", "I", "E" }, + { "wec", null, null, null, null, "Wè Western", "I", "L" }, + { "wea", null, null, null, null, "Wewaw", "I", "E" }, + { "wdy", null, null, null, null, "Wadjabangayi", "I", "E" }, + { "wdu", null, null, null, null, "Wadjigu", "I", "E" }, + { "wdk", null, null, null, null, "Wadikali", "I", "E" }, + { "wdj", null, null, null, null, "Wadjiginy", "I", "L" }, + { "wdg", null, null, null, null, "Wadaginam", "I", "L" }, + { "wdd", null, null, null, null, "Wandji", "I", "L" }, + { "wci", null, null, null, null, "Waci Gbe", "I", "L" }, + { "wca", null, null, null, null, "Yanomámi", "I", "L" }, + { "wbw", null, null, null, null, "Woi", "I", "L" }, + { "wbv", null, null, null, null, "Wajarri", "I", "L" }, + { "wed", null, null, null, null, "Wedau", "I", "L" }, + { "wbt", null, null, null, null, "Warnman", "I", "L" }, + { "wbr", null, null, null, null, "Wagdi", "I", "L" }, + { "wbq", null, null, null, null, "Waddar", "I", "L" }, + { "wbp", null, null, null, null, "Warlpiri", "I", "L" }, + { "wbm", null, null, null, null, "Wa", "I", "L" }, + { "wbl", null, null, null, null, "Wakhi", "I", "L" }, + { "wbk", null, null, null, null, "Waigali", "I", "L" }, + { "wbj", null, null, null, null, "Alagwa", "I", "L" }, + { "wbi", null, null, null, null, "Vwanji", "I", "L" }, + { "wbh", null, null, null, null, "Wanda", "I", "L" }, + { "wbf", null, null, null, null, "Wara", "I", "L" }, + { "wbe", null, null, null, null, "Waritai", "I", "L" }, + { "wbb", null, null, null, null, "Wabo", "I", "L" }, + { "wbs", null, null, null, null, "West Bengal Sign Language", "I", "L" }, + { "weg", null, null, null, null, "Wergaia", "I", "L" }, + { "weh", null, null, null, null, "Weh", "I", "L" }, + { "wei", null, null, null, null, "Kiunum", "I", "L" }, + { "wii", null, null, null, null, "Minidien", "I", "L" }, + { "wih", null, null, null, null, "Wik-Me'anha", "I", "L" }, + { "wig", null, null, null, null, "Wik Ngathan", "I", "L" }, + { "wif", null, null, null, null, "Wik-Keyangan", "I", "E" }, + { "wie", null, null, null, null, "Wik-Epa", "I", "E" }, + { "wic", null, null, null, null, "Wichita", "I", "E" }, + { "wib", null, null, null, null, "Southern Toussian", "I", "L" }, + { "whu", null, null, null, null, "Wahau Kayan", "I", "L" }, + { "whk", null, null, null, null, "Wahau Kenyah", "I", "L" }, + { "whg", null, null, null, null, "North Wahgi", "I", "L" }, + { "wha", null, null, null, null, "Sou Upaa", "I", "L" }, + { "wgy", null, null, null, null, "Warrgamay", "I", "L" }, + { "wgu", null, null, null, null, "Wirangu", "I", "E" }, + { "wgo", null, null, null, null, "Waigeo", "I", "L" }, + { "wgi", null, null, null, null, "Wahgi", "I", "L" }, + { "wgg", null, null, null, null, "Wangkangurru", "I", "E" }, + { "wgb", null, null, null, null, "Wagawaga", "I", "L" }, + { "wga", null, null, null, null, "Wagaya", "I", "E" }, + { "wfg", null, null, null, null, "Yafi", "I", "L" }, + { "wew", null, null, null, null, "Wejewa", "I", "L" }, + { "weu", null, null, null, null, "Rawngtu Chin", "I", "L" }, + { "wet", null, null, null, null, "Perai", "I", "L" }, + { "wes", null, null, null, null, "Cameroon Pidgin", "I", "L" }, + { "wer", null, null, null, null, "Weri", "I", "L" }, + { "wep", null, null, null, null, "Westphalien", "I", "L" }, + { "weo", null, null, null, null, "Wemale", "I", "L" }, + { "wem", null, null, null, null, "Weme Gbe", "I", "L" }, + { "wba", null, null, null, null, "Warao", "I", "L" }, + { "waz", null, null, null, null, "Wampur", "I", "L" }, + { "way", null, null, null, null, "Wayana", "I", "L" }, + { "wax", null, null, null, null, "Watam", "I", "L" }, + { "vrs", null, null, null, null, "Varisi", "I", "L" }, + { "vro", null, null, null, null, "Võro", "I", "L" }, + { "vra", null, null, null, null, "Vera'a", "I", "L" }, + { "vot", null, null, "vot", "vot", "Votic", "I", "L" }, + { "vor", null, null, null, null, "Voro", "I", "L" }, + { "vol", null, "vo", "vol", "vol", "Volapük", "I", "C" }, + { "vnp", null, null, null, null, "Vunapu", "I", "L" }, + { "vnm", null, null, null, null, "Vinmavis", "I", "L" }, + { "vnk", null, null, null, null, "Vano", "I", "L" }, + { "vmz", null, null, null, null, "Mazatlán Mazatec", "I", "L" }, + { "vmy", null, null, null, null, "Ayautla Mazatec", "I", "L" }, + { "vmx", null, null, null, null, "Tamazola Mixtec", "I", "L" }, + { "vmw", null, null, null, null, "Makhuwa", "I", "L" }, + { "vmv", null, null, null, null, "Valley Maidu", "I", "E" }, + { "vmu", null, null, null, null, "Muluridyi", "I", "E" }, + { "vms", null, null, null, null, "Moksela", "I", "E" }, + { "vmr", null, null, null, null, "Marenje", "I", "L" }, + { "vmq", null, null, null, null, "Soyaltepec Mixtec", "I", "L" }, + { "vmp", null, null, null, null, "Soyaltepec Mazatec", "I", "L" }, + { "vmm", null, null, null, null, "Mitlatongo Mixtec", "I", "L" }, + { "vml", null, null, null, null, "Malgana", "I", "E" }, + { "vmk", null, null, null, null, "Makhuwa-Shirima", "I", "L" }, + { "vmj", null, null, null, null, "Ixtayutla Mixtec", "I", "L" }, + { "vmi", null, null, null, null, "Miwa", "I", "E" }, + { "vmh", null, null, null, null, "Maraghei", "I", "L" }, + { "vmg", null, null, null, null, "Lungalunga", "I", "L" }, + { "vmf", null, null, null, null, "Mainfränkisch", "I", "L" }, + { "vrt", null, null, null, null, "Burmbar", "I", "L" }, + { "wij", null, null, null, null, "Wik-Iiyanh", "I", "L" }, + { "vsi", null, null, null, null, "Moldova Sign Language", "I", "L" }, + { "vsv", null, null, null, null, "Valencian Sign Language", "I", "L" }, + { "waw", null, null, null, null, "Waiwai", "I", "L" }, + { "wav", null, null, null, null, "Waka", "I", "L" }, + { "wau", null, null, null, null, "Waurá", "I", "L" }, + { "wat", null, null, null, null, "Kaninuwa", "I", "L" }, + { "was", null, null, "was", "was", "Washo", "I", "L" }, + { "war", null, null, "war", "war", "Waray (Philippines)", "I", "L" }, + { "waq", null, null, null, null, "Wagiman", "I", "L" }, + { "wap", null, null, null, null, "Wapishana", "I", "L" }, + { "wao", null, null, null, null, "Wappo", "I", "E" }, + { "wan", null, null, null, null, "Wan", "I", "L" }, + { "wam", null, null, null, null, "Wampanoag", "I", "E" }, + { "wal", null, null, "wal", "wal", "Wolaytta", "I", "L" }, + { "waj", null, null, null, null, "Waffa", "I", "L" }, + { "wai", null, null, null, null, "Wares", "I", "L" }, + { "wah", null, null, null, null, "Watubela", "I", "L" }, + { "wag", null, null, null, null, "Wa'ema", "I", "L" }, + { "waf", null, null, null, null, "Wakoná", "I", "E" }, + { "wae", null, null, null, null, "Walser", "I", "L" }, + { "wad", null, null, null, null, "Wandamen", "I", "L" }, + { "wac", null, null, null, null, "Wasco-Wishram", "I", "E" }, + { "wab", null, null, null, null, "Wab", "I", "L" }, + { "waa", null, null, null, null, "Walla Walla", "I", "L" }, + { "vwa", null, null, null, null, "Awa (China)", "I", "L" }, + { "vut", null, null, null, null, "Vute", "I", "L" }, + { "vun", null, null, null, null, "Vunjo", "I", "L" }, + { "vum", null, null, null, null, "Vumbu", "I", "L" }, + { "vto", null, null, null, null, "Vitou", "I", "L" }, + { "vsl", null, null, null, null, "Venezuelan Sign Language", "I", "L" }, + { "xsm", null, null, null, null, "Kasem", "I", "L" }, + { "wik", null, null, null, null, "Wikalkan", "I", "L" }, + { "wim", null, null, null, null, "Wik-Mungkan", "I", "L" }, + { "wrn", null, null, null, null, "Warnang", "I", "L" }, + { "wrm", null, null, null, null, "Warumungu", "I", "L" }, + { "wrl", null, null, null, null, "Warlmanpa", "I", "L" }, + { "wrk", null, null, null, null, "Garrwa", "I", "L" }, + { "wri", null, null, null, null, "Wariyangga", "I", "E" }, + { "wrh", null, null, null, null, "Wiradjuri", "I", "E" }, + { "wrg", null, null, null, null, "Warungu", "I", "E" }, + { "wrd", null, null, null, null, "Warduji", "I", "L" }, + { "wrb", null, null, null, null, "Waluwarra", "I", "E" }, + { "wra", null, null, null, null, "Warapu", "I", "L" }, + { "wpc", null, null, null, null, "Maco", "I", "L" }, + { "woy", null, null, null, null, "Weyto", "I", "E" }, + { "wro", null, null, null, null, "Worrorra", "I", "E" }, + { "wow", null, null, null, null, "Wawonii", "I", "L" }, + { "wor", null, null, null, null, "Woria", "I", "L" }, + { "woo", null, null, null, null, "Manombai", "I", "L" }, + { "won", null, null, null, null, "Wongo", "I", "L" }, + { "wom", null, null, null, null, "Wom (Nigeria)", "I", "L" }, + { "wol", null, "wo", "wol", "wol", "Wolof", "I", "L" }, + { "wok", null, null, null, null, "Longto", "I", "L" }, + { "woi", null, null, null, null, "Kamang", "I", "L" }, + { "wog", null, null, null, null, "Wogamusin", "I", "L" }, + { "wof", null, null, null, null, "Gambian Wolof", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "woe", null, null, null, null, "Woleaian", "I", "L" }, + { "wod", null, null, null, null, "Wolani", "I", "L" }, + { "woc", null, null, null, null, "Wogeo", "I", "L" }, + { "wos", null, null, null, null, "Hanga Hundi", "I", "L" }, + { "wrp", null, null, null, null, "Waropen", "I", "L" }, + { "wrr", null, null, null, null, "Wardaman", "I", "L" }, + { "wrs", null, null, null, null, "Waris", "I", "L" }, + { "wun", null, null, null, null, "Bungu", "I", "L" }, + { "wum", null, null, null, null, "Wumbvu", "I", "L" }, + { "wul", null, null, null, null, "Silimo", "I", "L" }, + { "wuh", null, null, null, null, "Wutunhua", "I", "L" }, + { "wud", null, null, null, null, "Wudu", "I", "L" }, + { "wub", null, null, null, null, "Wunambal", "I", "L" }, + { "wua", null, null, null, null, "Wikngenchera", "I", "L" }, + { "wtw", null, null, null, null, "Wotu", "I", "L" }, + { "wtm", null, null, null, null, "Mewati", "I", "L" }, + { "wtk", null, null, null, null, "Watakataui", "I", "L" }, + { "wti", null, null, null, null, "Berta", "I", "L" }, + { "wth", null, null, null, null, "Wathawurrung", "I", "E" }, + { "wtf", null, null, null, null, "Watiwa", "I", "L" }, + { "wsv", null, null, null, null, "Wotapuri-Katarqalai", "I", "E" }, + { "wsu", null, null, null, null, "Wasu", "I", "E" }, + { "wss", null, null, null, null, "Wasa", "I", "L" }, + { "wsr", null, null, null, null, "Owenia", "I", "L" }, + { "wsk", null, null, null, null, "Waskia", "I", "L" }, + { "wsi", null, null, null, null, "Wusi", "I", "L" }, + { "wsg", null, null, null, null, "Adilabad Gondi", "I", "L" }, + { "wsa", null, null, null, null, "Warembori", "I", "L" }, + { "wrz", null, null, null, null, "Waray (Australia)", "I", "E" }, + { "wry", null, null, null, null, "Merwari", "I", "L" }, + { "wrx", null, null, null, null, "Wae Rana", "I", "L" }, + { "wrw", null, null, null, null, "Gugu Warra", "I", "E" }, + { "wrv", null, null, null, null, "Waruna", "I", "L" }, + { "wru", null, null, null, null, "Waru", "I", "L" }, + { "wob", null, null, null, null, "Wè Northern", "I", "L" }, + { "woa", null, null, null, null, "Kuwema", "I", "L" }, + { "wny", null, null, null, null, "Wanyi", "I", "L" }, + { "wnw", null, null, null, null, "Wintu", "I", "L" }, + { "wls", null, null, null, null, "Wallisian", "I", "L" }, + { "wlr", null, null, null, null, "Wailapa", "I", "L" }, + { "wlo", null, null, null, null, "Wolio", "I", "L" }, + { "wln", null, "wa", "wln", "wln", "Walloon", "I", "L" }, + { "wlm", null, null, null, null, "Middle Welsh", "I", "H" }, + { "wll", null, null, null, null, "Wali (Sudan)", "I", "L" }, + { "wlk", null, null, null, null, "Wailaki", "I", "E" }, + { "wli", null, null, null, null, "Waioli", "I", "L" }, + { "wlg", null, null, null, null, "Kunbarlang", "I", "L" }, + { "wle", null, null, null, null, "Wolane", "I", "L" }, + { "wlc", null, null, null, null, "Mwali Comorian", "I", "L" }, + { "wla", null, null, null, null, "Walio", "I", "L" }, + { "wky", null, null, null, null, "Wangkayutyuru", "I", "E" }, + { "wkw", null, null, null, null, "Wakawaka", "I", "E" }, + { "wku", null, null, null, null, "Kunduvadi", "I", "L" }, + { "wkr", null, null, null, null, "Keerray-Woorroong", "I", "L" }, + { "wkl", null, null, null, null, "Kalanadi", "I", "L" }, + { "wkd", null, null, null, null, "Wakde", "I", "L" }, + { "wkb", null, null, null, null, "Kumbaran", "I", "L" }, + { "wka", null, null, null, null, "Kw'adza", "I", "E" }, + { "wji", null, null, null, null, "Warji", "I", "L" }, + { "wja", null, null, null, null, "Waja", "I", "L" }, + { "wiy", null, null, null, null, "Wiyot", "I", "E" }, + { "wiv", null, null, null, null, "Vitu", "I", "L" }, + { "wiu", null, null, null, null, "Wiru", "I", "L" }, + { "wir", null, null, null, null, "Wiraféd", "I", "E" }, + { "win", null, null, null, null, "Ho-Chunk", "I", "L" }, + { "wlu", null, null, null, null, "Wuliwuli", "I", "E" }, + { "wil", null, null, null, null, "Wilawila", "I", "E" }, + { "wlv", null, null, null, null, "Wichí Lhamtés Vejoz", "I", "L" }, + { "wlx", null, null, null, null, "Wali (Ghana)", "I", "L" }, + { "wnu", null, null, null, null, "Usan", "I", "L" }, + { "wnp", null, null, null, null, "Wanap", "I", "L" }, + { "wno", null, null, null, null, "Wano", "I", "L" }, + { "wnn", null, null, null, null, "Wunumara", "I", "E" }, + { "wnm", null, null, null, null, "Wanggamala", "I", "E" }, + { "wnk", null, null, null, null, "Wanukaka", "I", "L" }, + { "wni", null, null, null, null, "Ndzwani Comorian", "I", "L" }, + { "wng", null, null, null, null, "Wanggom", "I", "L" }, + { "wne", null, null, null, null, "Waneci", "I", "L" }, + { "wnd", null, null, null, null, "Wandarang", "I", "E" }, + { "wnc", null, null, null, null, "Wantoat", "I", "L" }, + { "wnb", null, null, null, null, "Wanambre", "I", "L" }, + { "wmx", null, null, null, null, "Womo", "I", "L" }, + { "wmw", null, null, null, null, "Mwani", "I", "L" }, + { "wmt", null, null, null, null, "Walmajarri", "I", "L" }, + { "wms", null, null, null, null, "Wambon", "I", "L" }, + { "wmo", null, null, null, null, "Wom (Papua New Guinea)", "I", "L" }, + { "wmn", null, null, null, null, "Waamwang", "I", "E" }, + { "wmm", null, null, null, null, "Maiwa (Indonesia)", "I", "L" }, + { "wmi", null, null, null, null, "Wamin", "I", "E" }, + { "wmh", null, null, null, null, "Waima'a", "I", "L" }, + { "wme", null, null, null, null, "Wambule", "I", "L" }, + { "wmd", null, null, null, null, "Mamaindé", "I", "L" }, + { "wmc", null, null, null, null, "Wamas", "I", "L" }, + { "wmb", null, null, null, null, "Wambaya", "I", "L" }, + { "wma", null, null, null, null, "Mawa (Nigeria)", "I", "E" }, + { "wly", null, null, null, null, "Waling", "I", "E" }, + { "wlw", null, null, null, null, "Walak", "I", "L" }, + { "xsn", null, null, null, null, "Sanga (Nigeria)", "I", "L" }, + { "xso", null, null, null, null, "Solano", "I", "E" }, + { "xsp", null, null, null, null, "Silopi", "I", "L" }, + { "zaz", null, null, null, null, "Zari", "I", "L" }, + { "zay", null, null, null, null, "Zayse-Zergulla", "I", "L" }, + { "zax", null, null, null, null, "Xadani Zapotec", "I", "L" }, + { "zaw", null, null, null, null, "Mitla Zapotec", "I", "L" }, + { "zav", null, null, null, null, "Yatzachi Zapotec", "I", "L" }, + { "zau", null, null, null, null, "Zangskari", "I", "L" }, + { "zat", null, null, null, null, "Tabaa Zapotec", "I", "L" }, + { "zas", null, null, null, null, "Santo Domingo Albarradas Zapotec", "I", "L" }, + { "zar", null, null, null, null, "Rincón Zapotec", "I", "L" }, + { "zaq", null, null, null, null, "Aloápam Zapotec", "I", "L" }, + { "zap", null, null, "zap", "zap", "Zapotec", "M", "L" }, + { "zao", null, null, null, null, "Ozolotepec Zapotec", "I", "L" }, + { "zbc", null, null, null, null, "Central Berawan", "I", "L" }, + { "zam", null, null, null, null, "Miahuatlán Zapotec", "I", "L" }, + { "zak", null, null, null, null, "Zanaki", "I", "L" }, + { "zaj", null, null, null, null, "Zaramo", "I", "L" }, + { "zai", null, null, null, null, "Isthmus Zapotec", "I", "L" }, + { "zah", null, null, null, null, "Zangwal", "I", "L" }, + { "zag", null, null, null, null, "Zaghawa", "I", "L" }, + { "zaf", null, null, null, null, "Ayoquesco Zapotec", "I", "L" }, + { "zae", null, null, null, null, "Yareni Zapotec", "I", "L" }, + { "zad", null, null, null, null, "Cajonos Zapotec", "I", "L" }, + { "zac", null, null, null, null, "Ocotlán Zapotec", "I", "L" }, + { "zab", null, null, null, null, "Western Tlacolula Valley Zapotec", "I", "L" }, + { "zaa", null, null, null, null, "Sierra de Juárez Zapotec", "I", "L" }, + { "yzk", null, null, null, null, "Zokhuo", "I", "L" }, + { "zal", null, null, null, null, "Zauzou", "I", "L" }, + { "zbe", null, null, null, null, "East Berawan", "I", "L" }, + { "zbl", null, null, "zbl", "zbl", "Blissymbols", "I", "C" }, + { "zbt", null, null, null, null, "Batui", "I", "L" }, + { "zin", null, null, null, null, "Zinza", "I", "L" }, + { "zim", null, null, null, null, "Mesme", "I", "L" }, + { "zil", null, null, null, null, "Zialo", "I", "L" }, + { "zik", null, null, null, null, "Zimakani", "I", "L" }, + { "zib", null, null, null, null, "Zimbabwe Sign Language", "I", "L" }, + { "zia", null, null, null, null, "Zia", "I", "L" }, + { "zhw", null, null, null, null, "Zhoa", "I", "L" }, + { "zho", null, "zh", "chi", "zho", "Chinese", "M", "L" }, + { "zhn", null, null, null, null, "Nong Zhuang", "I", "L" }, + { "zhi", null, null, null, null, "Zhire", "I", "L" }, + { "zhd", null, null, null, null, "Dai Zhuang", "I", "L" }, + { "zhb", null, null, null, null, "Zhaba", "I", "L" }, + { "zha", null, "za", "zha", "zha", "Zhuang", "M", "L" }, + { "zgr", null, null, null, null, "Magori", "I", "L" }, + { "zgn", null, null, null, null, "Guibian Zhuang", "I", "L" }, + { "zgm", null, null, null, null, "Minz Zhuang", "I", "L" }, + { "zgh", null, null, "zgh", "zgh", "Standard Moroccan Tamazight", "I", "L" }, + { "zgb", null, null, null, null, "Guibei Zhuang", "I", "L" }, + { "zga", null, null, null, null, "Kinga", "I", "L" }, + { "zen", null, null, "zen", "zen", "Zenaga", "I", "L" }, + { "zeh", null, null, null, null, "Eastern Hongshuihe Zhuang", "I", "L" }, + { "zeg", null, null, null, null, "Zenag", "I", "L" }, + { "zea", null, null, null, null, "Zeeuws", "I", "L" }, + { "zdj", null, null, null, null, "Ngazidja Comorian", "I", "L" }, + { "zch", null, null, null, null, "Central Hongshuihe Zhuang", "I", "L" }, + { "zca", null, null, null, null, "Coatecas Altas Zapotec", "I", "L" }, + { "zbw", null, null, null, null, "West Berawan", "I", "L" }, + { "yzg", null, null, null, null, "E'ma Buyang", "I", "L" }, + { "yyz", null, null, null, null, "Ayizi", "I", "L" }, + { "yyu", null, null, null, null, "Yau (Sandaun Province)", "I", "L" }, + { "yyr", null, null, null, null, "Yir Yoront", "I", "E" }, + { "yug", null, null, null, null, "Yug", "I", "E" }, + { "yuf", null, null, null, null, "Havasupai-Walapai-Yavapai", "I", "L" }, + { "yue", null, null, null, null, "Yue Chinese", "I", "L" }, + { "yud", null, null, null, null, "Judeo-Tripolitanian Arabic", "I", "L" }, + { "yuc", null, null, null, null, "Yuchi", "I", "L" }, + { "yub", null, null, null, null, "Yugambal", "I", "E" }, + { "yua", null, null, null, null, "Yucateco", "I", "L" }, + { "yty", null, null, null, null, "Yatay", "I", "E" }, + { "ytw", null, null, null, null, "Yout Wam", "I", "L" }, + { "ytp", null, null, null, null, "Thopho", "I", "L" }, + { "ytl", null, null, null, null, "Tanglang", "I", "L" }, + { "yta", null, null, null, null, "Talu", "I", "L" }, + { "ysy", null, null, null, null, "Sanie", "I", "L" }, + { "yss", null, null, null, null, "Yessan-Mayo", "I", "L" }, + { "ysr", null, null, null, null, "Sirenik Yupik", "I", "E" }, + { "ysp", null, null, null, null, "Southern Lolopo", "I", "L" }, + { "yso", null, null, null, null, "Nisi (China)", "I", "L" }, + { "ysn", null, null, null, null, "Sani", "I", "L" }, + { "ysl", null, null, null, null, "Yugoslavian Sign Language", "I", "L" }, + { "ysg", null, null, null, null, "Sonaga", "I", "L" }, + { "ysd", null, null, null, null, "Samatao", "I", "L" }, + { "ysc", null, null, null, null, "Yassic", "I", "E" }, + { "yry", null, null, null, null, "Yarluyandi", "I", "L" }, + { "yrw", null, null, null, null, "Yarawata", "I", "L" }, + { "yrs", null, null, null, null, "Yarsun", "I", "L" }, + { "yro", null, null, null, null, "Yaroamë", "I", "L" }, + { "yrn", null, null, null, null, "Yerong", "I", "L" }, + { "yui", null, null, null, null, "Yurutí", "I", "L" }, + { "zir", null, null, null, null, "Ziriya", "I", "E" }, + { "yuj", null, null, null, null, "Karkar-Yuri", "I", "L" }, + { "yul", null, null, null, null, "Yulu", "I", "L" }, + { "yxy", null, null, null, null, "Yabula Yabula", "I", "E" }, + { "yxu", null, null, null, null, "Yuyu", "I", "E" }, + { "yxm", null, null, null, null, "Yinwum", "I", "E" }, + { "yxl", null, null, null, null, "Yardliyawarra", "I", "E" }, + { "yxg", null, null, null, null, "Yagara", "I", "E" }, + { "yxa", null, null, null, null, "Mayawali", "I", "E" }, + { "yww", null, null, null, null, "Yawarawarga", "I", "E" }, + { "ywu", null, null, null, null, "Wumeng Nasu", "I", "L" }, + { "ywt", null, null, null, null, "Xishanba Lalo", "I", "L" }, + { "ywr", null, null, null, null, "Yawuru", "I", "L" }, + { "ywq", null, null, null, null, "Wuding-Luquan Yi", "I", "L" }, + { "ywn", null, null, null, null, "Yawanawa", "I", "L" }, + { "ywl", null, null, null, null, "Western Lalu", "I", "L" }, + { "ywg", null, null, null, null, "Yinhawangka", "I", "L" }, + { "ywa", null, null, null, null, "Kalou", "I", "L" }, + { "yvt", null, null, null, null, "Yavitero", "I", "E" }, + { "yva", null, null, null, null, "Yawa", "I", "L" }, + { "yuz", null, null, null, null, "Yuracare", "I", "L" }, + { "yuy", null, null, null, null, "East Yugur", "I", "L" }, + { "yux", null, null, null, null, "Southern Yukaghir", "I", "L" }, + { "yuw", null, null, null, null, "Yau (Morobe Province)", "I", "L" }, + { "yut", null, null, null, null, "Yopno", "I", "L" }, + { "yur", null, null, null, null, "Yurok", "I", "E" }, + { "yuq", null, null, null, null, "Yuqui", "I", "L" }, + { "yup", null, null, null, null, "Yukpa", "I", "L" }, + { "yun", null, null, null, null, "Bena (Nigeria)", "I", "L" }, + { "yum", null, null, null, null, "Quechan", "I", "L" }, + { "yuk", null, null, null, null, "Yuki", "I", "E" }, + { "yrm", null, null, null, null, "Yirrk-Mel", "I", "L" }, + { "ziw", null, null, null, null, "Zigula", "I", "L" }, + { "zka", null, null, null, null, "Kaimbulawa", "I", "L" }, + { "zrs", null, null, null, null, "Mairasi", "I", "L" }, + { "zrp", null, null, null, null, "Zarphatic", "I", "E" }, + { "zro", null, null, null, null, "Záparo", "I", "L" }, + { "zrn", null, null, null, null, "Zerenkel", "I", "L" }, + { "zrg", null, null, null, null, "Mirgan", "I", "L" }, + { "zra", null, null, null, null, "Kara (Korea)", "I", "A" }, + { "zqe", null, null, null, null, "Qiubei Zhuang", "I", "L" }, + { "zpz", null, null, null, null, "Texmelucan Zapotec", "I", "L" }, + { "zpy", null, null, null, null, "Mazaltepec Zapotec", "I", "L" }, + { "zpx", null, null, null, null, "San Baltazar Loxicha Zapotec", "I", "L" }, + { "zpw", null, null, null, null, "Zaniza Zapotec", "I", "L" }, + { "zpv", null, null, null, null, "Chichicapan Zapotec", "I", "L" }, + { "zsa", null, null, null, null, "Sarasira", "I", "L" }, + { "zpu", null, null, null, null, "Yalálag Zapotec", "I", "L" }, + { "zps", null, null, null, null, "Coatlán Zapotec", "I", "L" }, + { "zpr", null, null, null, null, "Santiago Xanica Zapotec", "I", "L" }, + { "zpq", null, null, null, null, "Zoogocho Zapotec", "I", "L" }, + { "zpp", null, null, null, null, "El Alto Zapotec", "I", "L" }, + { "zpo", null, null, null, null, "Amatlán Zapotec", "I", "L" }, + { "zpn", null, null, null, null, "Santa Inés Yatzechi Zapotec", "I", "L" }, + { "zpm", null, null, null, null, "Mixtepec Zapotec", "I", "L" }, + { "zpl", null, null, null, null, "Lachixío Zapotec", "I", "L" }, + { "zpk", null, null, null, null, "Tlacolulita Zapotec", "I", "L" }, + { "zpj", null, null, null, null, "Quiavicuzas Zapotec", "I", "L" }, + { "zpi", null, null, null, null, "Santa María Quiegolani Zapotec", "I", "L" }, + { "zph", null, null, null, null, "Totomachapan Zapotec", "I", "L" }, + { "zpt", null, null, null, null, "San Vicente Coatlán Zapotec", "I", "L" }, + { "zsk", null, null, null, null, "Kaskean", "I", "A" }, + { "zsl", null, null, null, null, "Zambian Sign Language", "I", "L" }, + { "zsm", null, null, null, null, "Standard Malay", "I", "L" }, + { "zyp", null, null, null, null, "Zyphe Chin", "I", "L" }, + { "zyn", null, null, null, null, "Yongnan Zhuang", "I", "L" }, + { "zyj", null, null, null, null, "Youjiang Zhuang", "I", "L" }, + { "zyg", null, null, null, null, "Yang Zhuang", "I", "L" }, + { "zyb", null, null, null, null, "Yongbei Zhuang", "I", "L" }, + { "zxx", null, null, "zxx", "zxx", "No linguistic content", "S", "S" }, + { "zwa", null, null, null, null, "Zay", "I", "L" }, + { "zuy", null, null, null, null, "Zumaya", "I", "L" }, + { "zun", null, null, "zun", "zun", "Zuni", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "zum", null, null, null, null, "Kumzari", "I", "L" }, + { "zul", null, "zu", "zul", "zul", "Zulu", "I", "L" }, + { "zuh", null, null, null, null, "Tokano", "I", "L" }, + { "zua", null, null, null, null, "Zeem", "I", "L" }, + { "zty", null, null, null, null, "Yatee Zapotec", "I", "L" }, + { "ztx", null, null, null, null, "Zaachila Zapotec", "I", "L" }, + { "ztu", null, null, null, null, "Güilá Zapotec", "I", "L" }, + { "ztt", null, null, null, null, "Tejalapan Zapotec", "I", "L" }, + { "zts", null, null, null, null, "Tilquiapan Zapotec", "I", "L" }, + { "ztq", null, null, null, null, "Quioquitani-Quierí Zapotec", "I", "L" }, + { "ztp", null, null, null, null, "Loxicha Zapotec", "I", "L" }, + { "ztn", null, null, null, null, "Santa Catarina Albarradas Zapotec", "I", "L" }, + { "ztm", null, null, null, null, "San Agustín Mixtepec Zapotec", "I", "L" }, + { "ztl", null, null, null, null, "Lapaguía-Guivini Zapotec", "I", "L" }, + { "ztg", null, null, null, null, "Xanaguía Zapotec", "I", "L" }, + { "zte", null, null, null, null, "Elotepec Zapotec", "I", "L" }, + { "zsu", null, null, null, null, "Sukurum", "I", "L" }, + { "zsr", null, null, null, null, "Southern Rincon Zapotec", "I", "L" }, + { "zpg", null, null, null, null, "Guevea De Humboldt Zapotec", "I", "L" }, + { "zpf", null, null, null, null, "San Pedro Quiatoni Zapotec", "I", "L" }, + { "zpe", null, null, null, null, "Petapa Zapotec", "I", "L" }, + { "zpd", null, null, null, null, "Southeastern Ixtlán Zapotec", "I", "L" }, + { "zmj", null, null, null, null, "Maridjabin", "I", "L" }, + { "zmi", null, null, null, null, "Negeri Sembilan Malay", "I", "L" }, + { "zmh", null, null, null, null, "Makolkol", "I", "E" }, + { "zmg", null, null, null, null, "Marti Ke", "I", "L" }, + { "zmf", null, null, null, null, "Mfinu", "I", "L" }, + { "zme", null, null, null, null, "Mangerr", "I", "E" }, + { "zmd", null, null, null, null, "Maridan", "I", "L" }, + { "zmc", null, null, null, null, "Margany", "I", "E" }, + { "zmb", null, null, null, null, "Zimba", "I", "L" }, + { "zma", null, null, null, null, "Manda (Australia)", "I", "L" }, + { "zlq", null, null, null, null, "Liuqian Zhuang", "I", "L" }, + { "zln", null, null, null, null, "Lianshan Zhuang", "I", "L" }, + { "zlm", null, null, null, null, "Malay (individual language)", "I", "L" }, + { "zlj", null, null, null, null, "Liujiang Zhuang", "I", "L" }, + { "zkz", null, null, null, null, "Khazar", "I", "H" }, + { "zkv", null, null, null, null, "Krevinian", "I", "E" }, + { "zku", null, null, null, null, "Kaurna", "I", "L" }, + { "zkt", null, null, null, null, "Kitan", "I", "H" }, + { "zkr", null, null, null, null, "Zakhring", "I", "L" }, + { "zkp", null, null, null, null, "São Paulo Kaingáng", "I", "E" }, + { "zko", null, null, null, null, "Kott", "I", "E" }, + { "zkn", null, null, null, null, "Kanan", "I", "L" }, + { "zkk", null, null, null, null, "Karankawa", "I", "E" }, + { "zkh", null, null, null, null, "Khorezmian", "I", "H" }, + { "zkg", null, null, null, null, "Koguryo", "I", "A" }, + { "zkd", null, null, null, null, "Kadu", "I", "L" }, + { "zkb", null, null, null, null, "Koibal", "I", "E" }, + { "zmk", null, null, null, null, "Mandandanyi", "I", "E" }, + { "ziz", null, null, null, null, "Zizilivakan", "I", "L" }, + { "zml", null, null, null, null, "Matngala", "I", "E" }, + { "zmn", null, null, null, null, "Mbangwe", "I", "L" }, + { "zpc", null, null, null, null, "Choapan Zapotec", "I", "L" }, + { "zpb", null, null, null, null, "Yautepec Zapotec", "I", "L" }, + { "zpa", null, null, null, null, "Lachiguiri Zapotec", "I", "L" }, + { "zos", null, null, null, null, "Francisco León Zoque", "I", "L" }, + { "zor", null, null, null, null, "Rayón Zoque", "I", "L" }, + { "zoq", null, null, null, null, "Tabasco Zoque", "I", "L" }, + { "zoo", null, null, null, null, "Asunción Mixtepec Zapotec", "I", "L" }, + { "zom", null, null, null, null, "Zou", "I", "L" }, + { "zoh", null, null, null, null, "Chimalapa Zoque", "I", "L" }, + { "zoc", null, null, null, null, "Copainalá Zoque", "I", "L" }, + { "zns", null, null, null, null, "Mangas", "I", "L" }, + { "znk", null, null, null, null, "Manangkari", "I", "E" }, + { "zng", null, null, null, null, "Mang", "I", "L" }, + { "zne", null, null, null, null, "Zande (individual language)", "I", "L" }, + { "zna", null, null, null, null, "Zan Gula", "I", "L" }, + { "zmz", null, null, null, null, "Mbandja", "I", "L" }, + { "zmy", null, null, null, null, "Mariyedi", "I", "L" }, + { "zmx", null, null, null, null, "Bomitaba", "I", "L" }, + { "zmw", null, null, null, null, "Mbo (Democratic Republic of Congo)", "I", "L" }, + { "zmv", null, null, null, null, "Mbariman-Gudhinma", "I", "E" }, + { "zmu", null, null, null, null, "Muruwari", "I", "E" }, + { "zmt", null, null, null, null, "Maringarr", "I", "L" }, + { "zms", null, null, null, null, "Mbesa", "I", "L" }, + { "zmr", null, null, null, null, "Maranunggu", "I", "L" }, + { "zmq", null, null, null, null, "Mituku", "I", "L" }, + { "zmp", null, null, null, null, "Mpuono", "I", "L" }, + { "zmo", null, null, null, null, "Molo", "I", "L" }, + { "zmm", null, null, null, null, "Marimanindji", "I", "L" }, + { "vme", null, null, null, null, "East Masela", "I", "L" }, + { "yrl", null, null, null, null, "Nhengatu", "I", "L" }, + { "yre", null, null, null, null, "Yaouré", "I", "L" }, + { "yan", null, null, null, null, "Mayangna", "I", "L" }, + { "yam", null, null, null, null, "Yamba", "I", "L" }, + { "yal", null, null, null, null, "Yalunka", "I", "L" }, + { "yak", null, null, null, null, "Yakama", "I", "L" }, + { "yaj", null, null, null, null, "Banda-Yangere", "I", "L" }, + { "yai", null, null, null, null, "Yagnobi", "I", "L" }, + { "yah", null, null, null, null, "Yazgulyam", "I", "L" }, + { "yag", null, null, null, null, "Yámana", "I", "L" }, + { "yaf", null, null, null, null, "Yaka (Democratic Republic of Congo)", "I", "L" }, + { "yae", null, null, null, null, "Pumé", "I", "L" }, + { "yad", null, null, null, null, "Yagua", "I", "L" }, + { "yac", null, null, null, null, "Pass Valley Yali", "I", "L" }, + { "yao", null, null, "yao", "yao", "Yao", "I", "L" }, + { "yab", null, null, null, null, "Yuhup", "I", "L" }, + { "xzp", null, null, null, null, "Ancient Zapotec", "I", "H" }, + { "xzm", null, null, null, null, "Zemgalian", "I", "E" }, + { "xzh", null, null, null, null, "Zhang-Zhung", "I", "A" }, + { "xyy", null, null, null, null, "Yorta Yorta", "I", "L" }, + { "xyt", null, null, null, null, "Mayi-Thakurti", "I", "E" }, + { "xyl", null, null, null, null, "Yalakalore", "I", "E" }, + { "xyk", null, null, null, null, "Mayi-Kulan", "I", "E" }, + { "xyj", null, null, null, null, "Mayi-Yapi", "I", "E" }, + { "xyb", null, null, null, null, "Yandjibara", "I", "E" }, + { "xya", null, null, null, null, "Yaygir", "I", "E" }, + { "xxt", null, null, null, null, "Tambora", "I", "E" }, + { "xxr", null, null, null, null, "Koropó", "I", "E" }, + { "yaa", null, null, null, null, "Yaminahua", "I", "L" }, + { "yap", null, null, "yap", "yap", "Yapese", "I", "L" }, + { "yaq", null, null, null, null, "Yaqui", "I", "L" }, + { "yar", null, null, null, null, "Yabarana", "I", "L" }, + { "ydd", null, null, null, null, "Eastern Yiddish", "I", "L" }, + { "yda", null, null, null, null, "Yanda", "I", "E" }, + { "ycp", null, null, null, null, "Chepya", "I", "L" }, + { "ycn", null, null, null, null, "Yucuna", "I", "L" }, + { "ycl", null, null, null, null, "Lolopo", "I", "L" }, + { "ych", null, null, null, null, "Chesu", "I", "L" }, + { "yby", null, null, null, null, "Yaweyuha", "I", "L" }, + { "ybx", null, null, null, null, "Yawiyo", "I", "L" }, + { "ybo", null, null, null, null, "Yabong", "I", "L" }, + { "ybn", null, null, null, null, "Yabaâna", "I", "E" }, + { "ybm", null, null, null, null, "Yaben", "I", "L" }, + { "ybl", null, null, null, null, "Yukuben", "I", "L" }, + { "ybk", null, null, null, null, "Bokha", "I", "L" }, + { "ybj", null, null, null, null, "Hasha", "I", "L" }, + { "ybi", null, null, null, null, "Yamphu", "I", "L" }, + { "ybh", null, null, null, null, "Yakha", "I", "L" }, + { "ybe", null, null, null, null, "West Yugur", "I", "L" }, + { "ybb", null, null, null, null, "Yemba", "I", "L" }, + { "yba", null, null, null, null, "Yala", "I", "L" }, + { "yaz", null, null, null, null, "Lokaa", "I", "L" }, + { "yay", null, null, null, null, "Agwagwune", "I", "L" }, + { "yax", null, null, null, null, "Yauma", "I", "L" }, + { "yaw", null, null, null, null, "Yawalapití", "I", "L" }, + { "yav", null, null, null, null, "Yangben", "I", "L" }, + { "yau", null, null, null, null, "Yuwana", "I", "L" }, + { "yat", null, null, null, null, "Yambeta", "I", "L" }, + { "yas", null, null, null, null, "Nugunu (Cameroon)", "I", "L" }, + { "xxm", null, null, null, null, "Minkin", "I", "E" }, + { "xxk", null, null, null, null, "Ke'o", "I", "L" }, + { "xxb", null, null, null, null, "Boro (Ghana)", "I", "E" }, + { "xww", null, null, null, null, "Wemba Wemba", "I", "E" }, + { "xtw", null, null, null, null, "Tawandê", "I", "L" }, + { "xtv", null, null, null, null, "Thawa", "I", "E" }, + { "xtu", null, null, null, null, "Cuyamecalco Mixtec", "I", "L" }, + { "xtt", null, null, null, null, "Tacahua Mixtec", "I", "L" }, + { "xts", null, null, null, null, "Sindihui Mixtec", "I", "L" }, + { "xtr", null, null, null, null, "Early Tripuri", "I", "A" }, + { "xtq", null, null, null, null, "Tumshuqese", "I", "H" }, + { "xtp", null, null, null, null, "San Miguel Piedras Mixtec", "I", "L" }, + { "xto", null, null, null, null, "Tokharian A", "I", "A" }, + { "xtn", null, null, null, null, "Northern Tlaxiaco Mixtec", "I", "L" }, + { "xtm", null, null, null, null, "Magdalena Peñasco Mixtec", "I", "L" }, + { "xtl", null, null, null, null, "Tijaltepec Mixtec", "I", "L" }, + { "xtj", null, null, null, null, "San Juan Teita Mixtec", "I", "L" }, + { "xti", null, null, null, null, "Sinicahua Mixtec", "I", "L" }, + { "xth", null, null, null, null, "Yitha Yitha", "I", "E" }, + { "xtg", null, null, null, null, "Transalpine Gaulish", "I", "A" }, + { "xte", null, null, null, null, "Ketengban", "I", "L" }, + { "xtd", null, null, null, null, "Diuxi-Tilantongo Mixtec", "I", "L" }, + { "xtc", null, null, null, null, "Katcha-Kadugli-Miri", "I", "L" }, + { "xtb", null, null, null, null, "Chazumba Mixtec", "I", "L" }, + { "xta", null, null, null, null, "Alcozauca Mixtec", "I", "L" }, + { "xsy", null, null, null, null, "Saisiyat", "I", "L" }, + { "xsv", null, null, null, null, "Sudovian", "I", "E" }, + { "xsu", null, null, null, null, "Sanumá", "I", "L" }, + { "xss", null, null, null, null, "Assan", "I", "E" }, + { "xsr", null, null, null, null, "Sherpa", "I", "L" }, + { "xsq", null, null, null, null, "Makhuwa-Saka", "I", "L" }, + { "xty", null, null, null, null, "Yoloxochitl Mixtec", "I", "L" }, + { "yde", null, null, null, null, "Yangum Dey", "I", "L" }, + { "xtz", null, null, null, null, "Tasmanian", "I", "E" }, + { "xub", null, null, null, null, "Betta Kurumba", "I", "L" }, + { "xwt", null, null, null, null, "Wotjobaluk", "I", "E" }, + { "xwr", null, null, null, null, "Kwerba Mamberamo", "I", "L" }, + { "xwo", null, null, null, null, "Written Oirat", "I", "E" }, + { "xwl", null, null, null, null, "Western Xwla Gbe", "I", "L" }, + { "xwk", null, null, null, null, "Wangkumara", "I", "E" }, + { "xwj", null, null, null, null, "Wajuk", "I", "E" }, + { "xwg", null, null, null, null, "Kwegu", "I", "L" }, + { "xwe", null, null, null, null, "Xwela Gbe", "I", "L" }, + { "xwd", null, null, null, null, "Wadi Wadi", "I", "E" }, + { "xwc", null, null, null, null, "Woccon", "I", "E" }, + { "xwa", null, null, null, null, "Kwaza", "I", "L" }, + { "xvs", null, null, null, null, "Vestinian", "I", "A" }, + { "xvo", null, null, null, null, "Volscian", "I", "A" }, + { "xvn", null, null, null, null, "Vandalic", "I", "A" }, + { "xvi", null, null, null, null, "Kamviri", "I", "L" }, + { "xve", null, null, null, null, "Venetic", "I", "A" }, + { "xuu", null, null, null, null, "Kxoe", "I", "L" }, + { "xut", null, null, null, null, "Kuthant", "I", "E" }, + { "xur", null, null, null, null, "Urartian", "I", "A" }, + { "xup", null, null, null, null, "Upper Umpqua", "I", "E" }, + { "xuo", null, null, null, null, "Kuo", "I", "L" }, + { "xun", null, null, null, null, "Unggaranggu", "I", "E" }, + { "xum", null, null, null, null, "Umbrian", "I", "A" }, + { "xul", null, null, null, null, "Ngunawal", "I", "E" }, + { "xuj", null, null, null, null, "Jennu Kurumba", "I", "L" }, + { "xug", null, null, null, null, "Kunigami", "I", "L" }, + { "xud", null, null, null, null, "Umiida", "I", "E" }, + { "xua", null, null, null, null, "Alu Kurumba", "I", "L" }, + { "yrk", null, null, null, null, "Nenets", "I", "L" }, + { "ydg", null, null, null, null, "Yidgha", "I", "L" }, + { "yea", null, null, null, null, "Ravula", "I", "L" }, + { "ynd", null, null, null, null, "Yandruwandha", "I", "E" }, + { "yna", null, null, null, null, "Aluo", "I", "L" }, + { "ymz", null, null, null, null, "Muzi", "I", "L" }, + { "ymx", null, null, null, null, "Northern Muji", "I", "L" }, + { "yms", null, null, null, null, "Mysian", "I", "A" }, + { "ymr", null, null, null, null, "Malasar", "I", "L" }, + { "ymq", null, null, null, null, "Qila Muji", "I", "L" }, + { "ymp", null, null, null, null, "Yamap", "I", "L" }, + { "ymo", null, null, null, null, "Yangum Mon", "I", "L" }, + { "ymn", null, null, null, null, "Yamna", "I", "L" }, + { "ymm", null, null, null, null, "Maay", "I", "L" }, + { "yml", null, null, null, null, "Iamalele", "I", "L" }, + { "yne", null, null, null, null, "Lang'e", "I", "L" }, + { "ymk", null, null, null, null, "Makwe", "I", "L" }, + { "ymh", null, null, null, null, "Mili", "I", "L" }, + { "ymg", null, null, null, null, "Yamongeri", "I", "L" }, + { "yme", null, null, null, null, "Yameo", "I", "E" }, + { "ymd", null, null, null, null, "Muda", "I", "L" }, + { "ymc", null, null, null, null, "Southern Muji", "I", "L" }, + { "ymb", null, null, null, null, "Yambes", "I", "L" }, + { "yly", null, null, null, null, "Nyâlayu", "I", "L" }, + { "ylu", null, null, null, null, "Aribwaung", "I", "L" }, + { "ylr", null, null, null, null, "Yalarnnga", "I", "E" }, + { "ylo", null, null, null, null, "Naluo Yi", "I", "L" }, + { "yln", null, null, null, null, "Langnian Buyang", "I", "L" }, + { "ylm", null, null, null, null, "Limi", "I", "L" }, + { "ymi", null, null, null, null, "Moji", "I", "L" }, + { "yng", null, null, null, null, "Yango", "I", "L" }, + { "ynk", null, null, null, null, "Naukan Yupik", "I", "L" }, + { "ynl", null, null, null, null, "Yangulam", "I", "L" }, + { "yrb", null, null, null, null, "Yareba", "I", "L" }, + { "yra", null, null, null, null, "Yerakai", "I", "L" }, + { "ypz", null, null, null, null, "Phuza", "I", "L" }, + { "ypp", null, null, null, null, "Phupa", "I", "L" }, + { "ypo", null, null, null, null, "Alo Phola", "I", "L" }, + { "ypn", null, null, null, null, "Ani Phowa", "I", "L" }, + { "ypm", null, null, null, null, "Phuma", "I", "L" }, + { "yph", null, null, null, null, "Phupha", "I", "L" }, + { "ypg", null, null, null, null, "Phola", "I", "L" }, + { "ypb", null, null, null, null, "Labo Phowa", "I", "L" }, + { "ypa", null, null, null, null, "Phala", "I", "L" }, + { "yoy", null, null, null, null, "Yoy", "I", "L" }, + { "yox", null, null, null, null, "Yoron", "I", "L" }, + { "yot", null, null, null, null, "Yotti", "I", "L" }, + { "yor", null, "yo", "yor", "yor", "Yoruba", "I", "L" }, + { "yon", null, null, null, null, "Yongkom", "I", "L" }, + { "yom", null, null, null, null, "Yombe", "I", "L" }, + { "yol", null, null, null, null, "Yola", "I", "E" }, + { "yok", null, null, null, null, "Yokuts", "I", "L" }, + { "yoi", null, null, null, null, "Yonaguni", "I", "L" }, + { "yog", null, null, null, null, "Yogad", "I", "L" }, + { "yob", null, null, null, null, "Yoba", "I", "E" }, + { "ynu", null, null, null, null, "Yahuna", "I", "E" }, + { "yns", null, null, null, null, "Yansi", "I", "L" }, + { "ynq", null, null, null, null, "Yendang", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "yno", null, null, null, null, "Yong", "I", "L" }, + { "ynn", null, null, null, null, "Yana", "I", "E" }, + { "yll", null, null, null, null, "Yil", "I", "L" }, + { "yli", null, null, null, null, "Angguruk Yali", "I", "L" }, + { "ylg", null, null, null, null, "Yelogu", "I", "L" }, + { "yle", null, null, null, null, "Yele", "I", "L" }, + { "yif", null, null, null, null, "Ache", "I", "L" }, + { "yid", null, "yi", "yid", "yid", "Yiddish", "M", "L" }, + { "yia", null, null, null, null, "Yinggarda", "I", "L" }, + { "yhs", null, null, null, null, "Yan-nhaŋu Sign Language", "I", "L" }, + { "yhl", null, null, null, null, "Hlepho Phowa", "I", "L" }, + { "yhd", null, null, null, null, "Judeo-Iraqi Arabic", "I", "L" }, + { "yha", null, null, null, null, "Baha Buyang", "I", "L" }, + { "ygw", null, null, null, null, "Yagwoia", "I", "L" }, + { "ygu", null, null, null, null, "Yugul", "I", "L" }, + { "ygs", null, null, null, null, "Yolŋu Sign Language", "I", "L" }, + { "ygr", null, null, null, null, "Yagaria", "I", "L" }, + { "ygp", null, null, null, null, "Gepo", "I", "L" }, + { "ygm", null, null, null, null, "Yagomi", "I", "L" }, + { "ygl", null, null, null, null, "Yangum Gel", "I", "L" }, + { "ygi", null, null, null, null, "Yiningayi", "I", "E" }, + { "yga", null, null, null, null, "Malyangapa", "I", "E" }, + { "yey", null, null, null, null, "Yeyi", "I", "L" }, + { "yev", null, null, null, null, "Yapunda", "I", "L" }, + { "yeu", null, null, null, null, "Yerukula", "I", "L" }, + { "yet", null, null, null, null, "Yetfa", "I", "L" }, + { "yes", null, null, null, null, "Nyankpa", "I", "L" }, + { "yer", null, null, null, null, "Tarok", "I", "L" }, + { "yel", null, null, null, null, "Yela", "I", "L" }, + { "yej", null, null, null, null, "Yevanic", "I", "L" }, + { "yei", null, null, null, null, "Yeni", "I", "E" }, + { "yee", null, null, null, null, "Yimas", "I", "L" }, + { "yec", null, null, null, null, "Yeniche", "I", "L" }, + { "yig", null, null, null, null, "Wusa Nasu", "I", "L" }, + { "ydk", null, null, null, null, "Yoidik", "I", "L" }, + { "yih", null, null, null, null, "Western Yiddish", "I", "L" }, + { "yij", null, null, null, null, "Yindjibarndi", "I", "L" }, + { "ylb", null, null, null, null, "Yaleba", "I", "L" }, + { "yla", null, null, null, null, "Yaul", "I", "L" }, + { "yky", null, null, null, null, "Yakoma", "I", "L" }, + { "yku", null, null, null, null, "Kuamasi", "I", "L" }, + { "ykt", null, null, null, null, "Kathu", "I", "L" }, + { "ykr", null, null, null, null, "Yekora", "I", "L" }, + { "yko", null, null, null, null, "Yasa", "I", "L" }, + { "ykn", null, null, null, null, "Kua-nsi", "I", "L" }, + { "ykm", null, null, null, null, "Kap", "I", "L" }, + { "ykl", null, null, null, null, "Khlula", "I", "L" }, + { "ykk", null, null, null, null, "Yakaikeke", "I", "L" }, + { "yki", null, null, null, null, "Yoke", "I", "L" }, + { "ykg", null, null, null, null, "Northern Yukaghir", "I", "L" }, + { "yka", null, null, null, null, "Yakan", "I", "L" }, + { "yiz", null, null, null, null, "Azhe", "I", "L" }, + { "yix", null, null, null, null, "Axi Yi", "I", "L" }, + { "yiv", null, null, null, null, "Northern Nisu", "I", "L" }, + { "yiu", null, null, null, null, "Awu", "I", "L" }, + { "yit", null, null, null, null, "Eastern Lalu", "I", "L" }, + { "yis", null, null, null, null, "Yis", "I", "L" }, + { "yir", null, null, null, null, "North Awyu", "I", "L" }, + { "yiq", null, null, null, null, "Miqie", "I", "L" }, + { "yip", null, null, null, null, "Pholo", "I", "L" }, + { "yin", null, null, null, null, "Riang Lai", "I", "L" }, + { "yim", null, null, null, null, "Yimchungru Naga", "I", "L" }, + { "yil", null, null, null, null, "Yindjilandji", "I", "E" }, + { "yik", null, null, null, null, "Dongshanba Lalo", "I", "L" }, + { "yii", null, null, null, null, "Yidiny", "I", "L" }, + { "slr", null, null, null, null, "Salar", "I", "L" }, + { "vmd", null, null, null, null, "Mudu Koraga", "I", "L" }, + { "vmb", null, null, null, null, "Barbaram", "I", "E" }, + { "tcg", null, null, null, null, "Tamagario", "I", "L" }, + { "tcf", null, null, null, null, "Malinaltepec Me'phaa", "I", "L" }, + { "tce", null, null, null, null, "Southern Tutchone", "I", "L" }, + { "tcd", null, null, null, null, "Tafi", "I", "L" }, + { "tcc", null, null, null, null, "Datooga", "I", "L" }, + { "tcb", null, null, null, null, "Tanacross", "I", "L" }, + { "tca", null, null, null, null, "Ticuna", "I", "L" }, + { "tbz", null, null, null, null, "Ditammari", "I", "L" }, + { "tby", null, null, null, null, "Tabaru", "I", "L" }, + { "tbx", null, null, null, null, "Kapin", "I", "L" }, + { "tbw", null, null, null, null, "Tagbanwa", "I", "L" }, + { "tbv", null, null, null, null, "Tobo", "I", "L" }, + { "tch", null, null, null, null, "Turks And Caicos Creole English", "I", "L" }, + { "tbu", null, null, null, null, "Tubar", "I", "E" }, + { "tbs", null, null, null, null, "Tanguat", "I", "L" }, + { "tbr", null, null, null, null, "Tumtum", "I", "L" }, + { "tbp", null, null, null, null, "Taworta", "I", "L" }, + { "tbo", null, null, null, null, "Tawala", "I", "L" }, + { "tbn", null, null, null, null, "Barro Negro Tunebo", "I", "L" }, + { "tbm", null, null, null, null, "Tagbu", "I", "L" }, + { "tbl", null, null, null, null, "Tboli", "I", "L" }, + { "tbk", null, null, null, null, "Calamian Tagbanwa", "I", "L" }, + { "tbj", null, null, null, null, "Tiang", "I", "L" }, + { "tbi", null, null, null, null, "Gaam", "I", "L" }, + { "tbh", null, null, null, null, "Dharawal", "I", "E" }, + { "tbg", null, null, null, null, "North Tairora", "I", "L" }, + { "tbt", null, null, null, null, "Tembo (Kitembo)", "I", "L" }, + { "tci", null, null, null, null, "Wára", "I", "L" }, + { "tck", null, null, null, null, "Tchitchege", "I", "L" }, + { "tcl", null, null, null, null, "Taman (Myanmar)", "I", "E" }, + { "tdo", null, null, null, null, "Teme", "I", "L" }, + { "tdn", null, null, null, null, "Tondano", "I", "L" }, + { "tdm", null, null, null, null, "Taruma", "I", "L" }, + { "tdl", null, null, null, null, "Sur", "I", "L" }, + { "tdk", null, null, null, null, "Tambas", "I", "L" }, + { "tdj", null, null, null, null, "Tajio", "I", "L" }, + { "tdi", null, null, null, null, "Tomadino", "I", "L" }, + { "tdh", null, null, null, null, "Thulung", "I", "L" }, + { "tdg", null, null, null, null, "Western Tamang", "I", "L" }, + { "tdf", null, null, null, null, "Talieng", "I", "L" }, + { "tde", null, null, null, null, "Tiranige Diga Dogon", "I", "L" }, + { "tdd", null, null, null, null, "Tai Nüa", "I", "L" }, + { "tdc", null, null, null, null, "Emberá-Tadó", "I", "L" }, + { "tdb", null, null, null, null, "Panchpargania", "I", "L" }, + { "tda", null, null, null, null, "Tagdal", "I", "L" }, + { "tcz", null, null, null, null, "Thado Chin", "I", "L" }, + { "tcy", null, null, null, null, "Tulu", "I", "L" }, + { "tcx", null, null, null, null, "Toda", "I", "L" }, + { "tcw", null, null, null, null, "Tecpatlán Totonac", "I", "L" }, + { "tcu", null, null, null, null, "Southeastern Tarahumara", "I", "L" }, + { "tct", null, null, null, null, "T'en", "I", "L" }, + { "tcs", null, null, null, null, "Torres Strait Creole", "I", "L" }, + { "tcq", null, null, null, null, "Kaiy", "I", "L" }, + { "tcp", null, null, null, null, "Tawr Chin", "I", "L" }, + { "tco", null, null, null, null, "Taungyo", "I", "L" }, + { "tcn", null, null, null, null, "Tichurong", "I", "L" }, + { "tcm", null, null, null, null, "Tanahmerah", "I", "L" }, + { "tbf", null, null, null, null, "Mandara", "I", "L" }, + { "tdq", null, null, null, null, "Tita", "I", "L" }, + { "tbe", null, null, null, null, "Tanimbili", "I", "L" }, + { "tbc", null, null, null, null, "Takia", "I", "L" }, + { "szp", null, null, null, null, "Suabo", "I", "L" }, + { "szn", null, null, null, null, "Sula", "I", "L" }, + { "szl", null, null, null, null, "Silesian", "I", "L" }, + { "szg", null, null, null, null, "Sengele", "I", "L" }, + { "sze", null, null, null, null, "Seze", "I", "L" }, + { "szd", null, null, null, null, "Seru", "I", "E" }, + { "szc", null, null, null, null, "Semaq Beri", "I", "L" }, + { "szb", null, null, null, null, "Ngalum", "I", "L" }, + { "sza", null, null, null, null, "Semelai", "I", "L" }, + { "syy", null, null, null, null, "Al-Sayyid Bedouin Sign Language", "I", "L" }, + { "syx", null, null, null, null, "Samay", "I", "L" }, + { "syw", null, null, null, null, "Kagate", "I", "L" }, + { "szs", null, null, null, null, "Solomon Islands Sign Language", "I", "L" }, + { "sys", null, null, null, null, "Sinyar", "I", "L" }, + { "syo", null, null, null, null, "Suoy", "I", "L" }, + { "syn", null, null, null, null, "Senaya", "I", "L" }, + { "sym", null, null, null, null, "Maya Samo", "I", "L" }, + { "syl", null, null, null, null, "Sylheti", "I", "L" }, + { "syk", null, null, null, null, "Sukur", "I", "L" }, + { "syi", null, null, null, null, "Seki", "I", "L" }, + { "syc", null, null, "syc", "syc", "Classical Syriac", "I", "H" }, + { "syb", null, null, null, null, "Central Subanen", "I", "L" }, + { "sya", null, null, null, null, "Siang", "I", "L" }, + { "sxw", null, null, null, null, "Saxwe Gbe", "I", "L" }, + { "sxu", null, null, null, null, "Upper Saxon", "I", "L" }, + { "sxs", null, null, null, null, "Sasaru", "I", "L" }, + { "syr", null, null, "syr", "syr", "Syriac", "M", "L" }, + { "szv", null, null, null, null, "Isu (Fako Division)", "I", "L" }, + { "szw", null, null, null, null, "Sawai", "I", "L" }, + { "szy", null, null, null, null, "Sakizaya", "I", "L" }, + { "tbb", null, null, null, null, "Tapeba", "I", "E" }, + { "tba", null, null, null, null, "Aikanã", "I", "L" }, + { "taz", null, null, null, null, "Tocho", "I", "L" }, + { "tay", null, null, null, null, "Atayal", "I", "L" }, + { "tax", null, null, null, null, "Tamki", "I", "L" }, + { "taw", null, null, null, null, "Tai", "I", "L" }, + { "tav", null, null, null, null, "Tatuyo", "I", "L" }, + { "tau", null, null, null, null, "Upper Tanana", "I", "L" }, + { "tat", null, "tt", "tat", "tat", "Tatar", "I", "L" }, + { "tas", null, null, null, null, "Tay Boi", "I", "E" }, + { "tar", null, null, null, null, "Central Tarahumara", "I", "L" }, + { "taq", null, null, null, null, "Tamasheq", "I", "L" }, + { "tap", null, null, null, null, "Taabwa", "I", "L" }, + { "tao", null, null, null, null, "Yami", "I", "L" }, + { "tan", null, null, null, null, "Tangale", "I", "L" }, + { "tam", null, "ta", "tam", "tam", "Tamil", "I", "L" }, + { "tal", null, null, null, null, "Tal", "I", "L" }, + { "tak", null, null, null, null, "Tala", "I", "L" }, + { "taj", null, null, null, null, "Eastern Tamang", "I", "L" }, + { "tah", null, "ty", "tah", "tah", "Tahitian", "I", "L" }, + { "tag", null, null, null, null, "Tagoi", "I", "L" }, + { "taf", null, null, null, null, "Tapirapé", "I", "L" }, + { "tae", null, null, null, null, "Tariana", "I", "L" }, + { "tad", null, null, null, null, "Tause", "I", "L" }, + { "tac", null, null, null, null, "Lowland Tarahumara", "I", "L" }, + { "tab", null, null, null, null, "Tabassaran", "I", "L" }, + { "taa", null, null, null, null, "Lower Tanana", "I", "L" }, + { "tbd", null, null, null, null, "Kaki Ae", "I", "L" }, + { "tdr", null, null, null, null, "Todrah", "I", "L" }, + { "tds", null, null, null, null, "Doutai", "I", "L" }, + { "tdt", null, null, null, null, "Tetun Dili", "I", "L" }, + { "tin", null, null, null, null, "Tindi", "I", "L" }, + { "tim", null, null, null, null, "Timbe", "I", "L" }, + { "til", null, null, null, null, "Tillamook", "I", "E" }, + { "tik", null, null, null, null, "Tikar", "I", "L" }, + { "tij", null, null, null, null, "Tilung", "I", "L" }, + { "tii", null, null, null, null, "Tiene", "I", "L" }, + { "tih", null, null, null, null, "Timugon Murut", "I", "L" }, + { "tig", null, null, "tig", "tig", "Tigre", "I", "L" }, + { "tif", null, null, null, null, "Tifal", "I", "L" }, + { "tic", null, null, null, null, "Tira", "I", "L" }, + { "tia", null, null, null, null, "Tidikelt Tamazight", "I", "L" }, + { "thz", null, null, null, null, "Tayart Tamajeq", "I", "L" }, + { "tio", null, null, null, null, "Teop", "I", "L" }, + { "thy", null, null, null, null, "Tha", "I", "L" }, + { "thv", null, null, null, null, "Tahaggart Tamahaq", "I", "L" }, + { "thu", null, null, null, null, "Thuri", "I", "L" }, + { "tht", null, null, null, null, "Tahltan", "I", "L" }, + { "ths", null, null, null, null, "Thakali", "I", "L" }, + { "thr", null, null, null, null, "Rana Tharu", "I", "L" }, + { "thq", null, null, null, null, "Kochila Tharu", "I", "L" }, + { "thp", null, null, null, null, "Thompson", "I", "L" }, + { "thn", null, null, null, null, "Thachanadan", "I", "L" }, + { "thm", null, null, null, null, "Aheu", "I", "L" }, + { "thl", null, null, null, null, "Dangaura Tharu", "I", "L" }, + { "thk", null, null, null, null, "Tharaka", "I", "L" }, + { "thi", null, null, null, null, "Tai Long", "I", "L" }, + { "thw", null, null, null, null, "Thudam", "I", "L" }, + { "tip", null, null, null, null, "Trimuris", "I", "L" }, + { "tiq", null, null, null, null, "Tiéfo", "I", "L" }, + { "tir", null, "ti", "tir", "tir", "Tigrinya", "I", "L" }, + { "tkl", null, null, "tkl", "tkl", "Tokelau", "I", "L" }, + { "tkg", null, null, null, null, "Tesaka Malagasy", "I", "L" }, + { "tkf", null, null, null, null, "Tukumanféd", "I", "E" }, + { "tke", null, null, null, null, "Takwane", "I", "L" }, + { "tkd", null, null, null, null, "Tukudede", "I", "L" }, + { "tkb", null, null, null, null, "Buksa", "I", "L" }, + { "tka", null, null, null, null, "Truká", "I", "E" }, + { "tjw", null, null, null, null, "Djabwurrung", "I", "L" }, + { "tju", null, null, null, null, "Tjurruru", "I", "E" }, + { "tjs", null, null, null, null, "Southern Tujia", "I", "L" }, + { "tjp", null, null, null, null, "Tjupany", "I", "L" }, + { "tjo", null, null, null, null, "Temacine Tamazight", "I", "L" }, + { "tjn", null, null, null, null, "Tonjon", "I", "E" }, + { "tjm", null, null, null, null, "Timucua", "I", "E" }, + { "tjl", null, null, null, null, "Tai Laing", "I", "L" }, + { "tjj", null, null, null, null, "Tjungundji", "I", "L" }, + { "tji", null, null, null, null, "Northern Tujia", "I", "L" }, + { "tjg", null, null, null, null, "Tunjung", "I", "L" }, + { "tja", null, null, null, null, "Tajuasohn", "I", "L" }, + { "tiz", null, null, null, null, "Tai Hongjin", "I", "L" }, + { "tiy", null, null, null, null, "Tiruray", "I", "L" }, + { "tix", null, null, null, null, "Southern Tiwa", "I", "L" }, + { "tiw", null, null, null, null, "Tiwi", "I", "L" }, + { "tiv", null, null, "tiv", "tiv", "Tiv", "I", "L" }, + { "tiu", null, null, null, null, "Adasen", "I", "L" }, + { "tit", null, null, null, null, "Tinigua", "I", "L" }, + { "tis", null, null, null, null, "Masadiit Itneg", "I", "L" }, + { "thh", null, null, null, null, "Northern Tarahumara", "I", "L" }, + { "thf", null, null, null, null, "Thangmi", "I", "L" }, + { "the", null, null, null, null, "Chitwania Tharu", "I", "L" }, + { "thd", null, null, null, null, "Kuuk Thaayorre", "I", "L" }, + { "tey", null, null, null, null, "Tulishi", "I", "L" }, + { "tex", null, null, null, null, "Tennet", "I", "L" }, + { "tew", null, null, null, null, "Tewa (USA)", "I", "L" }, + { "tev", null, null, null, null, "Teor", "I", "L" }, + { "teu", null, null, null, null, "Soo", "I", "L" }, + { "tet", null, null, "tet", "tet", "Tetum", "I", "L" }, + { "tes", null, null, null, null, "Tengger", "I", "L" }, + { "ter", null, null, "ter", "ter", "Tereno", "I", "L" }, + { "teq", null, null, null, null, "Temein", "I", "L" }, + { "tep", null, null, null, null, "Tepecano", "I", "E" }, + { "teo", null, null, null, null, "Teso", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "ten", null, null, null, null, "Tama (Colombia)", "I", "E" }, + { "tem", null, null, "tem", "tem", "Timne", "I", "L" }, + { "tel", null, "te", "tel", "tel", "Telugu", "I", "L" }, + { "tek", null, null, null, null, "Ibali Teke", "I", "L" }, + { "tei", null, null, null, null, "Torricelli", "I", "L" }, + { "teh", null, null, null, null, "Tehuelche", "I", "L" }, + { "teg", null, null, null, null, "Teke-Tege", "I", "L" }, + { "tef", null, null, null, null, "Teressa", "I", "L" }, + { "tee", null, null, null, null, "Huehuetla Tepehua", "I", "L" }, + { "ted", null, null, null, null, "Tepo Krumen", "I", "L" }, + { "tec", null, null, null, null, "Terik", "I", "L" }, + { "teb", null, null, null, null, "Tetete", "I", "E" }, + { "tea", null, null, null, null, "Temiar", "I", "L" }, + { "tdy", null, null, null, null, "Tadyawan", "I", "L" }, + { "tdx", null, null, null, null, "Tandroy-Mahafaly Malagasy", "I", "L" }, + { "tdv", null, null, null, null, "Toro", "I", "L" }, + { "tez", null, null, null, null, "Tetserret", "I", "L" }, + { "sxr", null, null, null, null, "Saaroa", "I", "L" }, + { "tfi", null, null, null, null, "Tofin Gbe", "I", "L" }, + { "tfo", null, null, null, null, "Tefaro", "I", "L" }, + { "tha", null, "th", "tha", "tha", "Thai", "I", "L" }, + { "tgz", null, null, null, null, "Tagalaka", "I", "E" }, + { "tgy", null, null, null, null, "Togoyo", "I", "E" }, + { "tgx", null, null, null, null, "Tagish", "I", "L" }, + { "tgw", null, null, null, null, "Tagwana Senoufo", "I", "L" }, + { "tgv", null, null, null, null, "Tingui-Boto", "I", "E" }, + { "tgu", null, null, null, null, "Tanggu", "I", "L" }, + { "tgt", null, null, null, null, "Central Tagbanwa", "I", "L" }, + { "tgs", null, null, null, null, "Nume", "I", "L" }, + { "tgr", null, null, null, null, "Tareng", "I", "L" }, + { "tgq", null, null, null, null, "Tring", "I", "L" }, + { "tgp", null, null, null, null, "Tangoa", "I", "L" }, + { "tgo", null, null, null, null, "Sudest", "I", "L" }, + { "tgn", null, null, null, null, "Tandaganon", "I", "L" }, + { "tgl", null, "tl", "tgl", "tgl", "Tagalog", "I", "L" }, + { "tgk", null, "tg", "tgk", "tgk", "Tajik", "I", "L" }, + { "tgj", null, null, null, null, "Tagin", "I", "L" }, + { "tgi", null, null, null, null, "Lawunuia", "I", "L" }, + { "tgh", null, null, null, null, "Tobagonian Creole English", "I", "L" }, + { "tgf", null, null, null, null, "Chalikha", "I", "L" }, + { "tge", null, null, null, null, "Eastern Gorkha Tamang", "I", "L" }, + { "tgd", null, null, null, null, "Ciwogai", "I", "L" }, + { "tgc", null, null, null, null, "Tigak", "I", "L" }, + { "tgb", null, null, null, null, "Tobilung", "I", "L" }, + { "tga", null, null, null, null, "Sagalla", "I", "L" }, + { "tft", null, null, null, null, "Ternate", "I", "L" }, + { "tfr", null, null, null, null, "Teribe", "I", "L" }, + { "tfn", null, null, null, null, "Tanaina", "I", "L" }, + { "sxo", null, null, null, null, "Sorothaptic", "I", "A" }, + { "sxn", null, null, null, null, "Sangir", "I", "L" }, + { "sxm", null, null, null, null, "Samre", "I", "L" }, + { "spk", null, null, null, null, "Sengo", "I", "L" }, + { "spi", null, null, null, null, "Saponi", "I", "L" }, + { "spg", null, null, null, null, "Sian", "I", "L" }, + { "spe", null, null, null, null, "Sepa (Papua New Guinea)", "I", "L" }, + { "spd", null, null, null, null, "Saep", "I", "L" }, + { "spc", null, null, null, null, "Sapé", "I", "L" }, + { "spb", null, null, null, null, "Sepa (Indonesia)", "I", "L" }, + { "spa", null, "es", "spa", "spa", "Spanish", "I", "L" }, + { "soz", null, null, null, null, "Temi", "I", "L" }, + { "soy", null, null, null, null, "Miyobe", "I", "L" }, + { "sox", null, null, null, null, "Swo", "I", "L" }, + { "sow", null, null, null, null, "Sowanda", "I", "L" }, + { "spl", null, null, null, null, "Selepet", "I", "L" }, + { "sov", null, null, null, null, "Sonsorol", "I", "L" }, + { "sot", null, "st", "sot", "sot", "Southern Sotho", "I", "L" }, + { "sos", null, null, null, null, "Seeku", "I", "L" }, + { "sor", null, null, null, null, "Somrai", "I", "L" }, + { "soq", null, null, null, null, "Kanasi", "I", "L" }, + { "sop", null, null, null, null, "Songe", "I", "L" }, + { "soo", null, null, null, null, "Songo", "I", "L" }, + { "som", null, "so", "som", "som", "Somali", "I", "L" }, + { "sol", null, null, null, null, "Solos", "I", "L" }, + { "sok", null, null, null, null, "Sokoro", "I", "L" }, + { "soj", null, null, null, null, "Soi", "I", "L" }, + { "soi", null, null, null, null, "Sonha", "I", "L" }, + { "soh", null, null, null, null, "Aka", "I", "L" }, + { "sou", null, null, null, null, "Southern Thai", "I", "L" }, + { "spm", null, null, null, null, "Akukem", "I", "L" }, + { "spn", null, null, null, null, "Sanapaná", "I", "L" }, + { "spo", null, null, null, null, "Spokane", "I", "L" }, + { "srf", null, null, null, null, "Nafi", "I", "L" }, + { "sre", null, null, null, null, "Sara", "I", "L" }, + { "srd", null, "sc", "srd", "srd", "Sardinian", "M", "L" }, + { "src", null, null, null, null, "Logudorese Sardinian", "I", "L" }, + { "srb", null, null, null, null, "Sora", "I", "L" }, + { "sra", null, null, null, null, "Saruga", "I", "L" }, + { "squ", null, null, null, null, "Squamish", "I", "L" }, + { "sqt", null, null, null, null, "Soqotri", "I", "L" }, + { "sqs", null, null, null, null, "Sri Lankan Sign Language", "I", "L" }, + { "sqr", null, null, null, null, "Siculo Arabic", "I", "H" }, + { "sqq", null, null, null, null, "Sou", "I", "L" }, + { "sqo", null, null, null, null, "Sorkhei", "I", "L" }, + { "sqn", null, null, null, null, "Susquehannock", "I", "E" }, + { "sqm", null, null, null, null, "Suma", "I", "L" }, + { "sqk", null, null, null, null, "Albanian Sign Language", "I", "L" }, + { "sqi", null, "sq", "alb", "sqi", "Albanian", "M", "L" }, + { "sqh", null, null, null, null, "Shau", "I", "L" }, + { "sqa", null, null, null, null, "Shama-Sambuga", "I", "L" }, + { "spy", null, null, null, null, "Sabaot", "I", "L" }, + { "spx", null, null, null, null, "South Picene", "I", "A" }, + { "spv", null, null, null, null, "Sambalpuri", "I", "L" }, + { "spu", null, null, null, null, "Sapuan", "I", "L" }, + { "spt", null, null, null, null, "Spiti Bhoti", "I", "L" }, + { "sps", null, null, null, null, "Saposa", "I", "L" }, + { "spr", null, null, null, null, "Saparua", "I", "L" }, + { "spq", null, null, null, null, "Loreto-Ucayali Spanish", "I", "L" }, + { "spp", null, null, null, null, "Supyire Senoufo", "I", "L" }, + { "sog", null, null, "sog", "sog", "Sogdian", "I", "A" }, + { "soe", null, null, null, null, "Songomeno", "I", "L" }, + { "sod", null, null, null, null, "Songoora", "I", "L" }, + { "soc", null, null, null, null, "So (Democratic Republic of Congo)", "I", "L" }, + { "smu", null, null, null, null, "Somray", "I", "E" }, + { "smt", null, null, null, null, "Simte", "I", "L" }, + { "sms", null, null, "sms", "sms", "Skolt Sami", "I", "L" }, + { "smr", null, null, null, null, "Simeulue", "I", "L" }, + { "smq", null, null, null, null, "Samo", "I", "L" }, + { "smp", null, null, null, null, "Samaritan", "I", "E" }, + { "smo", null, "sm", "smo", "smo", "Samoan", "I", "L" }, + { "smn", null, null, "smn", "smn", "Inari Sami", "I", "L" }, + { "smm", null, null, null, null, "Musasa", "I", "L" }, + { "sml", null, null, null, null, "Central Sama", "I", "L" }, + { "smk", null, null, null, null, "Bolinao", "I", "L" }, + { "smj", null, null, "smj", "smj", "Lule Sami", "I", "L" }, + { "smh", null, null, null, null, "Samei", "I", "L" }, + { "smg", null, null, null, null, "Simbali", "I", "L" }, + { "smf", null, null, null, null, "Auwe", "I", "L" }, + { "sme", null, "se", "sme", "sme", "Northern Sami", "I", "L" }, + { "smd", null, null, null, null, "Sama", "I", "L" }, + { "smc", null, null, null, null, "Som", "I", "E" }, + { "smb", null, null, null, null, "Simbari", "I", "L" }, + { "sma", null, null, "sma", "sma", "Southern Sami", "I", "L" }, + { "slz", null, null, null, null, "Ma'ya", "I", "L" }, + { "sly", null, null, null, null, "Selayar", "I", "L" }, + { "slx", null, null, null, null, "Salampasu", "I", "L" }, + { "slw", null, null, null, null, "Sialum", "I", "L" }, + { "slv", null, "sl", "slv", "slv", "Slovenian", "I", "L" }, + { "slu", null, null, null, null, "Selaru", "I", "L" }, + { "slt", null, null, null, null, "Sila", "I", "L" }, + { "smv", null, null, null, null, "Samvedi", "I", "L" }, + { "srg", null, null, null, null, "Sulod", "I", "L" }, + { "smw", null, null, null, null, "Sumbawa", "I", "L" }, + { "smy", null, null, null, null, "Semnani", "I", "L" }, + { "sob", null, null, null, null, "Sobei", "I", "L" }, + { "soa", null, null, null, null, "Thai Song", "I", "L" }, + { "snz", null, null, null, null, "Kou", "I", "L" }, + { "sny", null, null, null, null, "Saniyo-Hiyewe", "I", "L" }, + { "snx", null, null, null, null, "Sam", "I", "L" }, + { "snw", null, null, null, null, "Selee", "I", "L" }, + { "snv", null, null, null, null, "Sa'ban", "I", "L" }, + { "snu", null, null, null, null, "Senggi", "I", "L" }, + { "sns", null, null, null, null, "South West Bay", "I", "L" }, + { "snr", null, null, null, null, "Sihan", "I", "L" }, + { "snq", null, null, null, null, "Sangu (Gabon)", "I", "L" }, + { "snp", null, null, null, null, "Siane", "I", "L" }, + { "sno", null, null, null, null, "Snohomish", "I", "L" }, + { "snn", null, null, null, null, "Siona", "I", "L" }, + { "snm", null, null, null, null, "Southern Ma'di", "I", "L" }, + { "snl", null, null, null, null, "Sangil", "I", "L" }, + { "snk", null, null, "snk", "snk", "Soninke", "I", "L" }, + { "snj", null, null, null, null, "Riverain Sango", "I", "L" }, + { "sni", null, null, null, null, "Sensi", "I", "E" }, + { "sng", null, null, null, null, "Sanga (Democratic Republic of Congo)", "I", "L" }, + { "snf", null, null, null, null, "Noon", "I", "L" }, + { "sne", null, null, null, null, "Bau Bidayuh", "I", "L" }, + { "snd", null, "sd", "snd", "snd", "Sindhi", "I", "L" }, + { "snc", null, null, null, null, "Sinaugoro", "I", "L" }, + { "snb", null, null, null, null, "Sebuyau", "I", "L" }, + { "sna", null, "sn", "sna", "sna", "Shona", "I", "L" }, + { "smz", null, null, null, null, "Simeku", "I", "L" }, + { "smx", null, null, null, null, "Samba", "I", "L" }, + { "tkm", null, null, null, null, "Takelma", "I", "E" }, + { "srh", null, null, null, null, "Sarikoli", "I", "L" }, + { "srk", null, null, null, null, "Serudung Murut", "I", "L" }, + { "svs", null, null, null, null, "Savosavo", "I", "L" }, + { "svm", null, null, null, null, "Slavomolisano", "I", "L" }, + { "svk", null, null, null, null, "Slovakian Sign Language", "I", "L" }, + { "sve", null, null, null, null, "Serili", "I", "L" }, + { "svc", null, null, null, null, "Vincentian Creole English", "I", "L" }, + { "svb", null, null, null, null, "Ulau-Suain", "I", "L" }, + { "sva", null, null, null, null, "Svan", "I", "L" }, + { "suz", null, null, null, null, "Sunwar", "I", "L" }, + { "suy", null, null, null, null, "Suyá", "I", "L" }, + { "sux", null, null, "sux", "sux", "Sumerian", "I", "A" }, + { "suw", null, null, null, null, "Sumbwa", "I", "L" }, + { "suv", null, null, null, null, "Puroik", "I", "L" }, + { "svx", null, null, null, null, "Skalvian", "I", "H" }, + { "sut", null, null, null, null, "Subtiaba", "I", "E" }, + { "sur", null, null, null, null, "Mwaghavul", "I", "L" }, + { "suq", null, null, null, null, "Suri", "I", "L" }, + { "sun", null, "su", "sun", "sun", "Sundanese", "I", "L" }, + { "suk", null, null, "suk", "suk", "Sukuma", "I", "L" }, + { "suj", null, null, null, null, "Shubi", "I", "L" }, + { "sui", null, null, null, null, "Suki", "I", "L" }, + { "sug", null, null, null, null, "Suganga", "I", "L" }, + { "sue", null, null, null, null, "Suena", "I", "L" }, + { "suc", null, null, null, null, "Western Subanon", "I", "L" }, + { "sub", null, null, null, null, "Suku", "I", "L" }, + { "sua", null, null, null, null, "Sulka", "I", "L" }, + { "sty", null, null, null, null, "Siberian Tatar", "I", "L" }, + { "sus", null, null, "sus", "sus", "Susu", "I", "L" }, + { "swa", null, "sw", "swa", "swa", "Swahili (macrolanguage)", "M", "L" }, + { "swb", null, null, null, null, "Maore Comorian", "I", "L" }, + { "swc", null, null, null, null, "Congo Swahili", "I", "L" }, + { "sxl", null, null, null, null, "Selian", "I", "E" }, + { "sxk", null, null, null, null, "Southern Kalapuya", "I", "E" }, + { "sxg", null, null, null, null, "Shuhi", "I", "L" }, + { "sxe", null, null, null, null, "Sighu", "I", "L" }, + { "sxc", null, null, null, null, "Sicanian", "I", "A" }, + { "sxb", null, null, null, null, "Suba", "I", "L" }, + { "swy", null, null, null, null, "Sarua", "I", "L" }, + { "swx", null, null, null, null, "Suruahá", "I", "L" }, + { "sww", null, null, null, null, "Sowa", "I", "E" }, + { "swv", null, null, null, null, "Shekhawati", "I", "L" }, + { "swu", null, null, null, null, "Suwawa", "I", "L" }, + { "swt", null, null, null, null, "Sawila", "I", "L" }, + { "sws", null, null, null, null, "Seluwasan", "I", "L" }, + { "swr", null, null, null, null, "Saweru", "I", "L" }, + { "swq", null, null, null, null, "Sharwa", "I", "L" }, + { "swp", null, null, null, null, "Suau", "I", "L" }, + { "swo", null, null, null, null, "Shanenawa", "I", "L" }, + { "swn", null, null, null, null, "Sawknah", "I", "L" }, + { "swm", null, null, null, null, "Samosa", "I", "L" }, + { "swl", null, null, null, null, "Swedish Sign Language", "I", "L" }, + { "swk", null, null, null, null, "Malawi Sena", "I", "L" }, + { "swj", null, null, null, null, "Sira", "I", "L" }, + { "swi", null, null, null, null, "Sui", "I", "L" }, + { "swh", null, null, null, null, "Swahili (individual language)", "I", "L" }, + { "swg", null, null, null, null, "Swabian", "I", "L" }, + { "swf", null, null, null, null, "Sere", "I", "L" }, + { "swe", null, "sv", "swe", "swe", "Swedish", "I", "L" }, + { "stw", null, null, null, null, "Satawalese", "I", "L" }, + { "stv", null, null, null, null, "Silt'e", "I", "L" }, + { "stu", null, null, null, null, "Samtao", "I", "L" }, + { "stt", null, null, null, null, "Budeh Stieng", "I", "L" }, + { "ssm", null, null, null, null, "Semnam", "I", "L" }, + { "ssl", null, null, null, null, "Western Sisaala", "I", "L" }, + { "ssk", null, null, null, null, "Sunam", "I", "L" }, + { "ssj", null, null, null, null, "Sausi", "I", "L" }, + { "ssi", null, null, null, null, "Sansi", "I", "L" }, + { "ssh", null, null, null, null, "Shihhi Arabic", "I", "L" }, + { "ssg", null, null, null, null, "Seimat", "I", "L" }, + { "ssf", null, null, null, null, "Thao", "I", "E" }, + { "sse", null, null, null, null, "Balangingi", "I", "L" }, + { "ssd", null, null, null, null, "Siroi", "I", "L" }, + { "ssc", null, null, null, null, "Suba-Simbiti", "I", "L" }, + { "ssb", null, null, null, null, "Southern Sama", "I", "L" }, + { "srz", null, null, null, null, "Shahmirzadi", "I", "L" }, + { "sry", null, null, null, null, "Sera", "I", "L" }, + { "srx", null, null, null, null, "Sirmauri", "I", "L" }, + { "srw", null, null, null, null, "Serua", "I", "L" }, + { "srv", null, null, null, null, "Southern Sorsoganon", "I", "L" }, + { "sru", null, null, null, null, "Suruí", "I", "L" }, + { "srt", null, null, null, null, "Sauri", "I", "L" }, + { "srs", null, null, null, null, "Sarsi", "I", "L" }, + { "srr", null, null, "srr", "srr", "Serer", "I", "L" }, + { "srq", null, null, null, null, "Sirionó", "I", "L" }, + { "srp", null, "sr", "srp", "srp", "Serbian", "I", "L" }, + { "sro", null, null, null, null, "Campidanese Sardinian", "I", "L" }, + { "srn", null, null, "srn", "srn", "Sranan Tongo", "I", "L" }, + { "srm", null, null, null, null, "Saramaccan", "I", "L" }, + { "srl", null, null, null, null, "Isirawa", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "ssn", null, null, null, null, "Waata", "I", "L" }, + { "sri", null, null, null, null, "Siriano", "I", "L" }, + { "sso", null, null, null, null, "Sissano", "I", "L" }, + { "ssq", null, null, null, null, "So'a", "I", "L" }, + { "sts", null, null, null, null, "Shumashti", "I", "L" }, + { "str", null, null, null, null, "Straits Salish", "I", "L" }, + { "stq", null, null, null, null, "Saterfriesisch", "I", "L" }, + { "stp", null, null, null, null, "Southeastern Tepehuan", "I", "L" }, + { "sto", null, null, null, null, "Stoney", "I", "L" }, + { "stn", null, null, null, null, "Owa", "I", "L" }, + { "stm", null, null, null, null, "Setaman", "I", "L" }, + { "stl", null, null, null, null, "Stellingwerfs", "I", "L" }, + { "stk", null, null, null, null, "Arammba", "I", "L" }, + { "stj", null, null, null, null, "Matya Samo", "I", "L" }, + { "sti", null, null, null, null, "Bulo Stieng", "I", "L" }, + { "sth", null, null, null, null, "Shelta", "I", "L" }, + { "stg", null, null, null, null, "Trieng", "I", "L" }, + { "stf", null, null, null, null, "Seta", "I", "L" }, + { "ste", null, null, null, null, "Liana-Seti", "I", "L" }, + { "std", null, null, null, null, "Sentinel", "I", "L" }, + { "stb", null, null, null, null, "Northern Subanen", "I", "L" }, + { "sta", null, null, null, null, "Settla", "I", "L" }, + { "ssz", null, null, null, null, "Sengseng", "I", "L" }, + { "ssy", null, null, null, null, "Saho", "I", "L" }, + { "ssx", null, null, null, null, "Samberigi", "I", "L" }, + { "ssw", null, "ss", "ssw", "ssw", "Swati", "I", "L" }, + { "ssv", null, null, null, null, "Shark Bay", "I", "L" }, + { "ssu", null, null, null, null, "Susuami", "I", "L" }, + { "sst", null, null, null, null, "Sinasina", "I", "L" }, + { "sss", null, null, null, null, "Sô", "I", "L" }, + { "ssr", null, null, null, null, "Swiss-French Sign Language", "I", "L" }, + { "ssp", null, null, null, null, "Spanish Sign Language", "I", "L" }, + { "tkn", null, null, null, null, "Toku-No-Shima", "I", "L" }, + { "tkp", null, null, null, null, "Tikopia", "I", "L" }, + { "tkq", null, null, null, null, "Tee", "I", "L" }, + { "uhn", null, null, null, null, "Damal", "I", "L" }, + { "uha", null, null, null, null, "Uhami", "I", "L" }, + { "ugy", null, null, null, null, "Uruguayan Sign Language", "I", "L" }, + { "ugo", null, null, null, null, "Ugong", "I", "L" }, + { "ugn", null, null, null, null, "Ugandan Sign Language", "I", "L" }, + { "uge", null, null, null, null, "Ughele", "I", "L" }, + { "ugb", null, null, null, null, "Kuku-Ugbanh", "I", "E" }, + { "uga", null, null, "uga", "uga", "Ugaritic", "I", "A" }, + { "ufi", null, null, null, null, "Ufim", "I", "L" }, + { "ues", null, null, null, null, "Kioko", "I", "L" }, + { "udu", null, null, null, null, "Uduk", "I", "L" }, + { "udm", null, null, "udm", "udm", "Udmurt", "I", "L" }, + { "uig", null, "ug", "uig", "uig", "Uighur", "I", "L" }, + { "udl", null, null, null, null, "Wuzlam", "I", "L" }, + { "udi", null, null, null, null, "Udi", "I", "L" }, + { "udg", null, null, null, null, "Muduga", "I", "L" }, + { "ude", null, null, null, null, "Udihe", "I", "L" }, + { "uda", null, null, null, null, "Uda", "I", "L" }, + { "uby", null, null, null, null, "Ubykh", "I", "E" }, + { "ubu", null, null, null, null, "Umbu-Ungu", "I", "L" }, + { "ubr", null, null, null, null, "Ubir", "I", "L" }, + { "ubl", null, null, null, null, "Buhi'non Bikol", "I", "L" }, + { "ubi", null, null, null, null, "Ubi", "I", "L" }, + { "uba", null, null, null, null, "Ubang", "I", "L" }, + { "uar", null, null, null, null, "Tairuma", "I", "L" }, + { "uan", null, null, null, null, "Kuan", "I", "L" }, + { "udj", null, null, null, null, "Ujir", "I", "L" }, + { "uis", null, null, null, null, "Uisai", "I", "L" }, + { "uiv", null, null, null, null, "Iyive", "I", "L" }, + { "uji", null, null, null, null, "Tanjijili", "I", "L" }, + { "umc", null, null, null, null, "Marrucinian", "I", "A" }, + { "umb", null, null, "umb", "umb", "Umbundu", "I", "L" }, + { "uma", null, null, null, null, "Umatilla", "I", "L" }, + { "ulw", null, null, null, null, "Ulwa", "I", "L" }, + { "ulu", null, null, null, null, "Uma' Lung", "I", "L" }, + { "uln", null, null, null, null, "Unserdeutsch", "I", "L" }, + { "ulm", null, null, null, null, "Ulumanda'", "I", "L" }, + { "ull", null, null, null, null, "Ullatan", "I", "L" }, + { "ulk", null, null, null, null, "Meriam Mir", "I", "L" }, + { "uli", null, null, null, null, "Ulithian", "I", "L" }, + { "ulf", null, null, null, null, "Usku", "I", "L" }, + { "ule", null, null, null, null, "Lule", "I", "E" }, + { "ulc", null, null, null, null, "Ulch", "I", "L" }, + { "ulb", null, null, null, null, "Ulukwumi", "I", "L" }, + { "ula", null, null, null, null, "Fungwa", "I", "L" }, + { "uky", null, null, null, null, "Kuuk-Yak", "I", "E" }, + { "ukw", null, null, null, null, "Ukwuani-Aboh-Ndoni", "I", "L" }, + { "uku", null, null, null, null, "Ukue", "I", "L" }, + { "uks", null, null, null, null, "Urubú-Kaapor Sign Language", "I", "L" }, + { "ukr", null, "uk", "ukr", "ukr", "Ukrainian", "I", "L" }, + { "ukq", null, null, null, null, "Ukwa", "I", "L" }, + { "ukp", null, null, null, null, "Ukpe-Bayobiri", "I", "L" }, + { "ukl", null, null, null, null, "Ukrainian Sign Language", "I", "L" }, + { "ukk", null, null, null, null, "Muak Sa-aak", "I", "L" }, + { "ukh", null, null, null, null, "Ukhwejo", "I", "L" }, + { "ukg", null, null, null, null, "Ukuriguma", "I", "L" }, + { "uka", null, null, null, null, "Kaburi", "I", "L" }, + { "uam", null, null, null, null, "Uamué", "I", "E" }, + { "tzx", null, null, null, null, "Tabriak", "I", "L" }, + { "tzo", null, null, null, null, "Tzotzil", "I", "L" }, + { "tzn", null, null, null, null, "Tugun", "I", "L" }, + { "txi", null, null, null, null, "Ikpeng", "I", "L" }, + { "txh", null, null, null, null, "Thracian", "I", "A" }, + { "txg", null, null, null, null, "Tangut", "I", "A" }, + { "txe", null, null, null, null, "Totoli", "I", "L" }, + { "txc", null, null, null, null, "Tsetsaut", "I", "E" }, + { "txb", null, null, null, null, "Tokharian B", "I", "A" }, + { "txa", null, null, null, null, "Tombonuo", "I", "L" }, + { "twy", null, null, null, null, "Tawoyan", "I", "L" }, + { "twx", null, null, null, null, "Tewe", "I", "L" }, + { "tww", null, null, null, null, "Tuwari", "I", "L" }, + { "twu", null, null, null, null, "Termanu", "I", "L" }, + { "twt", null, null, null, null, "Turiwára", "I", "E" }, + { "twr", null, null, null, null, "Southwestern Tarahumara", "I", "L" }, + { "twq", null, null, null, null, "Tasawaq", "I", "L" }, + { "twp", null, null, null, null, "Ere", "I", "L" }, + { "two", null, null, null, null, "Tswapong", "I", "L" }, + { "twn", null, null, null, null, "Twendi", "I", "L" }, + { "twm", null, null, null, null, "Tawang Monpa", "I", "L" }, + { "twl", null, null, null, null, "Tawara", "I", "L" }, + { "twi", null, "tw", "twi", "twi", "Twi", "I", "L" }, + { "twh", null, null, null, null, "Tai Dón", "I", "L" }, + { "twg", null, null, null, null, "Tereweng", "I", "L" }, + { "twf", null, null, null, null, "Northern Tiwa", "I", "L" }, + { "twe", null, null, null, null, "Tewa (Indonesia)", "I", "L" }, + { "twd", null, null, null, null, "Twents", "I", "L" }, + { "twc", null, null, null, null, "Teshenawa", "I", "E" }, + { "twb", null, null, null, null, "Western Tawbuid", "I", "L" }, + { "txj", null, null, null, null, "Tarjumo", "I", "L" }, + { "umd", null, null, null, null, "Umbindhamu", "I", "E" }, + { "txm", null, null, null, null, "Tomini", "I", "L" }, + { "txo", null, null, null, null, "Toto", "I", "L" }, + { "tzm", null, null, null, null, "Central Atlas Tamazight", "I", "L" }, + { "tzl", null, null, null, null, "Talossan", "I", "C" }, + { "tzj", null, null, null, null, "Tz'utujil", "I", "L" }, + { "tzh", null, null, null, null, "Tzeltal", "I", "L" }, + { "tza", null, null, null, null, "Tanzanian Sign Language", "I", "L" }, + { "tyz", null, null, null, null, "Tày", "I", "L" }, + { "tyx", null, null, null, null, "Teke-Tyee", "I", "L" }, + { "tyv", null, null, "tyv", "tyv", "Tuvinian", "I", "L" }, + { "tyu", null, null, null, null, "Kua", "I", "L" }, + { "tyt", null, null, null, null, "Tày Tac", "I", "L" }, + { "tys", null, null, null, null, "Tày Sa Pa", "I", "L" }, + { "tyr", null, null, null, null, "Tai Daeng", "I", "L" }, + { "typ", null, null, null, null, "Thaypan", "I", "E" }, + { "tyn", null, null, null, null, "Kombai", "I", "L" }, + { "tyl", null, null, null, null, "Thu Lao", "I", "L" }, + { "tyj", null, null, null, null, "Tai Do", "I", "L" }, + { "tyi", null, null, null, null, "Teke-Tsaayi", "I", "L" }, + { "tyh", null, null, null, null, "O'du", "I", "L" }, + { "tye", null, null, null, null, "Kyanga", "I", "L" }, + { "tya", null, null, null, null, "Tauya", "I", "L" }, + { "txy", null, null, null, null, "Tanosy Malagasy", "I", "L" }, + { "txx", null, null, null, null, "Tatana", "I", "L" }, + { "txu", null, null, null, null, "Kayapó", "I", "L" }, + { "txt", null, null, null, null, "Citak", "I", "L" }, + { "txs", null, null, null, null, "Tonsea", "I", "L" }, + { "txr", null, null, null, null, "Tartessian", "I", "A" }, + { "txq", null, null, null, null, "Tii", "I", "L" }, + { "txn", null, null, null, null, "West Tarangan", "I", "L" }, + { "twa", null, null, null, null, "Twana", "I", "E" }, + { "umg", null, null, null, null, "Morrobalama", "I", "E" }, + { "umm", null, null, null, null, "Umon", "I", "L" }, + { "ved", null, null, null, null, "Veddah", "I", "L" }, + { "vec", null, null, null, null, "Venetian", "I", "L" }, + { "vbk", null, null, null, null, "Southwestern Bontok", "I", "L" }, + { "vbb", null, null, null, null, "Southeast Babar", "I", "L" }, + { "vay", null, null, null, null, "Wayu", "I", "L" }, + { "vav", null, null, null, null, "Varli", "I", "L" }, + { "vau", null, null, null, null, "Vanuma", "I", "L" }, + { "vas", null, null, null, null, "Vasavi", "I", "L" }, + { "var", null, null, null, null, "Huarijio", "I", "L" }, + { "vap", null, null, null, null, "Vaiphei", "I", "L" }, + { "vao", null, null, null, null, "Vao", "I", "L" }, + { "van", null, null, null, null, "Valman", "I", "L" }, + { "vel", null, null, null, null, "Veluws", "I", "L" }, + { "vam", null, null, null, null, "Vanimo", "I", "L" }, + { "vaj", null, null, null, null, "Sekele", "I", "L" }, + { "vai", null, null, "vai", "vai", "Vai", "I", "L" }, + { "vah", null, null, null, null, "Varhadi-Nagpuri", "I", "L" }, + { "vag", null, null, null, null, "Vagla", "I", "L" }, + { "vaf", null, null, null, null, "Vafsi", "I", "L" }, + { "vae", null, null, null, null, "Vale", "I", "L" }, + { "vaa", null, null, null, null, "Vaagri Booli", "I", "L" }, + { "uzs", null, null, null, null, "Southern Uzbek", "I", "L" }, + { "uzn", null, null, null, null, "Northern Uzbek", "I", "L" }, + { "uzb", null, "uz", "uzb", "uzb", "Uzbek", "M", "L" }, + { "uya", null, null, null, null, "Doko-Uyanga", "I", "L" }, + { "uwa", null, null, null, null, "Kuku-Uwanh", "I", "L" }, + { "val", null, null, null, null, "Vehes", "I", "L" }, + { "vem", null, null, null, null, "Vemgo-Mabas", "I", "L" }, + { "ven", null, "ve", "ven", "ven", "Venda", "I", "L" }, + { "veo", null, null, null, null, "Ventureño", "I", "E" }, + { "vma", null, null, null, null, "Martuyhunira", "I", "L" }, + { "vls", null, null, null, null, "Vlaams", "I", "L" }, + { "vlp", null, null, null, null, "Valpei", "I", "L" }, + { "vku", null, null, null, null, "Kurrama", "I", "L" }, + { "vkt", null, null, null, null, "Tenggarong Kutai Malay", "I", "L" }, + { "vkp", null, null, null, null, "Korlai Creole Portuguese", "I", "L" }, + { "vko", null, null, null, null, "Kodeoha", "I", "L" }, + { "vkm", null, null, null, null, "Kamakan", "I", "E" }, + { "vkl", null, null, null, null, "Kulisusu", "I", "L" }, + { "vkk", null, null, null, null, "Kaur", "I", "L" }, + { "vkj", null, null, null, null, "Kujarge", "I", "L" }, + { "vki", null, null, null, null, "Ija-Zuba", "I", "L" }, + { "vka", null, null, null, null, "Kariyarra", "I", "E" }, + { "viv", null, null, null, null, "Iduna", "I", "L" }, + { "vit", null, null, null, null, "Viti", "I", "L" }, + { "vis", null, null, null, null, "Vishavan", "I", "L" }, + { "vin", null, null, null, null, "Vinza", "I", "L" }, + { "vil", null, null, null, null, "Vilela", "I", "L" }, + { "vig", null, null, null, null, "Viemo", "I", "L" }, + { "vif", null, null, null, null, "Vili", "I", "L" }, + { "vie", null, "vi", "vie", "vie", "Vietnamese", "I", "L" }, + { "vid", null, null, null, null, "Vidunda", "I", "L" }, + { "vic", null, null, null, null, "Virgin Islands Creole English", "I", "L" }, + { "vgt", null, null, null, null, "Vlaamse Gebarentaal", "I", "L" }, + { "vgr", null, null, null, null, "Vaghri", "I", "L" }, + { "ver", null, null, null, null, "Mom Jango", "I", "L" }, + { "vep", null, null, null, null, "Veps", "I", "L" }, + { "uvl", null, null, null, null, "Lote", "I", "L" }, + { "uvh", null, null, null, null, "Uri", "I", "L" }, + { "uve", null, null, null, null, "West Uvean", "I", "L" }, + { "uuu", null, null, null, null, "U", "I", "L" }, + { "urh", null, null, null, null, "Urhobo", "I", "L" }, + { "urg", null, null, null, null, "Urigina", "I", "L" }, + { "urf", null, null, null, null, "Uradhi", "I", "E" }, + { "ure", null, null, null, null, "Uru", "I", "L" }, + { "urd", null, "ur", "urd", "urd", "Urdu", "I", "L" }, + { "urc", null, null, null, null, "Urningangg", "I", "E" }, + { "urb", null, null, null, null, "Urubú-Kaapor", "I", "L" }, + { "ura", null, null, null, null, "Urarina", "I", "L" }, + { "upv", null, null, null, null, "Uripiv-Wala-Rano-Atchin", "I", "L" }, + { "upi", null, null, null, null, "Umeda", "I", "L" }, + { "unz", null, null, null, null, "Unde Kaili", "I", "L" }, + { "unx", null, null, null, null, "Munda", "I", "L" }, + { "unu", null, null, null, null, "Unubahe", "I", "L" }, + { "unr", null, null, null, null, "Mundari", "I", "L" }, + { "unn", null, null, null, null, "Kurnai", "I", "L" }, + { "unm", null, null, null, null, "Unami", "I", "E" }, + { "unk", null, null, null, null, "Enawené-Nawé", "I", "L" }, + { "ung", null, null, null, null, "Ngarinyin", "I", "L" }, + { "une", null, null, null, null, "Uneme", "I", "L" }, + { "und", null, null, "und", "und", "Undetermined", "S", "S" }, + { "una", null, null, null, null, "North Watut", "I", "L" }, + { "umu", null, null, null, null, "Munsee", "I", "L" }, + { "ums", null, null, null, null, "Pendau", "I", "L" }, + { "umr", null, null, null, null, "Umbugarla", "I", "E" }, + { "ump", null, null, null, null, "Umpila", "I", "L" }, + { "umo", null, null, null, null, "Umotína", "I", "E" }, + { "umn", null, null, null, null, "Makyan Naga", "I", "L" }, + { "uri", null, null, null, null, "Urim", "I", "L" }, + { "umi", null, null, null, null, "Ukit", "I", "L" }, + { "urk", null, null, null, null, "Urak Lawoi'", "I", "L" }, + { "urm", null, null, null, null, "Urapmin", "I", "L" }, + { "uur", null, null, null, null, "Ura (Vanuatu)", "I", "L" }, + { "uun", null, null, null, null, "Kulon-Pazeh", "I", "L" }, + { "uum", null, null, null, null, "Urum", "I", "L" }, + { "utu", null, null, null, null, "Utu", "I", "L" }, + { "utr", null, null, null, null, "Etulo", "I", "L" }, + { "utp", null, null, null, null, "Amba (Solomon Islands)", "I", "L" }, + { "uth", null, null, null, null, "ut-Hun", "I", "L" }, + { "ute", null, null, null, null, "Ute-Southern Paiute", "I", "L" }, + { "uta", null, null, null, null, "Otank", "I", "L" }, + { "usu", null, null, null, null, "Uya", "I", "L" }, + { "uss", null, null, null, null, "us-Saare", "I", "L" }, + { "usp", null, null, null, null, "Uspanteco", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "usk", null, null, null, null, "Usaghade", "I", "L" }, + { "usi", null, null, null, null, "Usui", "I", "L" }, + { "ush", null, null, null, null, "Ushojo", "I", "L" }, + { "usa", null, null, null, null, "Usarufa", "I", "L" }, + { "urz", null, null, null, null, "Uru-Eu-Wau-Wau", "I", "L" }, + { "ury", null, null, null, null, "Orya", "I", "L" }, + { "urx", null, null, null, null, "Urimo", "I", "L" }, + { "urw", null, null, null, null, "Sop", "I", "L" }, + { "urv", null, null, null, null, "Uruava", "I", "E" }, + { "uru", null, null, null, null, "Urumi", "I", "E" }, + { "urt", null, null, null, null, "Urat", "I", "L" }, + { "urr", null, null, null, null, "Lehalurup", "I", "L" }, + { "urp", null, null, null, null, "Uru-Pa-In", "I", "L" }, + { "uro", null, null, null, null, "Ura (Papua New Guinea)", "I", "L" }, + { "urn", null, null, null, null, "Uruangnirin", "I", "L" }, + { "url", null, null, null, null, "Urali", "I", "L" }, + { "vmc", null, null, null, null, "Juxtlahuaca Mixtec", "I", "L" }, + { "tvy", null, null, null, null, "Timor Pidgin", "I", "E" }, + { "tvw", null, null, null, null, "Sedoa", "I", "L" }, + { "tom", null, null, null, null, "Tombulu", "I", "L" }, + { "tol", null, null, null, null, "Tolowa", "I", "E" }, + { "toj", null, null, null, null, "Tojolabal", "I", "L" }, + { "toi", null, null, null, null, "Tonga (Zambia)", "I", "L" }, + { "toh", null, null, null, null, "Gitonga", "I", "L" }, + { "tog", null, null, "tog", "tog", "Tonga (Nyasa)", "I", "L" }, + { "tof", null, null, null, null, "Gizrra", "I", "L" }, + { "tod", null, null, null, null, "Toma", "I", "L" }, + { "toc", null, null, null, null, "Coyutla Totonac", "I", "L" }, + { "tob", null, null, null, null, "Toba", "I", "L" }, + { "tnz", null, null, null, null, "Ten'edn", "I", "L" }, + { "tny", null, null, null, null, "Tongwe", "I", "L" }, + { "ton", null, "to", "ton", "ton", "Tonga (Tonga Islands)", "I", "L" }, + { "tnx", null, null, null, null, "Tanema", "I", "L" }, + { "tnv", null, null, null, null, "Tangchangya", "I", "L" }, + { "tnu", null, null, null, null, "Tay Khang", "I", "L" }, + { "tnt", null, null, null, null, "Tontemboan", "I", "L" }, + { "tns", null, null, null, null, "Tenis", "I", "L" }, + { "tnr", null, null, null, null, "Ménik", "I", "L" }, + { "tnq", null, null, null, null, "Taino", "I", "E" }, + { "tnp", null, null, null, null, "Whitesands", "I", "L" }, + { "tno", null, null, null, null, "Toromono", "I", "L" }, + { "tnn", null, null, null, null, "North Tanna", "I", "L" }, + { "tnm", null, null, null, null, "Tabla", "I", "L" }, + { "tnl", null, null, null, null, "Lenakel", "I", "L" }, + { "tnk", null, null, null, null, "Kwamera", "I", "L" }, + { "tnw", null, null, null, null, "Tonsawang", "I", "L" }, + { "too", null, null, null, null, "Xicotepec De Juárez Totonac", "I", "L" }, + { "top", null, null, null, null, "Papantla Totonac", "I", "L" }, + { "toq", null, null, null, null, "Toposa", "I", "L" }, + { "tpw", null, null, null, null, "Tupí", "I", "E" }, + { "tpv", null, null, null, null, "Tanapag", "I", "L" }, + { "tpu", null, null, null, null, "Tampuan", "I", "L" }, + { "tpt", null, null, null, null, "Tlachichilco Tepehua", "I", "L" }, + { "tpr", null, null, null, null, "Tuparí", "I", "L" }, + { "tpq", null, null, null, null, "Tukpa", "I", "L" }, + { "tpp", null, null, null, null, "Pisaflores Tepehua", "I", "L" }, + { "tpo", null, null, null, null, "Tai Pao", "I", "L" }, + { "tpn", null, null, null, null, "Tupinambá", "I", "E" }, + { "tpm", null, null, null, null, "Tampulma", "I", "L" }, + { "tpl", null, null, null, null, "Tlacoapa Me'phaa", "I", "L" }, + { "tpk", null, null, null, null, "Tupinikin", "I", "E" }, + { "tpj", null, null, null, null, "Tapieté", "I", "L" }, + { "tpi", null, null, "tpi", "tpi", "Tok Pisin", "I", "L" }, + { "tpg", null, null, null, null, "Kula", "I", "L" }, + { "tpf", null, null, null, null, "Tarpia", "I", "L" }, + { "tpe", null, null, null, null, "Tippera", "I", "L" }, + { "tpc", null, null, null, null, "Azoyú Me'phaa", "I", "L" }, + { "tpa", null, null, null, null, "Taupota", "I", "L" }, + { "toz", null, null, null, null, "To", "I", "L" }, + { "toy", null, null, null, null, "Topoiyo", "I", "L" }, + { "tox", null, null, null, null, "Tobian", "I", "L" }, + { "tow", null, null, null, null, "Jemez", "I", "L" }, + { "tov", null, null, null, null, "Upper Taromi", "I", "L" }, + { "tou", null, null, null, null, "Tho", "I", "L" }, + { "tos", null, null, null, null, "Highland Totonac", "I", "L" }, + { "tor", null, null, null, null, "Togbo-Vara Banda", "I", "L" }, + { "tni", null, null, null, null, "Tandia", "I", "L" }, + { "tnh", null, null, null, null, "Maiani", "I", "L" }, + { "tng", null, null, null, null, "Tobanga", "I", "L" }, + { "tnd", null, null, null, null, "Angosturas Tunebo", "I", "L" }, + { "tlt", null, null, null, null, "Sou Nama", "I", "L" }, + { "tls", null, null, null, null, "Tambotalo", "I", "L" }, + { "tlr", null, null, null, null, "Talise", "I", "L" }, + { "tlq", null, null, null, null, "Tai Loi", "I", "L" }, + { "tlp", null, null, null, null, "Filomena Mata-Coahuitlán Totonac", "I", "L" }, + { "tlo", null, null, null, null, "Talodi", "I", "L" }, + { "tln", null, null, null, null, "Talondo'", "I", "L" }, + { "tlm", null, null, null, null, "Tolomako", "I", "L" }, + { "tll", null, null, null, null, "Tetela", "I", "L" }, + { "tlk", null, null, null, null, "Taloki", "I", "L" }, + { "tlj", null, null, null, null, "Talinga-Bwisi", "I", "L" }, + { "tli", null, null, "tli", "tli", "Tlingit", "I", "L" }, + { "tlh", null, null, "tlh", "tlh", "Klingon", "I", "C" }, + { "tlg", null, null, null, null, "Tofanma", "I", "L" }, + { "tlf", null, null, null, null, "Telefol", "I", "L" }, + { "tld", null, null, null, null, "Talaud", "I", "L" }, + { "tlc", null, null, null, null, "Yecuatla Totonac", "I", "L" }, + { "tlb", null, null, null, null, "Tobelo", "I", "L" }, + { "tla", null, null, null, null, "Southwestern Tepehuan", "I", "L" }, + { "tkz", null, null, null, null, "Takua", "I", "L" }, + { "tkx", null, null, null, null, "Tangko", "I", "L" }, + { "tkw", null, null, null, null, "Teanu", "I", "L" }, + { "tkv", null, null, null, null, "Mur Pano", "I", "L" }, + { "tku", null, null, null, null, "Upper Necaxa Totonac", "I", "L" }, + { "tkt", null, null, null, null, "Kathoriya Tharu", "I", "L" }, + { "tks", null, null, null, null, "Takestani", "I", "L" }, + { "tkr", null, null, null, null, "Tsakhur", "I", "L" }, + { "tlu", null, null, null, null, "Tulehu", "I", "L" }, + { "tpx", null, null, null, null, "Acatepec Me'phaa", "I", "L" }, + { "tlv", null, null, null, null, "Taliabu", "I", "L" }, + { "tly", null, null, null, null, "Talysh", "I", "L" }, + { "tnc", null, null, null, null, "Tanimuca-Retuarã", "I", "L" }, + { "tnb", null, null, null, null, "Western Tunebo", "I", "L" }, + { "tna", null, null, null, null, "Tacana", "I", "L" }, + { "tmz", null, null, null, null, "Tamanaku", "I", "E" }, + { "tmy", null, null, null, null, "Tami", "I", "L" }, + { "tmw", null, null, null, null, "Temuan", "I", "L" }, + { "tmv", null, null, null, null, "Tembo (Motembo)", "I", "L" }, + { "tmu", null, null, null, null, "Iau", "I", "L" }, + { "tmt", null, null, null, null, "Tasmate", "I", "L" }, + { "tms", null, null, null, null, "Tima", "I", "L" }, + { "tmr", null, null, null, null, "Jewish Babylonian Aramaic (ca. 200-1200 CE)", "I", "E" }, + { "tmq", null, null, null, null, "Tumleo", "I", "L" }, + { "tmo", null, null, null, null, "Temoq", "I", "L" }, + { "tmn", null, null, null, null, "Taman (Indonesia)", "I", "L" }, + { "tmm", null, null, null, null, "Tai Thanh", "I", "L" }, + { "tml", null, null, null, null, "Tamnim Citak", "I", "L" }, + { "tmk", null, null, null, null, "Northwestern Tamang", "I", "L" }, + { "tmj", null, null, null, null, "Samarokena", "I", "L" }, + { "tmi", null, null, null, null, "Tutuba", "I", "L" }, + { "tmh", null, null, "tmh", "tmh", "Tamashek", "M", "L" }, + { "tmg", null, null, null, null, "Ternateño", "I", "E" }, + { "tmf", null, null, null, null, "Toba-Maskoy", "I", "L" }, + { "tme", null, null, null, null, "Tremembé", "I", "E" }, + { "tmd", null, null, null, null, "Haruai", "I", "L" }, + { "tmc", null, null, null, null, "Tumak", "I", "L" }, + { "tmb", null, null, null, null, "Katbol", "I", "L" }, + { "tma", null, null, null, null, "Tama (Chad)", "I", "L" }, + { "tlx", null, null, null, null, "Khehek", "I", "L" }, + { "tvx", null, null, null, null, "Taivoan", "I", "E" }, + { "tpy", null, null, null, null, "Trumai", "I", "L" }, + { "tqb", null, null, null, null, "Tembé", "I", "L" }, + { "tuc", null, null, null, null, "Mutu", "I", "L" }, + { "tub", null, null, null, null, "Tübatulabal", "I", "E" }, + { "tua", null, null, null, null, "Wiarumus", "I", "L" }, + { "ttz", null, null, null, null, "Tsum", "I", "L" }, + { "tty", null, null, null, null, "Sikaritai", "I", "L" }, + { "ttw", null, null, null, null, "Long Wat", "I", "L" }, + { "ttv", null, null, null, null, "Titan", "I", "L" }, + { "ttu", null, null, null, null, "Torau", "I", "L" }, + { "ttt", null, null, null, null, "Muslim Tat", "I", "L" }, + { "tts", null, null, null, null, "Northeastern Thai", "I", "L" }, + { "ttr", null, null, null, null, "Tera", "I", "L" }, + { "ttq", null, null, null, null, "Tawallammat Tamajaq", "I", "L" }, + { "tud", null, null, null, null, "Tuxá", "I", "E" }, + { "ttp", null, null, null, null, "Tombelala", "I", "L" }, + { "ttn", null, null, null, null, "Towei", "I", "L" }, + { "ttm", null, null, null, null, "Northern Tutchone", "I", "L" }, + { "ttl", null, null, null, null, "Totela", "I", "L" }, + { "ttk", null, null, null, null, "Totoro", "I", "L" }, + { "ttj", null, null, null, null, "Tooro", "I", "L" }, + { "tti", null, null, null, null, "Tobati", "I", "L" }, + { "tth", null, null, null, null, "Upper Ta'oih", "I", "L" }, + { "ttg", null, null, null, null, "Tutong", "I", "L" }, + { "ttf", null, null, null, null, "Tuotomb", "I", "L" }, + { "tte", null, null, null, null, "Bwanabwana", "I", "L" }, + { "ttd", null, null, null, null, "Tauade", "I", "L" }, + { "ttc", null, null, null, null, "Tektiteko", "I", "L" }, + { "tto", null, null, null, null, "Lower Ta'oih", "I", "L" }, + { "tue", null, null, null, null, "Tuyuca", "I", "L" }, + { "tuf", null, null, null, null, "Central Tunebo", "I", "L" }, + { "tug", null, null, null, null, "Tunia", "I", "L" }, + { "tvu", null, null, null, null, "Tunen", "I", "L" }, + { "tvt", null, null, null, null, "Tutsa Naga", "I", "L" }, + { "tvs", null, null, null, null, "Taveta", "I", "L" }, + { "tvo", null, null, null, null, "Tidore", "I", "L" }, + { "tvn", null, null, null, null, "Tavoyan", "I", "L" }, + { "tvm", null, null, null, null, "Tela-Masbuar", "I", "L" }, + { "tvl", null, null, "tvl", "tvl", "Tuvalu", "I", "L" }, + { "tvk", null, null, null, null, "Southeast Ambrym", "I", "L" }, + { "tve", null, null, null, null, "Te'un", "I", "L" }, + { "tvd", null, null, null, null, "Tsuvadi", "I", "L" }, + { "tva", null, null, null, null, "Vaghua", "I", "L" }, + { "tuz", null, null, null, null, "Turka", "I", "L" }, + { "tuy", null, null, null, null, "Tugen", "I", "L" }, + { "tux", null, null, null, null, "Tuxináwa", "I", "E" }, + { "tuv", null, null, null, null, "Turkana", "I", "L" }, + { "tuu", null, null, null, null, "Tututni", "I", "L" }, + { "tus", null, null, null, null, "Tuscarora", "I", "L" }, + { "tur", null, "tr", "tur", "tur", "Turkish", "I", "L" }, + { "tuq", null, null, null, null, "Tedaga", "I", "L" }, + { "tuo", null, null, null, null, "Tucano", "I", "L" }, + { "tun", null, null, null, null, "Tunica", "I", "L" }, + { "tum", null, null, "tum", "tum", "Tumbuka", "I", "L" }, + { "tul", null, null, null, null, "Tula", "I", "L" }, + { "tuk", null, "tk", "tuk", "tuk", "Turkmen", "I", "L" }, + { "tuj", null, null, null, null, "Tugutil", "I", "L" }, + { "tui", null, null, null, null, "Tupuri", "I", "L" }, + { "tuh", null, null, null, null, "Taulil", "I", "L" }, + { "ttb", null, null, null, null, "Gaa", "I", "L" }, + { "tta", null, null, null, null, "Tutelo", "I", "E" }, + { "tsz", null, null, null, null, "Purepecha", "I", "L" }, + { "tsy", null, null, null, null, "Tebul Sign Language", "I", "L" }, + { "trr", null, null, null, null, "Taushiro", "I", "L" }, + { "trq", null, null, null, null, "San Martín Itunyoso Triqui", "I", "L" }, + { "trp", null, null, null, null, "Kok Borok", "I", "L" }, + { "tro", null, null, null, null, "Tarao Naga", "I", "L" }, + { "trn", null, null, null, null, "Trinitario", "I", "L" }, + { "trm", null, null, null, null, "Tregami", "I", "L" }, + { "trl", null, null, null, null, "Traveller Scottish", "I", "L" }, + { "trj", null, null, null, null, "Toram", "I", "L" }, + { "tri", null, null, null, null, "Trió", "I", "L" }, + { "trh", null, null, null, null, "Turaka", "I", "L" }, + { "trg", null, null, null, null, "Lishán Didán", "I", "L" }, + { "trf", null, null, null, null, "Trinidadian Creole English", "I", "L" }, + { "tre", null, null, null, null, "East Tarangan", "I", "L" }, + { "trd", null, null, null, null, "Turi", "I", "L" }, + { "trc", null, null, null, null, "Copala Triqui", "I", "L" }, + { "trb", null, null, null, null, "Terebu", "I", "L" }, + { "tra", null, null, null, null, "Tirahi", "I", "L" }, + { "tqw", null, null, null, null, "Tonkawa", "I", "E" }, + { "tqu", null, null, null, null, "Touo", "I", "L" }, + { "tqt", null, null, null, null, "Western Totonac", "I", "L" }, + { "tqr", null, null, null, null, "Torona", "I", "E" }, + { "tqq", null, null, null, null, "Tunni", "I", "L" }, + { "tqp", null, null, null, null, "Tomoip", "I", "L" }, + { "tqo", null, null, null, null, "Toaripi", "I", "L" }, + { "tqn", null, null, null, null, "Tenino", "I", "L" }, + { "tqm", null, null, null, null, "Turumsa", "I", "L" }, + { "tql", null, null, null, null, "Lehali", "I", "L" }, + { "trs", null, null, null, null, "Chicahuaxtla Triqui", "I", "L" }, + { "tpz", null, null, null, null, "Tinputz", "I", "L" }, + { "trt", null, null, null, null, "Tunggare", "I", "L" }, + { "trv", null, null, null, null, "Taroko", "I", "L" }, + { "tsx", null, null, null, null, "Mubami", "I", "L" }, + { "tsw", null, null, null, null, "Tsishingini", "I", "L" }, + { "tsv", null, null, null, null, "Tsogo", "I", "L" }, + { "tsu", null, null, null, null, "Tsou", "I", "L" }, + { "tst", null, null, null, null, "Tondi Songway Kiini", "I", "L" }, + { "tss", null, null, null, null, "Taiwan Sign Language", "I", "L" }, + { "tsr", null, null, null, null, "Akei", "I", "L" }, + { "tsq", null, null, null, null, "Thai Sign Language", "I", "L" }, + { "tsp", null, null, null, null, "Northern Toussian", "I", "L" }, + { "tso", null, "ts", "tso", "tso", "Tsonga", "I", "L" }, + { "tsn", null, "tn", "tsn", "tsn", "Tswana", "I", "L" }, + { "tsm", null, null, null, null, "Turkish Sign Language", "I", "L" }, + { "tsl", null, null, null, null, "Ts'ün-Lao", "I", "L" }, + { "tsk", null, null, null, null, "Tseku", "I", "L" }, + { "tsj", null, null, null, null, "Tshangla", "I", "L" }, + { "tsi", null, null, "tsi", "tsi", "Tsimshian", "I", "L" }, + { "tsh", null, null, null, null, "Tsuvan", "I", "L" }, + { "tsg", null, null, null, null, "Tausug", "I", "L" }, + { "tse", null, null, null, null, "Tunisian Sign Language", "I", "L" }, + { "tsd", null, null, null, null, "Tsakonian", "I", "L" }, + { "tsc", null, null, null, null, "Tswa", "I", "L" }, + { "tsb", null, null, null, null, "Tsamai", "I", "L" }, + { "tsa", null, null, null, null, "Tsaangi", "I", "L" }, + { "trz", null, null, null, null, "Torá", "I", "E" }, + { "try", null, null, null, null, "Turung", "I", "E" }, + { "trx", null, null, null, null, "Tringgus-Sembaan Bidayuh", "I", "L" }, + { "trw", null, null, null, null, "Torwali", "I", "L" }, + { "tru", null, null, null, null, "Turoyo", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "zza", null, null, "zza", "zza", "Zaza", "M", "L" }, + { "mfg", null, null, null, null, "Mogofin", "I", "L" }, + { "mfe", null, null, null, null, "Morisyen", "I", "L" }, + { "cmn", null, null, null, null, "Mandarin Chinese", "I", "L" }, + { "cmm", null, null, null, null, "Michigamea", "I", "E" }, + { "cml", null, null, null, null, "Campalagian", "I", "L" }, + { "cmi", null, null, null, null, "Emberá-Chamí", "I", "L" }, + { "cmg", null, null, null, null, "Classical Mongolian", "I", "H" }, + { "cme", null, null, null, null, "Cerma", "I", "L" }, + { "cma", null, null, null, null, "Maa", "I", "L" }, + { "cly", null, null, null, null, "Eastern Highland Chatino", "I", "L" }, + { "clw", null, null, null, null, "Chulym", "I", "L" }, + { "clu", null, null, null, null, "Caluyanun", "I", "L" }, + { "clt", null, null, null, null, "Lautu Chin", "I", "L" }, + { "clo", null, null, null, null, "Lowland Oaxaca Chontal", "I", "L" }, + { "cmo", null, null, null, null, "Central Mnong", "I", "L" }, + { "clm", null, null, null, null, "Clallam", "I", "L" }, + { "clk", null, null, null, null, "Idu-Mishmi", "I", "L" }, + { "clj", null, null, null, null, "Laitu Chin", "I", "L" }, + { "cli", null, null, null, null, "Chakali", "I", "L" }, + { "clh", null, null, null, null, "Chilisso", "I", "L" }, + { "cle", null, null, null, null, "Lealao Chinantec", "I", "L" }, + { "cld", null, null, null, null, "Chaldean Neo-Aramaic", "I", "L" }, + { "clc", null, null, null, null, "Chilcotin", "I", "L" }, + { "cla", null, null, null, null, "Ron", "I", "L" }, + { "ckz", null, null, null, null, "Cakchiquel-Quiché Mixed Language", "I", "L" }, + { "cky", null, null, null, null, "Cakfem-Mushere", "I", "L" }, + { "ckx", null, null, null, null, "Caka", "I", "L" }, + { "ckv", null, null, null, null, "Kavalan", "I", "L" }, + { "cll", null, null, null, null, "Chala", "I", "L" }, + { "cmr", null, null, null, null, "Mro-Khimi Chin", "I", "L" }, + { "cms", null, null, null, null, "Messapic", "I", "A" }, + { "cmt", null, null, null, null, "Camtho", "I", "L" }, + { "com", null, null, null, null, "Comanche", "I", "L" }, + { "col", null, null, null, null, "Columbia-Wenatchi", "I", "L" }, + { "cok", null, null, null, null, "Santa Teresa Cora", "I", "L" }, + { "coj", null, null, null, null, "Cochimi", "I", "E" }, + { "coh", null, null, null, null, "Chonyi-Dzihana-Kauma", "I", "L" }, + { "cog", null, null, null, null, "Chong", "I", "L" }, + { "cof", null, null, null, null, "Colorado", "I", "L" }, + { "coe", null, null, null, null, "Koreguaje", "I", "L" }, + { "cod", null, null, null, null, "Cocama-Cocamilla", "I", "L" }, + { "coc", null, null, null, null, "Cocopa", "I", "L" }, + { "cob", null, null, null, null, "Chicomuceltec", "I", "E" }, + { "coa", null, null, null, null, "Cocos Islands Malay", "I", "L" }, + { "cnx", null, null, null, null, "Middle Cornish", "I", "H" }, + { "cnw", null, null, null, null, "Ngawn Chin", "I", "L" }, + { "cnu", null, null, null, null, "Chenoua", "I", "L" }, + { "cnt", null, null, null, null, "Tepetotutla Chinantec", "I", "L" }, + { "cns", null, null, null, null, "Central Asmat", "I", "L" }, + { "cnr", null, null, "cnr", "cnr", "Montenegrin", "I", "L" }, + { "cno", null, null, null, null, "Con", "I", "L" }, + { "cnl", null, null, null, null, "Lalana Chinantec", "I", "L" }, + { "cnk", null, null, null, null, "Khumi Chin", "I", "L" }, + { "cni", null, null, null, null, "Asháninka", "I", "L" }, + { "cnh", null, null, null, null, "Hakha Chin", "I", "L" }, + { "cng", null, null, null, null, "Northern Qiang", "I", "L" }, + { "cnc", null, null, null, null, "Côông", "I", "L" }, + { "cnb", null, null, null, null, "Chinbon Chin", "I", "L" }, + { "cna", null, null, null, null, "Changthang", "I", "L" }, + { "cku", null, null, null, null, "Koasati", "I", "L" }, + { "con", null, null, null, null, "Cofán", "I", "L" }, + { "ckt", null, null, null, null, "Chukot", "I", "L" }, + { "ckr", null, null, null, null, "Kairak", "I", "L" }, + { "chz", null, null, null, null, "Ozumacín Chinantec", "I", "L" }, + { "chy", null, null, "chy", "chy", "Cheyenne", "I", "L" }, + { "chx", null, null, null, null, "Chantyal", "I", "L" }, + { "chw", null, null, null, null, "Chuwabu", "I", "L" }, + { "chv", null, "cv", "chv", "chv", "Chuvash", "I", "L" }, + { "chu", null, "cu", "chu", "chu", "Church Slavic", "I", "A" }, + { "cht", null, null, null, null, "Cholón", "I", "E" }, + { "chr", null, null, "chr", "chr", "Cherokee", "I", "L" }, + { "chq", null, null, null, null, "Quiotepec Chinantec", "I", "L" }, + { "chp", null, null, "chp", "chp", "Chipewyan", "I", "L" }, + { "cho", null, null, "cho", "cho", "Choctaw", "I", "L" }, + { "chn", null, null, "chn", "chn", "Chinook jargon", "I", "L" }, + { "cia", null, null, null, null, "Cia-Cia", "I", "L" }, + { "chm", null, null, "chm", "chm", "Mari (Russia)", "M", "L" }, + { "chk", null, null, "chk", "chk", "Chuukese", "I", "L" }, + { "chj", null, null, null, null, "Ojitlán Chinantec", "I", "L" }, + { "chh", null, null, null, null, "Chinook", "I", "E" }, + { "chg", null, null, "chg", "chg", "Chagatai", "I", "E" }, + { "chf", null, null, null, null, "Tabasco Chontal", "I", "L" }, + { "che", null, "ce", "che", "che", "Chechen", "I", "L" }, + { "chd", null, null, null, null, "Highland Oaxaca Chontal", "I", "L" }, + { "chc", null, null, null, null, "Catawba", "I", "E" }, + { "chb", null, null, "chb", "chb", "Chibcha", "I", "E" }, + { "cha", null, "ch", "cha", "cha", "Chamorro", "I", "L" }, + { "cgk", null, null, null, null, "Chocangacakha", "I", "L" }, + { "cgg", null, null, null, null, "Chiga", "I", "L" }, + { "chl", null, null, null, null, "Cahuilla", "I", "L" }, + { "cib", null, null, null, null, "Ci Gbe", "I", "L" }, + { "cic", null, null, null, null, "Chickasaw", "I", "L" }, + { "cid", null, null, null, null, "Chimariko", "I", "E" }, + { "ckq", null, null, null, null, "Kajakse", "I", "L" }, + { "cko", null, null, null, null, "Anufo", "I", "L" }, + { "ckn", null, null, null, null, "Kaang Chin", "I", "L" }, + { "ckl", null, null, null, null, "Cibak", "I", "L" }, + { "ckh", null, null, null, null, "Chak", "I", "L" }, + { "ckb", null, null, null, null, "Central Kurdish", "I", "L" }, + { "cjy", null, null, null, null, "Jinyu Chinese", "I", "L" }, + { "cjv", null, null, null, null, "Chuave", "I", "L" }, + { "cjs", null, null, null, null, "Shor", "I", "L" }, + { "cjp", null, null, null, null, "Cabécar", "I", "L" }, + { "cjo", null, null, null, null, "Ashéninka Pajonal", "I", "L" }, + { "cjn", null, null, null, null, "Chenapian", "I", "L" }, + { "cjm", null, null, null, null, "Eastern Cham", "I", "L" }, + { "cjk", null, null, null, null, "Chokwe", "I", "L" }, + { "cji", null, null, null, null, "Chamalal", "I", "L" }, + { "cjh", null, null, null, null, "Upper Chehalis", "I", "E" }, + { "cje", null, null, null, null, "Chru", "I", "L" }, + { "cja", null, null, null, null, "Western Cham", "I", "L" }, + { "ciy", null, null, null, null, "Chaima", "I", "L" }, + { "ciw", null, null, null, null, "Chippewa", "I", "L" }, + { "cir", null, null, null, null, "Tiri", "I", "L" }, + { "cip", null, null, null, null, "Chiapanec", "I", "L" }, + { "cin", null, null, null, null, "Cinta Larga", "I", "L" }, + { "cim", null, null, null, null, "Cimbrian", "I", "L" }, + { "cik", null, null, null, null, "Chitkuli Kinnauri", "I", "L" }, + { "cih", null, null, null, null, "Chinali", "I", "L" }, + { "cie", null, null, null, null, "Cineni", "I", "L" }, + { "cks", null, null, null, null, "Tayo", "I", "L" }, + { "coo", null, null, null, null, "Comox", "I", "L" }, + { "cop", null, null, "cop", "cop", "Coptic", "I", "E" }, + { "coq", null, null, null, null, "Coquille", "I", "E" }, + { "cui", null, null, null, null, "Cuiba", "I", "L" }, + { "cuh", null, null, null, null, "Chuka", "I", "L" }, + { "cug", null, null, null, null, "Chungmboko", "I", "L" }, + { "cuc", null, null, null, null, "Usila Chinantec", "I", "L" }, + { "cub", null, null, null, null, "Cubeo", "I", "L" }, + { "cua", null, null, null, null, "Cua", "I", "L" }, + { "ctz", null, null, null, null, "Zacatepec Chatino", "I", "L" }, + { "ctu", null, null, null, null, "Chol", "I", "L" }, + { "ctt", null, null, null, null, "Wayanad Chetti", "I", "L" }, + { "cts", null, null, null, null, "Northern Catanduanes Bikol", "I", "L" }, + { "ctp", null, null, null, null, "Western Highland Chatino", "I", "L" }, + { "cto", null, null, null, null, "Emberá-Catío", "I", "L" }, + { "cuj", null, null, null, null, "Mashco Piro", "I", "L" }, + { "ctn", null, null, null, null, "Chhintange", "I", "L" }, + { "ctl", null, null, null, null, "Tlacoatzintepec Chinantec", "I", "L" }, + { "cth", null, null, null, null, "Thaiphum Chin", "I", "L" }, + { "ctg", null, null, null, null, "Chittagonian", "I", "L" }, + { "cte", null, null, null, null, "Tepinapa Chinantec", "I", "L" }, + { "ctd", null, null, null, null, "Tedim Chin", "I", "L" }, + { "ctc", null, null, null, null, "Chetco", "I", "E" }, + { "cta", null, null, null, null, "Tataltepec Chatino", "I", "L" }, + { "csz", null, null, null, null, "Coos", "I", "L" }, + { "csy", null, null, null, null, "Siyin Chin", "I", "L" }, + { "csw", null, null, null, null, "Swampy Cree", "I", "L" }, + { "csv", null, null, null, null, "Sumtu Chin", "I", "L" }, + { "cst", null, null, null, null, "Northern Ohlone", "I", "L" }, + { "ctm", null, null, null, null, "Chitimacha", "I", "E" }, + { "cuk", null, null, null, null, "San Blas Kuna", "I", "L" }, + { "cul", null, null, null, null, "Culina", "I", "L" }, + { "cuo", null, null, null, null, "Cumanagoto", "I", "E" }, + { "daa", null, null, null, null, "Dangaléat", "I", "L" }, + { "czt", null, null, null, null, "Zotung Chin", "I", "L" }, + { "czo", null, null, null, null, "Min Zhong Chinese", "I", "L" }, + { "czn", null, null, null, null, "Zenzontepec Chatino", "I", "L" }, + { "czk", null, null, null, null, "Knaanic", "I", "E" }, + { "czh", null, null, null, null, "Huizhou Chinese", "I", "L" }, + { "cyo", null, null, null, null, "Cuyonon", "I", "L" }, + { "cym", null, "cy", "wel", "cym", "Welsh", "I", "L" }, + { "cyb", null, null, null, null, "Cayubaba", "I", "E" }, + { "cya", null, null, null, null, "Nopala Chatino", "I", "L" }, + { "cwt", null, null, null, null, "Kuwaataay", "I", "L" }, + { "cwg", null, null, null, null, "Chewong", "I", "L" }, + { "cwe", null, null, null, null, "Kwere", "I", "L" }, + { "cwd", null, null, null, null, "Woods Cree", "I", "L" }, + { "cwb", null, null, null, null, "Maindo", "I", "L" }, + { "cwa", null, null, null, null, "Kabwa", "I", "L" }, + { "cvn", null, null, null, null, "Valle Nacional Chinantec", "I", "L" }, + { "cvg", null, null, null, null, "Chug", "I", "L" }, + { "cuy", null, null, null, null, "Cuitlatec", "I", "L" }, + { "cux", null, null, null, null, "Tepeuxila Cuicatec", "I", "L" }, + { "cuw", null, null, null, null, "Chukwa", "I", "L" }, + { "cuv", null, null, null, null, "Cuvok", "I", "L" }, + { "cuu", null, null, null, null, "Tai Ya", "I", "L" }, + { "cut", null, null, null, null, "Teutila Cuicatec", "I", "L" }, + { "cur", null, null, null, null, "Chhulung", "I", "L" }, + { "cuq", null, null, null, null, "Cun", "I", "L" }, + { "cup", null, null, null, null, "Cupeño", "I", "E" }, + { "css", null, null, null, null, "Southern Ohlone", "I", "E" }, + { "csr", null, null, null, null, "Costa Rican Sign Language", "I", "L" }, + { "csq", null, null, null, null, "Croatia Sign Language", "I", "L" }, + { "cso", null, null, null, null, "Sochiapam Chinantec", "I", "L" }, + { "crg", null, null, null, null, "Michif", "I", "L" }, + { "crf", null, null, null, null, "Caramanta", "I", "E" }, + { "cre", null, "cr", "cre", "cre", "Cree", "M", "L" }, + { "crd", null, null, null, null, "Coeur d'Alene", "I", "L" }, + { "crc", null, null, null, null, "Lonwolwol", "I", "L" }, + { "crb", null, null, null, null, "Island Carib", "I", "E" }, + { "cra", null, null, null, null, "Chara", "I", "L" }, + { "cqd", null, null, null, null, "Chuanqiandian Cluster Miao", "I", "L" }, + { "cpy", null, null, null, null, "South Ucayali Ashéninka", "I", "L" }, + { "cpx", null, null, null, null, "Pu-Xian Chinese", "I", "L" }, + { "cpu", null, null, null, null, "Pichis Ashéninka", "I", "L" }, + { "cps", null, null, null, null, "Capiznon", "I", "L" }, + { "cpo", null, null, null, null, "Kpeego", "I", "L" }, + { "cpn", null, null, null, null, "Cherepon", "I", "L" }, + { "cpi", null, null, null, null, "Chinese Pidgin English", "I", "L" }, + { "cpg", null, null, null, null, "Cappadocian Greek", "I", "E" }, + { "cpc", null, null, null, null, "Ajyíninka Apurucayali", "I", "L" }, + { "cpb", null, null, null, null, "Ucayali-Yurúa Ashéninka", "I", "L" }, + { "cpa", null, null, null, null, "Palantla Chinantec", "I", "L" }, + { "coz", null, null, null, null, "Chochotec", "I", "L" }, + { "cox", null, null, null, null, "Nanti", "I", "L" }, + { "cow", null, null, null, null, "Cowlitz", "I", "E" }, + { "cov", null, null, null, null, "Cao Miao", "I", "L" }, + { "cou", null, null, null, null, "Wamey", "I", "L" }, + { "cot", null, null, null, null, "Caquinte", "I", "L" }, + { "cos", null, "co", "cos", "cos", "Corsican", "I", "L" }, + { "cor", null, "kw", "cor", "cor", "Cornish", "I", "L" }, + { "crh", null, null, "crh", "crh", "Crimean Tatar", "I", "L" }, + { "cgc", null, null, null, null, "Kagayanen", "I", "L" }, + { "cri", null, null, null, null, "Sãotomense", "I", "L" }, + { "crk", null, null, null, null, "Plains Cree", "I", "L" }, + { "csn", null, null, null, null, "Colombian Sign Language", "I", "L" }, + { "csm", null, null, null, null, "Central Sierra Miwok", "I", "L" }, + { "csl", null, null, null, null, "Chinese Sign Language", "I", "L" }, + { "csk", null, null, null, null, "Jola-Kasa", "I", "L" }, + { "csj", null, null, null, null, "Songlai Chin", "I", "L" }, + { "csi", null, null, null, null, "Coast Miwok", "I", "E" }, + { "csh", null, null, null, null, "Asho Chin", "I", "L" }, + { "csg", null, null, null, null, "Chilean Sign Language", "I", "L" }, + { "csf", null, null, null, null, "Cuba Sign Language", "I", "L" }, + { "cse", null, null, null, null, "Czech Sign Language", "I", "L" }, + { "csd", null, null, null, null, "Chiangmai Sign Language", "I", "L" }, + { "csc", null, null, null, null, "Catalan Sign Language", "I", "L" }, + { "csb", null, null, "csb", "csb", "Kashubian", "I", "L" }, + { "csa", null, null, null, null, "Chiltepec Chinantec", "I", "L" }, + { "crz", null, null, null, null, "Cruzeño", "I", "E" }, + { "cry", null, null, null, null, "Cori", "I", "L" }, + { "crx", null, null, null, null, "Carrier", "I", "L" }, + { "crw", null, null, null, null, "Chrau", "I", "L" }, + { "crv", null, null, null, null, "Chaura", "I", "L" }, + { "crt", null, null, null, null, "Iyojwa'ja Chorote", "I", "L" }, + { "crs", null, null, null, null, "Seselwa Creole French", "I", "L" }, + { "crr", null, null, null, null, "Carolina Algonquian", "I", "E" }, + { "crq", null, null, null, null, "Iyo'wujwa Chorote", "I", "L" }, + { "cro", null, null, null, null, "Crow", "I", "L" }, + { "crn", null, null, null, null, "El Nayar Cora", "I", "L" }, + { "crm", null, null, null, null, "Moose Cree", "I", "L" }, + { "crl", null, null, null, null, "Northern East Cree", "I", "L" }, + { "crj", null, null, null, null, "Southern East Cree", "I", "L" }, + { "cga", null, null, null, null, "Changriwa", "I", "L" }, + { "cfm", null, null, null, null, "Falam Chin", "I", "L" }, + { "cfg", null, null, null, null, "Como Karim", "I", "L" }, + { "bww", null, null, null, null, "Bwa", "I", "L" }, + { "bwu", null, null, null, null, "Buli (Ghana)", "I", "L" }, + { "bwt", null, null, null, null, "Bafaw-Balong", "I", "L" }, + { "bws", null, null, null, null, "Bomboma", "I", "L" }, + { "bwr", null, null, null, null, "Bura-Pabir", "I", "L" }, + { "bwq", null, null, null, null, "Southern Bobo Madaré", "I", "L" }, + { "bwp", null, null, null, null, "Mandobo Bawah", "I", "L" }, + { "bwo", null, null, null, null, "Boro (Ethiopia)", "I", "L" }, + { "bwn", null, null, null, null, "Wunai Bunu", "I", "L" }, + { "bwm", null, null, null, null, "Biwat", "I", "L" }, + { "bwl", null, null, null, null, "Bwela", "I", "L" }, + { "bwk", null, null, null, null, "Bauwaki", "I", "L" }, + { "bwx", null, null, null, null, "Bu-Nao Bunu", "I", "L" }, + { "bwj", null, null, null, null, "Láá Láá Bwamu", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "bwh", null, null, null, null, "Bishuo", "I", "L" }, + { "bwg", null, null, null, null, "Barwe", "I", "L" }, + { "bwf", null, null, null, null, "Boselewa", "I", "L" }, + { "bwe", null, null, null, null, "Bwe Karen", "I", "L" }, + { "bwd", null, null, null, null, "Bwaidoka", "I", "L" }, + { "bwc", null, null, null, null, "Bwile", "I", "L" }, + { "bwb", null, null, null, null, "Namosi-Naitasiri-Serua", "I", "L" }, + { "bwa", null, null, null, null, "Bwatoo", "I", "L" }, + { "bvz", null, null, null, null, "Bauzi", "I", "L" }, + { "bvy", null, null, null, null, "Baybayanon", "I", "L" }, + { "bvx", null, null, null, null, "Dibole", "I", "L" }, + { "bvw", null, null, null, null, "Boga", "I", "L" }, + { "bwi", null, null, null, null, "Baniwa", "I", "L" }, + { "bwy", null, null, null, null, "Cwi Bwamu", "I", "L" }, + { "bwz", null, null, null, null, "Bwisi", "I", "L" }, + { "bxa", null, null, null, null, "Tairaha", "I", "L" }, + { "bye", null, null, null, null, "Pouye", "I", "L" }, + { "byd", null, null, null, null, "Benyadu'", "I", "L" }, + { "byc", null, null, null, null, "Ubaghara", "I", "L" }, + { "byb", null, null, null, null, "Bikya", "I", "L" }, + { "bya", null, null, null, null, "Batak", "I", "L" }, + { "bxz", null, null, null, null, "Binahari", "I", "L" }, + { "bxw", null, null, null, null, "Bankagooma", "I", "L" }, + { "bxv", null, null, null, null, "Berakou", "I", "L" }, + { "bxu", null, null, null, null, "China Buriat", "I", "L" }, + { "bxs", null, null, null, null, "Busam", "I", "L" }, + { "bxr", null, null, null, null, "Russia Buriat", "I", "L" }, + { "bxq", null, null, null, null, "Beele", "I", "L" }, + { "bxp", null, null, null, null, "Bebil", "I", "L" }, + { "bxo", null, null, null, null, "Barikanchi", "I", "L" }, + { "bxn", null, null, null, null, "Burduna", "I", "L" }, + { "bxm", null, null, null, null, "Mongolia Buriat", "I", "L" }, + { "bxl", null, null, null, null, "Jalkunan", "I", "L" }, + { "bxk", null, null, null, null, "Bukusu", "I", "L" }, + { "bxj", null, null, null, null, "Bayungu", "I", "L" }, + { "bxi", null, null, null, null, "Pirlatapa", "I", "E" }, + { "bxh", null, null, null, null, "Buhutu", "I", "L" }, + { "bxg", null, null, null, null, "Bangala", "I", "L" }, + { "bxf", null, null, null, null, "Bilur", "I", "L" }, + { "bxe", null, null, null, null, "Birale", "I", "L" }, + { "bxd", null, null, null, null, "Pela", "I", "L" }, + { "bxc", null, null, null, null, "Molengue", "I", "L" }, + { "bxb", null, null, null, null, "Belanda Bor", "I", "L" }, + { "bvv", null, null, null, null, "Baniva", "I", "E" }, + { "bvu", null, null, null, null, "Bukit Malay", "I", "L" }, + { "bvt", null, null, null, null, "Bati (Indonesia)", "I", "L" }, + { "bvr", null, null, null, null, "Burarra", "I", "L" }, + { "buk", null, null, null, null, "Bugawac", "I", "L" }, + { "buj", null, null, null, null, "Basa-Gurmana", "I", "L" }, + { "bui", null, null, null, null, "Bongili", "I", "L" }, + { "buh", null, null, null, null, "Younuo Bunu", "I", "L" }, + { "bug", null, null, "bug", "bug", "Buginese", "I", "L" }, + { "buf", null, null, null, null, "Bushoong", "I", "L" }, + { "bue", null, null, null, null, "Beothuk", "I", "E" }, + { "bud", null, null, null, null, "Ntcham", "I", "L" }, + { "buc", null, null, null, null, "Bushi", "I", "L" }, + { "bub", null, null, null, null, "Bua", "I", "L" }, + { "bua", null, null, "bua", "bua", "Buriat", "M", "L" }, + { "btz", null, null, null, null, "Batak Alas-Kluet", "I", "L" }, + { "bty", null, null, null, null, "Bobot", "I", "L" }, + { "btx", null, null, null, null, "Batak Karo", "I", "L" }, + { "btw", null, null, null, null, "Butuanon", "I", "L" }, + { "btv", null, null, null, null, "Bateri", "I", "L" }, + { "btu", null, null, null, null, "Batu", "I", "L" }, + { "btt", null, null, null, null, "Bete-Bendi", "I", "L" }, + { "bts", null, null, null, null, "Batak Simalungun", "I", "L" }, + { "btr", null, null, null, null, "Baetora", "I", "L" }, + { "btq", null, null, null, null, "Batek", "I", "L" }, + { "btp", null, null, null, null, "Budibud", "I", "L" }, + { "bto", null, null, null, null, "Rinconada Bikol", "I", "L" }, + { "btn", null, null, null, null, "Ratagnon", "I", "L" }, + { "btm", null, null, null, null, "Batak Mandailing", "I", "L" }, + { "btj", null, null, null, null, "Bacanese Malay", "I", "L" }, + { "bti", null, null, null, null, "Burate", "I", "L" }, + { "bul", null, "bg", "bul", "bul", "Bulgarian", "I", "L" }, + { "byf", null, null, null, null, "Bete", "I", "L" }, + { "bum", null, null, null, null, "Bulu (Cameroon)", "I", "L" }, + { "buo", null, null, null, null, "Terei", "I", "L" }, + { "bvq", null, null, null, null, "Birri", "I", "L" }, + { "bvp", null, null, null, null, "Bumang", "I", "L" }, + { "bvo", null, null, null, null, "Bolgo", "I", "L" }, + { "bvn", null, null, null, null, "Buna", "I", "L" }, + { "bvm", null, null, null, null, "Bamunka", "I", "L" }, + { "bvl", null, null, null, null, "Bolivian Sign Language", "I", "L" }, + { "bvk", null, null, null, null, "Bukat", "I", "L" }, + { "bvj", null, null, null, null, "Baan", "I", "L" }, + { "bvi", null, null, null, null, "Belanda Viri", "I", "L" }, + { "bvh", null, null, null, null, "Bure", "I", "L" }, + { "bvg", null, null, null, null, "Bonkeng", "I", "L" }, + { "bvf", null, null, null, null, "Boor", "I", "L" }, + { "bve", null, null, null, null, "Berau Malay", "I", "L" }, + { "bvd", null, null, null, null, "Baeggu", "I", "L" }, + { "bvc", null, null, null, null, "Baelelea", "I", "L" }, + { "bvb", null, null, null, null, "Bube", "I", "L" }, + { "bva", null, null, null, null, "Barein", "I", "L" }, + { "buz", null, null, null, null, "Bukwen", "I", "L" }, + { "buy", null, null, null, null, "Bullom So", "I", "L" }, + { "bux", null, null, null, null, "Boghom", "I", "L" }, + { "buw", null, null, null, null, "Bubi", "I", "L" }, + { "buv", null, null, null, null, "Bun", "I", "L" }, + { "buu", null, null, null, null, "Budu", "I", "L" }, + { "but", null, null, null, null, "Bungain", "I", "L" }, + { "bus", null, null, null, null, "Bokobaru", "I", "L" }, + { "buq", null, null, null, null, "Brem", "I", "L" }, + { "bup", null, null, null, null, "Busoa", "I", "L" }, + { "bun", null, null, null, null, "Sherbro", "I", "L" }, + { "dac", null, null, null, null, "Dambi", "I", "L" }, + { "byg", null, null, null, null, "Baygo", "I", "E" }, + { "byi", null, null, null, null, "Buyu", "I", "L" }, + { "ccg", null, null, null, null, "Samba Daka", "I", "L" }, + { "cce", null, null, null, null, "Chopi", "I", "L" }, + { "ccd", null, null, null, null, "Cafundo Creole", "I", "L" }, + { "ccc", null, null, null, null, "Chamicuro", "I", "L" }, + { "cca", null, null, null, null, "Cauca", "I", "E" }, + { "cby", null, null, null, null, "Carabayo", "I", "L" }, + { "cbw", null, null, null, null, "Kinabalian", "I", "L" }, + { "cbv", null, null, null, null, "Cacua", "I", "L" }, + { "cbu", null, null, null, null, "Candoshi-Shapra", "I", "L" }, + { "cbt", null, null, null, null, "Chayahuita", "I", "L" }, + { "cbs", null, null, null, null, "Cashinahua", "I", "L" }, + { "cbr", null, null, null, null, "Cashibo-Cacataibo", "I", "L" }, + { "cch", null, null, null, null, "Atsam", "I", "L" }, + { "cbq", null, null, null, null, "Tsucuba", "I", "L" }, + { "cbn", null, null, null, null, "Nyahkur", "I", "L" }, + { "cbl", null, null, null, null, "Bualkhaw Chin", "I", "L" }, + { "cbk", null, null, null, null, "Chavacano", "I", "L" }, + { "cbj", null, null, null, null, "Ede Cabe", "I", "L" }, + { "cbi", null, null, null, null, "Chachi", "I", "L" }, + { "cbg", null, null, null, null, "Chimila", "I", "L" }, + { "cbd", null, null, null, null, "Carijona", "I", "L" }, + { "cbc", null, null, null, null, "Carapana", "I", "L" }, + { "cbb", null, null, null, null, "Cabiyarí", "I", "L" }, + { "caz", null, null, null, null, "Canichana", "I", "E" }, + { "cay", null, null, null, null, "Cayuga", "I", "L" }, + { "cax", null, null, null, null, "Chiquitano", "I", "L" }, + { "cbo", null, null, null, null, "Izora", "I", "L" }, + { "ccj", null, null, null, null, "Kasanga", "I", "L" }, + { "ccl", null, null, null, null, "Cutchi-Swahili", "I", "L" }, + { "ccm", null, null, null, null, "Malaccan Creole Malay", "I", "L" }, + { "cfd", null, null, null, null, "Cara", "I", "L" }, + { "cfa", null, null, null, null, "Dijim-Bwilim", "I", "L" }, + { "cey", null, null, null, null, "Ekai Chin", "I", "L" }, + { "cet", null, null, null, null, "Centúúm", "I", "L" }, + { "ces", null, "cs", "cze", "ces", "Czech", "I", "L" }, + { "cen", null, null, null, null, "Cen", "I", "L" }, + { "cek", null, null, null, null, "Eastern Khumi Chin", "I", "L" }, + { "ceg", null, null, null, null, "Chamacoco", "I", "L" }, + { "ceb", null, null, "ceb", "ceb", "Cebuano", "I", "L" }, + { "cea", null, null, null, null, "Lower Chehalis", "I", "E" }, + { "cdz", null, null, null, null, "Koda", "I", "L" }, + { "cdy", null, null, null, null, "Chadong", "I", "L" }, + { "cds", null, null, null, null, "Chadian Sign Language", "I", "L" }, + { "cdr", null, null, null, null, "Cinda-Regi-Tiyal", "I", "L" }, + { "cdo", null, null, null, null, "Min Dong Chinese", "I", "L" }, + { "cdn", null, null, null, null, "Chaudangsi", "I", "L" }, + { "cdm", null, null, null, null, "Chepang", "I", "L" }, + { "cdj", null, null, null, null, "Churahi", "I", "L" }, + { "cdi", null, null, null, null, "Chodri", "I", "L" }, + { "cdh", null, null, null, null, "Chambeali", "I", "L" }, + { "cdg", null, null, null, null, "Chamari", "I", "L" }, + { "cdf", null, null, null, null, "Chiru", "I", "L" }, + { "cde", null, null, null, null, "Chenchu", "I", "L" }, + { "cda", null, null, null, null, "Choni", "I", "L" }, + { "ccr", null, null, null, null, "Cacaopera", "I", "E" }, + { "ccp", null, null, null, null, "Chakma", "I", "L" }, + { "cco", null, null, null, null, "Comaltepec Chinantec", "I", "L" }, + { "caw", null, null, null, null, "Callawalla", "I", "L" }, + { "cav", null, null, null, null, "Cavineña", "I", "L" }, + { "cat", null, "ca", "cat", "cat", "Catalan", "I", "L" }, + { "cas", null, null, null, null, "Tsimané", "I", "L" }, + { "bzl", null, null, null, null, "Boano (Sulawesi)", "I", "L" }, + { "bzk", null, null, null, null, "Nicaragua Creole English", "I", "L" }, + { "bzj", null, null, null, null, "Belize Kriol English", "I", "L" }, + { "bzi", null, null, null, null, "Bisu", "I", "L" }, + { "bzh", null, null, null, null, "Mapos Buang", "I", "L" }, + { "bzg", null, null, null, null, "Babuza", "I", "L" }, + { "bzf", null, null, null, null, "Boikin", "I", "L" }, + { "bze", null, null, null, null, "Jenaama Bozo", "I", "L" }, + { "bzd", null, null, null, null, "Bribri", "I", "L" }, + { "bzc", null, null, null, null, "Southern Betsimisaraka Malagasy", "I", "L" }, + { "bzb", null, null, null, null, "Andio", "I", "L" }, + { "bza", null, null, null, null, "Bandi", "I", "L" }, + { "byz", null, null, null, null, "Banaro", "I", "L" }, + { "byx", null, null, null, null, "Qaqet", "I", "L" }, + { "byw", null, null, null, null, "Belhariya", "I", "L" }, + { "byv", null, null, null, null, "Medumba", "I", "L" }, + { "byt", null, null, null, null, "Berti", "I", "E" }, + { "bys", null, null, null, null, "Burak", "I", "L" }, + { "byr", null, null, null, null, "Baruya", "I", "L" }, + { "byq", null, null, null, null, "Basay", "I", "E" }, + { "byp", null, null, null, null, "Bumaji", "I", "L" }, + { "byo", null, null, null, null, "Biyo", "I", "L" }, + { "byn", null, null, "byn", "byn", "Bilin", "I", "L" }, + { "bym", null, null, null, null, "Bidjara", "I", "L" }, + { "byl", null, null, null, null, "Bayono", "I", "L" }, + { "byk", null, null, null, null, "Biao", "I", "L" }, + { "byj", null, null, null, null, "Bina (Nigeria)", "I", "L" }, + { "bzm", null, null, null, null, "Bolondo", "I", "L" }, + { "byh", null, null, null, null, "Bhujel", "I", "L" }, + { "bzn", null, null, null, null, "Boano (Maluku)", "I", "L" }, + { "bzp", null, null, null, null, "Kemberano", "I", "L" }, + { "car", null, null, "car", "car", "Galibi Carib", "I", "L" }, + { "caq", null, null, null, null, "Car Nicobarese", "I", "L" }, + { "cap", null, null, null, null, "Chipaya", "I", "L" }, + { "cao", null, null, null, null, "Chácobo", "I", "L" }, + { "can", null, null, null, null, "Chambri", "I", "L" }, + { "cam", null, null, null, null, "Cemuhî", "I", "L" }, + { "cal", null, null, null, null, "Carolinian", "I", "L" }, + { "cak", null, null, null, null, "Kaqchikel", "I", "L" }, + { "caj", null, null, null, null, "Chané", "I", "E" }, + { "cah", null, null, null, null, "Cahuarano", "I", "L" }, + { "cag", null, null, null, null, "Nivaclé", "I", "L" }, + { "caf", null, null, null, null, "Southern Carrier", "I", "L" }, + { "cae", null, null, null, null, "Lehar", "I", "L" }, + { "cad", null, null, "cad", "cad", "Caddo", "I", "L" }, + { "cac", null, null, null, null, "Chuj", "I", "L" }, + { "cab", null, null, null, null, "Garifuna", "I", "L" }, + { "caa", null, null, null, null, "Chortí", "I", "L" }, + { "bzz", null, null, null, null, "Evant", "I", "L" }, + { "bzy", null, null, null, null, "Obanliku", "I", "L" }, + { "bzx", null, null, null, null, "Kɛlɛngaxo Bozo", "I", "L" }, + { "bzw", null, null, null, null, "Basa (Nigeria)", "I", "L" }, + { "bzv", null, null, null, null, "Naami", "I", "L" }, + { "bzu", null, null, null, null, "Burmeso", "I", "L" }, + { "bzt", null, null, null, null, "Brithenig", "I", "C" }, + { "bzs", null, null, null, null, "Brazilian Sign Language", "I", "L" }, + { "bzr", null, null, null, null, "Biri", "I", "E" }, + { "bzq", null, null, null, null, "Buli (Indonesia)", "I", "L" }, + { "bzo", null, null, null, null, "Bozaba", "I", "L" }, + { "dad", null, null, null, null, "Marik", "I", "L" }, + { "dae", null, null, null, null, "Duupa", "I", "L" }, + { "dag", null, null, null, null, "Dagbani", "I", "L" }, + { "emi", null, null, null, null, "Mussau-Emira", "I", "L" }, + { "emg", null, null, null, null, "Eastern Meohang", "I", "L" }, + { "eme", null, null, null, null, "Emerillon", "I", "L" }, + { "emb", null, null, null, null, "Embaloh", "I", "L" }, + { "ema", null, null, null, null, "Emai-Iuleha-Ora", "I", "L" }, + { "elx", null, null, "elx", "elx", "Elamite", "I", "A" }, + { "elu", null, null, null, null, "Elu", "I", "L" }, + { "elo", null, null, null, null, "El Molo", "I", "L" }, + { "elm", null, null, null, null, "Eleme", "I", "L" }, + { "ell", null, "el", "gre", "ell", "Modern Greek (1453-)", "I", "L" }, + { "elk", null, null, null, null, "Elkei", "I", "L" }, + { "eli", null, null, null, null, "Nding", "I", "E" }, + { "emk", null, null, null, null, "Eastern Maninkakan", "I", "L" }, + { "elh", null, null, null, null, "El Hugeirat", "I", "L" }, + { "eky", null, null, null, null, "Eastern Kayah", "I", "L" }, + { "ekr", null, null, null, null, "Yace", "I", "L" }, + { "ekp", null, null, null, null, "Ekpeye", "I", "L" }, + { "eko", null, null, null, null, "Koti", "I", "L" }, + { "ekm", null, null, null, null, "Elip", "I", "L" }, + { "ekl", null, null, null, null, "Kol (Bangladesh)", "I", "L" }, + { "ekk", null, null, null, null, "Standard Estonian", "I", "L" }, + { "eki", null, null, null, null, "Eki", "I", "L" }, + { "ekg", null, null, null, null, "Ekari", "I", "L" }, + { "eke", null, null, null, null, "Ekit", "I", "L" }, + { "ekc", null, null, null, null, "Eastern Karnic", "I", "E" }, + { "eka", null, null, "eka", "eka", "Ekajuk", "I", "L" }, + { "ele", null, null, null, null, "Elepi", "I", "L" }, + { "emm", null, null, null, null, "Mamulique", "I", "E" }, + { "emn", null, null, null, null, "Eman", "I", "L" }, + { "emp", null, null, null, null, "Northern Emberá", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "erg", null, null, null, null, "Sie", "I", "L" }, + { "era", null, null, null, null, "Eravallan", "I", "L" }, + { "epo", null, "eo", "epo", "epo", "Esperanto", "I", "C" }, + { "epi", null, null, null, null, "Epie", "I", "L" }, + { "eot", null, null, null, null, "Beti (Côte d'Ivoire)", "I", "L" }, + { "enx", null, null, null, null, "Enxet", "I", "L" }, + { "enw", null, null, null, null, "Enwan (Akwa Ibom State)", "I", "L" }, + { "env", null, null, null, null, "Enwan (Edu State)", "I", "L" }, + { "enu", null, null, null, null, "Enu", "I", "L" }, + { "enr", null, null, null, null, "Emumu", "I", "L" }, + { "enq", null, null, null, null, "Enga", "I", "L" }, + { "eno", null, null, null, null, "Enggano", "I", "L" }, + { "enn", null, null, null, null, "Engenni", "I", "L" }, + { "enm", null, null, "enm", "enm", "Middle English (1100-1500)", "I", "H" }, + { "enl", null, null, null, null, "Enlhet", "I", "L" }, + { "enh", null, null, null, null, "Tundra Enets", "I", "L" }, + { "eng", null, "en", "eng", "eng", "English", "I", "L" }, + { "enf", null, null, null, null, "Forest Enets", "I", "L" }, + { "end", null, null, null, null, "Ende", "I", "L" }, + { "enc", null, null, null, null, "En", "I", "L" }, + { "enb", null, null, null, null, "Markweeta", "I", "L" }, + { "ena", null, null, null, null, "Apali", "I", "L" }, + { "emy", null, null, null, null, "Epigraphic Mayan", "I", "A" }, + { "emx", null, null, null, null, "Erromintxela", "I", "L" }, + { "emw", null, null, null, null, "Emplawas", "I", "L" }, + { "emu", null, null, null, null, "Eastern Muria", "I", "L" }, + { "ems", null, null, null, null, "Pacific Gulf Yupik", "I", "L" }, + { "eja", null, null, null, null, "Ejamat", "I", "L" }, + { "eiv", null, null, null, null, "Askopan", "I", "L" }, + { "eit", null, null, null, null, "Eitiep", "I", "L" }, + { "eip", null, null, null, null, "Eipomek", "I", "L" }, + { "dyd", null, null, null, null, "Dyugun", "I", "E" }, + { "dyb", null, null, null, null, "Dyaberdyaber", "I", "E" }, + { "dya", null, null, null, null, "Dyan", "I", "L" }, + { "dwz", null, null, null, null, "Dewas Rai", "I", "L" }, + { "dwy", null, null, null, null, "Dhuwaya", "I", "L" }, + { "dww", null, null, null, null, "Dawawa", "I", "L" }, + { "dwu", null, null, null, null, "Dhuwal", "I", "L" }, + { "dws", null, null, null, null, "Dutton World Speedwords", "I", "C" }, + { "dwr", null, null, null, null, "Dawro", "I", "L" }, + { "dwa", null, null, null, null, "Diri", "I", "L" }, + { "dva", null, null, null, null, "Duau", "I", "L" }, + { "duz", null, null, null, null, "Duli-Gey", "I", "E" }, + { "duy", null, null, null, null, "Dicamay Agta", "I", "E" }, + { "dux", null, null, null, null, "Duungooma", "I", "L" }, + { "duw", null, null, null, null, "Dusun Witu", "I", "L" }, + { "duv", null, null, null, null, "Duvle", "I", "L" }, + { "duu", null, null, null, null, "Drung", "I", "L" }, + { "dus", null, null, null, null, "Dumi", "I", "L" }, + { "dur", null, null, null, null, "Dii", "I", "L" }, + { "duq", null, null, null, null, "Dusun Malang", "I", "L" }, + { "dup", null, null, null, null, "Duano", "I", "L" }, + { "duo", null, null, null, null, "Dupaninan Agta", "I", "L" }, + { "dun", null, null, null, null, "Dusun Deyah", "I", "L" }, + { "dum", null, null, "dum", "dum", "Middle Dutch (ca. 1050-1350)", "I", "H" }, + { "dul", null, null, null, null, "Alabat Island Agta", "I", "L" }, + { "duk", null, null, null, null, "Uyajitaya", "I", "L" }, + { "dui", null, null, null, null, "Dumun", "I", "L" }, + { "dyg", null, null, null, null, "Villa Viciosa Agta", "I", "E" }, + { "erh", null, null, null, null, "Eruwa", "I", "L" }, + { "dyi", null, null, null, null, "Djimini Senoufo", "I", "L" }, + { "dyn", null, null, null, null, "Dyangadi", "I", "L" }, + { "ehu", null, null, null, null, "Ehueun", "I", "L" }, + { "egy", null, null, "egy", "egy", "Egyptian (Ancient)", "I", "A" }, + { "ego", null, null, null, null, "Eggon", "I", "L" }, + { "egl", null, null, null, null, "Emilian", "I", "L" }, + { "ega", null, null, null, null, "Ega", "I", "L" }, + { "efi", null, null, "efi", "efi", "Efik", "I", "L" }, + { "efe", null, null, null, null, "Efe", "I", "L" }, + { "efa", null, null, null, null, "Efai", "I", "L" }, + { "eee", null, null, null, null, "E", "I", "L" }, + { "ecy", null, null, null, null, "Eteocypriot", "I", "A" }, + { "ecs", null, null, null, null, "Ecuadorian Sign Language", "I", "L" }, + { "ecr", null, null, null, null, "Eteocretan", "I", "A" }, + { "ebu", null, null, null, null, "Embu", "I", "L" }, + { "ebr", null, null, null, null, "Ebrié", "I", "L" }, + { "ebo", null, null, null, null, "Teke-Ebo", "I", "L" }, + { "ebk", null, null, null, null, "Eastern Bontok", "I", "L" }, + { "ebg", null, null, null, null, "Ebughu", "I", "L" }, + { "eaa", null, null, null, null, "Karenggapa", "I", "E" }, + { "dzo", null, "dz", "dzo", "dzo", "Dzongkha", "I", "L" }, + { "dzn", null, null, null, null, "Dzando", "I", "L" }, + { "dzl", null, null, null, null, "Dzalakha", "I", "L" }, + { "dzg", null, null, null, null, "Dazaga", "I", "L" }, + { "dze", null, null, null, null, "Djiwarli", "I", "E" }, + { "dza", null, null, null, null, "Tunzu", "I", "L" }, + { "dyy", null, null, null, null, "Djabugay", "I", "L" }, + { "dyu", null, null, "dyu", "dyu", "Dyula", "I", "L" }, + { "dyo", null, null, null, null, "Jola-Fonyi", "I", "L" }, + { "dym", null, null, null, null, "Yanda Dom Dogon", "I", "L" }, + { "duh", null, null, null, null, "Dungra Bhil", "I", "L" }, + { "eri", null, null, null, null, "Ogea", "I", "L" }, + { "ero", null, null, null, null, "Horpa", "I", "L" }, + { "fnb", null, null, null, null, "Fanbak", "I", "L" }, + { "fmu", null, null, null, null, "Far Western Muria", "I", "L" }, + { "fmp", null, null, null, null, "Fe'fe'", "I", "L" }, + { "fly", null, null, null, null, "Flaaitaal", "I", "L" }, + { "flr", null, null, null, null, "Fuliiru", "I", "L" }, + { "fln", null, null, null, null, "Flinders Island", "I", "E" }, + { "fll", null, null, null, null, "North Fali", "I", "L" }, + { "fli", null, null, null, null, "Fali", "I", "L" }, + { "flh", null, null, null, null, "Foau", "I", "L" }, + { "fla", null, null, null, null, "Kalispel-Pend d'Oreille", "I", "L" }, + { "fkv", null, null, null, null, "Kven Finnish", "I", "L" }, + { "fkk", null, null, null, null, "Kirya-Konzəl", "I", "L" }, + { "fng", null, null, null, null, "Fanagalo", "I", "L" }, + { "fiw", null, null, null, null, "Fiwaga", "I", "L" }, + { "fir", null, null, null, null, "Firan", "I", "L" }, + { "fip", null, null, null, null, "Fipa", "I", "L" }, + { "fin", null, "fi", "fin", "fin", "Finnish", "I", "L" }, + { "fil", null, null, "fil", "fil", "Filipino", "I", "L" }, + { "fij", null, "fj", "fij", "fij", "Fijian", "I", "L" }, + { "fie", null, null, null, null, "Fyer", "I", "L" }, + { "fia", null, null, null, null, "Nobiin", "I", "L" }, + { "fgr", null, null, null, null, "Fongoro", "I", "L" }, + { "ffm", null, null, null, null, "Maasina Fulfulde", "I", "L" }, + { "ffi", null, null, null, null, "Foia Foia", "I", "L" }, + { "fer", null, null, null, null, "Feroge", "I", "L" }, + { "fcs", null, null, null, null, "Quebec Sign Language", "I", "L" }, + { "fit", null, null, null, null, "Tornedalen Finnish", "I", "L" }, + { "fni", null, null, null, null, "Fania", "I", "L" }, + { "fod", null, null, null, null, "Foodo", "I", "L" }, + { "foi", null, null, null, null, "Foi", "I", "L" }, + { "fuh", null, null, null, null, "Western Niger Fulfulde", "I", "L" }, + { "fuf", null, null, null, null, "Pular", "I", "L" }, + { "fue", null, null, null, null, "Borgu Fulfulde", "I", "L" }, + { "fud", null, null, null, null, "East Futuna", "I", "L" }, + { "fuc", null, null, null, null, "Pulaar", "I", "L" }, + { "fub", null, null, null, null, "Adamawa Fulfulde", "I", "L" }, + { "fss", null, null, null, null, "Finland-Swedish Sign Language", "I", "L" }, + { "fsl", null, null, null, null, "French Sign Language", "I", "L" }, + { "fse", null, null, null, null, "Finnish Sign Language", "I", "L" }, + { "fry", null, "fy", "fry", "fry", "Western Frisian", "I", "L" }, + { "frt", null, null, null, null, "Fortsenal", "I", "L" }, + { "frs", null, null, "frs", "frs", "Eastern Frisian", "I", "L" }, + { "frr", null, null, "frr", "frr", "Northern Frisian", "I", "L" }, + { "frq", null, null, null, null, "Forak", "I", "L" }, + { "frp", null, null, null, null, "Arpitan", "I", "L" }, + { "fro", null, null, "fro", "fro", "Old French (842-ca. 1400)", "I", "H" }, + { "frm", null, null, "frm", "frm", "Middle French (ca. 1400-1600)", "I", "H" }, + { "frk", null, null, null, null, "Frankish", "I", "H" }, + { "frd", null, null, null, null, "Fordata", "I", "L" }, + { "frc", null, null, null, null, "Cajun French", "I", "L" }, + { "fra", null, "fr", "fre", "fra", "French", "I", "L" }, + { "fqs", null, null, null, null, "Fas", "I", "L" }, + { "fpe", null, null, null, null, "Fernando Po Creole English", "I", "L" }, + { "fos", null, null, null, null, "Siraya", "I", "E" }, + { "for", null, null, null, null, "Fore", "I", "L" }, + { "fon", null, null, "fon", "fon", "Fon", "I", "L" }, + { "fom", null, null, null, null, "Foma", "I", "L" }, + { "fbl", null, null, null, null, "West Albay Bikol", "I", "L" }, + { "faz", null, null, null, null, "Northwestern Fars", "I", "L" }, + { "fay", null, null, null, null, "Southwestern Fars", "I", "L" }, + { "fax", null, null, null, null, "Fala", "I", "L" }, + { "etu", null, null, null, null, "Ejagham", "I", "L" }, + { "ett", null, null, null, null, "Etruscan", "I", "A" }, + { "ets", null, null, null, null, "Yekhee", "I", "L" }, + { "etr", null, null, null, null, "Edolo", "I", "L" }, + { "eto", null, null, null, null, "Eton (Cameroon)", "I", "L" }, + { "etn", null, null, null, null, "Eton (Vanuatu)", "I", "L" }, + { "eth", null, null, null, null, "Ethiopian Sign Language", "I", "L" }, + { "etc", null, null, null, null, "Etchemin", "I", "E" }, + { "etb", null, null, null, null, "Etebi", "I", "L" }, + { "esy", null, null, null, null, "Eskayan", "I", "L" }, + { "esu", null, null, null, null, "Central Yupik", "I", "L" }, + { "est", null, "et", "est", "est", "Estonian", "M", "L" }, + { "ess", null, null, null, null, "Central Siberian Yupik", "I", "L" }, + { "esq", null, null, null, null, "Esselen", "I", "E" }, + { "eso", null, null, null, null, "Estonian Sign Language", "I", "L" }, + { "esn", null, null, null, null, "Salvadoran Sign Language", "I", "L" }, + { "esm", null, null, null, null, "Esuma", "I", "E" }, + { "esl", null, null, null, null, "Egypt Sign Language", "I", "L" }, + { "esk", null, null, null, null, "Northwest Alaska Inupiatun", "I", "L" }, + { "esi", null, null, null, null, "North Alaskan Inupiatun", "I", "L" }, + { "esh", null, null, null, null, "Eshtehardi", "I", "L" }, + { "esg", null, null, null, null, "Aheri Gondi", "I", "L" }, + { "ese", null, null, null, null, "Ese Ejja", "I", "L" }, + { "erw", null, null, null, null, "Erokwanas", "I", "L" }, + { "ert", null, null, null, null, "Eritai", "I", "L" }, + { "ers", null, null, null, null, "Ersu", "I", "L" }, + { "err", null, null, null, null, "Erre", "I", "E" }, + { "etx", null, null, null, null, "Eten", "I", "L" }, + { "erk", null, null, null, null, "South Efate", "I", "L" }, + { "etz", null, null, null, null, "Semimi", "I", "L" }, + { "eve", null, null, null, null, "Even", "I", "L" }, + { "fau", null, null, null, null, "Fayu", "I", "L" }, + { "fat", null, null, "fat", "fat", "Fanti", "I", "L" }, + { "fas", null, "fa", "per", "fas", "Persian", "M", "L" }, + { "far", null, null, null, null, "Fataleka", "I", "L" }, + { "fap", null, null, null, null, "Paloor", "I", "L" }, + { "fao", null, "fo", "fao", "fao", "Faroese", "I", "L" }, + { "fan", null, null, "fan", "fan", "Fang (Equatorial Guinea)", "I", "L" }, + { "fam", null, null, null, null, "Fam", "I", "L" }, + { "fal", null, null, null, null, "South Fali", "I", "L" }, + { "fak", null, null, null, null, "Fang (Cameroon)", "I", "L" }, + { "faj", null, null, null, null, "Faita", "I", "L" }, + { "fai", null, null, null, null, "Faiwol", "I", "L" }, + { "fah", null, null, null, null, "Baissa Fali", "I", "L" }, + { "fag", null, null, null, null, "Finongan", "I", "L" }, + { "faf", null, null, null, null, "Fagani", "I", "L" }, + { "fad", null, null, null, null, "Wagi", "I", "L" }, + { "fab", null, null, null, null, "Fa d'Ambu", "I", "L" }, + { "faa", null, null, null, null, "Fasu", "I", "L" }, + { "eze", null, null, null, null, "Uzekwe", "I", "L" }, + { "eza", null, null, null, null, "Ezaa", "I", "L" }, + { "eyo", null, null, null, null, "Keiyo", "I", "L" }, + { "eya", null, null, null, null, "Eyak", "I", "E" }, + { "ext", null, null, null, null, "Extremaduran", "I", "L" }, + { "ewo", null, null, "ewo", "ewo", "Ewondo", "I", "L" }, + { "ewe", null, "ee", "ewe", "ewe", "Ewe", "I", "L" }, + { "evn", null, null, null, null, "Evenki", "I", "L" }, + { "evh", null, null, null, null, "Uvbie", "I", "L" }, + { "eus", null, "eu", "baq", "eus", "Basque", "I", "L" }, + { "bth", null, null, null, null, "Biatah Bidayuh", "I", "L" }, + { "dug", null, null, null, null, "Duruma", "I", "L" }, + { "due", null, null, null, null, "Umiray Dumaget Agta", "I", "L" }, + { "dhg", null, null, null, null, "Dhangu-Djangu", "I", "L" }, + { "dhd", null, null, null, null, "Dhundari", "I", "L" }, + { "dgz", null, null, null, null, "Daga", "I", "L" }, + { "dgx", null, null, null, null, "Doghoro", "I", "L" }, + { "dgw", null, null, null, null, "Daungwurrung", "I", "E" }, + { "dgu", null, null, null, null, "Degaru", "I", "L" }, + { "dgt", null, null, null, null, "Ndra'ngith", "I", "E" }, + { "dgs", null, null, null, null, "Dogoso", "I", "L" }, + { "dgr", null, null, "dgr", "dgr", "Dogrib", "I", "L" }, + { "dgo", null, null, null, null, "Dogri (individual language)", "I", "L" }, + { "dgn", null, null, null, null, "Dagoman", "I", "E" }, + { "dgl", null, null, null, null, "Andaandi", "I", "L" }, + { "dhi", null, null, null, null, "Dhimal", "I", "L" }, + { "dgk", null, null, null, null, "Dagba", "I", "L" }, + { "dgh", null, null, null, null, "Dghwede", "I", "L" }, + { "dgg", null, null, null, null, "Doga", "I", "L" }, + { "dge", null, null, null, null, "Degenan", "I", "L" }, + { "dgd", null, null, null, null, "Dagaari Dioula", "I", "L" }, + { "dgc", null, null, null, null, "Casiguran Dumagat Agta", "I", "L" }, + { "dgb", null, null, null, null, "Bunoge Dogon", "I", "L" }, + { "dga", null, null, null, null, "Southern Dagaare", "I", "L" }, + { "dez", null, null, null, null, "Dengese", "I", "L" }, + { "dev", null, null, null, null, "Domung", "I", "L" }, + { "deu", null, "de", "ger", "deu", "German", "I", "L" }, + { "des", null, null, null, null, "Desano", "I", "L" }, + { "der", null, null, null, null, "Deori", "I", "L" }, + { "dgi", null, null, null, null, "Northern Dagara", "I", "L" }, + { "dhl", null, null, null, null, "Dhalandji", "I", "L" }, + { "dhm", null, null, null, null, "Zemba", "I", "L" }, + { "dhn", null, null, null, null, "Dhanki", "I", "L" }, + { "div", null, "dv", "div", "div", "Dhivehi", "I", "L" }, + { "diu", null, null, null, null, "Diriku", "I", "L" }, + { "dis", null, null, null, null, "Dimasa", "I", "L" }, + { "dir", null, null, null, null, "Dirim", "I", "L" }, + { "diq", null, null, null, null, "Dimli (individual language)", "I", "L" }, + { "dip", null, null, null, null, "Northeastern Dinka", "I", "L" }, + { "dio", null, null, null, null, "Dibo", "I", "L" }, + { "din", null, null, "din", "din", "Dinka", "M", "L" }, + { "dim", null, null, null, null, "Dime", "I", "L" }, + { "dil", null, null, null, null, "Dilling", "I", "L" }, + { "dik", null, null, null, null, "Southwestern Dinka", "I", "L" }, + { "dij", null, null, null, null, "Dai", "I", "L" }, + { "dii", null, null, null, null, "Dimbong", "I", "L" }, + { "dih", null, null, null, null, "Kumiai", "I", "L" }, + { "dig", null, null, null, null, "Digo", "I", "L" }, + { "dif", null, null, null, null, "Dieri", "I", "E" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "did", null, null, null, null, "Didinga", "I", "L" }, + { "dic", null, null, null, null, "Lakota Dida", "I", "L" }, + { "dib", null, null, null, null, "South Central Dinka", "I", "L" }, + { "dia", null, null, null, null, "Dia", "I", "L" }, + { "dhx", null, null, null, null, "Dhungaloo", "I", "L" }, + { "dhw", null, null, null, null, "Dhanwar (Nepal)", "I", "L" }, + { "dhv", null, null, null, null, "Dehu", "I", "L" }, + { "dhu", null, null, null, null, "Dhurga", "I", "E" }, + { "dhs", null, null, null, null, "Dhaiso", "I", "L" }, + { "dhr", null, null, null, null, "Dhargari", "I", "L" }, + { "dho", null, null, null, null, "Dhodia", "I", "L" }, + { "deq", null, null, null, null, "Dendi (Central African Republic)", "I", "L" }, + { "dep", null, null, null, null, "Pidgin Delaware", "I", "E" }, + { "den", null, null, "den", "den", "Slave (Athapascan)", "M", "L" }, + { "dem", null, null, null, null, "Dem", "I", "L" }, + { "dbn", null, null, null, null, "Duriankere", "I", "L" }, + { "dbm", null, null, null, null, "Duguri", "I", "L" }, + { "dbl", null, null, null, null, "Dyirbal", "I", "L" }, + { "dbj", null, null, null, null, "Ida'an", "I", "L" }, + { "dbi", null, null, null, null, "Doka", "I", "L" }, + { "dbg", null, null, null, null, "Dogul Dom Dogon", "I", "L" }, + { "dbf", null, null, null, null, "Edopi", "I", "L" }, + { "dbe", null, null, null, null, "Dabe", "I", "L" }, + { "dbd", null, null, null, null, "Dadiya", "I", "L" }, + { "dbb", null, null, null, null, "Deno", "I", "L" }, + { "dba", null, null, null, null, "Bangime", "I", "L" }, + { "daz", null, null, null, null, "Dao", "I", "L" }, + { "dax", null, null, null, null, "Dayi", "I", "L" }, + { "daw", null, null, null, null, "Davawenyo", "I", "L" }, + { "dav", null, null, null, null, "Taita", "I", "L" }, + { "dau", null, null, null, null, "Dar Sila Daju", "I", "L" }, + { "das", null, null, null, null, "Daho-Doo", "I", "L" }, + { "dar", null, null, "dar", "dar", "Dargwa", "I", "L" }, + { "daq", null, null, null, null, "Dandami Maria", "I", "L" }, + { "dao", null, null, null, null, "Daai Chin", "I", "L" }, + { "dan", null, "da", "dan", "dan", "Danish", "I", "L" }, + { "dam", null, null, null, null, "Damakawa", "I", "L" }, + { "dal", null, null, null, null, "Dahalo", "I", "L" }, + { "dak", null, null, "dak", "dak", "Dakota", "I", "L" }, + { "daj", null, null, null, null, "Dar Fur Daju", "I", "L" }, + { "dai", null, null, null, null, "Day", "I", "L" }, + { "dah", null, null, null, null, "Gwahatike", "I", "L" }, + { "dbo", null, null, null, null, "Dulbu", "I", "L" }, + { "diw", null, null, null, null, "Northwestern Dinka", "I", "L" }, + { "dbp", null, null, null, null, "Duwai", "I", "L" }, + { "dbr", null, null, null, null, "Dabarre", "I", "L" }, + { "del", null, null, "del", "del", "Delaware", "M", "L" }, + { "dek", null, null, null, null, "Dek", "I", "L" }, + { "dei", null, null, null, null, "Demisa", "I", "L" }, + { "deh", null, null, null, null, "Dehwari", "I", "L" }, + { "deg", null, null, null, null, "Degema", "I", "L" }, + { "def", null, null, null, null, "Dezfuli", "I", "L" }, + { "dee", null, null, null, null, "Dewoin", "I", "L" }, + { "ded", null, null, null, null, "Dedua", "I", "L" }, + { "dec", null, null, null, null, "Dagik", "I", "L" }, + { "ddw", null, null, null, null, "Dawera-Daweloor", "I", "L" }, + { "dds", null, null, null, null, "Donno So Dogon", "I", "L" }, + { "ddr", null, null, null, null, "Dhudhuroa", "I", "E" }, + { "ddo", null, null, null, null, "Dido", "I", "L" }, + { "ddn", null, null, null, null, "Dendi (Benin)", "I", "L" }, + { "ddj", null, null, null, null, "Jaru", "I", "L" }, + { "ddi", null, null, null, null, "West Goodenough", "I", "L" }, + { "ddg", null, null, null, null, "Fataluku", "I", "L" }, + { "dde", null, null, null, null, "Doondo", "I", "L" }, + { "ddd", null, null, null, null, "Dongotono", "I", "L" }, + { "dda", null, null, null, null, "Dadi Dadi", "I", "E" }, + { "dcr", null, null, null, null, "Negerhollands", "I", "E" }, + { "dcc", null, null, null, null, "Deccan", "I", "L" }, + { "dby", null, null, null, null, "Dibiyaso", "I", "L" }, + { "dbw", null, null, null, null, "Bankan Tey Dogon", "I", "L" }, + { "dbv", null, null, null, null, "Dungu", "I", "L" }, + { "dbu", null, null, null, null, "Bondum Dom Dogon", "I", "L" }, + { "dbt", null, null, null, null, "Ben Tey Dogon", "I", "L" }, + { "dbq", null, null, null, null, "Daba", "I", "L" }, + { "duf", null, null, null, null, "Dumbea", "I", "L" }, + { "dix", null, null, null, null, "Dixon Reef", "I", "L" }, + { "diz", null, null, null, null, "Ding", "I", "L" }, + { "drq", null, null, null, null, "Dura", "I", "E" }, + { "dro", null, null, null, null, "Daro-Matu Melanau", "I", "L" }, + { "drn", null, null, null, null, "West Damar", "I", "L" }, + { "drl", null, null, null, null, "Paakantyi", "I", "L" }, + { "dri", null, null, null, null, "C'Lela", "I", "L" }, + { "drg", null, null, null, null, "Rungus", "I", "L" }, + { "dre", null, null, null, null, "Dolpo", "I", "L" }, + { "drd", null, null, null, null, "Darmiya", "I", "L" }, + { "drc", null, null, null, null, "Minderico", "I", "L" }, + { "drb", null, null, null, null, "Dair", "I", "L" }, + { "dpp", null, null, null, null, "Papar", "I", "L" }, + { "doz", null, null, null, null, "Dorze", "I", "L" }, + { "drr", null, null, null, null, "Dororo", "I", "E" }, + { "doy", null, null, null, null, "Dompo", "I", "L" }, + { "dow", null, null, null, null, "Doyayo", "I", "L" }, + { "dov", null, null, null, null, "Dombe", "I", "L" }, + { "dot", null, null, null, null, "Dass", "I", "L" }, + { "dos", null, null, null, null, "Dogosé", "I", "L" }, + { "dor", null, null, null, null, "Dori'o", "I", "L" }, + { "doq", null, null, null, null, "Dominican Sign Language", "I", "L" }, + { "dop", null, null, null, null, "Lukpa", "I", "L" }, + { "doo", null, null, null, null, "Dongo", "I", "L" }, + { "don", null, null, null, null, "Toura (Papua New Guinea)", "I", "L" }, + { "dol", null, null, null, null, "Doso", "I", "L" }, + { "dok", null, null, null, null, "Dondo", "I", "L" }, + { "doi", null, null, "doi", "doi", "Dogri (macrolanguage)", "M", "L" }, + { "dox", null, null, null, null, "Bussa", "I", "L" }, + { "drs", null, null, null, null, "Gedeo", "I", "L" }, + { "drt", null, null, null, null, "Drents", "I", "L" }, + { "dru", null, null, null, null, "Rukai", "I", "L" }, + { "duc", null, null, null, null, "Duna", "I", "L" }, + { "dub", null, null, null, null, "Dubli", "I", "L" }, + { "dua", null, null, "dua", "dua", "Duala", "I", "L" }, + { "dty", null, null, null, null, "Dotyali", "I", "L" }, + { "dtu", null, null, null, null, "Tebul Ure Dogon", "I", "L" }, + { "dtt", null, null, null, null, "Toro Tegu Dogon", "I", "L" }, + { "dts", null, null, null, null, "Toro So Dogon", "I", "L" }, + { "dtr", null, null, null, null, "Lotud", "I", "L" }, + { "dtp", null, null, null, null, "Kadazan Dusun", "I", "L" }, + { "dto", null, null, null, null, "Tommo So Dogon", "I", "L" }, + { "dtn", null, null, null, null, "Daatsʼíin", "I", "L" }, + { "dtm", null, null, null, null, "Tomo Kan Dogon", "I", "L" }, + { "dtk", null, null, null, null, "Tene Kan Dogon", "I", "L" }, + { "dti", null, null, null, null, "Ana Tinga Dogon", "I", "L" }, + { "dth", null, null, null, null, "Adithinngithigh", "I", "E" }, + { "dtd", null, null, null, null, "Ditidaht", "I", "L" }, + { "dtb", null, null, null, null, "Labuk-Kinabatangan Kadazan", "I", "L" }, + { "dta", null, null, null, null, "Daur", "I", "L" }, + { "dsq", null, null, null, null, "Tadaksahak", "I", "L" }, + { "dso", null, null, null, null, "Desiya", "I", "L" }, + { "dsn", null, null, null, null, "Dusner", "I", "E" }, + { "dsl", null, null, null, null, "Danish Sign Language", "I", "L" }, + { "dsi", null, null, null, null, "Disa", "I", "L" }, + { "dsh", null, null, null, null, "Daasanach", "I", "L" }, + { "dse", null, null, null, null, "Dutch Sign Language", "I", "L" }, + { "dsb", null, null, "dsb", "dsb", "Lower Sorbian", "I", "L" }, + { "dry", null, null, null, null, "Darai", "I", "L" }, + { "doh", null, null, null, null, "Dong", "I", "L" }, + { "dof", null, null, null, null, "Domu", "I", "L" }, + { "doe", null, null, null, null, "Doe", "I", "L" }, + { "doc", null, null, null, null, "Northern Dong", "I", "L" }, + { "dmc", null, null, null, null, "Gavak", "I", "L" }, + { "dmb", null, null, null, null, "Mombo Dogon", "I", "L" }, + { "dma", null, null, null, null, "Duma", "I", "L" }, + { "dln", null, null, null, null, "Darlong", "I", "L" }, + { "dlm", null, null, null, null, "Dalmatian", "I", "E" }, + { "dlk", null, null, null, null, "Dahalik", "I", "L" }, + { "dlg", null, null, null, null, "Dolgan", "I", "L" }, + { "dkx", null, null, null, null, "Mazagway", "I", "L" }, + { "dks", null, null, null, null, "Southeastern Dinka", "I", "L" }, + { "dkr", null, null, null, null, "Kuijau", "I", "L" }, + { "dkk", null, null, null, null, "Dakka", "I", "L" }, + { "dka", null, null, null, null, "Dakpakha", "I", "L" }, + { "djw", null, null, null, null, "Djawi", "I", "E" }, + { "dju", null, null, null, null, "Kapriman", "I", "L" }, + { "djr", null, null, null, null, "Djambarrpuyngu", "I", "L" }, + { "djo", null, null, null, null, "Jangkang", "I", "L" }, + { "djn", null, null, null, null, "Jawoyn", "I", "L" }, + { "djm", null, null, null, null, "Jamsay Dogon", "I", "L" }, + { "djk", null, null, null, null, "Eastern Maroon Creole", "I", "L" }, + { "djj", null, null, null, null, "Djeebbana", "I", "L" }, + { "dji", null, null, null, null, "Djinang", "I", "L" }, + { "djf", null, null, null, null, "Djangun", "I", "E" }, + { "dje", null, null, null, null, "Zarma", "I", "L" }, + { "djd", null, null, null, null, "Djamindjung", "I", "L" }, + { "djc", null, null, null, null, "Dar Daju Daju", "I", "L" }, + { "djb", null, null, null, null, "Djinba", "I", "L" }, + { "dja", null, null, null, null, "Djadjawurrung", "I", "E" }, + { "dmd", null, null, null, null, "Madhi Madhi", "I", "E" }, + { "diy", null, null, null, null, "Diuwe", "I", "L" }, + { "dme", null, null, null, null, "Dugwor", "I", "L" }, + { "dmk", null, null, null, null, "Domaaki", "I", "L" }, + { "dob", null, null, null, null, "Dobu", "I", "L" }, + { "doa", null, null, null, null, "Dom", "I", "L" }, + { "dny", null, null, null, null, "Dení", "I", "L" }, + { "dnw", null, null, null, null, "Western Dani", "I", "L" }, + { "dnv", null, null, null, null, "Danu", "I", "L" }, + { "dnu", null, null, null, null, "Danau", "I", "L" }, + { "dnt", null, null, null, null, "Mid Grand Valley Dani", "I", "L" }, + { "dnr", null, null, null, null, "Danaru", "I", "L" }, + { "dno", null, null, null, null, "Ndrulo", "I", "L" }, + { "dnn", null, null, null, null, "Dzùùngoo", "I", "L" }, + { "dnk", null, null, null, null, "Dengka", "I", "L" }, + { "dnj", null, null, null, null, "Dan", "I", "L" }, + { "dni", null, null, null, null, "Lower Grand Valley Dani", "I", "L" }, + { "dng", null, null, null, null, "Dungan", "I", "L" }, + { "dne", null, null, null, null, "Ndendeule", "I", "L" }, + { "dnd", null, null, null, null, "Daonda", "I", "L" }, + { "dna", null, null, null, null, "Upper Grand Valley Dani", "I", "L" }, + { "dmy", null, null, null, null, "Demta", "I", "L" }, + { "dmx", null, null, null, null, "Dema", "I", "L" }, + { "dmw", null, null, null, null, "Mudburra", "I", "L" }, + { "dmv", null, null, null, null, "Dumpas", "I", "L" }, + { "dmu", null, null, null, null, "Dubu", "I", "L" }, + { "dms", null, null, null, null, "Dampelas", "I", "L" }, + { "dmr", null, null, null, null, "East Damar", "I", "L" }, + { "dmo", null, null, null, null, "Kemedzung", "I", "L" }, + { "dmm", null, null, null, null, "Dama", "I", "L" }, + { "dml", null, null, null, null, "Dameli", "I", "L" }, + { "dmg", null, null, null, null, "Upper Kinabatangan", "I", "L" }, + { "fui", null, null, null, null, "Bagirmi Fulfulde", "I", "L" }, + { "btg", null, null, null, null, "Gagnoa Bété", "I", "L" }, + { "bte", null, null, null, null, "Gamo-Ningi", "I", "E" }, + { "apx", null, null, null, null, "Aputai", "I", "L" }, + { "apw", null, null, null, null, "Western Apache", "I", "L" }, + { "apv", null, null, null, null, "Alapmunte", "I", "E" }, + { "apu", null, null, null, null, "Apurinã", "I", "L" }, + { "apt", null, null, null, null, "Apatani", "I", "L" }, + { "aps", null, null, null, null, "Arop-Sissano", "I", "L" }, + { "apr", null, null, null, null, "Arop-Lokep", "I", "L" }, + { "apq", null, null, null, null, "A-Pucikwar", "I", "L" }, + { "app", null, null, null, null, "Apma", "I", "L" }, + { "apo", null, null, null, null, "Ambul", "I", "L" }, + { "apn", null, null, null, null, "Apinayé", "I", "L" }, + { "apm", null, null, null, null, "Mescalero-Chiricahua Apache", "I", "L" }, + { "apy", null, null, null, null, "Apalaí", "I", "L" }, + { "apl", null, null, null, null, "Lipan Apache", "I", "L" }, + { "apj", null, null, null, null, "Jicarilla Apache", "I", "L" }, + { "api", null, null, null, null, "Apiaká", "I", "L" }, + { "aph", null, null, null, null, "Athpariya", "I", "L" }, + { "apg", null, null, null, null, "Ampanang", "I", "L" }, + { "apf", null, null, null, null, "Pahanan Agta", "I", "L" }, + { "ape", null, null, null, null, "Bukiyip", "I", "L" }, + { "apd", null, null, null, null, "Sudanese Arabic", "I", "L" }, + { "apc", null, null, null, null, "North Levantine Arabic", "I", "L" }, + { "apb", null, null, null, null, "Sa'a", "I", "L" }, + { "aoz", null, null, null, null, "Uab Meto", "I", "L" }, + { "aox", null, null, null, null, "Atorada", "I", "L" }, + { "aou", null, null, null, null, "A'ou", "I", "L" }, + { "apk", null, null, null, null, "Kiowa Apache", "I", "L" }, + { "apz", null, null, null, null, "Safeyoka", "I", "L" }, + { "aqc", null, null, null, null, "Archi", "I", "L" }, + { "aqd", null, null, null, null, "Ampari Dogon", "I", "L" }, + { "arw", null, null, "arw", "arw", "Arawak", "I", "L" }, + { "arv", null, null, null, null, "Arbore", "I", "L" }, + { "aru", null, null, null, null, "Aruá (Amazonas State)", "I", "E" }, + { "ars", null, null, null, null, "Najdi Arabic", "I", "L" }, + { "arr", null, null, null, null, "Karo (Brazil)", "I", "L" }, + { "arq", null, null, null, null, "Algerian Arabic", "I", "L" }, + { "arp", null, null, "arp", "arp", "Arapaho", "I", "L" }, + { "aro", null, null, null, null, "Araona", "I", "L" }, + { "arn", null, null, "arn", "arn", "Mapudungun", "I", "L" }, + { "arl", null, null, null, null, "Arabela", "I", "L" }, + { "ark", null, null, null, null, "Arikapú", "I", "L" }, + { "arj", null, null, null, null, "Arapaso", "I", "E" }, + { "ari", null, null, null, null, "Arikara", "I", "L" }, + { "arh", null, null, null, null, "Arhuaco", "I", "L" }, + { "arg", null, "an", "arg", "arg", "Aragonese", "I", "L" }, + { "are", null, null, null, null, "Western Arrarnta", "I", "L" }, + { "ard", null, null, null, null, "Arabana", "I", "E" }, + { "arc", null, null, "arc", "arc", "Official Aramaic (700-300 BCE)", "I", "A" }, + { "arb", null, null, null, null, "Standard Arabic", "I", "L" }, + { "ara", null, "ar", "ara", "ara", "Arabic", "M", "L" }, + { "aqz", null, null, null, null, "Akuntsu", "I", "L" }, + { "aqt", null, null, null, null, "Angaité", "I", "L" }, + { "aqr", null, null, null, null, "Arhâ", "I", "L" }, + { "aqp", null, null, null, null, "Atakapa", "I", "E" }, + { "aqn", null, null, null, null, "Northern Alta", "I", "L" }, + { "aqm", null, null, null, null, "Atohwaim", "I", "L" }, + { "aqg", null, null, null, null, "Arigidi", "I", "L" }, + { "aot", null, null, null, null, "Atong (India)", "I", "L" }, + { "arx", null, null, null, null, "Aruá (Rodonia State)", "I", "L" }, + { "aos", null, null, null, null, "Taikat", "I", "L" }, + { "aon", null, null, null, null, "Bumbita Arapesh", "I", "L" }, + { "anh", null, null, null, null, "Nend", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "ang", null, null, "ang", "ang", "Old English (ca. 450-1100)", "I", "H" }, + { "anf", null, null, null, null, "Animere", "I", "L" }, + { "ane", null, null, null, null, "Xârâcùù", "I", "L" }, + { "and", null, null, null, null, "Ansus", "I", "L" }, + { "anc", null, null, null, null, "Ngas", "I", "L" }, + { "anb", null, null, null, null, "Andoa", "I", "E" }, + { "ana", null, null, null, null, "Andaqui", "I", "E" }, + { "amz", null, null, null, null, "Atampaya", "I", "E" }, + { "amy", null, null, null, null, "Ami", "I", "L" }, + { "amx", null, null, null, null, "Anmatyerre", "I", "L" }, + { "amw", null, null, null, null, "Western Neo-Aramaic", "I", "L" }, + { "ani", null, null, null, null, "Andi", "I", "L" }, + { "amv", null, null, null, null, "Ambelau", "I", "L" }, + { "amt", null, null, null, null, "Amto", "I", "L" }, + { "ams", null, null, null, null, "Southern Amami-Oshima", "I", "L" }, + { "amr", null, null, null, null, "Amarakaeri", "I", "L" }, + { "amq", null, null, null, null, "Amahai", "I", "L" }, + { "amp", null, null, null, null, "Alamblak", "I", "L" }, + { "amo", null, null, null, null, "Amo", "I", "L" }, + { "amn", null, null, null, null, "Amanab", "I", "L" }, + { "amm", null, null, null, null, "Ama (Papua New Guinea)", "I", "L" }, + { "aml", null, null, null, null, "War-Jaintia", "I", "L" }, + { "amk", null, null, null, null, "Ambai", "I", "L" }, + { "amj", null, null, null, null, "Amdang", "I", "L" }, + { "ami", null, null, null, null, "Amis", "I", "L" }, + { "amu", null, null, null, null, "Guerrero Amuzgo", "I", "L" }, + { "anj", null, null, null, null, "Anor", "I", "L" }, + { "ank", null, null, null, null, "Goemai", "I", "L" }, + { "anl", null, null, null, null, "Anu-Hkongso Chin", "I", "L" }, + { "aom", null, null, null, null, "Ömie", "I", "L" }, + { "aol", null, null, null, null, "Alor", "I", "L" }, + { "aok", null, null, null, null, "Arhö", "I", "L" }, + { "aoj", null, null, null, null, "Mufian", "I", "L" }, + { "aoi", null, null, null, null, "Anindilyakwa", "I", "L" }, + { "aoh", null, null, null, null, "Arma", "I", "E" }, + { "aog", null, null, null, null, "Angoram", "I", "L" }, + { "aof", null, null, null, null, "Bragat", "I", "L" }, + { "aoe", null, null, null, null, "Angal Enen", "I", "L" }, + { "aod", null, null, null, null, "Andarum", "I", "L" }, + { "aoc", null, null, null, null, "Pemon", "I", "L" }, + { "aob", null, null, null, null, "Abom", "I", "L" }, + { "aoa", null, null, null, null, "Angolar", "I", "L" }, + { "anz", null, null, null, null, "Anem", "I", "L" }, + { "any", null, null, null, null, "Anyin", "I", "L" }, + { "anx", null, null, null, null, "Andra-Hus", "I", "L" }, + { "anw", null, null, null, null, "Anaang", "I", "L" }, + { "anv", null, null, null, null, "Denya", "I", "L" }, + { "anu", null, null, null, null, "Anuak", "I", "L" }, + { "ant", null, null, null, null, "Antakarinya", "I", "L" }, + { "ans", null, null, null, null, "Anserma", "I", "E" }, + { "anr", null, null, null, null, "Andh", "I", "L" }, + { "anq", null, null, null, null, "Jarawa (India)", "I", "L" }, + { "anp", null, null, "anp", "anp", "Angika", "I", "L" }, + { "ano", null, null, null, null, "Andoque", "I", "L" }, + { "ann", null, null, null, null, "Obolo", "I", "L" }, + { "anm", null, null, null, null, "Anal", "I", "L" }, + { "aor", null, null, null, null, "Aore", "I", "E" }, + { "ary", null, null, null, null, "Moroccan Arabic", "I", "L" }, + { "arz", null, null, null, null, "Egyptian Arabic", "I", "L" }, + { "asa", null, null, null, null, "Asu (Tanzania)", "I", "L" }, + { "awe", null, null, null, null, "Awetí", "I", "L" }, + { "awc", null, null, null, null, "Cicipu", "I", "L" }, + { "awb", null, null, null, null, "Awa (Papua New Guinea)", "I", "L" }, + { "awa", null, null, "awa", "awa", "Awadhi", "I", "L" }, + { "avv", null, null, null, null, "Avá-Canoeiro", "I", "L" }, + { "avu", null, null, null, null, "Avokaya", "I", "L" }, + { "avt", null, null, null, null, "Au", "I", "L" }, + { "avs", null, null, null, null, "Aushiri", "I", "E" }, + { "avo", null, null, null, null, "Agavotaguerra", "I", "E" }, + { "avn", null, null, null, null, "Avatime", "I", "L" }, + { "avm", null, null, null, null, "Angkamuthi", "I", "E" }, + { "avl", null, null, null, null, "Eastern Egyptian Bedawi Arabic", "I", "L" }, + { "awg", null, null, null, null, "Anguthimri", "I", "E" }, + { "avk", null, null, null, null, "Kotava", "I", "C" }, + { "ave", null, "ae", "ave", "ave", "Avestan", "I", "A" }, + { "avd", null, null, null, null, "Alviri-Vidari", "I", "L" }, + { "avb", null, null, null, null, "Avau", "I", "L" }, + { "ava", null, "av", "ava", "ava", "Avaric", "I", "L" }, + { "auz", null, null, null, null, "Uzbeki Arabic", "I", "L" }, + { "auy", null, null, null, null, "Awiyaana", "I", "L" }, + { "aux", null, null, null, null, "Aurá", "I", "E" }, + { "auw", null, null, null, null, "Awyi", "I", "L" }, + { "auu", null, null, null, null, "Auye", "I", "L" }, + { "aut", null, null, null, null, "Austral", "I", "L" }, + { "aur", null, null, null, null, "Aruek", "I", "L" }, + { "auq", null, null, null, null, "Anus", "I", "L" }, + { "avi", null, null, null, null, "Avikam", "I", "L" }, + { "awh", null, null, null, null, "Awbono", "I", "L" }, + { "awi", null, null, null, null, "Aekyom", "I", "L" }, + { "awk", null, null, null, null, "Awabakal", "I", "E" }, + { "ayk", null, null, null, null, "Akuku", "I", "L" }, + { "ayi", null, null, null, null, "Leyigha", "I", "L" }, + { "ayh", null, null, null, null, "Hadrami Arabic", "I", "L" }, + { "ayg", null, null, null, null, "Ginyanga", "I", "L" }, + { "aye", null, null, null, null, "Ayere", "I", "L" }, + { "ayd", null, null, null, null, "Ayabadhu", "I", "E" }, + { "ayc", null, null, null, null, "Southern Aymara", "I", "L" }, + { "ayb", null, null, null, null, "Ayizo Gbe", "I", "L" }, + { "aya", null, null, null, null, "Awar", "I", "L" }, + { "axx", null, null, null, null, "Xârâgurè", "I", "L" }, + { "axm", null, null, null, null, "Middle Armenian", "I", "H" }, + { "axl", null, null, null, null, "Lower Southern Aranda", "I", "E" }, + { "axk", null, null, null, null, "Yaka (Central African Republic)", "I", "L" }, + { "axg", null, null, null, null, "Mato Grosso Arára", "I", "E" }, + { "axe", null, null, null, null, "Ayerrerenge", "I", "E" }, + { "axb", null, null, null, null, "Abipon", "I", "E" }, + { "awy", null, null, null, null, "Edera Awyu", "I", "L" }, + { "awx", null, null, null, null, "Awara", "I", "L" }, + { "aww", null, null, null, null, "Awun", "I", "L" }, + { "awv", null, null, null, null, "Jair Awyu", "I", "L" }, + { "awu", null, null, null, null, "Central Awyu", "I", "L" }, + { "awt", null, null, null, null, "Araweté", "I", "L" }, + { "aws", null, null, null, null, "South Awyu", "I", "L" }, + { "awr", null, null, null, null, "Awera", "I", "L" }, + { "awo", null, null, null, null, "Awak", "I", "L" }, + { "awn", null, null, null, null, "Awngi", "I", "L" }, + { "awm", null, null, null, null, "Arawum", "I", "L" }, + { "aup", null, null, null, null, "Makayam", "I", "L" }, + { "auo", null, null, null, null, "Auyokawa", "I", "E" }, + { "aun", null, null, null, null, "Molmo One", "I", "L" }, + { "aum", null, null, null, null, "Asu (Nigeria)", "I", "L" }, + { "atc", null, null, null, null, "Atsahuaca", "I", "E" }, + { "atb", null, null, null, null, "Zaiwa", "I", "L" }, + { "ata", null, null, null, null, "Pele-Ata", "I", "L" }, + { "asz", null, null, null, null, "As", "I", "L" }, + { "asy", null, null, null, null, "Yaosakor Asmat", "I", "L" }, + { "asx", null, null, null, null, "Muratayak", "I", "L" }, + { "asw", null, null, null, null, "Australian Aborigines Sign Language", "I", "L" }, + { "asv", null, null, null, null, "Asoa", "I", "L" }, + { "asu", null, null, null, null, "Tocantins Asurini", "I", "L" }, + { "ast", null, null, "ast", "ast", "Asturian", "I", "L" }, + { "ass", null, null, null, null, "Ipulo", "I", "L" }, + { "asr", null, null, null, null, "Asuri", "I", "L" }, + { "asq", null, null, null, null, "Austrian Sign Language", "I", "L" }, + { "asp", null, null, null, null, "Algerian Sign Language", "I", "L" }, + { "aso", null, null, null, null, "Dano", "I", "L" }, + { "asn", null, null, null, null, "Xingú Asuriní", "I", "L" }, + { "asm", null, "as", "asm", "asm", "Assamese", "I", "L" }, + { "asl", null, null, null, null, "Asilulu", "I", "L" }, + { "ask", null, null, null, null, "Ashkun", "I", "L" }, + { "asj", null, null, null, null, "Sari", "I", "L" }, + { "asi", null, null, null, null, "Buruwai", "I", "L" }, + { "ash", null, null, null, null, "Abishira", "I", "E" }, + { "asg", null, null, null, null, "Cishingini", "I", "L" }, + { "asf", null, null, null, null, "Auslan", "I", "L" }, + { "ase", null, null, null, null, "American Sign Language", "I", "L" }, + { "asc", null, null, null, null, "Casuarina Coast Asmat", "I", "L" }, + { "asb", null, null, null, null, "Assiniboine", "I", "L" }, + { "atd", null, null, null, null, "Ata Manobo", "I", "L" }, + { "amh", null, "am", "amh", "amh", "Amharic", "I", "L" }, + { "ate", null, null, null, null, "Atemble", "I", "L" }, + { "ati", null, null, null, null, "Attié", "I", "L" }, + { "aul", null, null, null, null, "Aulua", "I", "L" }, + { "auk", null, null, null, null, "Heyo", "I", "L" }, + { "auj", null, null, null, null, "Awjilah", "I", "L" }, + { "aui", null, null, null, null, "Anuki", "I", "L" }, + { "auh", null, null, null, null, "Aushi", "I", "L" }, + { "aug", null, null, null, null, "Aguna", "I", "L" }, + { "aud", null, null, null, null, "Anuta", "I", "L" }, + { "auc", null, null, null, null, "Waorani", "I", "L" }, + { "aub", null, null, null, null, "Alugu", "I", "L" }, + { "aua", null, null, null, null, "Asumboa", "I", "L" }, + { "atz", null, null, null, null, "Arta", "I", "L" }, + { "aty", null, null, null, null, "Aneityum", "I", "L" }, + { "atx", null, null, null, null, "Arutani", "I", "L" }, + { "atw", null, null, null, null, "Atsugewi", "I", "L" }, + { "atv", null, null, null, null, "Northern Altai", "I", "L" }, + { "atu", null, null, null, null, "Reel", "I", "L" }, + { "att", null, null, null, null, "Pamplona Atta", "I", "L" }, + { "ats", null, null, null, null, "Gros Ventre", "I", "L" }, + { "atr", null, null, null, null, "Waimiri-Atroari", "I", "L" }, + { "atq", null, null, null, null, "Aralle-Tabulahan", "I", "L" }, + { "atp", null, null, null, null, "Pudtol Atta", "I", "L" }, + { "ato", null, null, null, null, "Atong (Cameroon)", "I", "L" }, + { "atn", null, null, null, null, "Ashtiani", "I", "L" }, + { "atm", null, null, null, null, "Ata", "I", "L" }, + { "atl", null, null, null, null, "Mt. Iraya Agta", "I", "L" }, + { "atk", null, null, null, null, "Ati", "I", "L" }, + { "atj", null, null, null, null, "Atikamekw", "I", "L" }, + { "atg", null, null, null, null, "Ivbie North-Okpela-Arhe", "I", "L" }, + { "amg", null, null, null, null, "Amurdak", "I", "L" }, + { "amf", null, null, null, null, "Hamer-Banna", "I", "L" }, + { "ame", null, null, null, null, "Yanesha'", "I", "L" }, + { "adx", null, null, null, null, "Amdo Tibetan", "I", "L" }, + { "adw", null, null, null, null, "Amundava", "I", "L" }, + { "adu", null, null, null, null, "Aduge", "I", "L" }, + { "adt", null, null, null, null, "Adnyamathanha", "I", "L" }, + { "ads", null, null, null, null, "Adamorobe Sign Language", "I", "L" }, + { "adr", null, null, null, null, "Adonara", "I", "L" }, + { "adq", null, null, null, null, "Adangbe", "I", "L" }, + { "ado", null, null, null, null, "Abu", "I", "L" }, + { "adn", null, null, null, null, "Adang", "I", "L" }, + { "adl", null, null, null, null, "Galo", "I", "L" }, + { "adj", null, null, null, null, "Adioukrou", "I", "L" }, + { "adi", null, null, null, null, "Adi", "I", "L" }, + { "ady", null, null, "ady", "ady", "Adyghe", "I", "L" }, + { "adh", null, null, null, null, "Adhola", "I", "L" }, + { "adf", null, null, null, null, "Dhofari Arabic", "I", "L" }, + { "ade", null, null, null, null, "Adele", "I", "L" }, + { "add", null, null, null, null, "Lidzonka", "I", "L" }, + { "adb", null, null, null, null, "Adabe", "I", "L" }, + { "ada", null, null, "ada", "ada", "Adangme", "I", "L" }, + { "acz", null, null, null, null, "Acheron", "I", "L" }, + { "acy", null, null, null, null, "Cypriot Arabic", "I", "L" }, + { "acx", null, null, null, null, "Omani Arabic", "I", "L" }, + { "acw", null, null, null, null, "Hijazi Arabic", "I", "L" }, + { "acv", null, null, null, null, "Achumawi", "I", "L" }, + { "acu", null, null, null, null, "Achuar-Shiwiar", "I", "L" }, + { "act", null, null, null, null, "Achterhoeks", "I", "L" }, + { "adg", null, null, null, null, "Andegerebinha", "I", "L" }, + { "adz", null, null, null, null, "Adzera", "I", "L" }, + { "aea", null, null, null, null, "Areba", "I", "E" }, + { "aeb", null, null, null, null, "Tunisian Arabic", "I", "L" }, + { "aft", null, null, null, null, "Afitti", "I", "L" }, + { "afs", null, null, null, null, "Afro-Seminole Creole", "I", "L" }, + { "afr", null, "af", "afr", "afr", "Afrikaans", "I", "L" }, + { "afp", null, null, null, null, "Tapei", "I", "L" }, + { "afo", null, null, null, null, "Eloyi", "I", "L" }, + { "afn", null, null, null, null, "Defaka", "I", "L" }, + { "afk", null, null, null, null, "Nanubae", "I", "L" }, + { "afi", null, null, null, null, "Akrukay", "I", "L" }, + { "afh", null, null, "afh", "afh", "Afrihili", "I", "C" }, + { "afg", null, null, null, null, "Afghan Sign Language", "I", "L" }, + { "afe", null, null, null, null, "Putukwam", "I", "L" }, + { "afd", null, null, null, null, "Andai", "I", "L" }, + { "afb", null, null, null, null, "Gulf Arabic", "I", "L" }, + { "aez", null, null, null, null, "Aeka", "I", "L" }, + { "aey", null, null, null, null, "Amele", "I", "L" }, + { "aew", null, null, null, null, "Ambakich", "I", "L" }, + { "aeu", null, null, null, null, "Akeu", "I", "L" }, + { "aes", null, null, null, null, "Alsea", "I", "E" }, + { "aer", null, null, null, null, "Eastern Arrernte", "I", "L" }, + { "aeq", null, null, null, null, "Aer", "I", "L" }, + { "aen", null, null, null, null, "Armenian Sign Language", "I", "L" }, + { "aem", null, null, null, null, "Arem", "I", "L" }, + { "ael", null, null, null, null, "Ambele", "I", "L" }, + { "aek", null, null, null, null, "Haeke", "I", "L" }, + { "aee", null, null, null, null, "Northeast Pashai", "I", "L" }, + { "aed", null, null, null, null, "Argentine Sign Language", "I", "L" }, + { "aec", null, null, null, null, "Saidi Arabic", "I", "L" }, + { "acs", null, null, null, null, "Acroá", "I", "E" }, + { "acr", null, null, null, null, "Achi", "I", "L" }, + { "acq", null, null, null, null, "Ta'izzi-Adeni Arabic", "I", "L" }, + { "acp", null, null, null, null, "Eastern Acipa", "I", "L" }, + { "abf", null, null, null, null, "Abai Sungai", "I", "L" }, + { "abe", null, null, null, null, "Western Abnaki", "I", "L" }, + { "abd", null, null, null, null, "Manide", "I", "L" }, + { "abc", null, null, null, null, "Ambala Ayta", "I", "L" }, + { "abb", null, null, null, null, "Bankon", "I", "L" }, + { "aba", null, null, null, null, "Abé", "I", "L" }, + { "aaz", null, null, null, null, "Amarasi", "I", "L" }, + { "aax", null, null, null, null, "Mandobo Atas", "I", "L" }, + { "aaw", null, null, null, null, "Solong", "I", "L" }, + { "aau", null, null, null, null, "Abau", "I", "L" }, + { "aat", null, null, null, null, "Arvanitika Albanian", "I", "L" }, + { "aas", null, null, null, null, "Aasáx", "I", "L" }, + { "aar", null, "aa", "aar", "aar", "Afar", "I", "L" }, + { "aaq", null, null, null, null, "Eastern Abnaki", "I", "E" }, + { "aap", null, null, null, null, "Pará Arára", "I", "L" }, + { "aao", null, null, null, null, "Algerian Saharan Arabic", "I", "L" }, + { "aan", null, null, null, null, "Anambé", "I", "L" }, + { "aal", null, null, null, null, "Afade", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "aak", null, null, null, null, "Ankave", "I", "L" }, + { "aai", null, null, null, null, "Arifama-Miniafia", "I", "L" }, + { "aah", null, null, null, null, "Abu' Arapesh", "I", "L" }, + { "aag", null, null, null, null, "Ambrak", "I", "L" }, + { "aaf", null, null, null, null, "Aranadan", "I", "L" }, + { "aae", null, null, null, null, "Arbëreshë Albanian", "I", "L" }, + { "aad", null, null, null, null, "Amal", "I", "L" }, + { "aac", null, null, null, null, "Ari", "I", "L" }, + { "aab", null, null, null, null, "Alumu-Tesu", "I", "L" }, + { "abg", null, null, null, null, "Abaga", "I", "L" }, + { "afu", null, null, null, null, "Awutu", "I", "L" }, + { "abh", null, null, null, null, "Tajiki Arabic", "I", "L" }, + { "abj", null, null, null, null, "Aka-Bea", "I", "E" }, + { "acn", null, null, null, null, "Achang", "I", "L" }, + { "acm", null, null, null, null, "Mesopotamian Arabic", "I", "L" }, + { "acl", null, null, null, null, "Akar-Bale", "I", "E" }, + { "ack", null, null, null, null, "Aka-Kora", "I", "E" }, + { "aci", null, null, null, null, "Aka-Cari", "I", "E" }, + { "ach", null, null, "ach", "ach", "Acoli", "I", "L" }, + { "acf", null, null, null, null, "Saint Lucian Creole French", "I", "L" }, + { "ace", null, null, "ace", "ace", "Achinese", "I", "L" }, + { "acd", null, null, null, null, "Gikyode", "I", "L" }, + { "acb", null, null, null, null, "Áncá", "I", "L" }, + { "aca", null, null, null, null, "Achagua", "I", "L" }, + { "abz", null, null, null, null, "Abui", "I", "L" }, + { "aby", null, null, null, null, "Aneme Wake", "I", "L" }, + { "abx", null, null, null, null, "Inabaknon", "I", "L" }, + { "abw", null, null, null, null, "Pal", "I", "L" }, + { "abv", null, null, null, null, "Baharna Arabic", "I", "L" }, + { "abu", null, null, null, null, "Abure", "I", "L" }, + { "abt", null, null, null, null, "Ambulas", "I", "L" }, + { "abs", null, null, null, null, "Ambonese Malay", "I", "L" }, + { "abr", null, null, null, null, "Abron", "I", "L" }, + { "abq", null, null, null, null, "Abaza", "I", "L" }, + { "abp", null, null, null, null, "Abellen Ayta", "I", "L" }, + { "abo", null, null, null, null, "Abon", "I", "L" }, + { "abn", null, null, null, null, "Abua", "I", "L" }, + { "abm", null, null, null, null, "Abanyom", "I", "L" }, + { "abl", null, null, null, null, "Lampung Nyo", "I", "L" }, + { "abk", null, "ab", "abk", "abk", "Abkhazian", "I", "L" }, + { "abi", null, null, null, null, "Abidji", "I", "L" }, + { "ayl", null, null, null, null, "Libyan Arabic", "I", "L" }, + { "afz", null, null, null, null, "Obokuitai", "I", "L" }, + { "agb", null, null, null, null, "Legbo", "I", "L" }, + { "aku", null, null, null, null, "Akum", "I", "L" }, + { "akt", null, null, null, null, "Akolet", "I", "L" }, + { "aks", null, null, null, null, "Akaselem", "I", "L" }, + { "akr", null, null, null, null, "Araki", "I", "L" }, + { "akq", null, null, null, null, "Ak", "I", "L" }, + { "akp", null, null, null, null, "Siwu", "I", "L" }, + { "ako", null, null, null, null, "Akurio", "I", "L" }, + { "akm", null, null, null, null, "Aka-Bo", "I", "E" }, + { "akl", null, null, null, null, "Aklanon", "I", "L" }, + { "akk", null, null, "akk", "akk", "Akkadian", "I", "A" }, + { "akj", null, null, null, null, "Aka-Jeru", "I", "E" }, + { "aki", null, null, null, null, "Aiome", "I", "L" }, + { "akv", null, null, null, null, "Akhvakh", "I", "L" }, + { "akh", null, null, null, null, "Angal Heneng", "I", "L" }, + { "akf", null, null, null, null, "Akpa", "I", "L" }, + { "ake", null, null, null, null, "Akawaio", "I", "L" }, + { "akd", null, null, null, null, "Ukpet-Ehom", "I", "L" }, + { "akc", null, null, null, null, "Mpur", "I", "L" }, + { "akb", null, null, null, null, "Batak Angkola", "I", "L" }, + { "aka", null, "ak", "aka", "aka", "Akan", "M", "L" }, + { "ajz", null, null, null, null, "Amri Karbi", "I", "L" }, + { "ajw", null, null, null, null, "Ajawa", "I", "E" }, + { "aju", null, null, null, null, "Judeo-Moroccan Arabic", "I", "L" }, + { "ajt", null, null, null, null, "Judeo-Tunisian Arabic", "I", "L" }, + { "ajp", null, null, null, null, "South Levantine Arabic", "I", "L" }, + { "ajn", null, null, null, null, "Andajin", "I", "L" }, + { "akg", null, null, null, null, "Anakalangu", "I", "L" }, + { "akw", null, null, null, null, "Akwa", "I", "L" }, + { "akx", null, null, null, null, "Aka-Kede", "I", "E" }, + { "aky", null, null, null, null, "Aka-Kol", "I", "E" }, + { "amc", null, null, null, null, "Amahuaca", "I", "L" }, + { "amb", null, null, null, null, "Ambo", "I", "L" }, + { "ama", null, null, null, null, "Amanayé", "I", "E" }, + { "alz", null, null, null, null, "Alur", "I", "L" }, + { "aly", null, null, null, null, "Alyawarr", "I", "L" }, + { "alx", null, null, null, null, "Amol", "I", "L" }, + { "alw", null, null, null, null, "Alaba-K’abeena", "I", "L" }, + { "alu", null, null, null, null, "'Are'are", "I", "L" }, + { "alt", null, null, "alt", "alt", "Southern Altai", "I", "L" }, + { "als", null, null, null, null, "Tosk Albanian", "I", "L" }, + { "alr", null, null, null, null, "Alutor", "I", "L" }, + { "alq", null, null, null, null, "Algonquin", "I", "L" }, + { "alp", null, null, null, null, "Alune", "I", "L" }, + { "alo", null, null, null, null, "Larike-Wakasihu", "I", "L" }, + { "aln", null, null, null, null, "Gheg Albanian", "I", "L" }, + { "alm", null, null, null, null, "Amblong", "I", "L" }, + { "all", null, null, null, null, "Allar", "I", "L" }, + { "alk", null, null, null, null, "Alak", "I", "L" }, + { "alj", null, null, null, null, "Alangan", "I", "L" }, + { "ali", null, null, null, null, "Amaimon", "I", "L" }, + { "alh", null, null, null, null, "Alawa", "I", "L" }, + { "alf", null, null, null, null, "Alege", "I", "L" }, + { "ale", null, null, "ale", "ale", "Aleut", "I", "L" }, + { "ald", null, null, null, null, "Alladian", "I", "L" }, + { "alc", null, null, null, null, "Qawasqar", "I", "L" }, + { "ala", null, null, null, null, "Alago", "I", "L" }, + { "akz", null, null, null, null, "Alabama", "I", "L" }, + { "aji", null, null, null, null, "Ajië", "I", "L" }, + { "ajg", null, null, null, null, "Aja (Benin)", "I", "L" }, + { "aja", null, null, null, null, "Aja (South Sudan)", "I", "L" }, + { "aiy", null, null, null, null, "Ali", "I", "L" }, + { "ahh", null, null, null, null, "Aghu", "I", "L" }, + { "ahg", null, null, null, null, "Qimant", "I", "L" }, + { "ahb", null, null, null, null, "Axamb", "I", "L" }, + { "aha", null, null, null, null, "Ahanta", "I", "L" }, + { "agz", null, null, null, null, "Mt. Iriga Agta", "I", "L" }, + { "agy", null, null, null, null, "Southern Alta", "I", "L" }, + { "agx", null, null, null, null, "Aghul", "I", "L" }, + { "agw", null, null, null, null, "Kahua", "I", "L" }, + { "agv", null, null, null, null, "Remontado Dumagat", "I", "L" }, + { "agu", null, null, null, null, "Aguacateco", "I", "L" }, + { "agt", null, null, null, null, "Central Cagayan Agta", "I", "L" }, + { "ags", null, null, null, null, "Esimbi", "I", "L" }, + { "agr", null, null, null, null, "Aguaruna", "I", "L" }, + { "agq", null, null, null, null, "Aghem", "I", "L" }, + { "ago", null, null, null, null, "Tainae", "I", "L" }, + { "agn", null, null, null, null, "Agutaynen", "I", "L" }, + { "agm", null, null, null, null, "Angaataha", "I", "L" }, + { "agl", null, null, null, null, "Fembe", "I", "L" }, + { "agk", null, null, null, null, "Isarog Agta", "I", "L" }, + { "agj", null, null, null, null, "Argobba", "I", "L" }, + { "agi", null, null, null, null, "Agariya", "I", "L" }, + { "agh", null, null, null, null, "Ngelima", "I", "L" }, + { "agg", null, null, null, null, "Angor", "I", "L" }, + { "agf", null, null, null, null, "Arguni", "I", "L" }, + { "age", null, null, null, null, "Angal", "I", "L" }, + { "agd", null, null, null, null, "Agarabi", "I", "L" }, + { "agc", null, null, null, null, "Agatu", "I", "L" }, + { "ahi", null, null, null, null, "Tiagbamrin Aizi", "I", "L" }, + { "aga", null, null, null, null, "Aguano", "I", "E" }, + { "ahk", null, null, null, null, "Akha", "I", "L" }, + { "ahm", null, null, null, null, "Mobumrin Aizi", "I", "L" }, + { "aix", null, null, null, null, "Aighon", "I", "L" }, + { "aiw", null, null, null, null, "Aari", "I", "L" }, + { "ait", null, null, null, null, "Arikem", "I", "E" }, + { "air", null, null, null, null, "Airoran", "I", "L" }, + { "aiq", null, null, null, null, "Aimaq", "I", "L" }, + { "aip", null, null, null, null, "Burumakok", "I", "L" }, + { "aio", null, null, null, null, "Aiton", "I", "L" }, + { "ain", null, null, "ain", "ain", "Ainu (Japan)", "I", "L" }, + { "aim", null, null, null, null, "Aimol", "I", "L" }, + { "ail", null, null, null, null, "Aimele", "I", "L" }, + { "aik", null, null, null, null, "Ake", "I", "L" }, + { "aij", null, null, null, null, "Lishanid Noshan", "I", "L" }, + { "aii", null, null, null, null, "Assyrian Neo-Aramaic", "I", "L" }, + { "aih", null, null, null, null, "Ai-Cham", "I", "L" }, + { "aig", null, null, null, null, "Antigua and Barbuda Creole English", "I", "L" }, + { "aif", null, null, null, null, "Agi", "I", "L" }, + { "aie", null, null, null, null, "Amara", "I", "L" }, + { "aid", null, null, null, null, "Alngith", "I", "E" }, + { "aic", null, null, null, null, "Ainbai", "I", "L" }, + { "aib", null, null, null, null, "Ainu (China)", "I", "L" }, + { "aia", null, null, null, null, "Arosi", "I", "L" }, + { "aht", null, null, null, null, "Ahtena", "I", "L" }, + { "ahs", null, null, null, null, "Ashe", "I", "L" }, + { "ahr", null, null, null, null, "Ahirani", "I", "L" }, + { "ahp", null, null, null, null, "Aproumu Aizi", "I", "L" }, + { "aho", null, null, null, null, "Ahom", "I", "E" }, + { "ahn", null, null, null, null, "Àhàn", "I", "L" }, + { "ahl", null, null, null, null, "Igo", "I", "L" }, + { "aym", null, "ay", "aym", "aym", "Aymara", "M", "L" }, + { "ayn", null, null, null, null, "Sanaani Arabic", "I", "L" }, + { "ayo", null, null, null, null, "Ayoreo", "I", "L" }, + { "bmu", null, null, null, null, "Somba-Siawari", "I", "L" }, + { "bmt", null, null, null, null, "Biao Mon", "I", "L" }, + { "bms", null, null, null, null, "Bilma Kanuri", "I", "L" }, + { "bmr", null, null, null, null, "Muinane", "I", "L" }, + { "bmq", null, null, null, null, "Bomu", "I", "L" }, + { "bmp", null, null, null, null, "Bulgebi", "I", "L" }, + { "bmo", null, null, null, null, "Bambalang", "I", "L" }, + { "bmn", null, null, null, null, "Bina (Papua New Guinea)", "I", "E" }, + { "bmm", null, null, null, null, "Northern Betsimisaraka Malagasy", "I", "L" }, + { "bml", null, null, null, null, "Bomboli", "I", "L" }, + { "bmk", null, null, null, null, "Ghayavi", "I", "L" }, + { "bmj", null, null, null, null, "Bote-Majhi", "I", "L" }, + { "bmv", null, null, null, null, "Bum", "I", "L" }, + { "bmi", null, null, null, null, "Bagirmi", "I", "L" }, + { "bmg", null, null, null, null, "Bamwe", "I", "L" }, + { "bmf", null, null, null, null, "Bom-Kim", "I", "L" }, + { "bme", null, null, null, null, "Limassa", "I", "L" }, + { "bmd", null, null, null, null, "Baga Manduri", "I", "L" }, + { "bmc", null, null, null, null, "Biem", "I", "L" }, + { "bmb", null, null, null, null, "Bembe", "I", "L" }, + { "bma", null, null, null, null, "Lame", "I", "L" }, + { "blz", null, null, null, null, "Balantak", "I", "L" }, + { "bly", null, null, null, null, "Notre", "I", "L" }, + { "blx", null, null, null, null, "Mag-Indi Ayta", "I", "L" }, + { "blw", null, null, null, null, "Balangao", "I", "L" }, + { "blv", null, null, null, null, "Kibala", "I", "L" }, + { "bmh", null, null, null, null, "Kein", "I", "L" }, + { "bmw", null, null, null, null, "Bomwali", "I", "L" }, + { "bmx", null, null, null, null, "Baimak", "I", "L" }, + { "bmz", null, null, null, null, "Baramu", "I", "L" }, + { "bod", null, "bo", "tib", "bod", "Tibetan", "I", "L" }, + { "bob", null, null, null, null, "Aweer", "I", "L" }, + { "boa", null, null, null, null, "Bora", "I", "L" }, + { "bnz", null, null, null, null, "Beezen", "I", "L" }, + { "bny", null, null, null, null, "Bintulu", "I", "L" }, + { "bnx", null, null, null, null, "Bangubangu", "I", "L" }, + { "bnw", null, null, null, null, "Bisis", "I", "L" }, + { "bnv", null, null, null, null, "Bonerif", "I", "L" }, + { "bnu", null, null, null, null, "Bentong", "I", "L" }, + { "bns", null, null, null, null, "Bundeli", "I", "L" }, + { "bnr", null, null, null, null, "Butmas-Tur", "I", "L" }, + { "bnq", null, null, null, null, "Bantik", "I", "L" }, + { "bnp", null, null, null, null, "Bola", "I", "L" }, + { "bno", null, null, null, null, "Bantoanon", "I", "L" }, + { "bnn", null, null, null, null, "Bunun", "I", "L" }, + { "bnm", null, null, null, null, "Batanga", "I", "L" }, + { "bnl", null, null, null, null, "Boon", "I", "L" }, + { "bnk", null, null, null, null, "Bierebo", "I", "L" }, + { "bnj", null, null, null, null, "Eastern Tawbuid", "I", "L" }, + { "bni", null, null, null, null, "Bangi", "I", "L" }, + { "bng", null, null, null, null, "Benga", "I", "L" }, + { "bnf", null, null, null, null, "Masiwang", "I", "L" }, + { "bne", null, null, null, null, "Bintauna", "I", "L" }, + { "bnd", null, null, null, null, "Banda (Indonesia)", "I", "L" }, + { "bnc", null, null, null, null, "Bontok", "M", "L" }, + { "bnb", null, null, null, null, "Bookan", "I", "L" }, + { "bna", null, null, null, null, "Bonerate", "I", "L" }, + { "blt", null, null, null, null, "Tai Dam", "I", "L" }, + { "bls", null, null, null, null, "Balaesang", "I", "L" }, + { "blr", null, null, null, null, "Blang", "I", "L" }, + { "blq", null, null, null, null, "Baluan-Pam", "I", "L" }, + { "bkk", null, null, null, null, "Brokskat", "I", "L" }, + { "bkj", null, null, null, null, "Pande", "I", "L" }, + { "bki", null, null, null, null, "Baki", "I", "L" }, + { "bkh", null, null, null, null, "Bakoko", "I", "L" }, + { "bkg", null, null, null, null, "Buraka", "I", "L" }, + { "bkf", null, null, null, null, "Beeke", "I", "L" }, + { "bkd", null, null, null, null, "Binukid", "I", "L" }, + { "bkc", null, null, null, null, "Baka (Cameroon)", "I", "L" }, + { "bka", null, null, null, null, "Kyak", "I", "L" }, + { "bjz", null, null, null, null, "Baruga", "I", "L" }, + { "bjy", null, null, null, null, "Bayali", "I", "E" }, + { "bjx", null, null, null, null, "Banao Itneg", "I", "L" }, + { "bjw", null, null, null, null, "Bakwé", "I", "L" }, + { "bjv", null, null, null, null, "Bedjond", "I", "L" }, + { "bju", null, null, null, null, "Busuu", "I", "L" }, + { "bjt", null, null, null, null, "Balanta-Ganja", "I", "L" }, + { "bjs", null, null, null, null, "Bajan", "I", "L" }, + { "bjr", null, null, null, null, "Binumarien", "I", "L" }, + { "bjp", null, null, null, null, "Fanamaket", "I", "L" }, + { "bjo", null, null, null, null, "Mid-Southern Banda", "I", "L" }, + { "bjn", null, null, null, null, "Banjar", "I", "L" }, + { "bjm", null, null, null, null, "Bajelani", "I", "L" }, + { "bjl", null, null, null, null, "Bulu (Papua New Guinea)", "I", "L" }, + { "bjk", null, null, null, null, "Barok", "I", "L" }, + { "bjj", null, null, null, null, "Kanauji", "I", "L" }, + { "bji", null, null, null, null, "Burji", "I", "L" }, + { "bjh", null, null, null, null, "Bahinemo", "I", "L" }, + { "bkl", null, null, null, null, "Berik", "I", "L" }, + { "boe", null, null, null, null, "Mundabli", "I", "L" }, + { "bkm", null, null, null, null, "Kom (Cameroon)", "I", "L" }, + { "bko", null, null, null, null, "Kwa'", "I", "L" }, + { "blp", null, null, null, null, "Blablanga", "I", "L" }, + { "blo", null, null, null, null, "Anii", "I", "L" }, + { "bln", null, null, null, null, "Southern Catanduanes Bikol", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "blm", null, null, null, null, "Beli (South Sudan)", "I", "L" }, + { "bll", null, null, null, null, "Biloxi", "I", "E" }, + { "blk", null, null, null, null, "Pa'o Karen", "I", "L" }, + { "blj", null, null, null, null, "Bolongan", "I", "L" }, + { "bli", null, null, null, null, "Bolia", "I", "L" }, + { "blh", null, null, null, null, "Kuwaa", "I", "L" }, + { "blg", null, null, null, null, "Balau", "I", "L" }, + { "blf", null, null, null, null, "Buol", "I", "L" }, + { "ble", null, null, null, null, "Balanta-Kentohe", "I", "L" }, + { "bld", null, null, null, null, "Bolango", "I", "L" }, + { "blc", null, null, null, null, "Bella Coola", "I", "L" }, + { "blb", null, null, null, null, "Bilua", "I", "L" }, + { "bla", null, null, "bla", "bla", "Siksika", "I", "L" }, + { "bkz", null, null, null, null, "Bungku", "I", "L" }, + { "bky", null, null, null, null, "Bokyi", "I", "L" }, + { "bkx", null, null, null, null, "Baikeno", "I", "L" }, + { "bkw", null, null, null, null, "Bekwel", "I", "L" }, + { "bkv", null, null, null, null, "Bekwarra", "I", "L" }, + { "bku", null, null, null, null, "Buhid", "I", "L" }, + { "bkt", null, null, null, null, "Boloki", "I", "L" }, + { "bks", null, null, null, null, "Northern Sorsoganon", "I", "L" }, + { "bkr", null, null, null, null, "Bakumpai", "I", "L" }, + { "bkq", null, null, null, null, "Bakairí", "I", "L" }, + { "bkp", null, null, null, null, "Boko (Democratic Republic of Congo)", "I", "L" }, + { "bkn", null, null, null, null, "Bukitan", "I", "L" }, + { "bjg", null, null, null, null, "Bidyogo", "I", "L" }, + { "bof", null, null, null, null, "Bolon", "I", "L" }, + { "boh", null, null, null, null, "Boma", "I", "L" }, + { "brv", null, null, null, null, "Western Bru", "I", "L" }, + { "bru", null, null, null, null, "Eastern Bru", "I", "L" }, + { "brt", null, null, null, null, "Bitare", "I", "L" }, + { "brs", null, null, null, null, "Baras", "I", "L" }, + { "brr", null, null, null, null, "Birao", "I", "L" }, + { "brq", null, null, null, null, "Breri", "I", "L" }, + { "brp", null, null, null, null, "Barapasi", "I", "L" }, + { "bro", null, null, null, null, "Brokkat", "I", "L" }, + { "brn", null, null, null, null, "Boruca", "I", "L" }, + { "brm", null, null, null, null, "Barambu", "I", "L" }, + { "brl", null, null, null, null, "Birwa", "I", "L" }, + { "brk", null, null, null, null, "Birked", "I", "E" }, + { "brw", null, null, null, null, "Bellari", "I", "L" }, + { "brj", null, null, null, null, "Bieria", "I", "L" }, + { "brh", null, null, null, null, "Brahui", "I", "L" }, + { "brg", null, null, null, null, "Baure", "I", "L" }, + { "brf", null, null, null, null, "Bera", "I", "L" }, + { "bre", null, "br", "bre", "bre", "Breton", "I", "L" }, + { "brd", null, null, null, null, "Baraamu", "I", "L" }, + { "brc", null, null, null, null, "Berbice Creole Dutch", "I", "E" }, + { "brb", null, null, null, null, "Lave", "I", "L" }, + { "bra", null, null, "bra", "bra", "Braj", "I", "L" }, + { "bqz", null, null, null, null, "Bakaka", "I", "L" }, + { "bqy", null, null, null, null, "Bengkala Sign Language", "I", "L" }, + { "bqx", null, null, null, null, "Baangi", "I", "L" }, + { "bqw", null, null, null, null, "Buru (Nigeria)", "I", "L" }, + { "bri", null, null, null, null, "Mokpwe", "I", "L" }, + { "brx", null, null, null, null, "Bodo (India)", "I", "L" }, + { "bry", null, null, null, null, "Burui", "I", "L" }, + { "brz", null, null, null, null, "Bilbil", "I", "L" }, + { "btd", null, null, null, null, "Batak Dairi", "I", "L" }, + { "btc", null, null, null, null, "Bati (Cameroon)", "I", "L" }, + { "bta", null, null, null, null, "Bata", "I", "L" }, + { "bsy", null, null, null, null, "Sabah Bisaya", "I", "L" }, + { "bsx", null, null, null, null, "Yangkam", "I", "L" }, + { "bsw", null, null, null, null, "Baiso", "I", "L" }, + { "bsv", null, null, null, null, "Baga Sobané", "I", "E" }, + { "bsu", null, null, null, null, "Bahonsuai", "I", "L" }, + { "bst", null, null, null, null, "Basketo", "I", "L" }, + { "bss", null, null, null, null, "Akoose", "I", "L" }, + { "bsr", null, null, null, null, "Bassa-Kontagora", "I", "L" }, + { "bsq", null, null, null, null, "Bassa", "I", "L" }, + { "bsp", null, null, null, null, "Baga Sitemu", "I", "L" }, + { "bso", null, null, null, null, "Buso", "I", "L" }, + { "bsn", null, null, null, null, "Barasana-Eduria", "I", "L" }, + { "bsm", null, null, null, null, "Busami", "I", "L" }, + { "bsl", null, null, null, null, "Basa-Gumna", "I", "E" }, + { "bsk", null, null, null, null, "Burushaski", "I", "L" }, + { "bsj", null, null, null, null, "Bangwinji", "I", "L" }, + { "bsi", null, null, null, null, "Bassossi", "I", "L" }, + { "bsh", null, null, null, null, "Kati", "I", "L" }, + { "bsg", null, null, null, null, "Bashkardi", "I", "L" }, + { "bsf", null, null, null, null, "Bauchi", "I", "L" }, + { "bse", null, null, null, null, "Wushi", "I", "L" }, + { "bsc", null, null, null, null, "Bassari", "I", "L" }, + { "bsb", null, null, null, null, "Brunei Bisaya", "I", "L" }, + { "bsa", null, null, null, null, "Abinomn", "I", "L" }, + { "bqv", null, null, null, null, "Koro Wachi", "I", "L" }, + { "bqu", null, null, null, null, "Boguru", "I", "L" }, + { "bqt", null, null, null, null, "Bamukumbit", "I", "L" }, + { "bqs", null, null, null, null, "Bosngun", "I", "L" }, + { "bpl", null, null, null, null, "Broome Pearling Lugger Pidgin", "I", "L" }, + { "bpk", null, null, null, null, "Orowe", "I", "L" }, + { "bpj", null, null, null, null, "Binji", "I", "L" }, + { "bpi", null, null, null, null, "Bagupi", "I", "L" }, + { "bph", null, null, null, null, "Botlikh", "I", "L" }, + { "bpg", null, null, null, null, "Bonggo", "I", "L" }, + { "bpd", null, null, null, null, "Banda-Banda", "I", "L" }, + { "bpb", null, null, null, null, "Barbacoas", "I", "E" }, + { "bpa", null, null, null, null, "Daakaka", "I", "L" }, + { "boz", null, null, null, null, "Tiéyaxo Bozo", "I", "L" }, + { "boy", null, null, null, null, "Bodo (Central African Republic)", "I", "L" }, + { "box", null, null, null, null, "Buamu", "I", "L" }, + { "bow", null, null, null, null, "Rema", "I", "E" }, + { "bov", null, null, null, null, "Tuwuli", "I", "L" }, + { "bou", null, null, null, null, "Bondei", "I", "L" }, + { "bot", null, null, null, null, "Bongo", "I", "L" }, + { "bos", null, "bs", "bos", "bos", "Bosnian", "I", "L" }, + { "bor", null, null, null, null, "Borôro", "I", "L" }, + { "boq", null, null, null, null, "Bogaya", "I", "L" }, + { "bop", null, null, null, null, "Bonkiman", "I", "L" }, + { "boo", null, null, null, null, "Tiemacèwè Bozo", "I", "L" }, + { "bon", null, null, null, null, "Bine", "I", "L" }, + { "bom", null, null, null, null, "Berom", "I", "L" }, + { "bol", null, null, null, null, "Bole", "I", "L" }, + { "bok", null, null, null, null, "Bonjo", "I", "L" }, + { "boj", null, null, null, null, "Anjam", "I", "L" }, + { "boi", null, null, null, null, "Barbareño", "I", "E" }, + { "bpm", null, null, null, null, "Biyom", "I", "L" }, + { "bog", null, null, null, null, "Bamako Sign Language", "I", "L" }, + { "bpn", null, null, null, null, "Dzao Min", "I", "L" }, + { "bpp", null, null, null, null, "Kaure", "I", "L" }, + { "bqr", null, null, null, null, "Burusu", "I", "L" }, + { "bqq", null, null, null, null, "Biritai", "I", "L" }, + { "bqp", null, null, null, null, "Busa", "I", "L" }, + { "bqo", null, null, null, null, "Balo", "I", "L" }, + { "bqn", null, null, null, null, "Bulgarian Sign Language", "I", "L" }, + { "bqm", null, null, null, null, "Wumboko", "I", "L" }, + { "bql", null, null, null, null, "Bilakura", "I", "L" }, + { "bqk", null, null, null, null, "Banda-Mbrès", "I", "L" }, + { "bqj", null, null, null, null, "Bandial", "I", "L" }, + { "bqi", null, null, null, null, "Bakhtiari", "I", "L" }, + { "bqh", null, null, null, null, "Baima", "I", "L" }, + { "bqg", null, null, null, null, "Bago-Kusuntu", "I", "L" }, + { "bqf", null, null, null, null, "Baga Kaloum", "I", "E" }, + { "bqd", null, null, null, null, "Bung", "I", "L" }, + { "bqc", null, null, null, null, "Boko (Benin)", "I", "L" }, + { "bqb", null, null, null, null, "Bagusa", "I", "L" }, + { "bqa", null, null, null, null, "Tchumbuli", "I", "L" }, + { "bpz", null, null, null, null, "Bilba", "I", "L" }, + { "bpy", null, null, null, null, "Bishnupriya", "I", "L" }, + { "bpx", null, null, null, null, "Palya Bareli", "I", "L" }, + { "bpw", null, null, null, null, "Bo (Papua New Guinea)", "I", "L" }, + { "bpv", null, null, null, null, "Bian Marind", "I", "L" }, + { "bpu", null, null, null, null, "Bongu", "I", "L" }, + { "bpt", null, null, null, null, "Barrow Point", "I", "E" }, + { "bps", null, null, null, null, "Sarangani Blaan", "I", "L" }, + { "bpr", null, null, null, null, "Koronadal Blaan", "I", "L" }, + { "bpq", null, null, null, null, "Banda Malay", "I", "L" }, + { "bpo", null, null, null, null, "Anasi", "I", "L" }, + { "btf", null, null, null, null, "Birgit", "I", "L" }, + { "bjf", null, null, null, null, "Barzani Jewish Neo-Aramaic", "I", "L" }, + { "bjc", null, null, null, null, "Bariji", "I", "L" }, + { "bcv", null, null, null, null, "Shoo-Minda-Nye", "I", "L" }, + { "bcu", null, null, null, null, "Awad Bing", "I", "L" }, + { "bct", null, null, null, null, "Bendi", "I", "L" }, + { "bcs", null, null, null, null, "Kohumono", "I", "L" }, + { "bcr", null, null, null, null, "Babine", "I", "L" }, + { "bcq", null, null, null, null, "Bench", "I", "L" }, + { "bcp", null, null, null, null, "Bali (Democratic Republic of Congo)", "I", "L" }, + { "bco", null, null, null, null, "Kaluli", "I", "L" }, + { "bcn", null, null, null, null, "Bali (Nigeria)", "I", "L" }, + { "bcm", null, null, null, null, "Bannoni", "I", "L" }, + { "bcl", null, null, null, null, "Central Bikol", "I", "L" }, + { "bck", null, null, null, null, "Bunuba", "I", "L" }, + { "bcw", null, null, null, null, "Bana", "I", "L" }, + { "bcj", null, null, null, null, "Bardi", "I", "L" }, + { "bch", null, null, null, null, "Bariai", "I", "L" }, + { "bcg", null, null, null, null, "Baga Pokur", "I", "L" }, + { "bcf", null, null, null, null, "Bamu", "I", "L" }, + { "bce", null, null, null, null, "Bamenyam", "I", "L" }, + { "bcd", null, null, null, null, "North Babar", "I", "L" }, + { "bcc", null, null, null, null, "Southern Balochi", "I", "L" }, + { "bcb", null, null, null, null, "Bainouk-Samik", "I", "L" }, + { "bca", null, null, null, null, "Central Bai", "I", "L" }, + { "bbz", null, null, null, null, "Babalia Creole Arabic", "I", "L" }, + { "bby", null, null, null, null, "Befang", "I", "L" }, + { "bbx", null, null, null, null, "Bubia", "I", "L" }, + { "bbw", null, null, null, null, "Baba", "I", "L" }, + { "bci", null, null, null, null, "Baoulé", "I", "L" }, + { "bcy", null, null, null, null, "Bacama", "I", "L" }, + { "bcz", null, null, null, null, "Bainouk-Gunyaamolo", "I", "L" }, + { "bda", null, null, null, null, "Bayot", "I", "L" }, + { "beb", null, null, null, null, "Bebele", "I", "L" }, + { "bea", null, null, null, null, "Beaver", "I", "L" }, + { "bdz", null, null, null, null, "Badeshi", "I", "L" }, + { "bdy", null, null, null, null, "Bandjalang", "I", "L" }, + { "bdx", null, null, null, null, "Budong-Budong", "I", "L" }, + { "bdw", null, null, null, null, "Baham", "I", "L" }, + { "bdv", null, null, null, null, "Bodo Parja", "I", "L" }, + { "bdu", null, null, null, null, "Oroko", "I", "L" }, + { "bdt", null, null, null, null, "Bokoto", "I", "L" }, + { "bds", null, null, null, null, "Burunge", "I", "L" }, + { "bdr", null, null, null, null, "West Coast Bajau", "I", "L" }, + { "bdq", null, null, null, null, "Bahnar", "I", "L" }, + { "bdp", null, null, null, null, "Bende", "I", "L" }, + { "bdo", null, null, null, null, "Morom", "I", "L" }, + { "bdn", null, null, null, null, "Baldemu", "I", "L" }, + { "bdm", null, null, null, null, "Buduma", "I", "L" }, + { "bdl", null, null, null, null, "Indonesian Bajau", "I", "L" }, + { "bdk", null, null, null, null, "Budukh", "I", "L" }, + { "bdj", null, null, null, null, "Bai (South Sudan)", "I", "L" }, + { "bdi", null, null, null, null, "Burun", "I", "L" }, + { "bdh", null, null, null, null, "Baka (South Sudan)", "I", "L" }, + { "bdg", null, null, null, null, "Bonggi", "I", "L" }, + { "bdf", null, null, null, null, "Biage", "I", "L" }, + { "bde", null, null, null, null, "Bade", "I", "L" }, + { "bdd", null, null, null, null, "Bunama", "I", "L" }, + { "bdc", null, null, null, null, "Emberá-Baudó", "I", "L" }, + { "bdb", null, null, null, null, "Basap", "I", "L" }, + { "bbv", null, null, null, null, "Karnai", "I", "L" }, + { "bbu", null, null, null, null, "Kulung (Nigeria)", "I", "L" }, + { "bbt", null, null, null, null, "Mburku", "I", "L" }, + { "bbs", null, null, null, null, "Bakpinka", "I", "L" }, + { "baj", null, null, null, null, "Barakai", "I", "L" }, + { "bah", null, null, null, null, "Bahamas Creole English", "I", "L" }, + { "bag", null, null, null, null, "Tuki", "I", "L" }, + { "baf", null, null, null, null, "Nubaca", "I", "L" }, + { "bae", null, null, null, null, "Baré", "I", "E" }, + { "bac", null, null, null, null, "Badui", "I", "L" }, + { "bab", null, null, null, null, "Bainouk-Gunyuño", "I", "L" }, + { "baa", null, null, null, null, "Babatana", "I", "L" }, + { "azz", null, null, null, null, "Highland Puebla Nahuatl", "I", "L" }, + { "azt", null, null, null, null, "Faire Atta", "I", "L" }, + { "azo", null, null, null, null, "Awing", "I", "L" }, + { "azn", null, null, null, null, "Western Durango Nahuatl", "I", "L" }, + { "azm", null, null, null, null, "Ipalapa Amuzgo", "I", "L" }, + { "azj", null, null, null, null, "North Azerbaijani", "I", "L" }, + { "azg", null, null, null, null, "San Pedro Amuzgos Amuzgo", "I", "L" }, + { "aze", null, "az", "aze", "aze", "Azerbaijani", "M", "L" }, + { "azd", null, null, null, null, "Eastern Durango Nahuatl", "I", "L" }, + { "azb", null, null, null, null, "South Azerbaijani", "I", "L" }, + { "aza", null, null, null, null, "Azha", "I", "L" }, + { "ayz", null, null, null, null, "Mai Brat", "I", "L" }, + { "ayy", null, null, null, null, "Tayabas Ayta", "I", "E" }, + { "ayu", null, null, null, null, "Ayu", "I", "L" }, + { "ayt", null, null, null, null, "Magbukun Ayta", "I", "L" }, + { "ays", null, null, null, null, "Sorsogon Ayta", "I", "L" }, + { "ayr", null, null, null, null, "Central Aymara", "I", "L" }, + { "ayq", null, null, null, null, "Ayi (Papua New Guinea)", "I", "L" }, + { "ayp", null, null, null, null, "North Mesopotamian Arabic", "I", "L" }, + { "bak", null, "ba", "bak", "bak", "Bashkir", "I", "L" }, + { "bec", null, null, null, null, "Iceve-Maci", "I", "L" }, + { "bal", null, null, "bal", "bal", "Baluchi", "M", "L" }, + { "ban", null, null, "ban", "ban", "Balinese", "I", "L" }, + { "bbr", null, null, null, null, "Girawa", "I", "L" }, + { "bbq", null, null, null, null, "Bamali", "I", "L" }, + { "bbp", null, null, null, null, "West Central Banda", "I", "L" }, + { "bbo", null, null, null, null, "Northern Bobo Madaré", "I", "L" }, + { "bbn", null, null, null, null, "Uneapa", "I", "L" }, + { "bbm", null, null, null, null, "Babango", "I", "L" }, + { "bbl", null, null, null, null, "Bats", "I", "L" }, + { "bbk", null, null, null, null, "Babanki", "I", "L" }, + { "bbj", null, null, null, null, "Ghomálá'", "I", "L" }, + { "bbi", null, null, null, null, "Barombi", "I", "L" }, + { "bbh", null, null, null, null, "Bugan", "I", "L" }, + { "bbg", null, null, null, null, "Barama", "I", "L" }, + { "bbf", null, null, null, null, "Baibai", "I", "L" }, + { "bbe", null, null, null, null, "Bangba", "I", "L" }, + { "bbd", null, null, null, null, "Bau", "I", "L" }, + { "bbc", null, null, null, null, "Batak Toba", "I", "L" }, + { "bbb", null, null, null, null, "Barai", "I", "L" }, + { "bba", null, null, null, null, "Baatonum", "I", "L" }, + { "bay", null, null, null, null, "Batuley", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "bax", null, null, null, null, "Bamun", "I", "L" }, + { "baw", null, null, null, null, "Bambili-Bambui", "I", "L" }, + { "bav", null, null, null, null, "Vengo", "I", "L" }, + { "bau", null, null, null, null, "Bada (Nigeria)", "I", "L" }, + { "bas", null, null, "bas", "bas", "Basa (Cameroon)", "I", "L" }, + { "bar", null, null, null, null, "Bavarian", "I", "L" }, + { "bap", null, null, null, null, "Bantawa", "I", "L" }, + { "bao", null, null, null, null, "Waimaha", "I", "L" }, + { "bam", null, "bm", "bam", "bam", "Bambara", "I", "L" }, + { "bje", null, null, null, null, "Biao-Jiao Mien", "I", "L" }, + { "bed", null, null, null, null, "Bedoanas", "I", "L" }, + { "bef", null, null, null, null, "Benabena", "I", "L" }, + { "bhu", null, null, null, null, "Bhunjia", "I", "L" }, + { "bht", null, null, null, null, "Bhattiyali", "I", "L" }, + { "bhs", null, null, null, null, "Buwal", "I", "L" }, + { "bhr", null, null, null, null, "Bara Malagasy", "I", "L" }, + { "bhq", null, null, null, null, "Tukang Besi South", "I", "L" }, + { "bhp", null, null, null, null, "Bima", "I", "L" }, + { "bho", null, null, "bho", "bho", "Bhojpuri", "I", "L" }, + { "bhn", null, null, null, null, "Bohtan Neo-Aramaic", "I", "L" }, + { "bhm", null, null, null, null, "Bathari", "I", "L" }, + { "bhl", null, null, null, null, "Bimin", "I", "L" }, + { "bhj", null, null, null, null, "Bahing", "I", "L" }, + { "bhi", null, null, null, null, "Bhilali", "I", "L" }, + { "bhv", null, null, null, null, "Bahau", "I", "L" }, + { "bhh", null, null, null, null, "Bukharic", "I", "L" }, + { "bhf", null, null, null, null, "Odiai", "I", "L" }, + { "bhe", null, null, null, null, "Bhaya", "I", "L" }, + { "bhd", null, null, null, null, "Bhadrawahi", "I", "L" }, + { "bhc", null, null, null, null, "Biga", "I", "L" }, + { "bhb", null, null, null, null, "Bhili", "I", "L" }, + { "bha", null, null, null, null, "Bharia", "I", "L" }, + { "bgz", null, null, null, null, "Banggai", "I", "L" }, + { "bgy", null, null, null, null, "Benggoi", "I", "L" }, + { "bgx", null, null, null, null, "Balkan Gagauz Turkish", "I", "L" }, + { "bgw", null, null, null, null, "Bhatri", "I", "L" }, + { "bgv", null, null, null, null, "Warkay-Bipim", "I", "L" }, + { "bgu", null, null, null, null, "Mbongno", "I", "L" }, + { "bhg", null, null, null, null, "Binandere", "I", "L" }, + { "bhw", null, null, null, null, "Biak", "I", "L" }, + { "bhx", null, null, null, null, "Bhalay", "I", "L" }, + { "bhy", null, null, null, null, "Bhele", "I", "L" }, + { "bjb", null, null, null, null, "Banggarla", "I", "E" }, + { "bja", null, null, null, null, "Budza", "I", "L" }, + { "biz", null, null, null, null, "Baloi", "I", "L" }, + { "biy", null, null, null, null, "Birhor", "I", "L" }, + { "bix", null, null, null, null, "Bijori", "I", "L" }, + { "biw", null, null, null, null, "Kol (Cameroon)", "I", "L" }, + { "biv", null, null, null, null, "Southern Birifor", "I", "L" }, + { "biu", null, null, null, null, "Biete", "I", "L" }, + { "bit", null, null, null, null, "Berinomo", "I", "L" }, + { "bis", null, "bi", "bis", "bis", "Bislama", "I", "L" }, + { "bir", null, null, null, null, "Bisorio", "I", "L" }, + { "biq", null, null, null, null, "Bipi", "I", "L" }, + { "bip", null, null, null, null, "Bila", "I", "L" }, + { "bio", null, null, null, null, "Nai", "I", "L" }, + { "bin", null, null, "bin", "bin", "Bini", "I", "L" }, + { "bim", null, null, null, null, "Bimoba", "I", "L" }, + { "bil", null, null, null, null, "Bile", "I", "L" }, + { "bik", null, null, "bik", "bik", "Bikol", "M", "L" }, + { "bij", null, null, null, null, "Vaghat-Ya-Bijim-Legeri", "I", "L" }, + { "big", null, null, null, null, "Biangai", "I", "L" }, + { "bif", null, null, null, null, "Biafada", "I", "L" }, + { "bie", null, null, null, null, "Bepour", "I", "L" }, + { "bid", null, null, null, null, "Bidiyo", "I", "L" }, + { "bic", null, null, null, null, "Bikaru", "I", "L" }, + { "bib", null, null, null, null, "Bissa", "I", "L" }, + { "bia", null, null, null, null, "Badimaya", "I", "L" }, + { "bhz", null, null, null, null, "Bada (Indonesia)", "I", "L" }, + { "bgt", null, null, null, null, "Bughotu", "I", "L" }, + { "bgs", null, null, null, null, "Tagabawa", "I", "L" }, + { "bgr", null, null, null, null, "Bawm Chin", "I", "L" }, + { "bgq", null, null, null, null, "Bagri", "I", "L" }, + { "bfh", null, null, null, null, "Blafe", "I", "L" }, + { "bfg", null, null, null, null, "Busang Kayan", "I", "L" }, + { "bff", null, null, null, null, "Bofi", "I", "L" }, + { "bfe", null, null, null, null, "Betaf", "I", "L" }, + { "bfd", null, null, null, null, "Bafut", "I", "L" }, + { "bfc", null, null, null, null, "Panyi Bai", "I", "L" }, + { "bfb", null, null, null, null, "Pauri Bareli", "I", "L" }, + { "bfa", null, null, null, null, "Bari", "I", "L" }, + { "bez", null, null, null, null, "Bena (Tanzania)", "I", "L" }, + { "bey", null, null, null, null, "Beli (Papua New Guinea)", "I", "L" }, + { "bex", null, null, null, null, "Jur Modo", "I", "L" }, + { "bew", null, null, null, null, "Betawi", "I", "L" }, + { "bev", null, null, null, null, "Daloa Bété", "I", "L" }, + { "beu", null, null, null, null, "Blagar", "I", "L" }, + { "bet", null, null, null, null, "Guiberoua Béte", "I", "L" }, + { "bes", null, null, null, null, "Besme", "I", "L" }, + { "beq", null, null, null, null, "Beembe", "I", "L" }, + { "bep", null, null, null, null, "Besoa", "I", "L" }, + { "beo", null, null, null, null, "Beami", "I", "L" }, + { "ben", null, "bn", "ben", "ben", "Bengali", "I", "L" }, + { "bem", null, null, "bem", "bem", "Bemba (Zambia)", "I", "L" }, + { "bel", null, "be", "bel", "bel", "Belarusian", "I", "L" }, + { "bek", null, null, null, null, "Bebeli", "I", "L" }, + { "bej", null, null, "bej", "bej", "Beja", "I", "L" }, + { "bei", null, null, null, null, "Bekati'", "I", "L" }, + { "beh", null, null, null, null, "Biali", "I", "L" }, + { "beg", null, null, null, null, "Belait", "I", "L" }, + { "bfi", null, null, null, null, "British Sign Language", "I", "L" }, + { "bee", null, null, null, null, "Byangsi", "I", "L" }, + { "bfj", null, null, null, null, "Bafanji", "I", "L" }, + { "bfl", null, null, null, null, "Banda-Ndélé", "I", "L" }, + { "bgp", null, null, null, null, "Eastern Balochi", "I", "L" }, + { "bgo", null, null, null, null, "Baga Koga", "I", "L" }, + { "bgn", null, null, null, null, "Western Balochi", "I", "L" }, + { "bgl", null, null, null, null, "Bo (Laos)", "I", "L" }, + { "bgk", null, null, null, null, "Bit", "I", "L" }, + { "bgj", null, null, null, null, "Bangolan", "I", "L" }, + { "bgi", null, null, null, null, "Giangan", "I", "L" }, + { "bgg", null, null, null, null, "Bugun", "I", "L" }, + { "bgf", null, null, null, null, "Bangandu", "I", "L" }, + { "bge", null, null, null, null, "Bauria", "I", "L" }, + { "bgd", null, null, null, null, "Rathwi Bareli", "I", "L" }, + { "bgc", null, null, null, null, "Haryanvi", "I", "L" }, + { "bgb", null, null, null, null, "Bobongko", "I", "L" }, + { "bga", null, null, null, null, "Gwamhi-Wuri", "I", "L" }, + { "bfz", null, null, null, null, "Mahasu Pahari", "I", "L" }, + { "bfy", null, null, null, null, "Bagheli", "I", "L" }, + { "bfx", null, null, null, null, "Bantayanon", "I", "L" }, + { "bfw", null, null, null, null, "Bondo", "I", "L" }, + { "bfu", null, null, null, null, "Gahri", "I", "L" }, + { "bft", null, null, null, null, "Balti", "I", "L" }, + { "bfs", null, null, null, null, "Southern Bai", "I", "L" }, + { "bfr", null, null, null, null, "Bazigar", "I", "L" }, + { "bfq", null, null, null, null, "Badaga", "I", "L" }, + { "bfp", null, null, null, null, "Beba", "I", "L" }, + { "bfo", null, null, null, null, "Malba Birifor", "I", "L" }, + { "bfn", null, null, null, null, "Bunak", "I", "L" }, + { "bfm", null, null, null, null, "Mmen", "I", "L" }, + { "bfk", null, null, null, null, "Ban Khor Sign Language", "I", "L" }, + { "mff", null, null, null, null, "Naki", "I", "L" }, + { "fuj", null, null, null, null, "Ko", "I", "L" }, + { "fum", null, null, null, null, "Fum", "I", "L" }, + { "ksx", null, null, null, null, "Kedang", "I", "L" }, + { "ksw", null, null, null, null, "S'gaw Karen", "I", "L" }, + { "ksv", null, null, null, null, "Kusu", "I", "L" }, + { "ksu", null, null, null, null, "Khamyang", "I", "L" }, + { "kst", null, null, null, null, "Winyé", "I", "L" }, + { "kss", null, null, null, null, "Southern Kisi", "I", "L" }, + { "ksr", null, null, null, null, "Borong", "I", "L" }, + { "ksq", null, null, null, null, "Kwaami", "I", "L" }, + { "ksp", null, null, null, null, "Kaba", "I", "L" }, + { "kso", null, null, null, null, "Kofa", "I", "L" }, + { "ksn", null, null, null, null, "Kasiguranin", "I", "L" }, + { "ksm", null, null, null, null, "Kumba", "I", "L" }, + { "ksy", null, null, null, null, "Kharia Thar", "I", "L" }, + { "ksl", null, null, null, null, "Kumalu", "I", "L" }, + { "ksj", null, null, null, null, "Uare", "I", "L" }, + { "ksi", null, null, null, null, "Krisa", "I", "L" }, + { "ksh", null, null, null, null, "Kölsch", "I", "L" }, + { "ksg", null, null, null, null, "Kusaghe", "I", "L" }, + { "ksf", null, null, null, null, "Bafia", "I", "L" }, + { "kse", null, null, null, null, "Kuni", "I", "L" }, + { "ksd", null, null, null, null, "Kuanua", "I", "L" }, + { "ksc", null, null, null, null, "Southern Kalinga", "I", "L" }, + { "ksb", null, null, null, null, "Shambala", "I", "L" }, + { "ksa", null, null, null, null, "Shuwa-Zamani", "I", "L" }, + { "krz", null, null, null, null, "Sota Kanum", "I", "L" }, + { "kry", null, null, null, null, "Kryts", "I", "L" }, + { "ksk", null, null, null, null, "Kansa", "I", "L" }, + { "ksz", null, null, null, null, "Kodaku", "I", "L" }, + { "kta", null, null, null, null, "Katua", "I", "L" }, + { "ktb", null, null, null, null, "Kambaata", "I", "L" }, + { "kud", null, null, null, null, "'Auhelawa", "I", "L" }, + { "kuc", null, null, null, null, "Kwinsu", "I", "L" }, + { "kub", null, null, null, null, "Kutep", "I", "L" }, + { "kua", null, "kj", "kua", "kua", "Kuanyama", "I", "L" }, + { "ktz", null, null, null, null, "Juǀʼhoan", "I", "L" }, + { "kty", null, null, null, null, "Kango (Bas-Uélé District)", "I", "L" }, + { "ktx", null, null, null, null, "Kaxararí", "I", "L" }, + { "ktw", null, null, null, null, "Kato", "I", "E" }, + { "ktv", null, null, null, null, "Eastern Katu", "I", "L" }, + { "ktu", null, null, null, null, "Kituba (Democratic Republic of Congo)", "I", "L" }, + { "ktt", null, null, null, null, "Ketum", "I", "L" }, + { "kts", null, null, null, null, "South Muyu", "I", "L" }, + { "ktq", null, null, null, null, "Katabaga", "I", "E" }, + { "ktp", null, null, null, null, "Kaduo", "I", "L" }, + { "kto", null, null, null, null, "Kuot", "I", "L" }, + { "ktn", null, null, null, null, "Karitiâna", "I", "L" }, + { "ktm", null, null, null, null, "Kurti", "I", "L" }, + { "ktl", null, null, null, null, "Koroshi", "I", "L" }, + { "ktk", null, null, null, null, "Kaniet", "I", "E" }, + { "ktj", null, null, null, null, "Plapo Krumen", "I", "L" }, + { "kti", null, null, null, null, "North Muyu", "I", "L" }, + { "kth", null, null, null, null, "Karanga", "I", "L" }, + { "ktg", null, null, null, null, "Kalkutung", "I", "E" }, + { "ktf", null, null, null, null, "Kwami", "I", "L" }, + { "kte", null, null, null, null, "Nubri", "I", "L" }, + { "ktd", null, null, null, null, "Kokata", "I", "L" }, + { "ktc", null, null, null, null, "Kholok", "I", "L" }, + { "krx", null, null, null, null, "Karon", "I", "L" }, + { "kue", null, null, null, null, "Kuman (Papua New Guinea)", "I", "L" }, + { "krw", null, null, null, null, "Western Krahn", "I", "L" }, + { "kru", null, null, "kru", "kru", "Kurukh", "I", "L" }, + { "kqk", null, null, null, null, "Kotafon Gbe", "I", "L" }, + { "kqj", null, null, null, null, "Koromira", "I", "L" }, + { "kqi", null, null, null, null, "Koitabu", "I", "L" }, + { "kqh", null, null, null, null, "Kisankasa", "I", "L" }, + { "kqg", null, null, null, null, "Khe", "I", "L" }, + { "kqf", null, null, null, null, "Kakabai", "I", "L" }, + { "kqe", null, null, null, null, "Kalagan", "I", "L" }, + { "kqd", null, null, null, null, "Koy Sanjaq Surat", "I", "L" }, + { "kqc", null, null, null, null, "Doromu-Koki", "I", "L" }, + { "kqb", null, null, null, null, "Kovai", "I", "L" }, + { "kqa", null, null, null, null, "Mum", "I", "L" }, + { "kpz", null, null, null, null, "Kupsabiny", "I", "L" }, + { "kql", null, null, null, null, "Kyenele", "I", "L" }, + { "kpy", null, null, null, null, "Koryak", "I", "L" }, + { "kpw", null, null, null, null, "Kobon", "I", "L" }, + { "kpv", null, null, null, null, "Komi-Zyrian", "I", "L" }, + { "kpu", null, null, null, null, "Kafoa", "I", "L" }, + { "kpt", null, null, null, null, "Karata", "I", "L" }, + { "kps", null, null, null, null, "Tehit", "I", "L" }, + { "kpr", null, null, null, null, "Korafe-Yegha", "I", "L" }, + { "kpq", null, null, null, null, "Korupun-Sela", "I", "L" }, + { "kpo", null, null, null, null, "Ikposo", "I", "L" }, + { "kpn", null, null, null, null, "Kepkiriwát", "I", "E" }, + { "kpm", null, null, null, null, "Koho", "I", "L" }, + { "kpl", null, null, null, null, "Kpala", "I", "L" }, + { "kpk", null, null, null, null, "Kpan", "I", "L" }, + { "kpx", null, null, null, null, "Mountain Koiali", "I", "L" }, + { "kqm", null, null, null, null, "Khisa", "I", "L" }, + { "kqn", null, null, null, null, "Kaonde", "I", "L" }, + { "kqo", null, null, null, null, "Eastern Krahn", "I", "L" }, + { "krt", null, null, null, null, "Tumari Kanuri", "I", "L" }, + { "krs", null, null, null, null, "Gbaya (Sudan)", "I", "L" }, + { "krr", null, null, null, null, "Krung", "I", "L" }, + { "krp", null, null, null, null, "Korop", "I", "L" }, + { "krn", null, null, null, null, "Sapo", "I", "L" }, + { "krl", null, null, "krl", "krl", "Karelian", "I", "L" }, + { "krk", null, null, null, null, "Kerek", "I", "E" }, + { "krj", null, null, null, null, "Kinaray-A", "I", "L" }, + { "kri", null, null, null, null, "Krio", "I", "L" }, + { "krh", null, null, null, null, "Kurama", "I", "L" }, + { "krf", null, null, null, null, "Koro (Vanuatu)", "I", "L" }, + { "kre", null, null, null, null, "Panará", "I", "L" }, + { "krd", null, null, null, null, "Kairui-Midiki", "I", "L" }, + { "krc", null, null, "krc", "krc", "Karachay-Balkar", "I", "L" }, + { "krb", null, null, null, null, "Karkin", "I", "E" }, + { "kra", null, null, null, null, "Kumhali", "I", "L" }, + { "kqz", null, null, null, null, "Korana", "I", "E" }, + { "kqy", null, null, null, null, "Koorete", "I", "L" }, + { "kqx", null, null, null, null, "Mser", "I", "L" }, + { "kqw", null, null, null, null, "Kandas", "I", "L" }, + { "kqv", null, null, null, null, "Okolod", "I", "L" }, + { "kqu", null, null, null, null, "Seroa", "I", "E" }, + { "kqt", null, null, null, null, "Klias River Kadazan", "I", "L" }, + { "kqs", null, null, null, null, "Northern Kissi", "I", "L" }, + { "kqr", null, null, null, null, "Kimaragang", "I", "L" }, + { "kqq", null, null, null, null, "Krenak", "I", "L" }, + { "kqp", null, null, null, null, "Kimré", "I", "L" }, + { "krv", null, null, null, null, "Kavet", "I", "L" }, + { "kuf", null, null, null, null, "Western Katu", "I", "L" }, + { "kug", null, null, null, null, "Kupa", "I", "L" }, + { "kuh", null, null, null, null, "Kushi", "I", "L" }, + { "kxv", null, null, null, null, "Kuvi", "I", "L" }, + { "kxu", null, null, null, null, "Kui (India)", "I", "L" }, + { "kxt", null, null, null, null, "Koiwat", "I", "L" }, + { "kxs", null, null, null, null, "Kangjia", "I", "L" }, + { "kxr", null, null, null, null, "Koro (Papua New Guinea)", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "kxq", null, null, null, null, "Smärky Kanum", "I", "L" }, + { "kxp", null, null, null, null, "Wadiyara Koli", "I", "L" }, + { "kxo", null, null, null, null, "Kanoé", "I", "E" }, + { "kxn", null, null, null, null, "Kanowit-Tanjong Melanau", "I", "L" }, + { "kxm", null, null, null, null, "Northern Khmer", "I", "L" }, + { "kxl", null, null, null, null, "Nepali Kurux", "I", "L" }, + { "kxk", null, null, null, null, "Zayein Karen", "I", "L" }, + { "kxw", null, null, null, null, "Konai", "I", "L" }, + { "kxj", null, null, null, null, "Kulfa", "I", "L" }, + { "kxh", null, null, null, null, "Karo (Ethiopia)", "I", "L" }, + { "kxf", null, null, null, null, "Manumanaw Karen", "I", "L" }, + { "kxd", null, null, null, null, "Brunei", "I", "L" }, + { "kxc", null, null, null, null, "Konso", "I", "L" }, + { "kxb", null, null, null, null, "Krobu", "I", "L" }, + { "kxa", null, null, null, null, "Kairiru", "I", "L" }, + { "kwz", null, null, null, null, "Kwadi", "I", "E" }, + { "kwy", null, null, null, null, "San Salvador Kongo", "I", "L" }, + { "kwx", null, null, null, null, "Khirwar", "I", "L" }, + { "kww", null, null, null, null, "Kwinti", "I", "L" }, + { "kwv", null, null, null, null, "Sara Kaba Náà", "I", "L" }, + { "kwu", null, null, null, null, "Kwakum", "I", "L" }, + { "kxi", null, null, null, null, "Keningau Murut", "I", "L" }, + { "kxx", null, null, null, null, "Likuba", "I", "L" }, + { "kxy", null, null, null, null, "Kayong", "I", "L" }, + { "kxz", null, null, null, null, "Kerewo", "I", "L" }, + { "kza", null, null, null, null, "Western Karaboro", "I", "L" }, + { "kyz", null, null, null, null, "Kayabí", "I", "L" }, + { "kyy", null, null, null, null, "Kambaira", "I", "L" }, + { "kyx", null, null, null, null, "Rapoisi", "I", "L" }, + { "kyw", null, null, null, null, "Kudmali", "I", "L" }, + { "kyv", null, null, null, null, "Kayort", "I", "L" }, + { "kyu", null, null, null, null, "Western Kayah", "I", "L" }, + { "kyt", null, null, null, null, "Kayagar", "I", "L" }, + { "kys", null, null, null, null, "Baram Kayan", "I", "L" }, + { "kyr", null, null, null, null, "Kuruáya", "I", "L" }, + { "kyq", null, null, null, null, "Kenga", "I", "L" }, + { "kyp", null, null, null, null, "Kang", "I", "L" }, + { "kyo", null, null, null, null, "Kelon", "I", "L" }, + { "kyn", null, null, null, null, "Northern Binukidnon", "I", "L" }, + { "kym", null, null, null, null, "Kpatili", "I", "L" }, + { "kyl", null, null, null, null, "Kalapuya", "I", "L" }, + { "kyk", null, null, null, null, "Kamayo", "I", "L" }, + { "kyj", null, null, null, null, "Karao", "I", "L" }, + { "kyi", null, null, null, null, "Kiput", "I", "L" }, + { "kyh", null, null, null, null, "Karok", "I", "L" }, + { "kyg", null, null, null, null, "Keyagana", "I", "L" }, + { "kyf", null, null, null, null, "Kouya", "I", "L" }, + { "kye", null, null, null, null, "Krache", "I", "L" }, + { "kyd", null, null, null, null, "Karey", "I", "L" }, + { "kyc", null, null, null, null, "Kyaka", "I", "L" }, + { "kyb", null, null, null, null, "Butbut Kalinga", "I", "L" }, + { "kya", null, null, null, null, "Kwaya", "I", "L" }, + { "kwt", null, null, null, null, "Kwesten", "I", "L" }, + { "kws", null, null, null, null, "Kwese", "I", "L" }, + { "kwr", null, null, null, null, "Kwer", "I", "L" }, + { "kwp", null, null, null, null, "Kodia", "I", "L" }, + { "kvi", null, null, null, null, "Kwang", "I", "L" }, + { "kvh", null, null, null, null, "Komodo", "I", "L" }, + { "kvg", null, null, null, null, "Kuni-Boazi", "I", "L" }, + { "kvf", null, null, null, null, "Kabalai", "I", "L" }, + { "kve", null, null, null, null, "Kalabakan", "I", "L" }, + { "kvd", null, null, null, null, "Kui (Indonesia)", "I", "L" }, + { "kvc", null, null, null, null, "Kove", "I", "L" }, + { "kvb", null, null, null, null, "Kubu", "I", "L" }, + { "kva", null, null, null, null, "Bagvalal", "I", "L" }, + { "kuz", null, null, null, null, "Kunza", "I", "E" }, + { "kuy", null, null, null, null, "Kuuku-Ya'u", "I", "L" }, + { "kux", null, null, null, null, "Kukatja", "I", "L" }, + { "kuw", null, null, null, null, "Kpagua", "I", "L" }, + { "kuv", null, null, null, null, "Kur", "I", "L" }, + { "kuu", null, null, null, null, "Upper Kuskokwim", "I", "L" }, + { "kut", null, null, "kut", "kut", "Kutenai", "I", "L" }, + { "kus", null, null, null, null, "Kusaal", "I", "L" }, + { "kur", null, "ku", "kur", "kur", "Kurdish", "M", "L" }, + { "kuq", null, null, null, null, "Karipuna", "I", "L" }, + { "kup", null, null, null, null, "Kunimaipa", "I", "L" }, + { "kuo", null, null, null, null, "Kumukio", "I", "L" }, + { "kun", null, null, null, null, "Kunama", "I", "L" }, + { "kum", null, null, "kum", "kum", "Kumyk", "I", "L" }, + { "kul", null, null, null, null, "Kulere", "I", "L" }, + { "kuk", null, null, null, null, "Kepo'", "I", "L" }, + { "kuj", null, null, null, null, "Kuria", "I", "L" }, + { "kui", null, null, null, null, "Kuikúro-Kalapálo", "I", "L" }, + { "kvj", null, null, null, null, "Psikye", "I", "L" }, + { "kpj", null, null, null, null, "Karajá", "I", "L" }, + { "kvk", null, null, null, null, "Korean Sign Language", "I", "L" }, + { "kvm", null, null, null, null, "Kendem", "I", "L" }, + { "kwo", null, null, null, null, "Kwomtari", "I", "L" }, + { "kwn", null, null, null, null, "Kwangali", "I", "L" }, + { "kwm", null, null, null, null, "Kwambi", "I", "L" }, + { "kwl", null, null, null, null, "Kofyar", "I", "L" }, + { "kwk", null, null, null, null, "Kwakiutl", "I", "L" }, + { "kwj", null, null, null, null, "Kwanga", "I", "L" }, + { "kwi", null, null, null, null, "Awa-Cuaiquer", "I", "L" }, + { "kwh", null, null, null, null, "Kowiai", "I", "L" }, + { "kwg", null, null, null, null, "Sara Kaba Deme", "I", "L" }, + { "kwf", null, null, null, null, "Kwara'ae", "I", "L" }, + { "kwe", null, null, null, null, "Kwerba", "I", "L" }, + { "kwd", null, null, null, null, "Kwaio", "I", "L" }, + { "kwc", null, null, null, null, "Likwala", "I", "L" }, + { "kwb", null, null, null, null, "Kwa", "I", "L" }, + { "kwa", null, null, null, null, "Dâw", "I", "L" }, + { "kvz", null, null, null, null, "Tsakwambo", "I", "L" }, + { "kvy", null, null, null, null, "Yintale Karen", "I", "L" }, + { "kvx", null, null, null, null, "Parkari Koli", "I", "L" }, + { "kvw", null, null, null, null, "Wersing", "I", "L" }, + { "kvv", null, null, null, null, "Kola", "I", "L" }, + { "kvu", null, null, null, null, "Yinbaw Karen", "I", "L" }, + { "kvt", null, null, null, null, "Lahta Karen", "I", "L" }, + { "kvr", null, null, null, null, "Kerinci", "I", "L" }, + { "kvq", null, null, null, null, "Geba Karen", "I", "L" }, + { "kvp", null, null, null, null, "Kompane", "I", "L" }, + { "kvo", null, null, null, null, "Dobel", "I", "L" }, + { "kvn", null, null, null, null, "Border Kuna", "I", "L" }, + { "kvl", null, null, null, null, "Kayaw", "I", "L" }, + { "kpi", null, null, null, null, "Kofei", "I", "L" }, + { "kph", null, null, null, null, "Kplang", "I", "L" }, + { "kpg", null, null, null, null, "Kapingamarangi", "I", "L" }, + { "kjc", null, null, null, null, "Coastal Konjo", "I", "L" }, + { "kjb", null, null, null, null, "Q'anjob'al", "I", "L" }, + { "kja", null, null, null, null, "Mlap", "I", "L" }, + { "kiz", null, null, null, null, "Kisi", "I", "L" }, + { "kiy", null, null, null, null, "Kirikiri", "I", "L" }, + { "kix", null, null, null, null, "Khiamniungan Naga", "I", "L" }, + { "kiw", null, null, null, null, "Northeast Kiwai", "I", "L" }, + { "kiv", null, null, null, null, "Kimbu", "I", "L" }, + { "kiu", null, null, null, null, "Kirmanjki (individual language)", "I", "L" }, + { "kit", null, null, null, null, "Agob", "I", "L" }, + { "kis", null, null, null, null, "Kis", "I", "L" }, + { "kir", null, "ky", "kir", "kir", "Kirghiz", "I", "L" }, + { "kjd", null, null, null, null, "Southern Kiwai", "I", "L" }, + { "kiq", null, null, null, null, "Kosadle", "I", "L" }, + { "kio", null, null, null, null, "Kiowa", "I", "L" }, + { "kin", null, "rw", "kin", "kin", "Kinyarwanda", "I", "L" }, + { "kim", null, null, null, null, "Karagas", "I", "L" }, + { "kil", null, null, null, null, "Kariya", "I", "L" }, + { "kik", null, "ki", "kik", "kik", "Kikuyu", "I", "L" }, + { "kij", null, null, null, null, "Kilivila", "I", "L" }, + { "kii", null, null, null, null, "Kitsai", "I", "E" }, + { "kih", null, null, null, null, "Kilmeri", "I", "L" }, + { "kig", null, null, null, null, "Kimaama", "I", "L" }, + { "kif", null, null, null, null, "Eastern Parbate Kham", "I", "L" }, + { "kie", null, null, null, null, "Kibet", "I", "L" }, + { "kid", null, null, null, null, "Koshin", "I", "L" }, + { "kip", null, null, null, null, "Sheshi Kham", "I", "L" }, + { "kje", null, null, null, null, "Kisar", "I", "L" }, + { "kjf", null, null, null, null, "Khalaj", "I", "L" }, + { "kjg", null, null, null, null, "Khmu", "I", "L" }, + { "kki", null, null, null, null, "Kagulu", "I", "L" }, + { "kkh", null, null, null, null, "Khün", "I", "L" }, + { "kkg", null, null, null, null, "Mabaka Valley Kalinga", "I", "L" }, + { "kkf", null, null, null, null, "Kalaktang Monpa", "I", "L" }, + { "kke", null, null, null, null, "Kakabe", "I", "L" }, + { "kkd", null, null, null, null, "Kinuku", "I", "L" }, + { "kkc", null, null, null, null, "Odoodee", "I", "L" }, + { "kkb", null, null, null, null, "Kwerisa", "I", "L" }, + { "kka", null, null, null, null, "Kakanda", "I", "L" }, + { "kjz", null, null, null, null, "Bumthangkha", "I", "L" }, + { "kjy", null, null, null, null, "Erave", "I", "L" }, + { "kjx", null, null, null, null, "Ramopa", "I", "L" }, + { "kjv", null, null, null, null, "Kaikavian Literary Language", "I", "H" }, + { "kju", null, null, null, null, "Kashaya", "I", "L" }, + { "kjt", null, null, null, null, "Phrae Pwo Karen", "I", "L" }, + { "kjs", null, null, null, null, "East Kewa", "I", "L" }, + { "kjr", null, null, null, null, "Kurudu", "I", "L" }, + { "kjq", null, null, null, null, "Western Keres", "I", "L" }, + { "kjp", null, null, null, null, "Pwo Eastern Karen", "I", "L" }, + { "kjo", null, null, null, null, "Harijan Kinnauri", "I", "L" }, + { "kjn", null, null, null, null, "Kunjen", "I", "L" }, + { "kjm", null, null, null, null, "Kháng", "I", "L" }, + { "kjl", null, null, null, null, "Western Parbate Kham", "I", "L" }, + { "kjk", null, null, null, null, "Highland Konjo", "I", "L" }, + { "kjj", null, null, null, null, "Khinalugh", "I", "L" }, + { "kji", null, null, null, null, "Zabana", "I", "L" }, + { "kjh", null, null, null, null, "Khakas", "I", "L" }, + { "kic", null, null, null, null, "Kickapoo", "I", "L" }, + { "kib", null, null, null, null, "Koalib", "I", "L" }, + { "kia", null, null, null, null, "Kim", "I", "L" }, + { "khz", null, null, null, null, "Keapara", "I", "L" }, + { "kgr", null, null, null, null, "Abun", "I", "L" }, + { "kgq", null, null, null, null, "Kamoro", "I", "L" }, + { "kgp", null, null, null, null, "Kaingang", "I", "L" }, + { "kgo", null, null, null, null, "Krongo", "I", "L" }, + { "kgn", null, null, null, null, "Karingani", "I", "L" }, + { "kgm", null, null, null, null, "Karipúna", "I", "E" }, + { "kgl", null, null, null, null, "Kunggari", "I", "E" }, + { "kgk", null, null, null, null, "Kaiwá", "I", "L" }, + { "kgj", null, null, null, null, "Gamale Kham", "I", "L" }, + { "kgi", null, null, null, null, "Selangor Sign Language", "I", "L" }, + { "kgg", null, null, null, null, "Kusunda", "I", "L" }, + { "kgf", null, null, null, null, "Kube", "I", "L" }, + { "kge", null, null, null, null, "Komering", "I", "L" }, + { "kgb", null, null, null, null, "Kawe", "I", "L" }, + { "kga", null, null, null, null, "Koyaga", "I", "L" }, + { "kfz", null, null, null, null, "Koromfé", "I", "L" }, + { "kfy", null, null, null, null, "Kumaoni", "I", "L" }, + { "kfx", null, null, null, null, "Kullu Pahari", "I", "L" }, + { "kfw", null, null, null, null, "Kharam Naga", "I", "L" }, + { "kfv", null, null, null, null, "Kurmukar", "I", "L" }, + { "kfu", null, null, null, null, "Katkari", "I", "L" }, + { "kft", null, null, null, null, "Kanjari", "I", "L" }, + { "kfs", null, null, null, null, "Bilaspuri", "I", "L" }, + { "kfr", null, null, null, null, "Kachhi", "I", "L" }, + { "kfq", null, null, null, null, "Korku", "I", "L" }, + { "kfp", null, null, null, null, "Korwa", "I", "L" }, + { "kfo", null, null, null, null, "Koro (Côte d'Ivoire)", "I", "L" }, + { "kgs", null, null, null, null, "Kumbainggar", "I", "L" }, + { "kkj", null, null, null, null, "Kako", "I", "L" }, + { "kgt", null, null, null, null, "Somyev", "I", "L" }, + { "kgv", null, null, null, null, "Karas", "I", "L" }, + { "khy", null, null, null, null, "Kele (Democratic Republic of Congo)", "I", "L" }, + { "khx", null, null, null, null, "Kanu", "I", "L" }, + { "khw", null, null, null, null, "Khowar", "I", "L" }, + { "khv", null, null, null, null, "Khvarshi", "I", "L" }, + { "khu", null, null, null, null, "Nkhumbi", "I", "L" }, + { "kht", null, null, null, null, "Khamti", "I", "L" }, + { "khs", null, null, null, null, "Kasua", "I", "L" }, + { "khr", null, null, null, null, "Kharia", "I", "L" }, + { "khq", null, null, null, null, "Koyra Chiini Songhay", "I", "L" }, + { "khp", null, null, null, null, "Kapori", "I", "L" }, + { "kho", null, null, "kho", "kho", "Khotanese", "I", "A" }, + { "khn", null, null, null, null, "Khandesi", "I", "L" }, + { "khm", null, "km", "khm", "khm", "Khmer", "I", "L" }, + { "khl", null, null, null, null, "Lusi", "I", "L" }, + { "khk", null, null, null, null, "Halh Mongolian", "I", "L" }, + { "khj", null, null, null, null, "Kuturmi", "I", "L" }, + { "khh", null, null, null, null, "Kehu", "I", "L" }, + { "khg", null, null, null, null, "Khams Tibetan", "I", "L" }, + { "khf", null, null, null, null, "Khuen", "I", "L" }, + { "khe", null, null, null, null, "Korowai", "I", "L" }, + { "khd", null, null, null, null, "Bädi Kanum", "I", "L" }, + { "khc", null, null, null, null, "Tukang Besi North", "I", "L" }, + { "khb", null, null, null, null, "Lü", "I", "L" }, + { "kha", null, null, "kha", "kha", "Khasi", "I", "L" }, + { "kgy", null, null, null, null, "Kyerung", "I", "L" }, + { "kgx", null, null, null, null, "Kamaru", "I", "L" }, + { "kgw", null, null, null, null, "Karon Dori", "I", "L" }, + { "kgu", null, null, null, null, "Kobol", "I", "L" }, + { "kzb", null, null, null, null, "Kaibobo", "I", "L" }, + { "kkk", null, null, null, null, "Kokota", "I", "L" }, + { "kkm", null, null, null, null, "Kiong", "I", "L" }, + { "knx", null, null, null, null, "Kendayan", "I", "L" }, + { "knw", null, null, null, null, "Kung-Ekoka", "I", "L" }, + { "knv", null, null, null, null, "Tabo", "I", "L" }, + { "knu", null, null, null, null, "Kono (Guinea)", "I", "L" }, + { "knt", null, null, null, null, "Panoan Katukína", "I", "L" }, + { "kns", null, null, null, null, "Kensiu", "I", "L" }, + { "knr", null, null, null, null, "Kaningra", "I", "L" }, + { "knq", null, null, null, null, "Kintaq", "I", "L" }, + { "knp", null, null, null, null, "Kwanja", "I", "L" }, + { "kno", null, null, null, null, "Kono (Sierra Leone)", "I", "L" }, + { "knn", null, null, null, null, "Konkani (individual language)", "I", "L" }, + { "knm", null, null, null, null, "Kanamarí", "I", "L" }, + { "kny", null, null, null, null, "Kanyok", "I", "L" }, + { "knl", null, null, null, null, "Keninjal", "I", "L" }, + { "knj", null, null, null, null, "Western Kanjobal", "I", "L" }, + { "kni", null, null, null, null, "Kanufi", "I", "L" }, + { "kng", null, null, null, null, "Koongo", "I", "L" }, + { "knf", null, null, null, null, "Mankanya", "I", "L" }, + { "kne", null, null, null, null, "Kankanaey", "I", "L" }, + { "knd", null, null, null, null, "Konda", "I", "L" }, + { "knc", null, null, null, null, "Central Kanuri", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "knb", null, null, null, null, "Lubuagan Kalinga", "I", "L" }, + { "kna", null, null, null, null, "Dera (Nigeria)", "I", "L" }, + { "kmz", null, null, null, null, "Khorasani Turkish", "I", "L" }, + { "kmy", null, null, null, null, "Koma", "I", "L" }, + { "kmx", null, null, null, null, "Waboda", "I", "L" }, + { "knk", null, null, null, null, "Kuranko", "I", "L" }, + { "knz", null, null, null, null, "Kalamsé", "I", "L" }, + { "koa", null, null, null, null, "Konomala", "I", "L" }, + { "koc", null, null, null, null, "Kpati", "I", "E" }, + { "kpf", null, null, null, null, "Komba", "I", "L" }, + { "kpe", null, null, "kpe", "kpe", "Kpelle", "M", "L" }, + { "kpd", null, null, null, null, "Koba", "I", "L" }, + { "kpc", null, null, null, null, "Curripaco", "I", "L" }, + { "kpb", null, null, null, null, "Mullu Kurumba", "I", "L" }, + { "kpa", null, null, null, null, "Kutto", "I", "L" }, + { "koz", null, null, null, null, "Korak", "I", "L" }, + { "koy", null, null, null, null, "Koyukon", "I", "L" }, + { "kow", null, null, null, null, "Kugama", "I", "L" }, + { "kov", null, null, null, null, "Kudu-Camo", "I", "L" }, + { "kou", null, null, null, null, "Koke", "I", "L" }, + { "kot", null, null, null, null, "Lagwan", "I", "L" }, + { "kos", null, null, "kos", "kos", "Kosraean", "I", "L" }, + { "kor", null, "ko", "kor", "kor", "Korean", "I", "L" }, + { "koq", null, null, null, null, "Kota (Gabon)", "I", "L" }, + { "kop", null, null, null, null, "Waube", "I", "L" }, + { "koo", null, null, null, null, "Konzo", "I", "L" }, + { "kon", null, "kg", "kon", "kon", "Kongo", "M", "L" }, + { "kom", null, "kv", "kom", "kom", "Komi", "M", "L" }, + { "kol", null, null, null, null, "Kol (Papua New Guinea)", "I", "L" }, + { "kok", null, null, "kok", "kok", "Konkani (macrolanguage)", "M", "L" }, + { "koi", null, null, null, null, "Komi-Permyak", "I", "L" }, + { "koh", null, null, null, null, "Koyo", "I", "L" }, + { "kog", null, null, null, null, "Cogui", "I", "L" }, + { "kof", null, null, null, null, "Kubi", "I", "E" }, + { "koe", null, null, null, null, "Kacipo-Balesi", "I", "L" }, + { "kod", null, null, null, null, "Kodi", "I", "L" }, + { "kmw", null, null, null, null, "Komo (Democratic Republic of Congo)", "I", "L" }, + { "kmv", null, null, null, null, "Karipúna Creole French", "I", "L" }, + { "kmu", null, null, null, null, "Kanite", "I", "L" }, + { "kmt", null, null, null, null, "Kemtuik", "I", "L" }, + { "kln", null, null, null, null, "Kalenjin", "M", "L" }, + { "klm", null, null, null, null, "Migum", "I", "L" }, + { "kll", null, null, null, null, "Kagan Kalagan", "I", "L" }, + { "klk", null, null, null, null, "Kono (Nigeria)", "I", "L" }, + { "klj", null, null, null, null, "Turkic Khalaj", "I", "L" }, + { "kli", null, null, null, null, "Kalumpang", "I", "L" }, + { "klh", null, null, null, null, "Weliki", "I", "L" }, + { "klg", null, null, null, null, "Tagakaulo", "I", "L" }, + { "klf", null, null, null, null, "Kendeje", "I", "L" }, + { "kle", null, null, null, null, "Kulung (Nepal)", "I", "L" }, + { "kld", null, null, null, null, "Gamilaraay", "I", "L" }, + { "klc", null, null, null, null, "Kolbila", "I", "L" }, + { "klb", null, null, null, null, "Kiliwa", "I", "L" }, + { "kla", null, null, null, null, "Klamath-Modoc", "I", "E" }, + { "kkz", null, null, null, null, "Kaska", "I", "L" }, + { "kky", null, null, null, null, "Guugu Yimidhirr", "I", "L" }, + { "kkx", null, null, null, null, "Kohin", "I", "L" }, + { "kkw", null, null, null, null, "Teke-Kukuya", "I", "L" }, + { "kkv", null, null, null, null, "Kangean", "I", "L" }, + { "kku", null, null, null, null, "Tumi", "I", "L" }, + { "kkt", null, null, null, null, "Koi", "I", "L" }, + { "kks", null, null, null, null, "Giiwo", "I", "L" }, + { "kkr", null, null, null, null, "Kir-Balar", "I", "L" }, + { "kkq", null, null, null, null, "Kaiku", "I", "L" }, + { "kkp", null, null, null, null, "Gugubera", "I", "L" }, + { "kko", null, null, null, null, "Karko", "I", "L" }, + { "kkn", null, null, null, null, "Kon Keu", "I", "L" }, + { "klo", null, null, null, null, "Kapya", "I", "L" }, + { "kkl", null, null, null, null, "Kosarek Yale", "I", "L" }, + { "klp", null, null, null, null, "Kamasa", "I", "L" }, + { "klr", null, null, null, null, "Khaling", "I", "L" }, + { "kms", null, null, null, null, "Kamasau", "I", "L" }, + { "kmr", null, null, null, null, "Northern Kurdish", "I", "L" }, + { "kmq", null, null, null, null, "Kwama", "I", "L" }, + { "kmp", null, null, null, null, "Gimme", "I", "L" }, + { "kmo", null, null, null, null, "Kwoma", "I", "L" }, + { "kmn", null, null, null, null, "Awtuw", "I", "L" }, + { "kmm", null, null, null, null, "Kom (India)", "I", "L" }, + { "kml", null, null, null, null, "Tanudan Kalinga", "I", "L" }, + { "kmk", null, null, null, null, "Limos Kalinga", "I", "L" }, + { "kmj", null, null, null, null, "Kumarbhag Paharia", "I", "L" }, + { "kmi", null, null, null, null, "Kami (Nigeria)", "I", "L" }, + { "kmh", null, null, null, null, "Kalam", "I", "L" }, + { "kmg", null, null, null, null, "Kâte", "I", "L" }, + { "kmf", null, null, null, null, "Kare (Papua New Guinea)", "I", "L" }, + { "kme", null, null, null, null, "Bakole", "I", "L" }, + { "kmd", null, null, null, null, "Majukayang Kalinga", "I", "L" }, + { "kmc", null, null, null, null, "Southern Dong", "I", "L" }, + { "kmb", null, null, "kmb", "kmb", "Kimbundu", "I", "L" }, + { "kma", null, null, null, null, "Konni", "I", "L" }, + { "klz", null, null, null, null, "Kabola", "I", "L" }, + { "kly", null, null, null, null, "Kalao", "I", "L" }, + { "klx", null, null, null, null, "Koluwawa", "I", "L" }, + { "klw", null, null, null, null, "Tado", "I", "L" }, + { "klv", null, null, null, null, "Maskelynes", "I", "L" }, + { "klu", null, null, null, null, "Klao", "I", "L" }, + { "klt", null, null, null, null, "Nukna", "I", "L" }, + { "kls", null, null, null, null, "Kalasha", "I", "L" }, + { "klq", null, null, null, null, "Rumu", "I", "L" }, + { "kzc", null, null, null, null, "Bondoukou Kulango", "I", "L" }, + { "kzd", null, null, null, null, "Kadai", "I", "L" }, + { "kze", null, null, null, null, "Kosena", "I", "L" }, + { "lut", null, null, null, null, "Lushootseed", "I", "L" }, + { "lus", null, null, "lus", "lus", "Lushai", "I", "L" }, + { "lur", null, null, null, null, "Laura", "I", "L" }, + { "luq", null, null, null, null, "Lucumi", "I", "L" }, + { "lup", null, null, null, null, "Lumbu", "I", "L" }, + { "luo", null, null, "luo", "luo", "Luo (Kenya and Tanzania)", "I", "L" }, + { "lun", null, null, "lun", "lun", "Lunda", "I", "L" }, + { "lum", null, null, null, null, "Luimbi", "I", "L" }, + { "lul", null, null, null, null, "Olu'bo", "I", "L" }, + { "luk", null, null, null, null, "Lunanakha", "I", "L" }, + { "luj", null, null, null, null, "Luna", "I", "L" }, + { "lui", null, null, "lui", "lui", "Luiseno", "I", "E" }, + { "luu", null, null, null, null, "Lumba-Yakkha", "I", "L" }, + { "lug", null, "lg", "lug", "lug", "Ganda", "I", "L" }, + { "lue", null, null, null, null, "Luvale", "I", "L" }, + { "lud", null, null, null, null, "Ludian", "I", "L" }, + { "luc", null, null, null, null, "Aringa", "I", "L" }, + { "lub", null, "lu", "lub", "lub", "Luba-Katanga", "I", "L" }, + { "lua", null, null, "lua", "lua", "Luba-Lulua", "I", "L" }, + { "ltz", null, "lb", "ltz", "ltz", "Luxembourgish", "I", "L" }, + { "ltu", null, null, null, null, "Latu", "I", "L" }, + { "lts", null, null, null, null, "Tachoni", "I", "L" }, + { "lto", null, null, null, null, "Tsotso", "I", "L" }, + { "ltn", null, null, null, null, "Latundê", "I", "L" }, + { "lti", null, null, null, null, "Leti (Indonesia)", "I", "L" }, + { "lth", null, null, null, null, "Thur", "I", "L" }, + { "luf", null, null, null, null, "Laua", "I", "L" }, + { "luv", null, null, null, null, "Luwati", "I", "L" }, + { "luw", null, null, null, null, "Luo (Cameroon)", "I", "L" }, + { "luy", null, null, null, null, "Luyia", "M", "L" }, + { "mad", null, null, "mad", "mad", "Madurese", "I", "L" }, + { "mab", null, null, null, null, "Yutanduchi Mixtec", "I", "L" }, + { "maa", null, null, null, null, "San Jerónimo Tecóatl Mazatec", "I", "L" }, + { "lzz", null, null, null, null, "Laz", "I", "L" }, + { "lzn", null, null, null, null, "Leinong Naga", "I", "L" }, + { "lzl", null, null, null, null, "Litzlitz", "I", "L" }, + { "lzh", null, null, null, null, "Literary Chinese", "I", "H" }, + { "lyn", null, null, null, null, "Luyana", "I", "L" }, + { "lyg", null, null, null, null, "Lyngngam", "I", "L" }, + { "lya", null, null, null, null, "Layakha", "I", "L" }, + { "lww", null, null, null, null, "Lewo", "I", "L" }, + { "lwu", null, null, null, null, "Lawu", "I", "L" }, + { "lwt", null, null, null, null, "Lewotobi", "I", "L" }, + { "lws", null, null, null, null, "Malawian Sign Language", "I", "L" }, + { "lwo", null, null, null, null, "Luwo", "I", "L" }, + { "lwm", null, null, null, null, "Laomian", "I", "L" }, + { "lwl", null, null, null, null, "Eastern Lawa", "I", "L" }, + { "lwh", null, null, null, null, "White Lachi", "I", "L" }, + { "lwg", null, null, null, null, "Wanga", "I", "L" }, + { "lwe", null, null, null, null, "Lewo Eleng", "I", "L" }, + { "lwa", null, null, null, null, "Lwalu", "I", "L" }, + { "lvu", null, null, null, null, "Levuka", "I", "L" }, + { "lvs", null, null, null, null, "Standard Latvian", "I", "L" }, + { "lvk", null, null, null, null, "Lavukaleve", "I", "L" }, + { "lvi", null, null, null, null, "Lavi", "I", "L" }, + { "lva", null, null, null, null, "Maku'a", "I", "L" }, + { "luz", null, null, null, null, "Southern Luri", "I", "L" }, + { "ltg", null, null, null, null, "Latgalian", "I", "L" }, + { "ltc", null, null, null, null, "Late Middle Chinese", "I", "H" }, + { "lsy", null, null, null, null, "Mauritian Sign Language", "I", "L" }, + { "lsv", null, null, null, null, "Sivia Sign Language", "I", "L" }, + { "lpa", null, null, null, null, "Lelepa", "I", "L" }, + { "loz", null, null, "loz", "loz", "Lozi", "I", "L" }, + { "loy", null, null, null, null, "Loke", "I", "L" }, + { "lox", null, null, null, null, "Loun", "I", "L" }, + { "low", null, null, null, null, "Tampias Lobu", "I", "L" }, + { "lov", null, null, null, null, "Lopi", "I", "L" }, + { "lou", null, null, null, null, "Louisiana Creole", "I", "L" }, + { "lot", null, null, null, null, "Otuho", "I", "L" }, + { "los", null, null, null, null, "Loniu", "I", "L" }, + { "lor", null, null, null, null, "Téén", "I", "L" }, + { "loq", null, null, null, null, "Lobala", "I", "L" }, + { "lop", null, null, null, null, "Lopa", "I", "L" }, + { "loo", null, null, null, null, "Lombo", "I", "L" }, + { "lon", null, null, null, null, "Malawi Lomwe", "I", "L" }, + { "lom", null, null, null, null, "Loma (Liberia)", "I", "L" }, + { "lol", null, null, "lol", "lol", "Mongo", "I", "L" }, + { "lok", null, null, null, null, "Loko", "I", "L" }, + { "loj", null, null, null, null, "Lou", "I", "L" }, + { "loi", null, null, null, null, "Loma (Côte d'Ivoire)", "I", "L" }, + { "loh", null, null, null, null, "Narim", "I", "L" }, + { "log", null, null, null, null, "Logo", "I", "L" }, + { "lof", null, null, null, null, "Logol", "I", "L" }, + { "loe", null, null, null, null, "Saluan", "I", "L" }, + { "loc", null, null, null, null, "Inonhan", "I", "L" }, + { "lob", null, null, null, null, "Lobi", "I", "L" }, + { "loa", null, null, null, null, "Loloda", "I", "L" }, + { "lnz", null, null, null, null, "Lonzo", "I", "L" }, + { "lpe", null, null, null, null, "Lepki", "I", "L" }, + { "mae", null, null, null, null, "Bo-Rukul", "I", "L" }, + { "lpn", null, null, null, null, "Long Phuri Naga", "I", "L" }, + { "lpx", null, null, null, null, "Lopit", "I", "L" }, + { "lst", null, null, null, null, "Trinidad and Tobago Sign Language", "I", "L" }, + { "lss", null, null, null, null, "Lasi", "I", "L" }, + { "lsr", null, null, null, null, "Aruop", "I", "L" }, + { "lsp", null, null, null, null, "Panamanian Sign Language", "I", "L" }, + { "lso", null, null, null, null, "Laos Sign Language", "I", "L" }, + { "lsn", null, null, null, null, "Tibetan Sign Language", "I", "L" }, + { "lsm", null, null, null, null, "Saamia", "I", "L" }, + { "lsl", null, null, null, null, "Latvian Sign Language", "I", "L" }, + { "lsi", null, null, null, null, "Lashi", "I", "L" }, + { "lsh", null, null, null, null, "Lish", "I", "L" }, + { "lse", null, null, null, null, "Lusengo", "I", "L" }, + { "lsd", null, null, null, null, "Lishana Deni", "I", "L" }, + { "lsa", null, null, null, null, "Lasgerdi", "I", "L" }, + { "lrz", null, null, null, null, "Lemerig", "I", "L" }, + { "lrv", null, null, null, null, "Larevat", "I", "L" }, + { "lrt", null, null, null, null, "Larantuka Malay", "I", "L" }, + { "lrr", null, null, null, null, "Southern Yamphu", "I", "L" }, + { "lro", null, null, null, null, "Laro", "I", "L" }, + { "lrn", null, null, null, null, "Lorang", "I", "L" }, + { "lrm", null, null, null, null, "Marama", "I", "L" }, + { "lrl", null, null, null, null, "Lari", "I", "L" }, + { "lrk", null, null, null, null, "Loarki", "I", "L" }, + { "lri", null, null, null, null, "Marachi", "I", "L" }, + { "lrg", null, null, null, null, "Laragia", "I", "E" }, + { "lre", null, null, null, null, "Laurentian", "I", "E" }, + { "lrc", null, null, null, null, "Northern Luri", "I", "L" }, + { "lra", null, null, null, null, "Rara Bakati'", "I", "L" }, + { "lpo", null, null, null, null, "Lipo", "I", "L" }, + { "lnw", null, null, null, null, "Lanima", "I", "E" }, + { "maf", null, null, null, null, "Mafa", "I", "L" }, + { "mah", null, "mh", "mah", "mah", "Marshallese", "I", "L" }, + { "mdw", null, null, null, null, "Mbosi", "I", "L" }, + { "mdv", null, null, null, null, "Santa Lucía Monteverde Mixtec", "I", "L" }, + { "mdu", null, null, null, null, "Mboko", "I", "L" }, + { "mdt", null, null, null, null, "Mbere", "I", "L" }, + { "mds", null, null, null, null, "Maria (Papua New Guinea)", "I", "L" }, + { "mdr", null, null, "mdr", "mdr", "Mandar", "I", "L" }, + { "mdq", null, null, null, null, "Mbole", "I", "L" }, + { "mdp", null, null, null, null, "Mbala", "I", "L" }, + { "mdn", null, null, null, null, "Mbati", "I", "L" }, + { "mdm", null, null, null, null, "Mayogo", "I", "L" }, + { "mdl", null, null, null, null, "Maltese Sign Language", "I", "L" }, + { "mdk", null, null, null, null, "Mangbutu", "I", "L" }, + { "mdx", null, null, null, null, "Dizin", "I", "L" }, + { "mdj", null, null, null, null, "Mangbetu", "I", "L" }, + { "mdh", null, null, null, null, "Maguindanaon", "I", "L" }, + { "mdg", null, null, null, null, "Massalat", "I", "L" }, + { "mdf", null, null, "mdf", "mdf", "Moksha", "I", "L" }, + { "mde", null, null, null, null, "Maba (Chad)", "I", "L" }, + { "mdd", null, null, null, null, "Mbum", "I", "L" }, + { "mdc", null, null, null, null, "Male (Papua New Guinea)", "I", "L" }, + { "mdb", null, null, null, null, "Morigi", "I", "L" }, + { "mda", null, null, null, null, "Mada (Nigeria)", "I", "L" }, + { "mcz", null, null, null, null, "Mawan", "I", "L" }, + { "mcy", null, null, null, null, "South Watut", "I", "L" }, + { "mcx", null, null, null, null, "Mpiemo", "I", "L" }, + { "mcw", null, null, null, null, "Mawa (Chad)", "I", "L" }, + { "mdi", null, null, null, null, "Mamvu", "I", "L" }, + { "mdy", null, null, null, null, "Male (Ethiopia)", "I", "L" }, + { "mdz", null, null, null, null, "Suruí Do Pará", "I", "L" }, + { "mea", null, null, null, null, "Menka", "I", "L" }, + { "mfd", null, null, null, null, "Mendankwe-Nkwen", "I", "L" }, + { "mfc", null, null, null, null, "Mba", "I", "L" }, + { "mfb", null, null, null, null, "Bangka", "I", "L" }, + { "mfa", null, null, null, null, "Pattani Malay", "I", "L" }, + { "mez", null, null, null, null, "Menominee", "I", "L" }, + { "mey", null, null, null, null, "Hassaniyya", "I", "L" }, + { "mew", null, null, null, null, "Maaka", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "mev", null, null, null, null, "Mano", "I", "L" }, + { "meu", null, null, null, null, "Motu", "I", "L" }, + { "met", null, null, null, null, "Mato", "I", "L" }, + { "mes", null, null, null, null, "Masmaje", "I", "L" }, + { "mer", null, null, null, null, "Meru", "I", "L" }, + { "meq", null, null, null, null, "Merey", "I", "L" }, + { "mep", null, null, null, null, "Miriwoong", "I", "L" }, + { "meo", null, null, null, null, "Kedah Malay", "I", "L" }, + { "men", null, null, "men", "men", "Mende (Sierra Leone)", "I", "L" }, + { "mem", null, null, null, null, "Mangala", "I", "E" }, + { "mel", null, null, null, null, "Central Melanau", "I", "L" }, + { "mek", null, null, null, null, "Mekeo", "I", "L" }, + { "mej", null, null, null, null, "Meyah", "I", "L" }, + { "mei", null, null, null, null, "Midob", "I", "L" }, + { "meh", null, null, null, null, "Southwestern Tlaxiaco Mixtec", "I", "L" }, + { "mef", null, null, null, null, "Megam", "I", "L" }, + { "mee", null, null, null, null, "Mengen", "I", "L" }, + { "med", null, null, null, null, "Melpa", "I", "L" }, + { "mec", null, null, null, null, "Marra", "I", "L" }, + { "meb", null, null, null, null, "Ikobi", "I", "L" }, + { "mcv", null, null, null, null, "Minanibai", "I", "L" }, + { "mcu", null, null, null, null, "Cameroon Mambila", "I", "L" }, + { "mct", null, null, null, null, "Mengisa", "I", "L" }, + { "mcs", null, null, null, null, "Mambai", "I", "L" }, + { "mbm", null, null, null, null, "Ombamba", "I", "L" }, + { "mbl", null, null, null, null, "Maxakalí", "I", "L" }, + { "mbk", null, null, null, null, "Malol", "I", "L" }, + { "mbj", null, null, null, null, "Nadëb", "I", "L" }, + { "mbi", null, null, null, null, "Ilianen Manobo", "I", "L" }, + { "mbh", null, null, null, null, "Mangseng", "I", "L" }, + { "mbf", null, null, null, null, "Baba Malay", "I", "L" }, + { "mbe", null, null, null, null, "Molale", "I", "E" }, + { "mbd", null, null, null, null, "Dibabawon Manobo", "I", "L" }, + { "mbc", null, null, null, null, "Macushi", "I", "L" }, + { "mbb", null, null, null, null, "Western Bukidnon Manobo", "I", "L" }, + { "mba", null, null, null, null, "Higaonon", "I", "L" }, + { "maz", null, null, null, null, "Central Mazahua", "I", "L" }, + { "max", null, null, null, null, "North Moluccan Malay", "I", "L" }, + { "maw", null, null, null, null, "Mampruli", "I", "L" }, + { "mav", null, null, null, null, "Sateré-Mawé", "I", "L" }, + { "mau", null, null, null, null, "Huautla Mazatec", "I", "L" }, + { "mat", null, null, null, null, "San Francisco Matlatzinca", "I", "L" }, + { "mas", null, null, "mas", "mas", "Masai", "I", "L" }, + { "mar", null, "mr", "mar", "mar", "Marathi", "I", "L" }, + { "maq", null, null, null, null, "Chiquihuitlán Mazatec", "I", "L" }, + { "man", null, null, "man", "man", "Mandingo", "M", "L" }, + { "mam", null, null, null, null, "Mam", "I", "L" }, + { "mal", null, "ml", "mal", "mal", "Malayalam", "I", "L" }, + { "mak", null, null, "mak", "mak", "Makasar", "I", "L" }, + { "maj", null, null, null, null, "Jalapa De Díaz Mazatec", "I", "L" }, + { "mai", null, null, "mai", "mai", "Maithili", "I", "L" }, + { "mbn", null, null, null, null, "Macaguán", "I", "L" }, + { "mag", null, null, "mag", "mag", "Magahi", "I", "L" }, + { "mbo", null, null, null, null, "Mbo (Cameroon)", "I", "L" }, + { "mbq", null, null, null, null, "Maisin", "I", "L" }, + { "mcr", null, null, null, null, "Menya", "I", "L" }, + { "mcq", null, null, null, null, "Ese", "I", "L" }, + { "mcp", null, null, null, null, "Makaa", "I", "L" }, + { "mco", null, null, null, null, "Coatlán Mixe", "I", "L" }, + { "mcn", null, null, null, null, "Masana", "I", "L" }, + { "mcm", null, null, null, null, "Malaccan Creole Portuguese", "I", "L" }, + { "mcl", null, null, null, null, "Macaguaje", "I", "E" }, + { "mck", null, null, null, null, "Mbunda", "I", "L" }, + { "mcj", null, null, null, null, "Mvanip", "I", "L" }, + { "mci", null, null, null, null, "Mese", "I", "L" }, + { "mch", null, null, null, null, "Maquiritari", "I", "L" }, + { "mcg", null, null, null, null, "Mapoyo", "I", "L" }, + { "mcf", null, null, null, null, "Matsés", "I", "L" }, + { "mce", null, null, null, null, "Itundujia Mixtec", "I", "L" }, + { "mcd", null, null, null, null, "Sharanahua", "I", "L" }, + { "mcc", null, null, null, null, "Bitur", "I", "L" }, + { "mcb", null, null, null, null, "Machiguenga", "I", "L" }, + { "mca", null, null, null, null, "Maca", "I", "L" }, + { "mbz", null, null, null, null, "Amoltepec Mixtec", "I", "L" }, + { "mby", null, null, null, null, "Memoni", "I", "L" }, + { "mbx", null, null, null, null, "Mari (East Sepik Province)", "I", "L" }, + { "mbw", null, null, null, null, "Maring", "I", "L" }, + { "mbv", null, null, null, null, "Mbulungish", "I", "L" }, + { "mbu", null, null, null, null, "Mbula-Bwazza", "I", "L" }, + { "mbt", null, null, null, null, "Matigsalug Manobo", "I", "L" }, + { "mbs", null, null, null, null, "Sarangani Manobo", "I", "L" }, + { "mbr", null, null, null, null, "Nukak Makú", "I", "L" }, + { "mbp", null, null, null, null, "Malayo", "I", "L" }, + { "kfn", null, null, null, null, "Kuk", "I", "L" }, + { "lnu", null, null, null, null, "Longuda", "I", "L" }, + { "lno", null, null, null, null, "Lango (South Sudan)", "I", "L" }, + { "ldo", null, null, null, null, "Loo", "I", "L" }, + { "ldn", null, null, null, null, "Láadan", "I", "C" }, + { "ldm", null, null, null, null, "Landoma", "I", "L" }, + { "ldl", null, null, null, null, "Kaan", "I", "L" }, + { "ldk", null, null, null, null, "Leelau", "I", "L" }, + { "ldj", null, null, null, null, "Lemoro", "I", "L" }, + { "ldi", null, null, null, null, "Laari", "I", "L" }, + { "ldh", null, null, null, null, "Lamja-Dengsa-Tola", "I", "L" }, + { "ldg", null, null, null, null, "Lenyima", "I", "L" }, + { "ldd", null, null, null, null, "Luri", "I", "L" }, + { "ldb", null, null, null, null, "Dũya", "I", "L" }, + { "lda", null, null, null, null, "Kla-Dan", "I", "L" }, + { "ldp", null, null, null, null, "Tso", "I", "L" }, + { "lcs", null, null, null, null, "Lisabata-Nuniali", "I", "L" }, + { "lcp", null, null, null, null, "Western Lawa", "I", "L" }, + { "lcm", null, null, null, null, "Tungag", "I", "L" }, + { "lcl", null, null, null, null, "Lisela", "I", "L" }, + { "lch", null, null, null, null, "Luchazi", "I", "L" }, + { "lcf", null, null, null, null, "Lubu", "I", "L" }, + { "lce", null, null, null, null, "Loncong", "I", "L" }, + { "lcd", null, null, null, null, "Lola", "I", "L" }, + { "lcc", null, null, null, null, "Legenyem", "I", "L" }, + { "lbz", null, null, null, null, "Lardil", "I", "L" }, + { "lby", null, null, null, null, "Lamalama", "I", "E" }, + { "lbx", null, null, null, null, "Lawangan", "I", "L" }, + { "lbw", null, null, null, null, "Tolaki", "I", "L" }, + { "lcq", null, null, null, null, "Luhu", "I", "L" }, + { "ldq", null, null, null, null, "Lufu", "I", "L" }, + { "lea", null, null, null, null, "Lega-Shabunda", "I", "L" }, + { "leb", null, null, null, null, "Lala-Bisa", "I", "L" }, + { "lgb", null, null, null, null, "Laghu", "I", "L" }, + { "lga", null, null, null, null, "Lungga", "I", "L" }, + { "lfn", null, null, null, null, "Lingua Franca Nova", "I", "C" }, + { "lfa", null, null, null, null, "Lefa", "I", "L" }, + { "lez", null, null, "lez", "lez", "Lezghian", "I", "L" }, + { "ley", null, null, null, null, "Lemolang", "I", "L" }, + { "lex", null, null, null, null, "Luang", "I", "L" }, + { "lew", null, null, null, null, "Ledo Kaili", "I", "L" }, + { "lev", null, null, null, null, "Lamma", "I", "L" }, + { "leu", null, null, null, null, "Kara (Papua New Guinea)", "I", "L" }, + { "let", null, null, null, null, "Lesing-Gelimi", "I", "L" }, + { "les", null, null, null, null, "Lese", "I", "L" }, + { "ler", null, null, null, null, "Lenkau", "I", "L" }, + { "leq", null, null, null, null, "Lembena", "I", "L" }, + { "lep", null, null, null, null, "Lepcha", "I", "L" }, + { "leo", null, null, null, null, "Leti (Cameroon)", "I", "L" }, + { "len", null, null, null, null, "Lenca", "I", "E" }, + { "lem", null, null, null, null, "Nomaande", "I", "L" }, + { "lel", null, null, null, null, "Lele (Democratic Republic of Congo)", "I", "L" }, + { "lek", null, null, null, null, "Leipon", "I", "L" }, + { "lej", null, null, null, null, "Lengola", "I", "L" }, + { "lei", null, null, null, null, "Lemio", "I", "L" }, + { "leh", null, null, null, null, "Lenje", "I", "L" }, + { "lef", null, null, null, null, "Lelemi", "I", "L" }, + { "lee", null, null, null, null, "Lyélé", "I", "L" }, + { "led", null, null, null, null, "Lendu", "I", "L" }, + { "lec", null, null, null, null, "Leco", "I", "L" }, + { "lbv", null, null, null, null, "Lavatbura-Lamusong", "I", "L" }, + { "lbu", null, null, null, null, "Labu", "I", "L" }, + { "lbt", null, null, null, null, "Lachi", "I", "L" }, + { "lbs", null, null, null, null, "Libyan Sign Language", "I", "L" }, + { "lai", null, null, null, null, "Lambya", "I", "L" }, + { "lah", null, null, "lah", "lah", "Lahnda", "M", "L" }, + { "lag", null, null, null, null, "Langi", "I", "L" }, + { "laf", null, null, null, null, "Lafofa", "I", "L" }, + { "lae", null, null, null, null, "Pattani", "I", "L" }, + { "lad", null, null, "lad", "lad", "Ladino", "I", "L" }, + { "lac", null, null, null, null, "Lacandon", "I", "L" }, + { "lab", null, null, null, null, "Linear A", "I", "A" }, + { "laa", null, null, null, null, "Southern Subanen", "I", "L" }, + { "kzz", null, null, null, null, "Kalabra", "I", "L" }, + { "kzy", null, null, null, null, "Kango (Tshopo District)", "I", "L" }, + { "kzx", null, null, null, null, "Kamarian", "I", "E" }, + { "kzw", null, null, null, null, "Karirí-Xocó", "I", "E" }, + { "kzv", null, null, null, null, "Komyandaret", "I", "L" }, + { "kzu", null, null, null, null, "Kayupulau", "I", "L" }, + { "kzs", null, null, null, null, "Sugut Dusun", "I", "L" }, + { "kzr", null, null, null, null, "Karang", "I", "L" }, + { "kzq", null, null, null, null, "Kaike", "I", "L" }, + { "kzp", null, null, null, null, "Kaidipang", "I", "L" }, + { "kzo", null, null, null, null, "Kaningi", "I", "L" }, + { "kzn", null, null, null, null, "Kokola", "I", "L" }, + { "kzm", null, null, null, null, "Kais", "I", "L" }, + { "kzl", null, null, null, null, "Kayeli", "I", "L" }, + { "kzk", null, null, null, null, "Kazukuru", "I", "E" }, + { "kzi", null, null, null, null, "Kelabit", "I", "L" }, + { "kzg", null, null, null, null, "Kikai", "I", "L" }, + { "kzf", null, null, null, null, "Da'a Kaili", "I", "L" }, + { "laj", null, null, null, null, "Lango (Uganda)", "I", "L" }, + { "lgg", null, null, null, null, "Lugbara", "I", "L" }, + { "lak", null, null, null, null, "Laka (Nigeria)", "I", "L" }, + { "lam", null, null, "lam", "lam", "Lamba", "I", "L" }, + { "lbr", null, null, null, null, "Lohorung", "I", "L" }, + { "lbq", null, null, null, null, "Wampar", "I", "L" }, + { "lbo", null, null, null, null, "Laven", "I", "L" }, + { "lbn", null, null, null, null, "Rmeet", "I", "L" }, + { "lbm", null, null, null, null, "Lodhi", "I", "L" }, + { "lbl", null, null, null, null, "Libon Bikol", "I", "L" }, + { "lbk", null, null, null, null, "Central Bontok", "I", "L" }, + { "lbj", null, null, null, null, "Ladakhi", "I", "L" }, + { "lbi", null, null, null, null, "La'bi", "I", "L" }, + { "lbg", null, null, null, null, "Laopang", "I", "L" }, + { "lbf", null, null, null, null, "Tinani", "I", "L" }, + { "lbe", null, null, null, null, "Lak", "I", "L" }, + { "lbc", null, null, null, null, "Lakkia", "I", "L" }, + { "lbb", null, null, null, null, "Label", "I", "L" }, + { "laz", null, null, null, null, "Aribwatsa", "I", "E" }, + { "lay", null, null, null, null, "Lama Bai", "I", "L" }, + { "lax", null, null, null, null, "Tiwa", "I", "L" }, + { "law", null, null, null, null, "Lauje", "I", "L" }, + { "lav", null, "lv", "lav", "lav", "Latvian", "M", "L" }, + { "lau", null, null, null, null, "Laba", "I", "L" }, + { "lat", null, "la", "lat", "lat", "Latin", "I", "A" }, + { "las", null, null, null, null, "Lama (Togo)", "I", "L" }, + { "lar", null, null, null, null, "Larteh", "I", "L" }, + { "laq", null, null, null, null, "Qabiao", "I", "L" }, + { "lap", null, null, null, null, "Laka (Chad)", "I", "L" }, + { "lao", null, "lo", "lao", "lao", "Lao", "I", "L" }, + { "lan", null, null, null, null, "Laru", "I", "L" }, + { "lal", null, null, null, null, "Lalia", "I", "L" }, + { "lns", null, null, null, null, "Lamnso'", "I", "L" }, + { "lgh", null, null, null, null, "Laghuu", "I", "L" }, + { "lgk", null, null, null, null, "Lingarak", "I", "L" }, + { "lmb", null, null, null, null, "Merei", "I", "L" }, + { "lma", null, null, null, null, "East Limba", "I", "L" }, + { "llx", null, null, null, null, "Lauan", "I", "L" }, + { "llu", null, null, null, null, "Lau", "I", "L" }, + { "lls", null, null, null, null, "Lithuanian Sign Language", "I", "L" }, + { "llq", null, null, null, null, "Lolak", "I", "L" }, + { "llp", null, null, null, null, "North Efate", "I", "L" }, + { "lln", null, null, null, null, "Lele (Chad)", "I", "L" }, + { "llm", null, null, null, null, "Lasalimu", "I", "L" }, + { "lll", null, null, null, null, "Lilau", "I", "L" }, + { "llk", null, null, null, null, "Lelak", "I", "E" }, + { "llj", null, null, null, null, "Ladji Ladji", "I", "E" }, + { "lmc", null, null, null, null, "Limilngan", "I", "E" }, + { "lli", null, null, null, null, "Teke-Laali", "I", "L" }, + { "llg", null, null, null, null, "Lole", "I", "L" }, + { "llf", null, null, null, null, "Hermit", "I", "E" }, + { "lle", null, null, null, null, "Lele (Papua New Guinea)", "I", "L" }, + { "lld", null, null, null, null, "Ladin", "I", "L" }, + { "llc", null, null, null, null, "Lele (Guinea)", "I", "L" }, + { "llb", null, null, null, null, "Lolo", "I", "L" }, + { "lla", null, null, null, null, "Lala-Roba", "I", "L" }, + { "lky", null, null, null, null, "Lokoya", "I", "L" }, + { "lku", null, null, null, null, "Kungkari", "I", "E" }, + { "lkt", null, null, null, null, "Lakota", "I", "L" }, + { "lks", null, null, null, null, "Kisa", "I", "L" }, + { "lkr", null, null, null, null, "Päri", "I", "L" }, + { "llh", null, null, null, null, "Lamu", "I", "L" }, + { "lmd", null, null, null, null, "Lumun", "I", "L" }, + { "lme", null, null, null, null, "Pévé", "I", "L" }, + { "lmf", null, null, null, null, "South Lembata", "I", "L" }, + { "lnn", null, null, null, null, "Lorediakarkar", "I", "L" }, + { "lnm", null, null, null, null, "Langam", "I", "L" }, + { "lnl", null, null, null, null, "South Central Banda", "I", "L" }, + { "lnj", null, null, null, null, "Leningitij", "I", "E" }, + { "lni", null, null, null, null, "Daantanai'", "I", "L" }, + { "lnh", null, null, null, null, "Lanoh", "I", "L" }, + { "lng", null, null, null, null, "Langobardic", "I", "A" }, + { "lnd", null, null, null, null, "Lundayeh", "I", "L" }, + { "lnb", null, null, null, null, "Mbalanhu", "I", "L" }, + { "lna", null, null, null, null, "Langbashe", "I", "L" }, + { "lmz", null, null, null, null, "Lumbee", "I", "E" }, + { "lmy", null, null, null, null, "Lamboya", "I", "L" }, + { "lmx", null, null, null, null, "Laimbue", "I", "L" }, + { "lmw", null, null, null, null, "Lake Miwok", "I", "L" }, + { "lmv", null, null, null, null, "Lomaiviti", "I", "L" }, + { "lmu", null, null, null, null, "Lamenu", "I", "L" }, + { "lmr", null, null, null, null, "Lamalera", "I", "L" }, + { "lmq", null, null, null, null, "Lamatuka", "I", "L" }, + { "lmp", null, null, null, null, "Limbum", "I", "L" }, + { "lmo", null, null, null, null, "Lombard", "I", "L" }, + { "lmn", null, null, null, null, "Lambadi", "I", "L" }, + { "lml", null, null, null, null, "Hano", "I", "L" }, + { "lmk", null, null, null, null, "Lamkang", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "lmj", null, null, null, null, "West Lembata", "I", "L" }, + { "lmi", null, null, null, null, "Lombi", "I", "L" }, + { "lmh", null, null, null, null, "Lambichhong", "I", "L" }, + { "lmg", null, null, null, null, "Lamogai", "I", "L" }, + { "lko", null, null, null, null, "Khayo", "I", "L" }, + { "lkn", null, null, null, null, "Lakon", "I", "L" }, + { "lkm", null, null, null, null, "Kalaamaya", "I", "E" }, + { "lkl", null, null, null, null, "Laeko-Libuat", "I", "L" }, + { "lij", null, null, null, null, "Ligurian", "I", "L" }, + { "lih", null, null, null, null, "Lihir", "I", "L" }, + { "lig", null, null, null, null, "Ligbi", "I", "L" }, + { "lif", null, null, null, null, "Limbu", "I", "L" }, + { "lie", null, null, null, null, "Likila", "I", "L" }, + { "lid", null, null, null, null, "Nyindrou", "I", "L" }, + { "lic", null, null, null, null, "Hlai", "I", "L" }, + { "lib", null, null, null, null, "Likum", "I", "L" }, + { "lia", null, null, null, null, "West-Central Limba", "I", "L" }, + { "lhu", null, null, null, null, "Lahu", "I", "L" }, + { "lht", null, null, null, null, "Lo-Toga", "I", "L" }, + { "lhs", null, null, null, null, "Mlahsö", "I", "E" }, + { "lhp", null, null, null, null, "Lhokpu", "I", "L" }, + { "lhn", null, null, null, null, "Lahanan", "I", "L" }, + { "lhm", null, null, null, null, "Lhomi", "I", "L" }, + { "lhl", null, null, null, null, "Lahul Lohar", "I", "L" }, + { "lhi", null, null, null, null, "Lahu Shi", "I", "L" }, + { "lhh", null, null, null, null, "Laha (Indonesia)", "I", "L" }, + { "lha", null, null, null, null, "Laha (Viet Nam)", "I", "L" }, + { "lgz", null, null, null, null, "Ligenza", "I", "L" }, + { "lgu", null, null, null, null, "Longgu", "I", "L" }, + { "lgt", null, null, null, null, "Pahi", "I", "L" }, + { "lgr", null, null, null, null, "Lengo", "I", "L" }, + { "lgq", null, null, null, null, "Logba", "I", "L" }, + { "lgn", null, null, null, null, "T'apo", "I", "L" }, + { "lgm", null, null, null, null, "Lega-Mwenga", "I", "L" }, + { "lgl", null, null, null, null, "Wala", "I", "L" }, + { "lik", null, null, null, null, "Lika", "I", "L" }, + { "lgi", null, null, null, null, "Lengilu", "I", "L" }, + { "lil", null, null, null, null, "Lillooet", "I", "L" }, + { "lin", null, "ln", "lin", "lin", "Lingala", "I", "L" }, + { "lkj", null, null, null, null, "Remun", "I", "L" }, + { "lki", null, null, null, null, "Laki", "I", "L" }, + { "lkh", null, null, null, null, "Lakha", "I", "L" }, + { "lke", null, null, null, null, "Kenyi", "I", "L" }, + { "lkd", null, null, null, null, "Lakondê", "I", "L" }, + { "lkc", null, null, null, null, "Kucong", "I", "L" }, + { "lkb", null, null, null, null, "Kabras", "I", "L" }, + { "lka", null, null, null, null, "Lakalei", "I", "L" }, + { "ljx", null, null, null, null, "Yuru", "I", "E" }, + { "ljw", null, null, null, null, "Yirandali", "I", "L" }, + { "ljp", null, null, null, null, "Lampung Api", "I", "L" }, + { "ljl", null, null, null, null, "Li'o", "I", "L" }, + { "lji", null, null, null, null, "Laiyolo", "I", "L" }, + { "lje", null, null, null, null, "Rampi", "I", "L" }, + { "lja", null, null, null, null, "Golpa", "I", "E" }, + { "liz", null, null, null, null, "Libinza", "I", "L" }, + { "liy", null, null, null, null, "Banda-Bambari", "I", "L" }, + { "lix", null, null, null, null, "Liabuku", "I", "L" }, + { "liw", null, null, null, null, "Col", "I", "L" }, + { "liv", null, null, null, null, "Liv", "I", "L" }, + { "liu", null, null, null, null, "Logorik", "I", "L" }, + { "lit", null, "lt", "lit", "lit", "Lithuanian", "I", "L" }, + { "lis", null, null, null, null, "Lisu", "I", "L" }, + { "lir", null, null, null, null, "Liberian English", "I", "L" }, + { "liq", null, null, null, null, "Libido", "I", "L" }, + { "lip", null, null, null, null, "Sekpele", "I", "L" }, + { "lio", null, null, null, null, "Liki", "I", "L" }, + { "lim", null, "li", "lim", "lim", "Limburgan", "I", "L" }, + { "ful", null, "ff", "ful", "ful", "Fulah", "M", "L" }, + { "kfm", null, null, null, null, "Khunsari", "I", "L" }, + { "kfk", null, null, null, null, "Kinnauri", "I", "L" }, + { "gye", null, null, null, null, "Gyem", "I", "L" }, + { "gyd", null, null, null, null, "Kayardild", "I", "L" }, + { "gyb", null, null, null, null, "Garus", "I", "L" }, + { "gya", null, null, null, null, "Northwest Gbaya", "I", "L" }, + { "gxx", null, null, null, null, "Wè Southern", "I", "L" }, + { "gwx", null, null, null, null, "Gua", "I", "L" }, + { "gww", null, null, null, null, "Kwini", "I", "L" }, + { "gwu", null, null, null, null, "Guwamu", "I", "E" }, + { "gwt", null, null, null, null, "Gawar-Bati", "I", "L" }, + { "gwr", null, null, null, null, "Gwere", "I", "L" }, + { "gwn", null, null, null, null, "Gwandara", "I", "L" }, + { "gwm", null, null, null, null, "Awngthim", "I", "E" }, + { "gyf", null, null, null, null, "Gungabula", "I", "E" }, + { "gwj", null, null, null, null, "ǀGwi", "I", "L" }, + { "gwg", null, null, null, null, "Moo", "I", "L" }, + { "gwf", null, null, null, null, "Gowro", "I", "L" }, + { "gwe", null, null, null, null, "Gweno", "I", "L" }, + { "gwd", null, null, null, null, "Gawwada", "I", "L" }, + { "gwc", null, null, null, null, "Kalami", "I", "L" }, + { "gwb", null, null, null, null, "Gwa", "I", "L" }, + { "gwa", null, null, null, null, "Mbato", "I", "L" }, + { "gvy", null, null, null, null, "Guyani", "I", "E" }, + { "gvs", null, null, null, null, "Gumawana", "I", "L" }, + { "gvr", null, null, null, null, "Gurung", "I", "L" }, + { "gvp", null, null, null, null, "Pará Gavião", "I", "L" }, + { "gvo", null, null, null, null, "Gavião Do Jiparaná", "I", "L" }, + { "gwi", null, null, "gwi", "gwi", "Gwichʼin", "I", "L" }, + { "gyg", null, null, null, null, "Gbayi", "I", "L" }, + { "gyi", null, null, null, null, "Gyele", "I", "L" }, + { "gyl", null, null, null, null, "Gayil", "I", "L" }, + { "has", null, null, null, null, "Haisla", "I", "L" }, + { "har", null, null, null, null, "Harari", "I", "L" }, + { "haq", null, null, null, null, "Ha", "I", "L" }, + { "hap", null, null, null, null, "Hupla", "I", "L" }, + { "hao", null, null, null, null, "Hakö", "I", "L" }, + { "han", null, null, null, null, "Hangaza", "I", "L" }, + { "ham", null, null, null, null, "Hewa", "I", "L" }, + { "hal", null, null, null, null, "Halang", "I", "L" }, + { "hak", null, null, null, null, "Hakka Chinese", "I", "L" }, + { "haj", null, null, null, null, "Hajong", "I", "L" }, + { "hai", null, null, "hai", "hai", "Haida", "M", "L" }, + { "hah", null, null, null, null, "Hahon", "I", "L" }, + { "hag", null, null, null, null, "Hanga", "I", "L" }, + { "haf", null, null, null, null, "Haiphong Sign Language", "I", "L" }, + { "hae", null, null, null, null, "Eastern Oromo", "I", "L" }, + { "had", null, null, null, null, "Hatam", "I", "L" }, + { "hac", null, null, null, null, "Gurani", "I", "L" }, + { "hab", null, null, null, null, "Hanoi Sign Language", "I", "L" }, + { "haa", null, null, null, null, "Han", "I", "L" }, + { "gzn", null, null, null, null, "Gane", "I", "L" }, + { "gzi", null, null, null, null, "Gazi", "I", "L" }, + { "gza", null, null, null, null, "Ganza", "I", "L" }, + { "gyy", null, null, null, null, "Gunya", "I", "E" }, + { "gyr", null, null, null, null, "Guarayu", "I", "L" }, + { "gyo", null, null, null, null, "Gyalsumdo", "I", "L" }, + { "gyn", null, null, null, null, "Guyanese Creole English", "I", "L" }, + { "gym", null, null, null, null, "Ngäbere", "I", "L" }, + { "gvn", null, null, null, null, "Kuku-Yalanji", "I", "L" }, + { "hat", null, "ht", "hat", "hat", "Haitian", "I", "L" }, + { "gvm", null, null, null, null, "Gurmana", "I", "L" }, + { "gvj", null, null, null, null, "Guajá", "I", "L" }, + { "gss", null, null, null, null, "Greek Sign Language", "I", "L" }, + { "gsp", null, null, null, null, "Wasembo", "I", "L" }, + { "gso", null, null, null, null, "Southwest Gbaya", "I", "L" }, + { "gsn", null, null, null, null, "Nema", "I", "L" }, + { "gsm", null, null, null, null, "Guatemalan Sign Language", "I", "L" }, + { "gsl", null, null, null, null, "Gusilay", "I", "L" }, + { "gsg", null, null, null, null, "German Sign Language", "I", "L" }, + { "gse", null, null, null, null, "Ghanaian Sign Language", "I", "L" }, + { "grz", null, null, null, null, "Guramalum", "I", "L" }, + { "gry", null, null, null, null, "Barclayville Grebo", "I", "L" }, + { "grx", null, null, null, null, "Guriaso", "I", "L" }, + { "grw", null, null, null, null, "Gweda", "I", "L" }, + { "gsw", null, null, "gsw", "gsw", "Swiss German", "I", "L" }, + { "grv", null, null, null, null, "Central Grebo", "I", "L" }, + { "grt", null, null, null, null, "Garo", "I", "L" }, + { "grs", null, null, null, null, "Gresi", "I", "L" }, + { "grr", null, null, null, null, "Taznatit", "I", "L" }, + { "grq", null, null, null, null, "Gorovu", "I", "L" }, + { "gro", null, null, null, null, "Groma", "I", "L" }, + { "grn", null, "gn", "grn", "grn", "Guarani", "M", "L" }, + { "grm", null, null, null, null, "Kota Marudu Talantang", "I", "L" }, + { "grj", null, null, null, null, "Southern Grebo", "I", "L" }, + { "gri", null, null, null, null, "Ghari", "I", "L" }, + { "grh", null, null, null, null, "Gbiri-Niragu", "I", "L" }, + { "grg", null, null, null, null, "Madi", "I", "L" }, + { "grd", null, null, null, null, "Guruntum-Mbaaru", "I", "L" }, + { "gru", null, null, null, null, "Kistane", "I", "L" }, + { "gta", null, null, null, null, "Guató", "I", "L" }, + { "gtu", null, null, null, null, "Aghu-Tharnggala", "I", "E" }, + { "gua", null, null, null, null, "Shiki", "I", "L" }, + { "gvf", null, null, null, null, "Golin", "I", "L" }, + { "gve", null, null, null, null, "Duwet", "I", "L" }, + { "gvc", null, null, null, null, "Guanano", "I", "L" }, + { "gva", null, null, null, null, "Guana (Paraguay)", "I", "L" }, + { "guz", null, null, null, null, "Gusii", "I", "L" }, + { "gux", null, null, null, null, "Gourmanchéma", "I", "L" }, + { "guw", null, null, null, null, "Gun", "I", "L" }, + { "guu", null, null, null, null, "Yanomamö", "I", "L" }, + { "gut", null, null, null, null, "Maléku Jaíka", "I", "L" }, + { "gus", null, null, null, null, "Guinean Sign Language", "I", "L" }, + { "gur", null, null, null, null, "Farefare", "I", "L" }, + { "guq", null, null, null, null, "Aché", "I", "L" }, + { "gup", null, null, null, null, "Gunwinggu", "I", "L" }, + { "guo", null, null, null, null, "Guayabero", "I", "L" }, + { "gun", null, null, null, null, "Mbyá Guaraní", "I", "L" }, + { "gum", null, null, null, null, "Guambiano", "I", "L" }, + { "gul", null, null, null, null, "Sea Island Creole English", "I", "L" }, + { "guk", null, null, null, null, "Gumuz", "I", "L" }, + { "guj", null, "gu", "guj", "guj", "Gujarati", "I", "L" }, + { "gui", null, null, null, null, "Eastern Bolivian Guaraní", "I", "L" }, + { "guh", null, null, null, null, "Guahibo", "I", "L" }, + { "gug", null, null, null, null, "Paraguayan Guaraní", "I", "L" }, + { "guf", null, null, null, null, "Gupapuyngu", "I", "L" }, + { "gue", null, null, null, null, "Gurindji", "I", "L" }, + { "gud", null, null, null, null, "Yocoboué Dida", "I", "L" }, + { "guc", null, null, null, null, "Wayuu", "I", "L" }, + { "gub", null, null, null, null, "Guajajára", "I", "L" }, + { "gvl", null, null, null, null, "Gulay", "I", "L" }, + { "hau", null, "ha", "hau", "hau", "Hausa", "I", "L" }, + { "hav", null, null, null, null, "Havu", "I", "L" }, + { "haw", null, null, "haw", "haw", "Hawaiian", "I", "L" }, + { "hno", null, null, null, null, "Northern Hindko", "I", "L" }, + { "hnn", null, null, null, null, "Hanunoo", "I", "L" }, + { "hnj", null, null, null, null, "Hmong Njua", "I", "L" }, + { "hni", null, null, null, null, "Hani", "I", "L" }, + { "hnh", null, null, null, null, "ǁAni", "I", "L" }, + { "hne", null, null, null, null, "Chhattisgarhi", "I", "L" }, + { "hnd", null, null, null, null, "Southern Hindko", "I", "L" }, + { "hna", null, null, null, null, "Mina (Cameroon)", "I", "L" }, + { "hmz", null, null, null, null, "Hmong Shua", "I", "L" }, + { "hmy", null, null, null, null, "Southern Guiyang Hmong", "I", "L" }, + { "hmw", null, null, null, null, "Western Mashan Hmong", "I", "L" }, + { "hmv", null, null, null, null, "Hmong Dô", "I", "L" }, + { "hns", null, null, null, null, "Caribbean Hindustani", "I", "L" }, + { "hmu", null, null, null, null, "Hamap", "I", "L" }, + { "hms", null, null, null, null, "Southern Qiandong Miao", "I", "L" }, + { "hmr", null, null, null, null, "Hmar", "I", "L" }, + { "hmq", null, null, null, null, "Eastern Qiandong Miao", "I", "L" }, + { "hmp", null, null, null, null, "Northern Mashan Hmong", "I", "L" }, + { "hmo", null, "ho", "hmo", "hmo", "Hiri Motu", "I", "L" }, + { "hmn", null, null, "hmn", "hmn", "Hmong", "M", "L" }, + { "hmm", null, null, null, null, "Central Mashan Hmong", "I", "L" }, + { "hml", null, null, null, null, "Luopohe Hmong", "I", "L" }, + { "hmk", null, null, null, null, "Maek", "I", "A" }, + { "hmj", null, null, null, null, "Ge", "I", "L" }, + { "hmi", null, null, null, null, "Northern Huishui Hmong", "I", "L" }, + { "hmh", null, null, null, null, "Southwestern Huishui Hmong", "I", "L" }, + { "hmt", null, null, null, null, "Hamtai", "I", "L" }, + { "hnu", null, null, null, null, "Hung", "I", "L" }, + { "hoa", null, null, null, null, "Hoava", "I", "L" }, + { "hob", null, null, null, null, "Mari (Madang Province)", "I", "L" }, + { "hrt", null, null, null, null, "Hértevin", "I", "L" }, + { "hrp", null, null, null, null, "Nhirrpi", "I", "E" }, + { "hro", null, null, null, null, "Haroi", "I", "L" }, + { "hrm", null, null, null, null, "Horned Miao", "I", "L" }, + { "hrk", null, null, null, null, "Haruku", "I", "L" }, + { "hre", null, null, null, null, "Hre", "I", "L" }, + { "hrc", null, null, null, null, "Niwer Mil", "I", "L" }, + { "hra", null, null, null, null, "Hrangkhol", "I", "L" }, + { "hps", null, null, null, null, "Hawai'i Sign Language (HSL)", "I", "L" }, + { "hpo", null, null, null, null, "Hpon", "I", "E" }, + { "hoz", null, null, null, null, "Hozo", "I", "L" }, + { "hoy", null, null, null, null, "Holiya", "I", "L" }, + { "how", null, null, null, null, "Honi", "I", "L" }, + { "hov", null, null, null, null, "Hovongan", "I", "L" }, + { "hot", null, null, null, null, "Hote", "I", "L" }, + { "hos", null, null, null, null, "Ho Chi Minh City Sign Language", "I", "L" }, + { "hor", null, null, null, null, "Horo", "I", "E" }, + { "hop", null, null, null, null, "Hopi", "I", "L" }, + { "hoo", null, null, null, null, "Holoholo", "I", "L" }, + { "hom", null, null, null, null, "Homa", "I", "E" }, + { "hol", null, null, null, null, "Holu", "I", "L" }, + { "hoj", null, null, null, null, "Hadothi", "I", "L" }, + { "hoi", null, null, null, null, "Holikachuk", "I", "L" }, + { "hoh", null, null, null, null, "Hobyót", "I", "L" }, + { "hoe", null, null, null, null, "Horom", "I", "L" }, + { "hod", null, null, null, null, "Holma", "I", "E" }, + { "hoc", null, null, null, null, "Ho", "I", "L" }, + { "hmg", null, null, null, null, "Southwestern Guiyang Hmong", "I", "L" }, + { "hmf", null, null, null, null, "Hmong Don", "I", "L" }, + { "hme", null, null, null, null, "Eastern Huishui Hmong", "I", "L" }, + { "hmd", null, null, null, null, "Large Flowery Miao", "I", "L" }, + { "hhy", null, null, null, null, "Hoyahoya", "I", "L" }, + { "hhr", null, null, null, null, "Kerak", "I", "L" }, + { "hhi", null, null, null, null, "Hoia Hoia", "I", "L" }, + { "hgw", null, null, null, null, "Haigwai", "I", "L" }, + { "hgm", null, null, null, null, "Haiǁom", "I", "L" }, + { "her", null, "hz", "her", "her", "Herero", "I", "L" }, + { "hem", null, null, null, null, "Hemba", "I", "L" }, + { "hei", null, null, null, null, "Heiltsuk", "I", "L" }, + { "heh", null, null, null, null, "Hehe", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "heg", null, null, null, null, "Helong", "I", "L" }, + { "hed", null, null, null, null, "Herdé", "I", "L" }, + { "heb", null, "he", "heb", "heb", "Hebrew", "I", "L" }, + { "hea", null, null, null, null, "Northern Qiandong Miao", "I", "L" }, + { "hdy", null, null, null, null, "Hadiyya", "I", "L" }, + { "hds", null, null, null, null, "Honduras Sign Language", "I", "L" }, + { "hdn", null, null, null, null, "Northern Haida", "I", "L" }, + { "hch", null, null, null, null, "Huichol", "I", "L" }, + { "hca", null, null, null, null, "Andaman Creole Hindi", "I", "L" }, + { "hbu", null, null, null, null, "Habu", "I", "L" }, + { "hbs", null, "sh", null, null, "Serbo-Croatian", "M", "L" }, + { "hbo", null, null, null, null, "Ancient Hebrew", "I", "H" }, + { "hbn", null, null, null, null, "Heiban", "I", "L" }, + { "hbb", null, null, null, null, "Huba", "I", "L" }, + { "hba", null, null, null, null, "Hamba", "I", "L" }, + { "haz", null, null, null, null, "Hazaragi", "I", "L" }, + { "hay", null, null, null, null, "Haya", "I", "L" }, + { "hax", null, null, null, null, "Southern Haida", "I", "L" }, + { "hia", null, null, null, null, "Lamang", "I", "L" }, + { "grc", null, null, "grc", "grc", "Ancient Greek (to 1453)", "I", "H" }, + { "hib", null, null, null, null, "Hibito", "I", "E" }, + { "hif", null, null, null, null, "Fiji Hindi", "I", "L" }, + { "hmc", null, null, null, null, "Central Huishui Hmong", "I", "L" }, + { "hmb", null, null, null, null, "Humburi Senni Songhay", "I", "L" }, + { "hma", null, null, null, null, "Southern Mashan Hmong", "I", "L" }, + { "hlu", null, null, null, null, "Hieroglyphic Luwian", "I", "A" }, + { "hlt", null, null, null, null, "Matu Chin", "I", "L" }, + { "hle", null, null, null, null, "Hlersu", "I", "L" }, + { "hld", null, null, null, null, "Halang Doan", "I", "L" }, + { "hlb", null, null, null, null, "Halbi", "I", "L" }, + { "hla", null, null, null, null, "Halia", "I", "L" }, + { "hks", null, null, null, null, "Hong Kong Sign Language", "I", "L" }, + { "hkn", null, null, null, null, "Mel-Khaonh", "I", "L" }, + { "hkk", null, null, null, null, "Hunjara-Kaina Ke", "I", "L" }, + { "hke", null, null, null, null, "Hunde", "I", "L" }, + { "hka", null, null, null, null, "Kahe", "I", "L" }, + { "hji", null, null, null, null, "Haji", "I", "L" }, + { "hix", null, null, null, null, "Hixkaryána", "I", "L" }, + { "hiw", null, null, null, null, "Hiw", "I", "L" }, + { "hit", null, null, "hit", "hit", "Hittite", "I", "A" }, + { "hir", null, null, null, null, "Himarimã", "I", "L" }, + { "hio", null, null, null, null, "Tsoa", "I", "L" }, + { "hin", null, "hi", "hin", "hin", "Hindi", "I", "L" }, + { "hil", null, null, "hil", "hil", "Hiligaynon", "I", "L" }, + { "hik", null, null, null, null, "Seit-Kaitetu", "I", "L" }, + { "hij", null, null, null, null, "Hijuk", "I", "L" }, + { "hii", null, null, null, null, "Hinduri", "I", "L" }, + { "hih", null, null, null, null, "Pamosu", "I", "L" }, + { "hig", null, null, null, null, "Kamwe", "I", "L" }, + { "hid", null, null, null, null, "Hidatsa", "I", "L" }, + { "grb", null, null, "grb", "grb", "Grebo", "M", "L" }, + { "gra", null, null, null, null, "Rajput Garasia", "I", "L" }, + { "gqu", null, null, null, null, "Qau", "I", "L" }, + { "gdx", null, null, null, null, "Godwari", "I", "L" }, + { "gdu", null, null, null, null, "Gudu", "I", "L" }, + { "gdt", null, null, null, null, "Kungardutyi", "I", "E" }, + { "gds", null, null, null, null, "Ghandruk Sign Language", "I", "L" }, + { "gdr", null, null, null, null, "Wipi", "I", "L" }, + { "gdq", null, null, null, null, "Mehri", "I", "L" }, + { "gdo", null, null, null, null, "Ghodoberi", "I", "L" }, + { "gdn", null, null, null, null, "Umanakaina", "I", "L" }, + { "gdm", null, null, null, null, "Laal", "I", "L" }, + { "gdl", null, null, null, null, "Dirasha", "I", "L" }, + { "gdk", null, null, null, null, "Gadang", "I", "L" }, + { "gdj", null, null, null, null, "Gurdjar", "I", "L" }, + { "gea", null, null, null, null, "Geruma", "I", "L" }, + { "gdi", null, null, null, null, "Gundi", "I", "L" }, + { "gdg", null, null, null, null, "Ga'dang", "I", "L" }, + { "gdf", null, null, null, null, "Guduf-Gava", "I", "L" }, + { "gde", null, null, null, null, "Gude", "I", "L" }, + { "gdd", null, null, null, null, "Gedaged", "I", "L" }, + { "gdc", null, null, null, null, "Gugu Badhun", "I", "E" }, + { "gdb", null, null, null, null, "Pottangi Ollar Gadaba", "I", "L" }, + { "gda", null, null, null, null, "Gade Lohar", "I", "L" }, + { "gct", null, null, null, null, "Colonia Tovar German", "I", "L" }, + { "gcr", null, null, null, null, "Guianese Creole French", "I", "L" }, + { "gcn", null, null, null, null, "Gaina", "I", "L" }, + { "gcl", null, null, null, null, "Grenadian Creole English", "I", "L" }, + { "gcf", null, null, null, null, "Guadeloupean Creole French", "I", "L" }, + { "gdh", null, null, null, null, "Gadjerawang", "I", "L" }, + { "geb", null, null, null, null, "Kire", "I", "L" }, + { "gec", null, null, null, null, "Gboloo Grebo", "I", "L" }, + { "ged", null, null, null, null, "Gade", "I", "L" }, + { "ghc", null, null, null, null, "Hiberno-Scottish Gaelic", "I", "H" }, + { "gha", null, null, null, null, "Ghadamès", "I", "L" }, + { "ggw", null, null, null, null, "Gogodala", "I", "L" }, + { "ggu", null, null, null, null, "Gagu", "I", "L" }, + { "ggt", null, null, null, null, "Gitua", "I", "L" }, + { "ggl", null, null, null, null, "Ganglau", "I", "L" }, + { "ggk", null, null, null, null, "Kungarakany", "I", "E" }, + { "ggg", null, null, null, null, "Gurgula", "I", "L" }, + { "gge", null, null, null, null, "Gurr-goni", "I", "L" }, + { "ggd", null, null, null, null, "Gugadj", "I", "E" }, + { "ggb", null, null, null, null, "Gbii", "I", "L" }, + { "gga", null, null, null, null, "Gao", "I", "L" }, + { "gft", null, null, null, null, "Gafat", "I", "E" }, + { "gfk", null, null, null, null, "Patpatar", "I", "L" }, + { "gez", null, null, "gez", "gez", "Geez", "I", "A" }, + { "gey", null, null, null, null, "Enya", "I", "L" }, + { "gex", null, null, null, null, "Garre", "I", "L" }, + { "gew", null, null, null, null, "Gera", "I", "L" }, + { "gev", null, null, null, null, "Eviya", "I", "L" }, + { "ges", null, null, null, null, "Geser-Gorom", "I", "L" }, + { "geq", null, null, null, null, "Geme", "I", "L" }, + { "gel", null, null, null, null, "ut-Ma'in", "I", "L" }, + { "gek", null, null, null, null, "Ywom", "I", "L" }, + { "gej", null, null, null, null, "Gen", "I", "L" }, + { "gei", null, null, null, null, "Gebe", "I", "L" }, + { "geh", null, null, null, null, "Hutterite German", "I", "L" }, + { "geg", null, null, null, null, "Gengle", "I", "L" }, + { "gce", null, null, null, null, "Galice", "I", "E" }, + { "gcd", null, null, null, null, "Ganggalida", "I", "E" }, + { "gcc", null, null, null, null, "Mali", "I", "L" }, + { "gbz", null, null, null, null, "Zoroastrian Dari", "I", "L" }, + { "gaq", null, null, null, null, "Gata'", "I", "L" }, + { "gap", null, null, null, null, "Gal", "I", "L" }, + { "gao", null, null, null, null, "Gants", "I", "L" }, + { "gan", null, null, null, null, "Gan Chinese", "I", "L" }, + { "gam", null, null, null, null, "Kandawo", "I", "L" }, + { "gal", null, null, null, null, "Galolen", "I", "L" }, + { "gak", null, null, null, null, "Gamkonora", "I", "L" }, + { "gaj", null, null, null, null, "Gadsup", "I", "L" }, + { "gai", null, null, null, null, "Borei", "I", "L" }, + { "gah", null, null, null, null, "Alekano", "I", "L" }, + { "gag", null, null, null, null, "Gagauz", "I", "L" }, + { "gaf", null, null, null, null, "Gende", "I", "L" }, + { "gae", null, null, null, null, "Guarequena", "I", "L" }, + { "gad", null, null, null, null, "Gaddang", "I", "L" }, + { "gac", null, null, null, null, "Mixed Great Andamanese", "I", "L" }, + { "gab", null, null, null, null, "Gabri", "I", "L" }, + { "gaa", null, null, "gaa", "gaa", "Ga", "I", "L" }, + { "fwe", null, null, null, null, "Fwe", "I", "L" }, + { "fwa", null, null, null, null, "Fwâi", "I", "L" }, + { "fvr", null, null, null, null, "Fur", "I", "L" }, + { "fuy", null, null, null, null, "Fuyug", "I", "L" }, + { "fuv", null, null, null, null, "Nigerian Fulfulde", "I", "L" }, + { "fuu", null, null, null, null, "Furu", "I", "L" }, + { "fut", null, null, null, null, "Futuna-Aniwa", "I", "L" }, + { "fur", null, null, "fur", "fur", "Friulian", "I", "L" }, + { "fuq", null, null, null, null, "Central-Eastern Niger Fulfulde", "I", "L" }, + { "fun", null, null, null, null, "Fulniô", "I", "L" }, + { "gar", null, null, null, null, "Galeya", "I", "L" }, + { "ghe", null, null, null, null, "Southern Ghale", "I", "L" }, + { "gas", null, null, null, null, "Adiwasi Garasia", "I", "L" }, + { "gau", null, null, null, null, "Mudhili Gadaba", "I", "L" }, + { "gby", null, null, null, null, "Gbari", "I", "L" }, + { "gbx", null, null, null, null, "Eastern Xwla Gbe", "I", "L" }, + { "gbw", null, null, null, null, "Gabi-Gabi", "I", "L" }, + { "gbv", null, null, null, null, "Gbanu", "I", "L" }, + { "gbu", null, null, null, null, "Gagadu", "I", "L" }, + { "gbs", null, null, null, null, "Gbesi Gbe", "I", "L" }, + { "gbr", null, null, null, null, "Gbagyi", "I", "L" }, + { "gbq", null, null, null, null, "Gbaya-Bozoum", "I", "L" }, + { "gbp", null, null, null, null, "Gbaya-Bossangoa", "I", "L" }, + { "gbo", null, null, null, null, "Northern Grebo", "I", "L" }, + { "gbn", null, null, null, null, "Mo'da", "I", "L" }, + { "gbm", null, null, null, null, "Garhwali", "I", "L" }, + { "gbl", null, null, null, null, "Gamit", "I", "L" }, + { "gbk", null, null, null, null, "Gaddi", "I", "L" }, + { "gbj", null, null, null, null, "Bodo Gadaba", "I", "L" }, + { "gbi", null, null, null, null, "Galela", "I", "L" }, + { "gbh", null, null, null, null, "Defi Gbe", "I", "L" }, + { "gbg", null, null, null, null, "Gbanziri", "I", "L" }, + { "gbf", null, null, null, null, "Gaikundi", "I", "L" }, + { "gbe", null, null, null, null, "Niksek", "I", "L" }, + { "gbd", null, null, null, null, "Karajarri", "I", "L" }, + { "gbb", null, null, null, null, "Kaytetye", "I", "L" }, + { "gba", null, null, "gba", "gba", "Gbaya (Central African Republic)", "M", "L" }, + { "gaz", null, null, null, null, "West Central Oromo", "I", "L" }, + { "gay", null, null, "gay", "gay", "Gayo", "I", "L" }, + { "gax", null, null, null, null, "Borana-Arsi-Guji Oromo", "I", "L" }, + { "gaw", null, null, null, null, "Nobonob", "I", "L" }, + { "gat", null, null, null, null, "Kenati", "I", "L" }, + { "hru", null, null, null, null, "Hruso", "I", "L" }, + { "ghh", null, null, null, null, "Northern Ghale", "I", "L" }, + { "ghl", null, null, null, null, "Ghulfan", "I", "L" }, + { "goa", null, null, null, null, "Guro", "I", "L" }, + { "gnz", null, null, null, null, "Ganzi", "I", "L" }, + { "gnw", null, null, null, null, "Western Bolivian Guaraní", "I", "L" }, + { "gnu", null, null, null, null, "Gnau", "I", "L" }, + { "gnt", null, null, null, null, "Guntai", "I", "L" }, + { "gnr", null, null, null, null, "Gureng Gureng", "I", "E" }, + { "gnq", null, null, null, null, "Gana", "I", "L" }, + { "gno", null, null, null, null, "Northern Gondi", "I", "L" }, + { "gnn", null, null, null, null, "Gumatj", "I", "L" }, + { "gnm", null, null, null, null, "Ginuman", "I", "L" }, + { "gnl", null, null, null, null, "Gangulu", "I", "E" }, + { "gnk", null, null, null, null, "ǁGana", "I", "L" }, + { "gob", null, null, null, null, "Playero", "I", "L" }, + { "gnj", null, null, null, null, "Ngen", "I", "L" }, + { "gnh", null, null, null, null, "Lere", "I", "L" }, + { "gng", null, null, null, null, "Ngangam", "I", "L" }, + { "gne", null, null, null, null, "Ganang", "I", "L" }, + { "gnd", null, null, null, null, "Zulgo-Gemzek", "I", "L" }, + { "gnc", null, null, null, null, "Guanche", "I", "E" }, + { "gnb", null, null, null, null, "Gangte", "I", "L" }, + { "gna", null, null, null, null, "Kaansa", "I", "L" }, + { "gmz", null, null, null, null, "Mgbolizhia", "I", "L" }, + { "gmy", null, null, null, null, "Mycenaean Greek", "I", "A" }, + { "gmx", null, null, null, null, "Magoma", "I", "L" }, + { "gmv", null, null, null, null, "Gamo", "I", "L" }, + { "gmu", null, null, null, null, "Gumalu", "I", "L" }, + { "gni", null, null, null, null, "Gooniyandi", "I", "L" }, + { "goc", null, null, null, null, "Gorakor", "I", "L" }, + { "god", null, null, null, null, "Godié", "I", "L" }, + { "goe", null, null, null, null, "Gongduk", "I", "L" }, + { "gqr", null, null, null, null, "Gor", "I", "L" }, + { "gqn", null, null, null, null, "Guana (Brazil)", "I", "E" }, + { "gqi", null, null, null, null, "Guiqiong", "I", "L" }, + { "gqa", null, null, null, null, "Ga'anda", "I", "L" }, + { "gpn", null, null, null, null, "Taiap", "I", "L" }, + { "gpe", null, null, null, null, "Ghanaian Pidgin English", "I", "L" }, + { "gpa", null, null, null, null, "Gupa-Abawa", "I", "L" }, + { "goz", null, null, null, null, "Gozarkhani", "I", "L" }, + { "goy", null, null, null, null, "Goundo", "I", "L" }, + { "gox", null, null, null, null, "Gobu", "I", "L" }, + { "gow", null, null, null, null, "Gorowa", "I", "L" }, + { "gou", null, null, null, null, "Gavar", "I", "L" }, + { "got", null, null, "got", "got", "Gothic", "I", "A" }, + { "gos", null, null, null, null, "Gronings", "I", "L" }, + { "gor", null, null, "gor", "gor", "Gorontalo", "I", "L" }, + { "goq", null, null, null, null, "Gorap", "I", "L" }, + { "gop", null, null, null, null, "Yeretuar", "I", "L" }, + { "goo", null, null, null, null, "Gone Dau", "I", "L" }, + { "gon", null, null, "gon", "gon", "Gondi", "M", "L" }, + { "gom", null, null, null, null, "Goan Konkani", "I", "L" }, + { "gol", null, null, null, null, "Gola", "I", "L" }, + { "gok", null, null, null, null, "Gowli", "I", "L" }, + { "goj", null, null, null, null, "Gowlan", "I", "L" }, + { "goi", null, null, null, null, "Gobasi", "I", "L" }, + { "goh", null, null, "goh", "goh", "Old High German (ca. 750-1050)", "I", "H" }, + { "gog", null, null, null, null, "Gogo", "I", "L" }, + { "gof", null, null, null, null, "Gofa", "I", "L" }, + { "gmn", null, null, null, null, "Gimnime", "I", "L" }, + { "gmm", null, null, null, null, "Gbaya-Mbodomo", "I", "L" }, + { "gml", null, null, null, null, "Middle Low German", "I", "H" }, + { "gmh", null, null, "gmh", "gmh", "Middle High German (ca. 1050-1500)", "I", "H" }, + { "gjk", null, null, null, null, "Kachi Koli", "I", "L" }, + { "gji", null, null, null, null, "Geji", "I", "L" }, + { "giz", null, null, null, null, "South Giziga", "I", "L" }, + { "giy", null, null, null, null, "Giyug", "I", "L" }, + { "gix", null, null, null, null, "Gilima", "I", "L" }, + { "giw", null, null, null, null, "White Gelao", "I", "L" }, + { "giu", null, null, null, null, "Mulao", "I", "L" }, + { "git", null, null, null, null, "Gitxsan", "I", "L" }, + { "gis", null, null, null, null, "North Giziga", "I", "L" }, + { "gir", null, null, null, null, "Red Gelao", "I", "L" }, + { "giq", null, null, null, null, "Green Gelao", "I", "L" }, + { "gip", null, null, null, null, "Gimi (West New Britain)", "I", "L" }, + { "gin", null, null, null, null, "Hinukh", "I", "L" }, + { "gim", null, null, null, null, "Gimi (Eastern Highlands)", "I", "L" }, + { "gil", null, null, "gil", "gil", "Gilbertese", "I", "L" }, + { "gih", null, null, null, null, "Githabul", "I", "L" }, + { "gig", null, null, null, null, "Goaria", "I", "L" }, + { "gie", null, null, null, null, "Gaɓogbo", "I", "L" }, + { "gid", null, null, null, null, "Gidar", "I", "L" }, + { "gic", null, null, null, null, "Gail", "I", "L" }, + { "gib", null, null, null, null, "Gibanawa", "I", "L" }, + { "gia", null, null, null, null, "Kija", "I", "L" }, + { "ght", null, null, null, null, "Kuke", "I", "L" }, + { "ghs", null, null, null, null, "Guhu-Samane", "I", "L" }, + { "ghr", null, null, null, null, "Ghera", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "gho", null, null, null, null, "Ghomara", "I", "E" }, + { "ghn", null, null, null, null, "Ghanongga", "I", "L" }, + { "gjm", null, null, null, null, "Gunditjmara", "I", "E" }, + { "ghk", null, null, null, null, "Geko Karen", "I", "L" }, + { "gjn", null, null, null, null, "Gonja", "I", "L" }, + { "gju", null, null, null, null, "Gujari", "I", "L" }, + { "gmg", null, null, null, null, "Magɨyi", "I", "L" }, + { "gmd", null, null, null, null, "Mághdì", "I", "L" }, + { "gmb", null, null, null, null, "Gula'alaa", "I", "L" }, + { "gma", null, null, null, null, "Gambera", "I", "E" }, + { "gly", null, null, null, null, "Gule", "I", "E" }, + { "glw", null, null, null, null, "Glavda", "I", "L" }, + { "glv", null, "gv", "glv", "glv", "Manx", "I", "L" }, + { "glu", null, null, null, null, "Gula (Chad)", "I", "L" }, + { "glr", null, null, null, null, "Glaro-Twabo", "I", "L" }, + { "glo", null, null, null, null, "Galambu", "I", "L" }, + { "gll", null, null, null, null, "Garlali", "I", "E" }, + { "glk", null, null, null, null, "Gilaki", "I", "L" }, + { "glj", null, null, null, null, "Gula Iro", "I", "L" }, + { "gli", null, null, null, null, "Guliguli", "I", "E" }, + { "glh", null, null, null, null, "Northwest Pashai", "I", "L" }, + { "glg", null, "gl", "glg", "glg", "Galician", "I", "L" }, + { "gle", null, "ga", "gle", "gle", "Irish", "I", "L" }, + { "gld", null, null, null, null, "Nanai", "I", "L" }, + { "glc", null, null, null, null, "Bon Gula", "I", "L" }, + { "gla", null, "gd", "gla", "gla", "Scottish Gaelic", "I", "L" }, + { "gku", null, null, null, null, "ǂUngkue", "I", "E" }, + { "gkp", null, null, null, null, "Guinea Kpelle", "I", "L" }, + { "gko", null, null, null, null, "Kok-Nar", "I", "E" }, + { "gkn", null, null, null, null, "Gokana", "I", "L" }, + { "gke", null, null, null, null, "Ndai", "I", "L" }, + { "gkd", null, null, null, null, "Magɨ (Madang Province)", "I", "L" }, + { "gka", null, null, null, null, "Guya", "I", "L" }, + { "gjr", null, null, null, null, "Gurindji Kriol", "I", "L" }, + { "hrv", null, "hr", "hrv", "hrv", "Croatian", "I", "L" }, + { "hrw", null, null, null, null, "Warwar Feni", "I", "L" }, + { "hrx", null, null, null, null, "Hunsrik", "I", "L" }, + { "jud", null, null, null, null, "Worodougou", "I", "L" }, + { "juc", null, null, null, null, "Jurchen", "I", "E" }, + { "jub", null, null, null, null, "Wannu", "I", "L" }, + { "jua", null, null, null, null, "Júma", "I", "L" }, + { "jsl", null, null, null, null, "Japanese Sign Language", "I", "L" }, + { "jru", null, null, null, null, "Japrería", "I", "L" }, + { "jrt", null, null, null, null, "Jorto", "I", "L" }, + { "jrr", null, null, null, null, "Jiru", "I", "L" }, + { "jrb", null, null, "jrb", "jrb", "Judeo-Arabic", "M", "L" }, + { "jra", null, null, null, null, "Jarai", "I", "L" }, + { "jqr", null, null, null, null, "Jaqaru", "I", "L" }, + { "jpr", null, null, "jpr", "jpr", "Judeo-Persian", "I", "L" }, + { "juh", null, null, null, null, "Hõne", "I", "L" }, + { "jpn", null, "ja", "jpn", "jpn", "Japanese", "I", "L" }, + { "jow", null, null, null, null, "Jowulu", "I", "L" }, + { "jos", null, null, null, null, "Jordanian Sign Language", "I", "L" }, + { "jor", null, null, null, null, "Jorá", "I", "E" }, + { "jog", null, null, null, null, "Jogi", "I", "L" }, + { "jod", null, null, null, null, "Wojenaka", "I", "L" }, + { "job", null, null, null, null, "Joba", "I", "L" }, + { "jns", null, null, null, null, "Jaunsari", "I", "L" }, + { "jnl", null, null, null, null, "Rawat", "I", "L" }, + { "jnj", null, null, null, null, "Yemsa", "I", "L" }, + { "jni", null, null, null, null, "Janji", "I", "L" }, + { "jng", null, null, null, null, "Yangman", "I", "E" }, + { "jnd", null, null, null, null, "Jandavra", "I", "L" }, + { "jpa", null, null, null, null, "Jewish Palestinian Aramaic", "I", "H" }, + { "jui", null, null, null, null, "Ngadjuri", "I", "E" }, + { "juk", null, null, null, null, "Wapan", "I", "L" }, + { "jul", null, null, null, null, "Jirel", "I", "L" }, + { "kak", null, null, null, null, "Kalanguya", "I", "L" }, + { "kaj", null, null, null, null, "Jju", "I", "L" }, + { "kai", null, null, null, null, "Karekare", "I", "L" }, + { "kah", null, null, null, null, "Kara (Central African Republic)", "I", "L" }, + { "kag", null, null, null, null, "Kajaman", "I", "L" }, + { "kaf", null, null, null, null, "Katso", "I", "L" }, + { "kae", null, null, null, null, "Ketangalan", "I", "E" }, + { "kad", null, null, null, null, "Adara", "I", "L" }, + { "kac", null, null, "kac", "kac", "Kachin", "I", "L" }, + { "kab", null, null, "kab", "kab", "Kabyle", "I", "L" }, + { "kaa", null, null, "kaa", "kaa", "Kara-Kalpak", "I", "L" }, + { "jyy", null, null, null, null, "Jaya", "I", "L" }, + { "jye", null, null, null, null, "Judeo-Yemeni Arabic", "I", "L" }, + { "jya", null, null, null, null, "Jiarong", "I", "L" }, + { "jwi", null, null, null, null, "Jwira-Pepesa", "I", "L" }, + { "jvn", null, null, null, null, "Caribbean Javanese", "I", "L" }, + { "jvd", null, null, null, null, "Javindo", "I", "L" }, + { "juy", null, null, null, null, "Juray", "I", "L" }, + { "juw", null, null, null, null, "Wãpha", "I", "L" }, + { "juu", null, null, null, null, "Ju", "I", "L" }, + { "jut", null, null, null, null, "Jutish", "I", "H" }, + { "jus", null, null, null, null, "Jumla Sign Language", "I", "L" }, + { "jur", null, null, null, null, "Jurúna", "I", "L" }, + { "jup", null, null, null, null, "Hupdë", "I", "L" }, + { "juo", null, null, null, null, "Jiba", "I", "L" }, + { "jun", null, null, null, null, "Juang", "I", "L" }, + { "jum", null, null, null, null, "Jumjum", "I", "L" }, + { "jna", null, null, null, null, "Jangshung", "I", "L" }, + { "jmx", null, null, null, null, "Western Juxtlahuaca Mixtec", "I", "L" }, + { "jmw", null, null, null, null, "Mouwase", "I", "L" }, + { "jms", null, null, null, null, "Mashi (Nigeria)", "I", "L" }, + { "jic", null, null, null, null, "Tol", "I", "L" }, + { "jib", null, null, null, null, "Jibu", "I", "L" }, + { "jia", null, null, null, null, "Jina", "I", "L" }, + { "jhs", null, null, null, null, "Jhankot Sign Language", "I", "L" }, + { "jhi", null, null, null, null, "Jehai", "I", "L" }, + { "jgo", null, null, null, null, "Ngomba", "I", "L" }, + { "jgk", null, null, null, null, "Gwak", "I", "L" }, + { "jge", null, null, null, null, "Judeo-Georgian", "I", "L" }, + { "jgb", null, null, null, null, "Ngbee", "I", "E" }, + { "jeu", null, null, null, null, "Jonkor Bourmataguil", "I", "L" }, + { "jet", null, null, null, null, "Manem", "I", "L" }, + { "jer", null, null, null, null, "Jere", "I", "L" }, + { "jen", null, null, null, null, "Dza", "I", "L" }, + { "jel", null, null, null, null, "Yelmek", "I", "L" }, + { "jek", null, null, null, null, "Jeri Kuo", "I", "L" }, + { "jei", null, null, null, null, "Yei", "I", "L" }, + { "jeh", null, null, null, null, "Jeh", "I", "L" }, + { "jee", null, null, null, null, "Jerung", "I", "L" }, + { "jeb", null, null, null, null, "Jebero", "I", "L" }, + { "jdt", null, null, null, null, "Judeo-Tat", "I", "L" }, + { "jdg", null, null, null, null, "Jadgali", "I", "L" }, + { "jda", null, null, null, null, "Jad", "I", "L" }, + { "jct", null, null, null, null, "Krymchak", "I", "L" }, + { "jcs", null, null, null, null, "Jamaican Country Sign Language", "I", "L" }, + { "jbw", null, null, null, null, "Yawijibaya", "I", "E" }, + { "jbu", null, null, null, null, "Jukun Takum", "I", "L" }, + { "jbt", null, null, null, null, "Jabutí", "I", "L" }, + { "jid", null, null, null, null, "Bu", "I", "L" }, + { "kal", null, "kl", "kal", "kal", "Kalaallisut", "I", "L" }, + { "jie", null, null, null, null, "Jilbe", "I", "L" }, + { "jih", null, null, null, null, "sTodsde", "I", "L" }, + { "jmr", null, null, null, null, "Kamara", "I", "L" }, + { "jmn", null, null, null, null, "Makuri Naga", "I", "L" }, + { "jml", null, null, null, null, "Jumli", "I", "L" }, + { "jmi", null, null, null, null, "Jimi (Nigeria)", "I", "L" }, + { "jmd", null, null, null, null, "Yamdena", "I", "L" }, + { "jmc", null, null, null, null, "Machame", "I", "L" }, + { "jmb", null, null, null, null, "Zumbun", "I", "L" }, + { "jma", null, null, null, null, "Dima", "I", "L" }, + { "jls", null, null, null, null, "Jamaican Sign Language", "I", "L" }, + { "jle", null, null, null, null, "Ngile", "I", "L" }, + { "jku", null, null, null, null, "Labir", "I", "L" }, + { "jkr", null, null, null, null, "Koro (India)", "I", "L" }, + { "jkp", null, null, null, null, "Paku Karen", "I", "L" }, + { "jko", null, null, null, null, "Kubo", "I", "L" }, + { "jkm", null, null, null, null, "Mobwa Karen", "I", "L" }, + { "jka", null, null, null, null, "Kaera", "I", "L" }, + { "jjr", null, null, null, null, "Bankal", "I", "L" }, + { "jje", null, null, null, null, "Jejueo", "I", "L" }, + { "jiy", null, null, null, null, "Buyuan Jinuo", "I", "L" }, + { "jiv", null, null, null, null, "Shuar", "I", "L" }, + { "jiu", null, null, null, null, "Youle Jinuo", "I", "L" }, + { "jit", null, null, null, null, "Jita", "I", "L" }, + { "jiq", null, null, null, null, "Guanyinqiao", "I", "L" }, + { "jio", null, null, null, null, "Jiamao", "I", "L" }, + { "jim", null, null, null, null, "Jimi (Cameroon)", "I", "L" }, + { "jil", null, null, null, null, "Jilim", "I", "L" }, + { "jii", null, null, null, null, "Jiiddu", "I", "L" }, + { "jig", null, null, null, null, "Jingulu", "I", "L" }, + { "jbr", null, null, null, null, "Jofotek-Bromnya", "I", "L" }, + { "kam", null, null, "kam", "kam", "Kamba (Kenya)", "I", "L" }, + { "kao", null, null, null, null, "Xaasongaxango", "I", "L" }, + { "kee", null, null, null, null, "Eastern Keres", "I", "L" }, + { "ked", null, null, null, null, "Kerewe", "I", "L" }, + { "kec", null, null, null, null, "Keiga", "I", "L" }, + { "keb", null, null, null, null, "Kélé", "I", "L" }, + { "kea", null, null, null, null, "Kabuverdianu", "I", "L" }, + { "kdz", null, null, null, null, "Kwaja", "I", "L" }, + { "kdy", null, null, null, null, "Keder", "I", "L" }, + { "kdx", null, null, null, null, "Kam", "I", "L" }, + { "kdw", null, null, null, null, "Koneraw", "I", "L" }, + { "kdu", null, null, null, null, "Kadaru", "I", "L" }, + { "kdt", null, null, null, null, "Kuy", "I", "L" }, + { "kdr", null, null, null, null, "Karaim", "I", "L" }, + { "kef", null, null, null, null, "Kpessi", "I", "L" }, + { "kdq", null, null, null, null, "Koch", "I", "L" }, + { "kdn", null, null, null, null, "Kunda", "I", "L" }, + { "kdm", null, null, null, null, "Kagoma", "I", "L" }, + { "kdl", null, null, null, null, "Tsikimba", "I", "L" }, + { "kdk", null, null, null, null, "Numèè", "I", "L" }, + { "kdj", null, null, null, null, "Karamojong", "I", "L" }, + { "kdi", null, null, null, null, "Kumam", "I", "L" }, + { "kdh", null, null, null, null, "Tem", "I", "L" }, + { "kdg", null, null, null, null, "Seba", "I", "L" }, + { "kdf", null, null, null, null, "Mamusi", "I", "L" }, + { "kde", null, null, null, null, "Makonde", "I", "L" }, + { "kdd", null, null, null, null, "Yankunytjatjara", "I", "L" }, + { "kdc", null, null, null, null, "Kutu", "I", "L" }, + { "kdp", null, null, null, null, "Kaningdon-Nindem", "I", "L" }, + { "keg", null, null, null, null, "Tese", "I", "L" }, + { "keh", null, null, null, null, "Keak", "I", "L" }, + { "kei", null, null, null, null, "Kei", "I", "L" }, + { "kfj", null, null, null, null, "Kemiehua", "I", "L" }, + { "kfi", null, null, null, null, "Kannada Kurumba", "I", "L" }, + { "kfh", null, null, null, null, "Kurichiya", "I", "L" }, + { "kfg", null, null, null, null, "Kudiya", "I", "L" }, + { "kff", null, null, null, null, "Koya", "I", "L" }, + { "kfe", null, null, null, null, "Kota (India)", "I", "L" }, + { "kfd", null, null, null, null, "Korra Koraga", "I", "L" }, + { "kfc", null, null, null, null, "Konda-Dora", "I", "L" }, + { "kfb", null, null, null, null, "Northwestern Kolami", "I", "L" }, + { "kfa", null, null, null, null, "Kodava", "I", "L" }, + { "kez", null, null, null, null, "Kukele", "I", "L" }, + { "key", null, null, null, null, "Kupia", "I", "L" }, + { "kex", null, null, null, null, "Kukna", "I", "L" }, + { "kew", null, null, null, null, "West Kewa", "I", "L" }, + { "kev", null, null, null, null, "Kanikkaran", "I", "L" }, + { "keu", null, null, null, null, "Akebu", "I", "L" }, + { "ket", null, null, null, null, "Ket", "I", "L" }, + { "kes", null, null, null, null, "Kugbo", "I", "L" }, + { "ker", null, null, null, null, "Kera", "I", "L" }, + { "keq", null, null, null, null, "Kamar", "I", "L" }, + { "kep", null, null, null, null, "Kaikadi", "I", "L" }, + { "keo", null, null, null, null, "Kakwa", "I", "L" }, + { "ken", null, null, null, null, "Kenyang", "I", "L" }, + { "kem", null, null, null, null, "Kemak", "I", "L" }, + { "kel", null, null, null, null, "Kela (Democratic Republic of Congo)", "I", "L" }, + { "kek", null, null, null, null, "Kekchí", "I", "L" }, + { "kej", null, null, null, null, "Kadar", "I", "L" }, + { "kda", null, null, null, null, "Worimi", "I", "E" }, + { "kcz", null, null, null, null, "Konongo", "I", "L" }, + { "kcy", null, null, null, null, "Korandje", "I", "L" }, + { "kcx", null, null, null, null, "Kachama-Ganjule", "I", "L" }, + { "kbr", null, null, null, null, "Kafa", "I", "L" }, + { "kbq", null, null, null, null, "Kamano", "I", "L" }, + { "kbp", null, null, null, null, "Kabiyè", "I", "L" }, + { "kbo", null, null, null, null, "Keliko", "I", "L" }, + { "kbn", null, null, null, null, "Kare (Central African Republic)", "I", "L" }, + { "kbm", null, null, null, null, "Iwal", "I", "L" }, + { "kbl", null, null, null, null, "Kanembu", "I", "L" }, + { "kbk", null, null, null, null, "Grass Koiari", "I", "L" }, + { "kbj", null, null, null, null, "Kari", "I", "L" }, + { "kbi", null, null, null, null, "Kaptiau", "I", "L" }, + { "kbh", null, null, null, null, "Camsá", "I", "L" }, + { "kbg", null, null, null, null, "Khamba", "I", "L" }, + { "kbe", null, null, null, null, "Kanju", "I", "L" }, + { "kbd", null, null, "kbd", "kbd", "Kabardian", "I", "L" }, + { "kbc", null, null, null, null, "Kadiwéu", "I", "L" }, + { "kbb", null, null, null, null, "Kaxuiâna", "I", "E" }, + { "kba", null, null, null, null, "Kalarko", "I", "E" }, + { "kaz", null, "kk", "kaz", "kaz", "Kazakh", "I", "L" }, + { "kay", null, null, null, null, "Kamayurá", "I", "L" }, + { "kax", null, null, null, null, "Kao", "I", "L" }, + { "kaw", null, null, "kaw", "kaw", "Kawi", "I", "A" }, + { "kav", null, null, null, null, "Katukína", "I", "L" }, + { "kau", null, "kr", "kau", "kau", "Kanuri", "M", "L" }, + { "kat", null, "ka", "geo", "kat", "Georgian", "I", "L" }, + { "kas", null, "ks", "kas", "kas", "Kashmiri", "I", "L" }, + { "kaq", null, null, null, null, "Capanahua", "I", "L" }, + { "kap", null, null, null, null, "Bezhta", "I", "L" }, + { "kbs", null, null, null, null, "Kande", "I", "L" }, + { "kan", null, "kn", "kan", "kan", "Kannada", "I", "L" }, + { "kbt", null, null, null, null, "Abadi", "I", "L" }, + { "kbv", null, null, null, null, "Dera (Indonesia)", "I", "L" }, + { "kcw", null, null, null, null, "Kabwari", "I", "L" }, + { "kcv", null, null, null, null, "Kete", "I", "L" }, + { "kcu", null, null, null, null, "Kami (Tanzania)", "I", "L" }, + { "kct", null, null, null, null, "Kaian", "I", "L" }, + { "kcs", null, null, null, null, "Koenoem", "I", "L" }, + { "kcr", null, null, null, null, "Katla", "I", "L" }, + { "kcq", null, null, null, null, "Kamo", "I", "L" }, + { "kcp", null, null, null, null, "Kanga", "I", "L" }, + { "kco", null, null, null, null, "Kinalakna", "I", "L" }, + { "kcn", null, null, null, null, "Nubi", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[,] + { + { "kcm", null, null, null, null, "Gula (Central African Republic)", "I", "L" }, + { "kcl", null, null, null, null, "Kela (Papua New Guinea)", "I", "L" }, + { "kck", null, null, null, null, "Kalanga", "I", "L" }, + { "kcj", null, null, null, null, "Kobiana", "I", "L" }, + { "kci", null, null, null, null, "Kamantan", "I", "L" }, + { "kch", null, null, null, null, "Vono", "I", "L" }, + { "kcg", null, null, null, null, "Tyap", "I", "L" }, + { "kcf", null, null, null, null, "Ukaan", "I", "L" }, + { "kce", null, null, null, null, "Kaivi", "I", "L" }, + { "kcd", null, null, null, null, "Ngkâlmpw Kanum", "I", "L" }, + { "kcc", null, null, null, null, "Lubila", "I", "L" }, + { "kcb", null, null, null, null, "Kawacha", "I", "L" }, + { "kca", null, null, null, null, "Khanty", "I", "L" }, + { "kbz", null, null, null, null, "Duhwa", "I", "L" }, + { "kby", null, null, null, null, "Manga Kanuri", "I", "L" }, + { "kbx", null, null, null, null, "Ap Ma", "I", "L" }, + { "kbw", null, null, null, null, "Kaiep", "I", "L" }, + { "kbu", null, null, null, null, "Kabutra", "I", "L" }, + { "kfl", null, null, null, null, "Kung", "I", "L" }, + { "jbo", null, null, "jbo", "jbo", "Lojban", "I", "C" }, + { "jbk", null, null, null, null, "Barikewa", "I", "L" }, + { "ige", null, null, null, null, "Igede", "I", "L" }, + { "igb", null, null, null, null, "Ebira", "I", "L" }, + { "ify", null, null, null, null, "Keley-I Kallahan", "I", "L" }, + { "ifu", null, null, null, null, "Mayoyao Ifugao", "I", "L" }, + { "ifm", null, null, null, null, "Teke-Fuumu", "I", "L" }, + { "ifk", null, null, null, null, "Tuwali Ifugao", "I", "L" }, + { "iff", null, null, null, null, "Ifo", "I", "E" }, + { "ife", null, null, null, null, "Ifè", "I", "L" }, + { "ifb", null, null, null, null, "Batad Ifugao", "I", "L" }, + { "ifa", null, null, null, null, "Amganad Ifugao", "I", "L" }, + { "idu", null, null, null, null, "Idoma", "I", "L" }, + { "idt", null, null, null, null, "Idaté", "I", "L" }, + { "igg", null, null, null, null, "Igana", "I", "L" }, + { "ids", null, null, null, null, "Idesa", "I", "L" }, + { "ido", null, "io", "ido", "ido", "Ido", "I", "C" }, + { "idi", null, null, null, null, "Idi", "I", "L" }, + { "ide", null, null, null, null, "Idere", "I", "L" }, + { "idd", null, null, null, null, "Ede Idaca", "I", "L" }, + { "idc", null, null, null, null, "Idon", "I", "L" }, + { "idb", null, null, null, null, "Indo-Portuguese", "I", "L" }, + { "ida", null, null, null, null, "Idakho-Isukha-Tiriki", "I", "L" }, + { "icr", null, null, null, null, "Islander Creole English", "I", "L" }, + { "icl", null, null, null, null, "Icelandic Sign Language", "I", "L" }, + { "ich", null, null, null, null, "Etkywan", "I", "L" }, + { "ica", null, null, null, null, "Ede Ica", "I", "L" }, + { "iby", null, null, null, null, "Ibani", "I", "L" }, + { "idr", null, null, null, null, "Indri", "I", "L" }, + { "igl", null, null, null, null, "Igala", "I", "L" }, + { "igm", null, null, null, null, "Kanggape", "I", "L" }, + { "ign", null, null, null, null, "Ignaciano", "I", "L" }, + { "ikx", null, null, null, null, "Ik", "I", "L" }, + { "ikw", null, null, null, null, "Ikwere", "I", "L" }, + { "ikv", null, null, null, null, "Iku-Gora-Ankwa", "I", "L" }, + { "iku", null, "iu", "iku", "iku", "Inuktitut", "M", "L" }, + { "ikt", null, null, null, null, "Inuinnaqtun", "I", "L" }, + { "iks", null, null, null, null, "Inuit Sign Language", "I", "L" }, + { "ikr", null, null, null, null, "Ikaranggal", "I", "E" }, + { "ikp", null, null, null, null, "Ikpeshi", "I", "L" }, + { "iko", null, null, null, null, "Olulumo-Ikom", "I", "L" }, + { "ikl", null, null, null, null, "Ikulu", "I", "L" }, + { "ikk", null, null, null, null, "Ika", "I", "L" }, + { "iki", null, null, null, null, "Iko", "I", "L" }, + { "ike", null, null, null, null, "Eastern Canadian Inuktitut", "I", "L" }, + { "ijs", null, null, null, null, "Southeast Ijo", "I", "L" }, + { "ijn", null, null, null, null, "Kalabari", "I", "L" }, + { "ijj", null, null, null, null, "Ede Ije", "I", "L" }, + { "ije", null, null, null, null, "Biseni", "I", "L" }, + { "ijc", null, null, null, null, "Izon", "I", "L" }, + { "iin", null, null, null, null, "Thiin", "I", "E" }, + { "iii", null, "ii", "iii", "iii", "Sichuan Yi", "I", "L" }, + { "ihw", null, null, null, null, "Bidhawal", "I", "E" }, + { "ihp", null, null, null, null, "Iha", "I", "L" }, + { "ihi", null, null, null, null, "Ihievbe", "I", "L" }, + { "ihb", null, null, null, null, "Iha Based Pidgin", "I", "L" }, + { "igw", null, null, null, null, "Igwe", "I", "L" }, + { "igs", null, null, null, null, "Interglossa", "I", "C" }, + { "igo", null, null, null, null, "Isebe", "I", "L" }, + { "ibu", null, null, null, null, "Ibu", "I", "L" }, + { "ibr", null, null, null, null, "Ibuoro", "I", "L" }, + { "ibo", null, "ig", "ibo", "ibo", "Igbo", "I", "L" }, + { "ibn", null, null, null, null, "Ibino", "I", "L" }, + { "huq", null, null, null, null, "Tsat", "I", "L" }, + { "hup", null, null, "hup", "hup", "Hupa", "I", "L" }, + { "huo", null, null, null, null, "Hu", "I", "L" }, + { "hun", null, "hu", "hun", "hun", "Hungarian", "I", "L" }, + { "hum", null, null, null, null, "Hungana", "I", "L" }, + { "hul", null, null, null, null, "Hula", "I", "L" }, + { "huk", null, null, null, null, "Hulung", "I", "E" }, + { "huj", null, null, null, null, "Northern Guiyang Hmong", "I", "L" }, + { "hui", null, null, null, null, "Huli", "I", "L" }, + { "huh", null, null, null, null, "Huilliche", "I", "L" }, + { "hug", null, null, null, null, "Huachipaeri", "I", "L" }, + { "huf", null, null, null, null, "Humene", "I", "L" }, + { "hue", null, null, null, null, "San Francisco Del Mar Huave", "I", "L" }, + { "hud", null, null, null, null, "Huaulu", "I", "L" }, + { "huc", null, null, null, null, "ǂHua", "I", "L" }, + { "hub", null, null, null, null, "Huambisa", "I", "L" }, + { "htx", null, null, null, null, "Middle Hittite", "I", "A" }, + { "htu", null, null, null, null, "Hitu", "I", "L" }, + { "hts", null, null, null, null, "Hadza", "I", "L" }, + { "hto", null, null, null, null, "Minica Huitoto", "I", "L" }, + { "hti", null, null, null, null, "Hoti", "I", "E" }, + { "hss", null, null, null, null, "Harsusi", "I", "L" }, + { "hsn", null, null, null, null, "Xiang Chinese", "I", "L" }, + { "hsl", null, null, null, null, "Hausa Sign Language", "I", "L" }, + { "hsh", null, null, null, null, "Hungarian Sign Language", "I", "L" }, + { "hsb", null, null, "hsb", "hsb", "Upper Sorbian", "I", "L" }, + { "hrz", null, null, null, null, "Harzani", "I", "L" }, + { "hur", null, null, null, null, "Halkomelem", "I", "L" }, + { "ikz", null, null, null, null, "Ikizu", "I", "L" }, + { "hus", null, null, null, null, "Huastec", "I", "L" }, + { "huu", null, null, null, null, "Murui Huitoto", "I", "L" }, + { "ibm", null, null, null, null, "Agoi", "I", "L" }, + { "ibl", null, null, null, null, "Ibaloi", "I", "L" }, + { "ibh", null, null, null, null, "Bih", "I", "L" }, + { "ibg", null, null, null, null, "Ibanag", "I", "L" }, + { "ibe", null, null, null, null, "Akpes", "I", "L" }, + { "ibd", null, null, null, null, "Iwaidja", "I", "L" }, + { "ibb", null, null, null, null, "Ibibio", "I", "L" }, + { "iba", null, null, "iba", "iba", "Iban", "I", "L" }, + { "iar", null, null, null, null, "Purari", "I", "L" }, + { "ian", null, null, null, null, "Iatmul", "I", "L" }, + { "iai", null, null, null, null, "Iaai", "I", "L" }, + { "hyw", null, null, null, null, "Western Armenian", "I", "L" }, + { "hye", null, "hy", "arm", "hye", "Armenian", "I", "L" }, + { "hya", null, null, null, null, "Hya", "I", "L" }, + { "hwo", null, null, null, null, "Hwana", "I", "L" }, + { "hwc", null, null, null, null, "Hawai'i Creole English", "I", "L" }, + { "hwa", null, null, null, null, "Wané", "I", "L" }, + { "hvv", null, null, null, null, "Santa María Del Mar Huave", "I", "L" }, + { "hvn", null, null, null, null, "Sabu", "I", "L" }, + { "hvk", null, null, null, null, "Haveke", "I", "L" }, + { "hve", null, null, null, null, "San Dionisio Del Mar Huave", "I", "L" }, + { "hvc", null, null, null, null, "Haitian Vodoun Culture Language", "I", "L" }, + { "huz", null, null, null, null, "Hunzib", "I", "L" }, + { "huy", null, null, null, null, "Hulaulá", "I", "L" }, + { "hux", null, null, null, null, "Nüpode Huitoto", "I", "L" }, + { "huw", null, null, null, null, "Hukumina", "I", "E" }, + { "huv", null, null, null, null, "San Mateo Del Mar Huave", "I", "L" }, + { "hut", null, null, null, null, "Humla", "I", "L" }, + { "jbn", null, null, null, null, "Nafusi", "I", "L" }, + { "ila", null, null, null, null, "Ile Ape", "I", "L" }, + { "ile", null, "ie", "ile", "ile", "Interlingue", "I", "C" }, + { "ixc", null, null, null, null, "Ixcatec", "I", "L" }, + { "iws", null, null, null, null, "Sepik Iwam", "I", "L" }, + { "iwo", null, null, null, null, "Iwur", "I", "L" }, + { "iwm", null, null, null, null, "Iwam", "I", "L" }, + { "iwk", null, null, null, null, "I-Wak", "I", "L" }, + { "ivv", null, null, null, null, "Ivatan", "I", "L" }, + { "ivb", null, null, null, null, "Ibatan", "I", "L" }, + { "ium", null, null, null, null, "Iu Mien", "I", "L" }, + { "itz", null, null, null, null, "Itzá", "I", "L" }, + { "ity", null, null, null, null, "Moyadan Itneg", "I", "L" }, + { "itx", null, null, null, null, "Itik", "I", "L" }, + { "itw", null, null, null, null, "Ito", "I", "L" }, + { "ixl", null, null, null, null, "Ixil", "I", "L" }, + { "itv", null, null, null, null, "Itawit", "I", "L" }, + { "its", null, null, null, null, "Isekiri", "I", "L" }, + { "itr", null, null, null, null, "Iteri", "I", "L" }, + { "ito", null, null, null, null, "Itonama", "I", "L" }, + { "itm", null, null, null, null, "Itu Mbon Uzo", "I", "L" }, + { "itl", null, null, null, null, "Itelmen", "I", "L" }, + { "itk", null, null, null, null, "Judeo-Italian", "I", "L" }, + { "iti", null, null, null, null, "Inlaod Itneg", "I", "L" }, + { "ite", null, null, null, null, "Itene", "I", "E" }, + { "itd", null, null, null, null, "Southern Tidung", "I", "L" }, + { "itb", null, null, null, null, "Binongan Itneg", "I", "L" }, + { "ita", null, "it", "ita", "ita", "Italian", "I", "L" }, + { "isu", null, null, null, null, "Isu (Menchum Division)", "I", "L" }, + { "itt", null, null, null, null, "Maeng Itneg", "I", "L" }, + { "iya", null, null, null, null, "Iyayu", "I", "L" }, + { "iyo", null, null, null, null, "Mesaka", "I", "L" }, + { "iyx", null, null, null, null, "Yaka (Congo)", "I", "L" }, + { "jbj", null, null, null, null, "Arandai", "I", "L" }, + { "jbi", null, null, null, null, "Badjiri", "I", "E" }, + { "jbe", null, null, null, null, "Judeo-Berber", "I", "L" }, + { "jaz", null, null, null, null, "Jawe", "I", "L" }, + { "jay", null, null, null, null, "Yan-nhangu", "I", "L" }, + { "jax", null, null, null, null, "Jambi Malay", "I", "L" }, + { "jav", null, "jv", "jav", "jav", "Javanese", "I", "L" }, + { "jau", null, null, null, null, "Yaur", "I", "L" }, + { "jat", null, null, null, null, "Jakati", "I", "L" }, + { "jas", null, null, null, null, "New Caledonian Javanese", "I", "L" }, + { "jaq", null, null, null, null, "Yaqay", "I", "L" }, + { "jao", null, null, null, null, "Yanyuwa", "I", "L" }, + { "jan", null, null, null, null, "Jandai", "I", "E" }, + { "jam", null, null, null, null, "Jamaican Creole English", "I", "L" }, + { "jal", null, null, null, null, "Yalahatan", "I", "L" }, + { "jak", null, null, null, null, "Jakun", "I", "L" }, + { "jaj", null, null, null, null, "Zazao", "I", "L" }, + { "jah", null, null, null, null, "Jah Hut", "I", "L" }, + { "jaf", null, null, null, null, "Jara", "I", "L" }, + { "jae", null, null, null, null, "Yabem", "I", "L" }, + { "jad", null, null, null, null, "Jahanka", "I", "L" }, + { "jac", null, null, null, null, "Popti'", "I", "L" }, + { "jab", null, null, null, null, "Hyam", "I", "L" }, + { "jaa", null, null, null, null, "Jamamadí", "I", "L" }, + { "izz", null, null, null, null, "Izii", "I", "L" }, + { "izr", null, null, null, null, "Izere", "I", "L" }, + { "izh", null, null, null, null, "Ingrian", "I", "L" }, + { "ist", null, null, null, null, "Istriot", "I", "L" }, + { "isr", null, null, null, null, "Israeli Sign Language", "I", "L" }, + { "iso", null, null, null, null, "Isoko", "I", "L" }, + { "isn", null, null, null, null, "Isanzu", "I", "L" }, + { "ino", null, null, null, null, "Inoke-Yate", "I", "L" }, + { "inn", null, null, null, null, "Isinai", "I", "L" }, + { "inm", null, null, null, null, "Minaean", "I", "A" }, + { "inl", null, null, null, null, "Indonesian Sign Language", "I", "L" }, + { "inj", null, null, null, null, "Jungle Inga", "I", "L" }, + { "inh", null, null, "inh", "inh", "Ingush", "I", "L" }, + { "ing", null, null, null, null, "Degexit'an", "I", "L" }, + { "ind", null, "id", "ind", "ind", "Indonesian", "I", "L" }, + { "inb", null, null, null, null, "Inga", "I", "L" }, + { "ina", null, "ia", "ina", "ina", "Interlingua (International Auxiliary Language Association)", "I", "C" }, + { "imy", null, null, null, null, "Milyan", "I", "A" }, + { "ims", null, null, null, null, "Marsian", "I", "A" }, + { "imr", null, null, null, null, "Imroing", "I", "L" }, + { "imo", null, null, null, null, "Imbongu", "I", "L" }, + { "imn", null, null, null, null, "Imonda", "I", "L" }, + { "iml", null, null, null, null, "Miluk", "I", "E" }, + { "imi", null, null, null, null, "Anamgura", "I", "L" }, + { "ima", null, null, null, null, "Mala Malasar", "I", "L" }, + { "ilv", null, null, null, null, "Ilue", "I", "L" }, + { "ilu", null, null, null, null, "Ili'uun", "I", "L" }, + { "ils", null, null, null, null, "International Sign", "I", "L" }, + { "ilp", null, null, null, null, "Iranun (Philippines)", "I", "L" }, + { "ilo", null, null, "ilo", "ilo", "Iloko", "I", "L" }, + { "ilm", null, null, null, null, "Iranun (Malaysia)", "I", "L" }, + { "ilk", null, null, null, null, "Ilongot", "I", "L" }, + { "ili", null, null, null, null, "Ili Turki", "I", "L" }, + { "ilg", null, null, null, null, "Garig-Ilgar", "I", "E" }, + { "inp", null, null, null, null, "Iñapari", "I", "L" }, + { "ilb", null, null, null, null, "Ila", "I", "L" }, + { "ins", null, null, null, null, "Indian Sign Language", "I", "L" }, + { "inz", null, null, null, null, "Ineseño", "I", "E" }, + { "ism", null, null, null, null, "Masimasi", "I", "L" }, + { "isl", null, "is", "ice", "isl", "Icelandic", "I", "L" }, + { "isk", null, null, null, null, "Ishkashimi", "I", "L" }, + { "isi", null, null, null, null, "Nkem-Nkum", "I", "L" }, + { "ish", null, null, null, null, "Esan", "I", "L" }, + { "isg", null, null, null, null, "Irish Sign Language", "I", "L" }, + { "ise", null, null, null, null, "Italian Sign Language", "I", "L" }, + { "isd", null, null, null, null, "Isnag", "I", "L" }, + { "isc", null, null, null, null, "Isconahua", "I", "L" }, + { "isa", null, null, null, null, "Isabi", "I", "L" }, + { "iry", null, null, null, null, "Iraya", "I", "L" }, + { "irx", null, null, null, null, "Kamberau", "I", "L" }, + { "iru", null, null, null, null, "Irula", "I", "L" }, + { "irr", null, null, null, null, "Ir", "I", "L" }, + { "irn", null, null, null, null, "Irántxe", "I", "L" }, + { "irk", null, null, null, null, "Iraqw", "I", "L" }, + { "iri", null, null, null, null, "Rigwe", "I", "L" }, + { "irh", null, null, null, null, "Irarutu", "I", "L" }, + { "ire", null, null, null, null, "Iresim", "I", "L" }, + { "iqw", null, null, null, null, "Ikwo", "I", "L" }, + { "iqu", null, null, null, null, "Iquito", "I", "L" }, + { "ipo", null, null, null, null, "Ipiko", "I", "L" }, + { "ipk", null, "ik", "ipk", "ipk", "Inupiaq", "M", "L" }, + { "ipi", null, null, null, null, "Ipili", "I", "L" }, + { "iow", null, null, null, null, "Iowa-Oto", "I", "E" }, + { "iou", null, null, null, null, "Tuma-Irumu", "I", "L" } + }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[] { "ior", null, null, null, null, "Inor", "I", "L" }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[] { "int", null, null, null, null, "Intha", "I", "L" }); + + migrationBuilder.InsertData( + table: "ISO_639-3", + columns: new[] { "Id", "Comment", "Part1", "Part2B", "Part2T", "Ref_Name", "Scope", "Type" }, + values: new object[] { "zzj", null, null, null, null, "Zuojiang Zhuang", "I", "L" }); + + migrationBuilder.CreateIndex( + name: "IX_ISO_639-3_Comment", + table: "ISO_639-3", + column: "Comment"); + + migrationBuilder.CreateIndex( + name: "IX_ISO_639-3_Part1", + table: "ISO_639-3", + column: "Part1"); + + migrationBuilder.CreateIndex( + name: "IX_ISO_639-3_Part2B", + table: "ISO_639-3", + column: "Part2B"); + + migrationBuilder.CreateIndex( + name: "IX_ISO_639-3_Part2T", + table: "ISO_639-3", + column: "Part2T"); + + migrationBuilder.CreateIndex( + name: "IX_ISO_639-3_Ref_Name", + table: "ISO_639-3", + column: "Ref_Name"); + + migrationBuilder.CreateIndex( + name: "IX_ISO_639-3_Scope", + table: "ISO_639-3", + column: "Scope"); + + migrationBuilder.CreateIndex( + name: "IX_ISO_639-3_Type", + table: "ISO_639-3", + column: "Type"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "ISO_639-3"); + } + } +} diff --git a/Cicm.Database/Migrations/cicmContextModelSnapshot.cs b/Cicm.Database/Migrations/cicmContextModelSnapshot.cs index 1bbfe686..e57244fc 100644 --- a/Cicm.Database/Migrations/cicmContextModelSnapshot.cs +++ b/Cicm.Database/Migrations/cicmContextModelSnapshot.cs @@ -1,5062 +1,61851 @@ // - using System; using Cicm.Database.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace Cicm.Database.Migrations { [DbContext(typeof(cicmContext))] - class cicmContextModelSnapshot : ModelSnapshot + partial class cicmContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { - #pragma warning disable 612, 618 - modelBuilder.HasAnnotation("ProductVersion", "2.2.4-servicing-10062") - .HasAnnotation("Relational:MaxIdentifierLength", 64); +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.2.4-servicing-10062") + .HasAnnotation("Relational:MaxIdentifierLength", 64); modelBuilder.Entity("Cicm.Database.Models.BrowserTest", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Agif").ValueGeneratedOnAdd().HasColumnName("agif").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Agif") + .ValueGeneratedOnAdd() + .HasColumnName("agif") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Browser").IsRequired().ValueGeneratedOnAdd().HasColumnName("browser") - .HasColumnType("varchar(64)").HasDefaultValueSql("''").HasMaxLength(64); + b.Property("Browser") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("browser") + .HasColumnType("varchar(64)") + .HasDefaultValueSql("''") + .HasMaxLength(64); - b.Property("Colors").ValueGeneratedOnAdd().HasColumnName("colors").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Colors") + .ValueGeneratedOnAdd() + .HasColumnName("colors") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Flash").ValueGeneratedOnAdd().HasColumnName("flash").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Flash") + .ValueGeneratedOnAdd() + .HasColumnName("flash") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Frames").ValueGeneratedOnAdd().HasColumnName("frames").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Frames") + .ValueGeneratedOnAdd() + .HasColumnName("frames") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Gif87").ValueGeneratedOnAdd().HasColumnName("gif87").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Gif87") + .ValueGeneratedOnAdd() + .HasColumnName("gif87") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Gif89").ValueGeneratedOnAdd().HasColumnName("gif89").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Gif89") + .ValueGeneratedOnAdd() + .HasColumnName("gif89") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Jpeg").ValueGeneratedOnAdd().HasColumnName("jpeg").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Jpeg") + .ValueGeneratedOnAdd() + .HasColumnName("jpeg") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Js").ValueGeneratedOnAdd().HasColumnName("js").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Js") + .ValueGeneratedOnAdd() + .HasColumnName("js") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Os").IsRequired().ValueGeneratedOnAdd().HasColumnName("os") - .HasColumnType("varchar(32)").HasDefaultValueSql("''").HasMaxLength(32); + b.Property("Os") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("os") + .HasColumnType("varchar(32)") + .HasDefaultValueSql("''") + .HasMaxLength(32); - b.Property("Platform").IsRequired().ValueGeneratedOnAdd().HasColumnName("platform") - .HasColumnType("varchar(8)").HasDefaultValueSql("''").HasMaxLength(8); + b.Property("Platform") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("platform") + .HasColumnType("varchar(8)") + .HasDefaultValueSql("''") + .HasMaxLength(8); - b.Property("Png").ValueGeneratedOnAdd().HasColumnName("png").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Png") + .ValueGeneratedOnAdd() + .HasColumnName("png") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Pngt").ValueGeneratedOnAdd().HasColumnName("pngt").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Pngt") + .ValueGeneratedOnAdd() + .HasColumnName("pngt") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Table").ValueGeneratedOnAdd().HasColumnName("table").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Table") + .ValueGeneratedOnAdd() + .HasColumnName("table") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("UserAgent").IsRequired().ValueGeneratedOnAdd().HasColumnName("user_agent") - .HasColumnType("varchar(128)").HasDefaultValueSql("''").HasMaxLength(128); + b.Property("UserAgent") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("user_agent") + .HasColumnType("varchar(128)") + .HasDefaultValueSql("''") + .HasMaxLength(128); - b.Property("Version").IsRequired().ValueGeneratedOnAdd().HasColumnName("version") - .HasColumnType("varchar(16)").HasDefaultValueSql("''").HasMaxLength(16); + b.Property("Version") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("version") + .HasColumnType("varchar(16)") + .HasDefaultValueSql("''") + .HasMaxLength(16); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Browser").HasName("idx_browser_tests_browser"); + b.HasIndex("Browser") + .HasName("idx_browser_tests_browser"); - b.HasIndex("Os").HasName("idx_browser_tests_os"); + b.HasIndex("Os") + .HasName("idx_browser_tests_os"); - b.HasIndex("Platform").HasName("idx_browser_tests_platform"); + b.HasIndex("Platform") + .HasName("idx_browser_tests_platform"); - b.HasIndex("UserAgent").HasName("idx_browser_tests_user_agent"); + b.HasIndex("UserAgent") + .HasName("idx_browser_tests_user_agent"); - b.HasIndex("Version").HasName("idx_browser_tests_version"); + b.HasIndex("Version") + .HasName("idx_browser_tests_version"); - b.ToTable("browser_tests"); - }); + b.ToTable("browser_tests"); + }); modelBuilder.Entity("Cicm.Database.Models.CicmDb", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Updated").ValueGeneratedOnAdd().HasColumnName("updated") - .HasColumnType("datetime").HasDefaultValueSql("'CURRENT_TIMESTAMP'"); + b.Property("Updated") + .ValueGeneratedOnAdd() + .HasColumnName("updated") + .HasColumnType("datetime") + .HasDefaultValueSql("'CURRENT_TIMESTAMP'"); - b.Property("Version").HasColumnName("version").HasColumnType("int(11)"); + b.Property("Version") + .HasColumnName("version") + .HasColumnType("int(11)"); - b.HasKey("Id"); + b.HasKey("Id"); - b.ToTable("cicm_db"); - }); + b.ToTable("cicm_db"); + }); modelBuilder.Entity("Cicm.Database.Models.Company", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Address").HasColumnName("address").HasColumnType("varchar(80)").HasMaxLength(80); + b.Property("Address") + .HasColumnName("address") + .HasColumnType("varchar(80)") + .HasMaxLength(80); - b.Property("City").HasColumnName("city").HasColumnType("varchar(80)").HasMaxLength(80); + b.Property("City") + .HasColumnName("city") + .HasColumnType("varchar(80)") + .HasMaxLength(80); - b.Property("CountryId").HasColumnName("country").HasColumnType("smallint(3)"); + b.Property("CountryId") + .HasColumnName("country") + .HasColumnType("smallint(3)"); - b.Property("Facebook").HasColumnName("facebook").HasColumnType("varchar(45)").HasMaxLength(45); + b.Property("Facebook") + .HasColumnName("facebook") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("Founded").HasColumnName("founded").HasColumnType("datetime"); + b.Property("Founded") + .HasColumnName("founded") + .HasColumnType("datetime"); - b.Property("Name").IsRequired().ValueGeneratedOnAdd().HasColumnName("name") - .HasColumnType("varchar(128)").HasDefaultValueSql("''"); + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("varchar(128)") + .HasDefaultValueSql("''"); - b.Property("PostalCode").HasColumnName("postal_code").HasColumnType("varchar(25)") - .HasMaxLength(25); + b.Property("PostalCode") + .HasColumnName("postal_code") + .HasColumnType("varchar(25)") + .HasMaxLength(25); - b.Property("Province").HasColumnName("province").HasColumnType("varchar(80)").HasMaxLength(80); + b.Property("Province") + .HasColumnName("province") + .HasColumnType("varchar(80)") + .HasMaxLength(80); - b.Property("Sold").HasColumnName("sold").HasColumnType("datetime"); + b.Property("Sold") + .HasColumnName("sold") + .HasColumnType("datetime"); - b.Property("SoldToId").HasColumnName("sold_to").HasColumnType("int(11)"); + b.Property("SoldToId") + .HasColumnName("sold_to") + .HasColumnType("int(11)"); - b.Property("Status").HasColumnName("status").HasColumnType("int(11)"); + b.Property("Status") + .HasColumnName("status") + .HasColumnType("int(11)"); - b.Property("Twitter").HasColumnName("twitter").HasColumnType("varchar(45)").HasMaxLength(45); + b.Property("Twitter") + .HasColumnName("twitter") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("Website").HasColumnName("website").HasColumnType("varchar(255)").HasMaxLength(255); + b.Property("Website") + .HasColumnName("website") + .HasColumnType("varchar(255)") + .HasMaxLength(255); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Address").HasName("idx_companies_address"); + b.HasIndex("Address") + .HasName("idx_companies_address"); - b.HasIndex("City").HasName("idx_companies_city"); + b.HasIndex("City") + .HasName("idx_companies_city"); - b.HasIndex("CountryId").HasName("idx_companies_country"); + b.HasIndex("CountryId") + .HasName("idx_companies_country"); - b.HasIndex("Facebook").HasName("idx_companies_facebook"); + b.HasIndex("Facebook") + .HasName("idx_companies_facebook"); - b.HasIndex("Founded").HasName("idx_companies_founded"); + b.HasIndex("Founded") + .HasName("idx_companies_founded"); - b.HasIndex("Name").HasName("idx_companies_name"); + b.HasIndex("Name") + .HasName("idx_companies_name"); - b.HasIndex("PostalCode").HasName("idx_companies_postal_code"); + b.HasIndex("PostalCode") + .HasName("idx_companies_postal_code"); - b.HasIndex("Province").HasName("idx_companies_province"); + b.HasIndex("Province") + .HasName("idx_companies_province"); - b.HasIndex("Sold").HasName("idx_companies_sold"); + b.HasIndex("Sold") + .HasName("idx_companies_sold"); - b.HasIndex("SoldToId").HasName("idx_companies_sold_to"); + b.HasIndex("SoldToId") + .HasName("idx_companies_sold_to"); - b.HasIndex("Status").HasName("idx_companies_status"); + b.HasIndex("Status") + .HasName("idx_companies_status"); - b.HasIndex("Twitter").HasName("idx_companies_twitter"); + b.HasIndex("Twitter") + .HasName("idx_companies_twitter"); - b.HasIndex("Website").HasName("idx_companies_website"); + b.HasIndex("Website") + .HasName("idx_companies_website"); - b.ToTable("companies"); - }); + b.ToTable("companies"); + }); modelBuilder.Entity("Cicm.Database.Models.CompanyDescription", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("CompanyId"); + b.Property("CompanyId"); - b.Property("Html").HasMaxLength(262144); + b.Property("Html") + .HasMaxLength(262144); - b.Property("Text").IsRequired().HasMaxLength(262144); + b.Property("Text") + .IsRequired() + .HasMaxLength(262144); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("CompanyId"); + b.HasIndex("CompanyId"); - b.HasIndex("Text").HasAnnotation("MySql:FullTextIndex", true); + b.HasIndex("Text") + .HasAnnotation("MySql:FullTextIndex", true); - b.ToTable("CompanyDescriptions"); - }); + b.ToTable("CompanyDescriptions"); + }); modelBuilder.Entity("Cicm.Database.Models.CompanyLogo", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("CompanyId").HasColumnName("company_id").HasColumnType("int(11)"); + b.Property("CompanyId") + .HasColumnName("company_id") + .HasColumnType("int(11)"); - b.Property("Guid").HasColumnName("logo_guid").HasColumnType("char(36)"); + b.Property("Guid") + .HasColumnName("logo_guid") + .HasColumnType("char(36)"); - b.Property("Year").HasColumnName("year").HasColumnType("int(4)"); + b.Property("Year") + .HasColumnName("year") + .HasColumnType("int(4)"); - b.HasKey("Id", "CompanyId", "Guid"); + b.HasKey("Id", "CompanyId", "Guid"); - b.HasIndex("CompanyId").HasName("idx_company_id"); + b.HasIndex("CompanyId") + .HasName("idx_company_id"); - b.HasIndex("Guid").HasName("idx_guid"); + b.HasIndex("Guid") + .HasName("idx_guid"); - b.HasIndex("Id").IsUnique().HasName("idx_id"); + b.HasIndex("Id") + .IsUnique() + .HasName("idx_id"); - b.ToTable("company_logos"); - }); + b.ToTable("company_logos"); + }); modelBuilder.Entity("Cicm.Database.Models.Forbidden", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Browser").IsRequired().ValueGeneratedOnAdd().HasColumnName("browser") - .HasColumnType("char(128)").HasDefaultValueSql("''"); + b.Property("Browser") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("browser") + .HasColumnType("char(128)") + .HasDefaultValueSql("''"); - b.Property("Date").IsRequired().ValueGeneratedOnAdd().HasColumnName("date") - .HasColumnType("char(20)").HasDefaultValueSql("''"); + b.Property("Date") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("date") + .HasColumnType("char(20)") + .HasDefaultValueSql("''"); - b.Property("Ip").IsRequired().ValueGeneratedOnAdd().HasColumnName("ip") - .HasColumnType("char(16)").HasDefaultValueSql("''"); + b.Property("Ip") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("ip") + .HasColumnType("char(16)") + .HasDefaultValueSql("''"); - b.Property("Referer").IsRequired().ValueGeneratedOnAdd().HasColumnName("referer") - .HasColumnType("char(255)").HasDefaultValueSql("''"); + b.Property("Referer") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("referer") + .HasColumnType("char(255)") + .HasDefaultValueSql("''"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Browser").HasName("idx_forbidden_browser"); + b.HasIndex("Browser") + .HasName("idx_forbidden_browser"); - b.HasIndex("Date").HasName("idx_forbidden_date"); + b.HasIndex("Date") + .HasName("idx_forbidden_date"); - b.HasIndex("Ip").HasName("idx_forbidden_ip"); + b.HasIndex("Ip") + .HasName("idx_forbidden_ip"); - b.HasIndex("Referer").HasName("idx_forbidden_referer"); + b.HasIndex("Referer") + .HasName("idx_forbidden_referer"); - b.ToTable("forbidden"); - }); + b.ToTable("forbidden"); + }); modelBuilder.Entity("Cicm.Database.Models.Gpu", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("CompanyId").HasColumnName("company").HasColumnType("int(11)"); + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); - b.Property("DieSize").HasColumnName("die_size"); + b.Property("DieSize") + .HasColumnName("die_size"); - b.Property("Introduced").HasColumnName("introduced").HasColumnType("datetime"); + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); - b.Property("ModelCode").HasColumnName("model_code").HasColumnType("varchar(45)") - .HasMaxLength(45); + b.Property("ModelCode") + .HasColumnName("model_code") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("Name").IsRequired().ValueGeneratedOnAdd().HasColumnName("name") - .HasColumnType("char(128)").HasDefaultValueSql("''").HasMaxLength(128); + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("char(128)") + .HasDefaultValueSql("''") + .HasMaxLength(128); - b.Property("Package").HasColumnName("package").HasColumnType("varchar(45)").HasMaxLength(45); + b.Property("Package") + .HasColumnName("package") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("Process").HasColumnName("process").HasColumnType("varchar(45)").HasMaxLength(45); + b.Property("Process") + .HasColumnName("process") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("ProcessNm").HasColumnName("process_nm"); + b.Property("ProcessNm") + .HasColumnName("process_nm"); - b.Property("Transistors").HasColumnName("transistors").HasColumnType("bigint(20)"); + b.Property("Transistors") + .HasColumnName("transistors") + .HasColumnType("bigint(20)"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("CompanyId").HasName("idx_gpus_company"); + b.HasIndex("CompanyId") + .HasName("idx_gpus_company"); - b.HasIndex("DieSize").HasName("idx_gpus_die_size"); + b.HasIndex("DieSize") + .HasName("idx_gpus_die_size"); - b.HasIndex("Introduced").HasName("idx_gpus_introduced"); + b.HasIndex("Introduced") + .HasName("idx_gpus_introduced"); - b.HasIndex("ModelCode").HasName("idx_gpus_model_code"); + b.HasIndex("ModelCode") + .HasName("idx_gpus_model_code"); - b.HasIndex("Name").HasName("idx_gpus_name"); + b.HasIndex("Name") + .HasName("idx_gpus_name"); - b.HasIndex("Package").HasName("idx_gpus_package"); + b.HasIndex("Package") + .HasName("idx_gpus_package"); - b.HasIndex("Process").HasName("idx_gpus_process"); + b.HasIndex("Process") + .HasName("idx_gpus_process"); - b.HasIndex("ProcessNm").HasName("idx_gpus_process_nm"); + b.HasIndex("ProcessNm") + .HasName("idx_gpus_process_nm"); - b.HasIndex("Transistors").HasName("idx_gpus_transistors"); + b.HasIndex("Transistors") + .HasName("idx_gpus_transistors"); - b.ToTable("gpus"); - }); + b.ToTable("gpus"); + }); modelBuilder.Entity("Cicm.Database.Models.GpusByMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("bigint(20)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); - b.Property("GpuId").HasColumnName("gpu").HasColumnType("int(11)"); + b.Property("GpuId") + .HasColumnName("gpu") + .HasColumnType("int(11)"); - b.Property("MachineId").HasColumnName("machine").HasColumnType("int(11)"); + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("GpuId").HasName("idx_gpus_by_machine_gpus"); + b.HasIndex("GpuId") + .HasName("idx_gpus_by_machine_gpus"); - b.HasIndex("MachineId").HasName("idx_gpus_by_machine_machine"); + b.HasIndex("MachineId") + .HasName("idx_gpus_by_machine_machine"); - b.ToTable("gpus_by_machine"); - }); + b.ToTable("gpus_by_machine"); + }); modelBuilder.Entity("Cicm.Database.Models.GpusByOwnedMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("GpuId"); + b.Property("GpuId"); - b.Property("OwnedMachineId"); + b.Property("OwnedMachineId"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("GpuId"); + b.HasIndex("GpuId"); - b.HasIndex("OwnedMachineId"); + b.HasIndex("OwnedMachineId"); - b.ToTable("GpusByOwnedMachine"); - }); + b.ToTable("GpusByOwnedMachine"); + }); modelBuilder.Entity("Cicm.Database.Models.InstructionSet", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Name").IsRequired().HasColumnName("instruction_set").HasColumnType("varchar(45)") - .HasMaxLength(45); + b.Property("Name") + .IsRequired() + .HasColumnName("instruction_set") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.HasKey("Id"); + b.HasKey("Id"); - b.ToTable("instruction_sets"); - }); + b.ToTable("instruction_sets"); + }); modelBuilder.Entity("Cicm.Database.Models.InstructionSetExtension", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Extension").IsRequired().HasColumnName("extension").HasColumnType("varchar(45)") - .HasMaxLength(45); + b.Property("Extension") + .IsRequired() + .HasColumnName("extension") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.HasKey("Id"); + b.HasKey("Id"); - b.ToTable("instruction_set_extensions"); - }); + b.ToTable("instruction_set_extensions"); + }); modelBuilder.Entity("Cicm.Database.Models.InstructionSetExtensionsByProcessor", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("ProcessorId").HasColumnName("processor_id").HasColumnType("int(11)"); + b.Property("ProcessorId") + .HasColumnName("processor_id") + .HasColumnType("int(11)"); - b.Property("ExtensionId").HasColumnName("extension_id").HasColumnType("int(11)"); + b.Property("ExtensionId") + .HasColumnName("extension_id") + .HasColumnType("int(11)"); - b.HasKey("Id", "ProcessorId", "ExtensionId"); + b.HasKey("Id", "ProcessorId", "ExtensionId"); - b.HasIndex("ExtensionId").HasName("idx_setextension_extension"); + b.HasIndex("ExtensionId") + .HasName("idx_setextension_extension"); - b.HasIndex("ProcessorId").HasName("idx_setextension_processor"); + b.HasIndex("ProcessorId") + .HasName("idx_setextension_processor"); - b.ToTable("instruction_set_extensions_by_processor"); - }); + b.ToTable("instruction_set_extensions_by_processor"); + }); modelBuilder.Entity("Cicm.Database.Models.Iso31661Numeric", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("smallint(3)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("smallint(3)"); - b.Property("Name").IsRequired().HasColumnName("name").HasColumnType("varchar(64)") - .HasMaxLength(64); + b.Property("Name") + .IsRequired() + .HasColumnName("name") + .HasColumnType("varchar(64)") + .HasMaxLength(64); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Name").HasName("idx_name"); + b.HasIndex("Name") + .HasName("idx_name"); - b.ToTable("iso3166_1_numeric"); - }); + b.ToTable("iso3166_1_numeric"); + }); + + modelBuilder.Entity("Cicm.Database.Models.Iso639", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(3)"); + + b.Property("Comment") + .HasColumnType("varchar(150)"); + + b.Property("Part1") + .HasColumnType("char(2)"); + + b.Property("Part2B") + .HasColumnType("char(3)"); + + b.Property("Part2T") + .HasColumnType("char(3)"); + + b.Property("ReferenceName") + .IsRequired() + .HasColumnName("Ref_Name") + .HasColumnType("varchar(150)"); + + b.Property("Scope") + .IsRequired() + .HasColumnType("char(1)"); + + b.Property("Type") + .IsRequired() + .HasColumnType("char(1)"); + + b.HasKey("Id"); + + b.HasIndex("Comment"); + + b.HasIndex("Part1"); + + b.HasIndex("Part2B"); + + b.HasIndex("Part2T"); + + b.HasIndex("ReferenceName"); + + b.HasIndex("Scope"); + + b.HasIndex("Type"); + + b.ToTable("ISO_639-3"); + + b.HasData( + new + { + Id = "aaa", + ReferenceName = "Ghotuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "aab", + ReferenceName = "Alumu-Tesu", + Scope = "I", + Type = "L" + }, + new + { + Id = "aac", + ReferenceName = "Ari", + Scope = "I", + Type = "L" + }, + new + { + Id = "aad", + ReferenceName = "Amal", + Scope = "I", + Type = "L" + }, + new + { + Id = "aae", + ReferenceName = "Arbëreshë Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaf", + ReferenceName = "Aranadan", + Scope = "I", + Type = "L" + }, + new + { + Id = "aag", + ReferenceName = "Ambrak", + Scope = "I", + Type = "L" + }, + new + { + Id = "aah", + ReferenceName = "Abu' Arapesh", + Scope = "I", + Type = "L" + }, + new + { + Id = "aai", + ReferenceName = "Arifama-Miniafia", + Scope = "I", + Type = "L" + }, + new + { + Id = "aak", + ReferenceName = "Ankave", + Scope = "I", + Type = "L" + }, + new + { + Id = "aal", + ReferenceName = "Afade", + Scope = "I", + Type = "L" + }, + new + { + Id = "aan", + ReferenceName = "Anambé", + Scope = "I", + Type = "L" + }, + new + { + Id = "aao", + ReferenceName = "Algerian Saharan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aap", + ReferenceName = "Pará Arára", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaq", + ReferenceName = "Eastern Abnaki", + Scope = "I", + Type = "E" + }, + new + { + Id = "aar", + Part1 = "aa", + Part2B = "aar", + Part2T = "aar", + ReferenceName = "Afar", + Scope = "I", + Type = "L" + }, + new + { + Id = "aas", + ReferenceName = "Aasáx", + Scope = "I", + Type = "L" + }, + new + { + Id = "aat", + ReferenceName = "Arvanitika Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "aau", + ReferenceName = "Abau", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaw", + ReferenceName = "Solong", + Scope = "I", + Type = "L" + }, + new + { + Id = "aax", + ReferenceName = "Mandobo Atas", + Scope = "I", + Type = "L" + }, + new + { + Id = "aaz", + ReferenceName = "Amarasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aba", + ReferenceName = "Abé", + Scope = "I", + Type = "L" + }, + new + { + Id = "abb", + ReferenceName = "Bankon", + Scope = "I", + Type = "L" + }, + new + { + Id = "abc", + ReferenceName = "Ambala Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "abd", + ReferenceName = "Manide", + Scope = "I", + Type = "L" + }, + new + { + Id = "abe", + ReferenceName = "Western Abnaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "abf", + ReferenceName = "Abai Sungai", + Scope = "I", + Type = "L" + }, + new + { + Id = "abg", + ReferenceName = "Abaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "abh", + ReferenceName = "Tajiki Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "abi", + ReferenceName = "Abidji", + Scope = "I", + Type = "L" + }, + new + { + Id = "abj", + ReferenceName = "Aka-Bea", + Scope = "I", + Type = "E" + }, + new + { + Id = "abk", + Part1 = "ab", + Part2B = "abk", + Part2T = "abk", + ReferenceName = "Abkhazian", + Scope = "I", + Type = "L" + }, + new + { + Id = "abl", + ReferenceName = "Lampung Nyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "abm", + ReferenceName = "Abanyom", + Scope = "I", + Type = "L" + }, + new + { + Id = "abn", + ReferenceName = "Abua", + Scope = "I", + Type = "L" + }, + new + { + Id = "abo", + ReferenceName = "Abon", + Scope = "I", + Type = "L" + }, + new + { + Id = "abp", + ReferenceName = "Abellen Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "abq", + ReferenceName = "Abaza", + Scope = "I", + Type = "L" + }, + new + { + Id = "abr", + ReferenceName = "Abron", + Scope = "I", + Type = "L" + }, + new + { + Id = "abs", + ReferenceName = "Ambonese Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "abt", + ReferenceName = "Ambulas", + Scope = "I", + Type = "L" + }, + new + { + Id = "abu", + ReferenceName = "Abure", + Scope = "I", + Type = "L" + }, + new + { + Id = "abv", + ReferenceName = "Baharna Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "abw", + ReferenceName = "Pal", + Scope = "I", + Type = "L" + }, + new + { + Id = "abx", + ReferenceName = "Inabaknon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aby", + ReferenceName = "Aneme Wake", + Scope = "I", + Type = "L" + }, + new + { + Id = "abz", + ReferenceName = "Abui", + Scope = "I", + Type = "L" + }, + new + { + Id = "aca", + ReferenceName = "Achagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "acb", + ReferenceName = "Áncá", + Scope = "I", + Type = "L" + }, + new + { + Id = "acd", + ReferenceName = "Gikyode", + Scope = "I", + Type = "L" + }, + new + { + Id = "ace", + Part2B = "ace", + Part2T = "ace", + ReferenceName = "Achinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "acf", + ReferenceName = "Saint Lucian Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "ach", + Part2B = "ach", + Part2T = "ach", + ReferenceName = "Acoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "aci", + ReferenceName = "Aka-Cari", + Scope = "I", + Type = "E" + }, + new + { + Id = "ack", + ReferenceName = "Aka-Kora", + Scope = "I", + Type = "E" + }, + new + { + Id = "acl", + ReferenceName = "Akar-Bale", + Scope = "I", + Type = "E" + }, + new + { + Id = "acm", + ReferenceName = "Mesopotamian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acn", + ReferenceName = "Achang", + Scope = "I", + Type = "L" + }, + new + { + Id = "acp", + ReferenceName = "Eastern Acipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "acq", + ReferenceName = "Ta'izzi-Adeni Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acr", + ReferenceName = "Achi", + Scope = "I", + Type = "L" + }, + new + { + Id = "acs", + ReferenceName = "Acroá", + Scope = "I", + Type = "E" + }, + new + { + Id = "act", + ReferenceName = "Achterhoeks", + Scope = "I", + Type = "L" + }, + new + { + Id = "acu", + ReferenceName = "Achuar-Shiwiar", + Scope = "I", + Type = "L" + }, + new + { + Id = "acv", + ReferenceName = "Achumawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "acw", + ReferenceName = "Hijazi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acx", + ReferenceName = "Omani Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acy", + ReferenceName = "Cypriot Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "acz", + ReferenceName = "Acheron", + Scope = "I", + Type = "L" + }, + new + { + Id = "ada", + Part2B = "ada", + Part2T = "ada", + ReferenceName = "Adangme", + Scope = "I", + Type = "L" + }, + new + { + Id = "adb", + ReferenceName = "Adabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "add", + ReferenceName = "Lidzonka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ade", + ReferenceName = "Adele", + Scope = "I", + Type = "L" + }, + new + { + Id = "adf", + ReferenceName = "Dhofari Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "adg", + ReferenceName = "Andegerebinha", + Scope = "I", + Type = "L" + }, + new + { + Id = "adh", + ReferenceName = "Adhola", + Scope = "I", + Type = "L" + }, + new + { + Id = "adi", + ReferenceName = "Adi", + Scope = "I", + Type = "L" + }, + new + { + Id = "adj", + ReferenceName = "Adioukrou", + Scope = "I", + Type = "L" + }, + new + { + Id = "adl", + ReferenceName = "Galo", + Scope = "I", + Type = "L" + }, + new + { + Id = "adn", + ReferenceName = "Adang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ado", + ReferenceName = "Abu", + Scope = "I", + Type = "L" + }, + new + { + Id = "adq", + ReferenceName = "Adangbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "adr", + ReferenceName = "Adonara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ads", + ReferenceName = "Adamorobe Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "adt", + ReferenceName = "Adnyamathanha", + Scope = "I", + Type = "L" + }, + new + { + Id = "adu", + ReferenceName = "Aduge", + Scope = "I", + Type = "L" + }, + new + { + Id = "adw", + ReferenceName = "Amundava", + Scope = "I", + Type = "L" + }, + new + { + Id = "adx", + ReferenceName = "Amdo Tibetan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ady", + Part2B = "ady", + Part2T = "ady", + ReferenceName = "Adyghe", + Scope = "I", + Type = "L" + }, + new + { + Id = "adz", + ReferenceName = "Adzera", + Scope = "I", + Type = "L" + }, + new + { + Id = "aea", + ReferenceName = "Areba", + Scope = "I", + Type = "E" + }, + new + { + Id = "aeb", + ReferenceName = "Tunisian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aec", + ReferenceName = "Saidi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aed", + ReferenceName = "Argentine Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "aee", + ReferenceName = "Northeast Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aek", + ReferenceName = "Haeke", + Scope = "I", + Type = "L" + }, + new + { + Id = "ael", + ReferenceName = "Ambele", + Scope = "I", + Type = "L" + }, + new + { + Id = "aem", + ReferenceName = "Arem", + Scope = "I", + Type = "L" + }, + new + { + Id = "aen", + ReferenceName = "Armenian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "aeq", + ReferenceName = "Aer", + Scope = "I", + Type = "L" + }, + new + { + Id = "aer", + ReferenceName = "Eastern Arrernte", + Scope = "I", + Type = "L" + }, + new + { + Id = "aes", + ReferenceName = "Alsea", + Scope = "I", + Type = "E" + }, + new + { + Id = "aeu", + ReferenceName = "Akeu", + Scope = "I", + Type = "L" + }, + new + { + Id = "aew", + ReferenceName = "Ambakich", + Scope = "I", + Type = "L" + }, + new + { + Id = "aey", + ReferenceName = "Amele", + Scope = "I", + Type = "L" + }, + new + { + Id = "aez", + ReferenceName = "Aeka", + Scope = "I", + Type = "L" + }, + new + { + Id = "afb", + ReferenceName = "Gulf Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "afd", + ReferenceName = "Andai", + Scope = "I", + Type = "L" + }, + new + { + Id = "afe", + ReferenceName = "Putukwam", + Scope = "I", + Type = "L" + }, + new + { + Id = "afg", + ReferenceName = "Afghan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "afh", + Part2B = "afh", + Part2T = "afh", + ReferenceName = "Afrihili", + Scope = "I", + Type = "C" + }, + new + { + Id = "afi", + ReferenceName = "Akrukay", + Scope = "I", + Type = "L" + }, + new + { + Id = "afk", + ReferenceName = "Nanubae", + Scope = "I", + Type = "L" + }, + new + { + Id = "afn", + ReferenceName = "Defaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "afo", + ReferenceName = "Eloyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "afp", + ReferenceName = "Tapei", + Scope = "I", + Type = "L" + }, + new + { + Id = "afr", + Part1 = "af", + Part2B = "afr", + Part2T = "afr", + ReferenceName = "Afrikaans", + Scope = "I", + Type = "L" + }, + new + { + Id = "afs", + ReferenceName = "Afro-Seminole Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "aft", + ReferenceName = "Afitti", + Scope = "I", + Type = "L" + }, + new + { + Id = "afu", + ReferenceName = "Awutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "afz", + ReferenceName = "Obokuitai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aga", + ReferenceName = "Aguano", + Scope = "I", + Type = "E" + }, + new + { + Id = "agb", + ReferenceName = "Legbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "agc", + ReferenceName = "Agatu", + Scope = "I", + Type = "L" + }, + new + { + Id = "agd", + ReferenceName = "Agarabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "age", + ReferenceName = "Angal", + Scope = "I", + Type = "L" + }, + new + { + Id = "agf", + ReferenceName = "Arguni", + Scope = "I", + Type = "L" + }, + new + { + Id = "agg", + ReferenceName = "Angor", + Scope = "I", + Type = "L" + }, + new + { + Id = "agh", + ReferenceName = "Ngelima", + Scope = "I", + Type = "L" + }, + new + { + Id = "agi", + ReferenceName = "Agariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "agj", + ReferenceName = "Argobba", + Scope = "I", + Type = "L" + }, + new + { + Id = "agk", + ReferenceName = "Isarog Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "agl", + ReferenceName = "Fembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "agm", + ReferenceName = "Angaataha", + Scope = "I", + Type = "L" + }, + new + { + Id = "agn", + ReferenceName = "Agutaynen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ago", + ReferenceName = "Tainae", + Scope = "I", + Type = "L" + }, + new + { + Id = "agq", + ReferenceName = "Aghem", + Scope = "I", + Type = "L" + }, + new + { + Id = "agr", + ReferenceName = "Aguaruna", + Scope = "I", + Type = "L" + }, + new + { + Id = "ags", + ReferenceName = "Esimbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "agt", + ReferenceName = "Central Cagayan Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "agu", + ReferenceName = "Aguacateco", + Scope = "I", + Type = "L" + }, + new + { + Id = "agv", + ReferenceName = "Remontado Dumagat", + Scope = "I", + Type = "L" + }, + new + { + Id = "agw", + ReferenceName = "Kahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "agx", + ReferenceName = "Aghul", + Scope = "I", + Type = "L" + }, + new + { + Id = "agy", + ReferenceName = "Southern Alta", + Scope = "I", + Type = "L" + }, + new + { + Id = "agz", + ReferenceName = "Mt. Iriga Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aha", + ReferenceName = "Ahanta", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahb", + ReferenceName = "Axamb", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahg", + ReferenceName = "Qimant", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahh", + ReferenceName = "Aghu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahi", + ReferenceName = "Tiagbamrin Aizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahk", + ReferenceName = "Akha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahl", + ReferenceName = "Igo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahm", + ReferenceName = "Mobumrin Aizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahn", + ReferenceName = "Àhàn", + Scope = "I", + Type = "L" + }, + new + { + Id = "aho", + ReferenceName = "Ahom", + Scope = "I", + Type = "E" + }, + new + { + Id = "ahp", + ReferenceName = "Aproumu Aizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahr", + ReferenceName = "Ahirani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ahs", + ReferenceName = "Ashe", + Scope = "I", + Type = "L" + }, + new + { + Id = "aht", + ReferenceName = "Ahtena", + Scope = "I", + Type = "L" + }, + new + { + Id = "aia", + ReferenceName = "Arosi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aib", + ReferenceName = "Ainu (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aic", + ReferenceName = "Ainbai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aid", + ReferenceName = "Alngith", + Scope = "I", + Type = "E" + }, + new + { + Id = "aie", + ReferenceName = "Amara", + Scope = "I", + Type = "L" + }, + new + { + Id = "aif", + ReferenceName = "Agi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aig", + ReferenceName = "Antigua and Barbuda Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "aih", + ReferenceName = "Ai-Cham", + Scope = "I", + Type = "L" + }, + new + { + Id = "aii", + ReferenceName = "Assyrian Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aij", + ReferenceName = "Lishanid Noshan", + Scope = "I", + Type = "L" + }, + new + { + Id = "aik", + ReferenceName = "Ake", + Scope = "I", + Type = "L" + }, + new + { + Id = "ail", + ReferenceName = "Aimele", + Scope = "I", + Type = "L" + }, + new + { + Id = "aim", + ReferenceName = "Aimol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ain", + Part2B = "ain", + Part2T = "ain", + ReferenceName = "Ainu (Japan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aio", + ReferenceName = "Aiton", + Scope = "I", + Type = "L" + }, + new + { + Id = "aip", + ReferenceName = "Burumakok", + Scope = "I", + Type = "L" + }, + new + { + Id = "aiq", + ReferenceName = "Aimaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "air", + ReferenceName = "Airoran", + Scope = "I", + Type = "L" + }, + new + { + Id = "ait", + ReferenceName = "Arikem", + Scope = "I", + Type = "E" + }, + new + { + Id = "aiw", + ReferenceName = "Aari", + Scope = "I", + Type = "L" + }, + new + { + Id = "aix", + ReferenceName = "Aighon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aiy", + ReferenceName = "Ali", + Scope = "I", + Type = "L" + }, + new + { + Id = "aja", + ReferenceName = "Aja (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajg", + ReferenceName = "Aja (Benin)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aji", + ReferenceName = "Ajië", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajn", + ReferenceName = "Andajin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajp", + ReferenceName = "South Levantine Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajt", + ReferenceName = "Judeo-Tunisian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aju", + ReferenceName = "Judeo-Moroccan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ajw", + ReferenceName = "Ajawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "ajz", + ReferenceName = "Amri Karbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aka", + Part1 = "ak", + Part2B = "aka", + Part2T = "aka", + ReferenceName = "Akan", + Scope = "M", + Type = "L" + }, + new + { + Id = "akb", + ReferenceName = "Batak Angkola", + Scope = "I", + Type = "L" + }, + new + { + Id = "akc", + ReferenceName = "Mpur", + Scope = "I", + Type = "L" + }, + new + { + Id = "akd", + ReferenceName = "Ukpet-Ehom", + Scope = "I", + Type = "L" + }, + new + { + Id = "ake", + ReferenceName = "Akawaio", + Scope = "I", + Type = "L" + }, + new + { + Id = "akf", + ReferenceName = "Akpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "akg", + ReferenceName = "Anakalangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "akh", + ReferenceName = "Angal Heneng", + Scope = "I", + Type = "L" + }, + new + { + Id = "aki", + ReferenceName = "Aiome", + Scope = "I", + Type = "L" + }, + new + { + Id = "akj", + ReferenceName = "Aka-Jeru", + Scope = "I", + Type = "E" + }, + new + { + Id = "akk", + Part2B = "akk", + Part2T = "akk", + ReferenceName = "Akkadian", + Scope = "I", + Type = "A" + }, + new + { + Id = "akl", + ReferenceName = "Aklanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "akm", + ReferenceName = "Aka-Bo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ako", + ReferenceName = "Akurio", + Scope = "I", + Type = "L" + }, + new + { + Id = "akp", + ReferenceName = "Siwu", + Scope = "I", + Type = "L" + }, + new + { + Id = "akq", + ReferenceName = "Ak", + Scope = "I", + Type = "L" + }, + new + { + Id = "akr", + ReferenceName = "Araki", + Scope = "I", + Type = "L" + }, + new + { + Id = "aks", + ReferenceName = "Akaselem", + Scope = "I", + Type = "L" + }, + new + { + Id = "akt", + ReferenceName = "Akolet", + Scope = "I", + Type = "L" + }, + new + { + Id = "aku", + ReferenceName = "Akum", + Scope = "I", + Type = "L" + }, + new + { + Id = "akv", + ReferenceName = "Akhvakh", + Scope = "I", + Type = "L" + }, + new + { + Id = "akw", + ReferenceName = "Akwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "akx", + ReferenceName = "Aka-Kede", + Scope = "I", + Type = "E" + }, + new + { + Id = "aky", + ReferenceName = "Aka-Kol", + Scope = "I", + Type = "E" + }, + new + { + Id = "akz", + ReferenceName = "Alabama", + Scope = "I", + Type = "L" + }, + new + { + Id = "ala", + ReferenceName = "Alago", + Scope = "I", + Type = "L" + }, + new + { + Id = "alc", + ReferenceName = "Qawasqar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ald", + ReferenceName = "Alladian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ale", + Part2B = "ale", + Part2T = "ale", + ReferenceName = "Aleut", + Scope = "I", + Type = "L" + }, + new + { + Id = "alf", + ReferenceName = "Alege", + Scope = "I", + Type = "L" + }, + new + { + Id = "alh", + ReferenceName = "Alawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ali", + ReferenceName = "Amaimon", + Scope = "I", + Type = "L" + }, + new + { + Id = "alj", + ReferenceName = "Alangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "alk", + ReferenceName = "Alak", + Scope = "I", + Type = "L" + }, + new + { + Id = "all", + ReferenceName = "Allar", + Scope = "I", + Type = "L" + }, + new + { + Id = "alm", + ReferenceName = "Amblong", + Scope = "I", + Type = "L" + }, + new + { + Id = "aln", + ReferenceName = "Gheg Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "alo", + ReferenceName = "Larike-Wakasihu", + Scope = "I", + Type = "L" + }, + new + { + Id = "alp", + ReferenceName = "Alune", + Scope = "I", + Type = "L" + }, + new + { + Id = "alq", + ReferenceName = "Algonquin", + Scope = "I", + Type = "L" + }, + new + { + Id = "alr", + ReferenceName = "Alutor", + Scope = "I", + Type = "L" + }, + new + { + Id = "als", + ReferenceName = "Tosk Albanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "alt", + Part2B = "alt", + Part2T = "alt", + ReferenceName = "Southern Altai", + Scope = "I", + Type = "L" + }, + new + { + Id = "alu", + ReferenceName = "'Are'are", + Scope = "I", + Type = "L" + }, + new + { + Id = "alw", + ReferenceName = "Alaba-K’abeena", + Scope = "I", + Type = "L" + }, + new + { + Id = "alx", + ReferenceName = "Amol", + Scope = "I", + Type = "L" + }, + new + { + Id = "aly", + ReferenceName = "Alyawarr", + Scope = "I", + Type = "L" + }, + new + { + Id = "alz", + ReferenceName = "Alur", + Scope = "I", + Type = "L" + }, + new + { + Id = "ama", + ReferenceName = "Amanayé", + Scope = "I", + Type = "E" + }, + new + { + Id = "amb", + ReferenceName = "Ambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "amc", + ReferenceName = "Amahuaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "ame", + ReferenceName = "Yanesha'", + Scope = "I", + Type = "L" + }, + new + { + Id = "amf", + ReferenceName = "Hamer-Banna", + Scope = "I", + Type = "L" + }, + new + { + Id = "amg", + ReferenceName = "Amurdak", + Scope = "I", + Type = "L" + }, + new + { + Id = "amh", + Part1 = "am", + Part2B = "amh", + Part2T = "amh", + ReferenceName = "Amharic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ami", + ReferenceName = "Amis", + Scope = "I", + Type = "L" + }, + new + { + Id = "amj", + ReferenceName = "Amdang", + Scope = "I", + Type = "L" + }, + new + { + Id = "amk", + ReferenceName = "Ambai", + Scope = "I", + Type = "L" + }, + new + { + Id = "aml", + ReferenceName = "War-Jaintia", + Scope = "I", + Type = "L" + }, + new + { + Id = "amm", + ReferenceName = "Ama (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "amn", + ReferenceName = "Amanab", + Scope = "I", + Type = "L" + }, + new + { + Id = "amo", + ReferenceName = "Amo", + Scope = "I", + Type = "L" + }, + new + { + Id = "amp", + ReferenceName = "Alamblak", + Scope = "I", + Type = "L" + }, + new + { + Id = "amq", + ReferenceName = "Amahai", + Scope = "I", + Type = "L" + }, + new + { + Id = "amr", + ReferenceName = "Amarakaeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ams", + ReferenceName = "Southern Amami-Oshima", + Scope = "I", + Type = "L" + }, + new + { + Id = "amt", + ReferenceName = "Amto", + Scope = "I", + Type = "L" + }, + new + { + Id = "amu", + ReferenceName = "Guerrero Amuzgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "amv", + ReferenceName = "Ambelau", + Scope = "I", + Type = "L" + }, + new + { + Id = "amw", + ReferenceName = "Western Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "amx", + ReferenceName = "Anmatyerre", + Scope = "I", + Type = "L" + }, + new + { + Id = "amy", + ReferenceName = "Ami", + Scope = "I", + Type = "L" + }, + new + { + Id = "amz", + ReferenceName = "Atampaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "ana", + ReferenceName = "Andaqui", + Scope = "I", + Type = "E" + }, + new + { + Id = "anb", + ReferenceName = "Andoa", + Scope = "I", + Type = "E" + }, + new + { + Id = "anc", + ReferenceName = "Ngas", + Scope = "I", + Type = "L" + }, + new + { + Id = "and", + ReferenceName = "Ansus", + Scope = "I", + Type = "L" + }, + new + { + Id = "ane", + ReferenceName = "Xârâcùù", + Scope = "I", + Type = "L" + }, + new + { + Id = "anf", + ReferenceName = "Animere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ang", + Part2B = "ang", + Part2T = "ang", + ReferenceName = "Old English (ca. 450-1100)", + Scope = "I", + Type = "H" + }, + new + { + Id = "anh", + ReferenceName = "Nend", + Scope = "I", + Type = "L" + }, + new + { + Id = "ani", + ReferenceName = "Andi", + Scope = "I", + Type = "L" + }, + new + { + Id = "anj", + ReferenceName = "Anor", + Scope = "I", + Type = "L" + }, + new + { + Id = "ank", + ReferenceName = "Goemai", + Scope = "I", + Type = "L" + }, + new + { + Id = "anl", + ReferenceName = "Anu-Hkongso Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "anm", + ReferenceName = "Anal", + Scope = "I", + Type = "L" + }, + new + { + Id = "ann", + ReferenceName = "Obolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ano", + ReferenceName = "Andoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "anp", + Part2B = "anp", + Part2T = "anp", + ReferenceName = "Angika", + Scope = "I", + Type = "L" + }, + new + { + Id = "anq", + ReferenceName = "Jarawa (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "anr", + ReferenceName = "Andh", + Scope = "I", + Type = "L" + }, + new + { + Id = "ans", + ReferenceName = "Anserma", + Scope = "I", + Type = "E" + }, + new + { + Id = "ant", + ReferenceName = "Antakarinya", + Scope = "I", + Type = "L" + }, + new + { + Id = "anu", + ReferenceName = "Anuak", + Scope = "I", + Type = "L" + }, + new + { + Id = "anv", + ReferenceName = "Denya", + Scope = "I", + Type = "L" + }, + new + { + Id = "anw", + ReferenceName = "Anaang", + Scope = "I", + Type = "L" + }, + new + { + Id = "anx", + ReferenceName = "Andra-Hus", + Scope = "I", + Type = "L" + }, + new + { + Id = "any", + ReferenceName = "Anyin", + Scope = "I", + Type = "L" + }, + new + { + Id = "anz", + ReferenceName = "Anem", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoa", + ReferenceName = "Angolar", + Scope = "I", + Type = "L" + }, + new + { + Id = "aob", + ReferenceName = "Abom", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoc", + ReferenceName = "Pemon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aod", + ReferenceName = "Andarum", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoe", + ReferenceName = "Angal Enen", + Scope = "I", + Type = "L" + }, + new + { + Id = "aof", + ReferenceName = "Bragat", + Scope = "I", + Type = "L" + }, + new + { + Id = "aog", + ReferenceName = "Angoram", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoh", + ReferenceName = "Arma", + Scope = "I", + Type = "E" + }, + new + { + Id = "aoi", + ReferenceName = "Anindilyakwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoj", + ReferenceName = "Mufian", + Scope = "I", + Type = "L" + }, + new + { + Id = "aok", + ReferenceName = "Arhö", + Scope = "I", + Type = "L" + }, + new + { + Id = "aol", + ReferenceName = "Alor", + Scope = "I", + Type = "L" + }, + new + { + Id = "aom", + ReferenceName = "Ömie", + Scope = "I", + Type = "L" + }, + new + { + Id = "aon", + ReferenceName = "Bumbita Arapesh", + Scope = "I", + Type = "L" + }, + new + { + Id = "aor", + ReferenceName = "Aore", + Scope = "I", + Type = "E" + }, + new + { + Id = "aos", + ReferenceName = "Taikat", + Scope = "I", + Type = "L" + }, + new + { + Id = "aot", + ReferenceName = "Atong (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aou", + ReferenceName = "A'ou", + Scope = "I", + Type = "L" + }, + new + { + Id = "aox", + ReferenceName = "Atorada", + Scope = "I", + Type = "L" + }, + new + { + Id = "aoz", + ReferenceName = "Uab Meto", + Scope = "I", + Type = "L" + }, + new + { + Id = "apb", + ReferenceName = "Sa'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "apc", + ReferenceName = "North Levantine Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "apd", + ReferenceName = "Sudanese Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ape", + ReferenceName = "Bukiyip", + Scope = "I", + Type = "L" + }, + new + { + Id = "apf", + ReferenceName = "Pahanan Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "apg", + ReferenceName = "Ampanang", + Scope = "I", + Type = "L" + }, + new + { + Id = "aph", + ReferenceName = "Athpariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "api", + ReferenceName = "Apiaká", + Scope = "I", + Type = "L" + }, + new + { + Id = "apj", + ReferenceName = "Jicarilla Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apk", + ReferenceName = "Kiowa Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apl", + ReferenceName = "Lipan Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apm", + ReferenceName = "Mescalero-Chiricahua Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apn", + ReferenceName = "Apinayé", + Scope = "I", + Type = "L" + }, + new + { + Id = "apo", + ReferenceName = "Ambul", + Scope = "I", + Type = "L" + }, + new + { + Id = "app", + ReferenceName = "Apma", + Scope = "I", + Type = "L" + }, + new + { + Id = "apq", + ReferenceName = "A-Pucikwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "apr", + ReferenceName = "Arop-Lokep", + Scope = "I", + Type = "L" + }, + new + { + Id = "aps", + ReferenceName = "Arop-Sissano", + Scope = "I", + Type = "L" + }, + new + { + Id = "apt", + ReferenceName = "Apatani", + Scope = "I", + Type = "L" + }, + new + { + Id = "apu", + ReferenceName = "Apurinã", + Scope = "I", + Type = "L" + }, + new + { + Id = "apv", + ReferenceName = "Alapmunte", + Scope = "I", + Type = "E" + }, + new + { + Id = "apw", + ReferenceName = "Western Apache", + Scope = "I", + Type = "L" + }, + new + { + Id = "apx", + ReferenceName = "Aputai", + Scope = "I", + Type = "L" + }, + new + { + Id = "apy", + ReferenceName = "Apalaí", + Scope = "I", + Type = "L" + }, + new + { + Id = "apz", + ReferenceName = "Safeyoka", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqc", + ReferenceName = "Archi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqd", + ReferenceName = "Ampari Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqg", + ReferenceName = "Arigidi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqm", + ReferenceName = "Atohwaim", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqn", + ReferenceName = "Northern Alta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqp", + ReferenceName = "Atakapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "aqr", + ReferenceName = "Arhâ", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqt", + ReferenceName = "Angaité", + Scope = "I", + Type = "L" + }, + new + { + Id = "aqz", + ReferenceName = "Akuntsu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ara", + Part1 = "ar", + Part2B = "ara", + Part2T = "ara", + ReferenceName = "Arabic", + Scope = "M", + Type = "L" + }, + new + { + Id = "arb", + ReferenceName = "Standard Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "arc", + Part2B = "arc", + Part2T = "arc", + ReferenceName = "Official Aramaic (700-300 BCE)", + Scope = "I", + Type = "A" + }, + new + { + Id = "ard", + ReferenceName = "Arabana", + Scope = "I", + Type = "E" + }, + new + { + Id = "are", + ReferenceName = "Western Arrarnta", + Scope = "I", + Type = "L" + }, + new + { + Id = "arg", + Part1 = "an", + Part2B = "arg", + Part2T = "arg", + ReferenceName = "Aragonese", + Scope = "I", + Type = "L" + }, + new + { + Id = "arh", + ReferenceName = "Arhuaco", + Scope = "I", + Type = "L" + }, + new + { + Id = "ari", + ReferenceName = "Arikara", + Scope = "I", + Type = "L" + }, + new + { + Id = "arj", + ReferenceName = "Arapaso", + Scope = "I", + Type = "E" + }, + new + { + Id = "ark", + ReferenceName = "Arikapú", + Scope = "I", + Type = "L" + }, + new + { + Id = "arl", + ReferenceName = "Arabela", + Scope = "I", + Type = "L" + }, + new + { + Id = "arn", + Part2B = "arn", + Part2T = "arn", + ReferenceName = "Mapudungun", + Scope = "I", + Type = "L" + }, + new + { + Id = "aro", + ReferenceName = "Araona", + Scope = "I", + Type = "L" + }, + new + { + Id = "arp", + Part2B = "arp", + Part2T = "arp", + ReferenceName = "Arapaho", + Scope = "I", + Type = "L" + }, + new + { + Id = "arq", + ReferenceName = "Algerian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "arr", + ReferenceName = "Karo (Brazil)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ars", + ReferenceName = "Najdi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aru", + ReferenceName = "Aruá (Amazonas State)", + Scope = "I", + Type = "E" + }, + new + { + Id = "arv", + ReferenceName = "Arbore", + Scope = "I", + Type = "L" + }, + new + { + Id = "arw", + Part2B = "arw", + Part2T = "arw", + ReferenceName = "Arawak", + Scope = "I", + Type = "L" + }, + new + { + Id = "arx", + ReferenceName = "Aruá (Rodonia State)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ary", + ReferenceName = "Moroccan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "arz", + ReferenceName = "Egyptian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "asa", + ReferenceName = "Asu (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "asb", + ReferenceName = "Assiniboine", + Scope = "I", + Type = "L" + }, + new + { + Id = "asc", + ReferenceName = "Casuarina Coast Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "ase", + ReferenceName = "American Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asf", + ReferenceName = "Auslan", + Scope = "I", + Type = "L" + }, + new + { + Id = "asg", + ReferenceName = "Cishingini", + Scope = "I", + Type = "L" + }, + new + { + Id = "ash", + ReferenceName = "Abishira", + Scope = "I", + Type = "E" + }, + new + { + Id = "asi", + ReferenceName = "Buruwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "asj", + ReferenceName = "Sari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ask", + ReferenceName = "Ashkun", + Scope = "I", + Type = "L" + }, + new + { + Id = "asl", + ReferenceName = "Asilulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "asm", + Part1 = "as", + Part2B = "asm", + Part2T = "asm", + ReferenceName = "Assamese", + Scope = "I", + Type = "L" + }, + new + { + Id = "asn", + ReferenceName = "Xingú Asuriní", + Scope = "I", + Type = "L" + }, + new + { + Id = "aso", + ReferenceName = "Dano", + Scope = "I", + Type = "L" + }, + new + { + Id = "asp", + ReferenceName = "Algerian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asq", + ReferenceName = "Austrian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asr", + ReferenceName = "Asuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ass", + ReferenceName = "Ipulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ast", + Part2B = "ast", + Part2T = "ast", + ReferenceName = "Asturian", + Scope = "I", + Type = "L" + }, + new + { + Id = "asu", + ReferenceName = "Tocantins Asurini", + Scope = "I", + Type = "L" + }, + new + { + Id = "asv", + ReferenceName = "Asoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "asw", + ReferenceName = "Australian Aborigines Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "asx", + ReferenceName = "Muratayak", + Scope = "I", + Type = "L" + }, + new + { + Id = "asy", + ReferenceName = "Yaosakor Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "asz", + ReferenceName = "As", + Scope = "I", + Type = "L" + }, + new + { + Id = "ata", + ReferenceName = "Pele-Ata", + Scope = "I", + Type = "L" + }, + new + { + Id = "atb", + ReferenceName = "Zaiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "atc", + ReferenceName = "Atsahuaca", + Scope = "I", + Type = "E" + }, + new + { + Id = "atd", + ReferenceName = "Ata Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ate", + ReferenceName = "Atemble", + Scope = "I", + Type = "L" + }, + new + { + Id = "atg", + ReferenceName = "Ivbie North-Okpela-Arhe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ati", + ReferenceName = "Attié", + Scope = "I", + Type = "L" + }, + new + { + Id = "atj", + ReferenceName = "Atikamekw", + Scope = "I", + Type = "L" + }, + new + { + Id = "atk", + ReferenceName = "Ati", + Scope = "I", + Type = "L" + }, + new + { + Id = "atl", + ReferenceName = "Mt. Iraya Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "atm", + ReferenceName = "Ata", + Scope = "I", + Type = "L" + }, + new + { + Id = "atn", + ReferenceName = "Ashtiani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ato", + ReferenceName = "Atong (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "atp", + ReferenceName = "Pudtol Atta", + Scope = "I", + Type = "L" + }, + new + { + Id = "atq", + ReferenceName = "Aralle-Tabulahan", + Scope = "I", + Type = "L" + }, + new + { + Id = "atr", + ReferenceName = "Waimiri-Atroari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ats", + ReferenceName = "Gros Ventre", + Scope = "I", + Type = "L" + }, + new + { + Id = "att", + ReferenceName = "Pamplona Atta", + Scope = "I", + Type = "L" + }, + new + { + Id = "atu", + ReferenceName = "Reel", + Scope = "I", + Type = "L" + }, + new + { + Id = "atv", + ReferenceName = "Northern Altai", + Scope = "I", + Type = "L" + }, + new + { + Id = "atw", + ReferenceName = "Atsugewi", + Scope = "I", + Type = "L" + }, + new + { + Id = "atx", + ReferenceName = "Arutani", + Scope = "I", + Type = "L" + }, + new + { + Id = "aty", + ReferenceName = "Aneityum", + Scope = "I", + Type = "L" + }, + new + { + Id = "atz", + ReferenceName = "Arta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aua", + ReferenceName = "Asumboa", + Scope = "I", + Type = "L" + }, + new + { + Id = "aub", + ReferenceName = "Alugu", + Scope = "I", + Type = "L" + }, + new + { + Id = "auc", + ReferenceName = "Waorani", + Scope = "I", + Type = "L" + }, + new + { + Id = "aud", + ReferenceName = "Anuta", + Scope = "I", + Type = "L" + }, + new + { + Id = "aug", + ReferenceName = "Aguna", + Scope = "I", + Type = "L" + }, + new + { + Id = "auh", + ReferenceName = "Aushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aui", + ReferenceName = "Anuki", + Scope = "I", + Type = "L" + }, + new + { + Id = "auj", + ReferenceName = "Awjilah", + Scope = "I", + Type = "L" + }, + new + { + Id = "auk", + ReferenceName = "Heyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "aul", + ReferenceName = "Aulua", + Scope = "I", + Type = "L" + }, + new + { + Id = "aum", + ReferenceName = "Asu (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "aun", + ReferenceName = "Molmo One", + Scope = "I", + Type = "L" + }, + new + { + Id = "auo", + ReferenceName = "Auyokawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "aup", + ReferenceName = "Makayam", + Scope = "I", + Type = "L" + }, + new + { + Id = "auq", + ReferenceName = "Anus", + Scope = "I", + Type = "L" + }, + new + { + Id = "aur", + ReferenceName = "Aruek", + Scope = "I", + Type = "L" + }, + new + { + Id = "aut", + ReferenceName = "Austral", + Scope = "I", + Type = "L" + }, + new + { + Id = "auu", + ReferenceName = "Auye", + Scope = "I", + Type = "L" + }, + new + { + Id = "auw", + ReferenceName = "Awyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "aux", + ReferenceName = "Aurá", + Scope = "I", + Type = "E" + }, + new + { + Id = "auy", + ReferenceName = "Awiyaana", + Scope = "I", + Type = "L" + }, + new + { + Id = "auz", + ReferenceName = "Uzbeki Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ava", + Part1 = "av", + Part2B = "ava", + Part2T = "ava", + ReferenceName = "Avaric", + Scope = "I", + Type = "L" + }, + new + { + Id = "avb", + ReferenceName = "Avau", + Scope = "I", + Type = "L" + }, + new + { + Id = "avd", + ReferenceName = "Alviri-Vidari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ave", + Part1 = "ae", + Part2B = "ave", + Part2T = "ave", + ReferenceName = "Avestan", + Scope = "I", + Type = "A" + }, + new + { + Id = "avi", + ReferenceName = "Avikam", + Scope = "I", + Type = "L" + }, + new + { + Id = "avk", + ReferenceName = "Kotava", + Scope = "I", + Type = "C" + }, + new + { + Id = "avl", + ReferenceName = "Eastern Egyptian Bedawi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "avm", + ReferenceName = "Angkamuthi", + Scope = "I", + Type = "E" + }, + new + { + Id = "avn", + ReferenceName = "Avatime", + Scope = "I", + Type = "L" + }, + new + { + Id = "avo", + ReferenceName = "Agavotaguerra", + Scope = "I", + Type = "E" + }, + new + { + Id = "avs", + ReferenceName = "Aushiri", + Scope = "I", + Type = "E" + }, + new + { + Id = "avt", + ReferenceName = "Au", + Scope = "I", + Type = "L" + }, + new + { + Id = "avu", + ReferenceName = "Avokaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "avv", + ReferenceName = "Avá-Canoeiro", + Scope = "I", + Type = "L" + }, + new + { + Id = "awa", + Part2B = "awa", + Part2T = "awa", + ReferenceName = "Awadhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "awb", + ReferenceName = "Awa (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "awc", + ReferenceName = "Cicipu", + Scope = "I", + Type = "L" + }, + new + { + Id = "awe", + ReferenceName = "Awetí", + Scope = "I", + Type = "L" + }, + new + { + Id = "awg", + ReferenceName = "Anguthimri", + Scope = "I", + Type = "E" + }, + new + { + Id = "awh", + ReferenceName = "Awbono", + Scope = "I", + Type = "L" + }, + new + { + Id = "awi", + ReferenceName = "Aekyom", + Scope = "I", + Type = "L" + }, + new + { + Id = "awk", + ReferenceName = "Awabakal", + Scope = "I", + Type = "E" + }, + new + { + Id = "awm", + ReferenceName = "Arawum", + Scope = "I", + Type = "L" + }, + new + { + Id = "awn", + ReferenceName = "Awngi", + Scope = "I", + Type = "L" + }, + new + { + Id = "awo", + ReferenceName = "Awak", + Scope = "I", + Type = "L" + }, + new + { + Id = "awr", + ReferenceName = "Awera", + Scope = "I", + Type = "L" + }, + new + { + Id = "aws", + ReferenceName = "South Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "awt", + ReferenceName = "Araweté", + Scope = "I", + Type = "L" + }, + new + { + Id = "awu", + ReferenceName = "Central Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "awv", + ReferenceName = "Jair Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "aww", + ReferenceName = "Awun", + Scope = "I", + Type = "L" + }, + new + { + Id = "awx", + ReferenceName = "Awara", + Scope = "I", + Type = "L" + }, + new + { + Id = "awy", + ReferenceName = "Edera Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "axb", + ReferenceName = "Abipon", + Scope = "I", + Type = "E" + }, + new + { + Id = "axe", + ReferenceName = "Ayerrerenge", + Scope = "I", + Type = "E" + }, + new + { + Id = "axg", + ReferenceName = "Mato Grosso Arára", + Scope = "I", + Type = "E" + }, + new + { + Id = "axk", + ReferenceName = "Yaka (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "axl", + ReferenceName = "Lower Southern Aranda", + Scope = "I", + Type = "E" + }, + new + { + Id = "axm", + ReferenceName = "Middle Armenian", + Scope = "I", + Type = "H" + }, + new + { + Id = "axx", + ReferenceName = "Xârâgurè", + Scope = "I", + Type = "L" + }, + new + { + Id = "aya", + ReferenceName = "Awar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayb", + ReferenceName = "Ayizo Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayc", + ReferenceName = "Southern Aymara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayd", + ReferenceName = "Ayabadhu", + Scope = "I", + Type = "E" + }, + new + { + Id = "aye", + ReferenceName = "Ayere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayg", + ReferenceName = "Ginyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayh", + ReferenceName = "Hadrami Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayi", + ReferenceName = "Leyigha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayk", + ReferenceName = "Akuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayl", + ReferenceName = "Libyan Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "aym", + Part1 = "ay", + Part2B = "aym", + Part2T = "aym", + ReferenceName = "Aymara", + Scope = "M", + Type = "L" + }, + new + { + Id = "ayn", + ReferenceName = "Sanaani Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayo", + ReferenceName = "Ayoreo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayp", + ReferenceName = "North Mesopotamian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayq", + ReferenceName = "Ayi (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayr", + ReferenceName = "Central Aymara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ays", + ReferenceName = "Sorsogon Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayt", + ReferenceName = "Magbukun Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayu", + ReferenceName = "Ayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ayy", + ReferenceName = "Tayabas Ayta", + Scope = "I", + Type = "E" + }, + new + { + Id = "ayz", + ReferenceName = "Mai Brat", + Scope = "I", + Type = "L" + }, + new + { + Id = "aza", + ReferenceName = "Azha", + Scope = "I", + Type = "L" + }, + new + { + Id = "azb", + ReferenceName = "South Azerbaijani", + Scope = "I", + Type = "L" + }, + new + { + Id = "azd", + ReferenceName = "Eastern Durango Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "aze", + Part1 = "az", + Part2B = "aze", + Part2T = "aze", + ReferenceName = "Azerbaijani", + Scope = "M", + Type = "L" + }, + new + { + Id = "azg", + ReferenceName = "San Pedro Amuzgos Amuzgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "azj", + ReferenceName = "North Azerbaijani", + Scope = "I", + Type = "L" + }, + new + { + Id = "azm", + ReferenceName = "Ipalapa Amuzgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "azn", + ReferenceName = "Western Durango Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "azo", + ReferenceName = "Awing", + Scope = "I", + Type = "L" + }, + new + { + Id = "azt", + ReferenceName = "Faire Atta", + Scope = "I", + Type = "L" + }, + new + { + Id = "azz", + ReferenceName = "Highland Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "baa", + ReferenceName = "Babatana", + Scope = "I", + Type = "L" + }, + new + { + Id = "bab", + ReferenceName = "Bainouk-Gunyuño", + Scope = "I", + Type = "L" + }, + new + { + Id = "bac", + ReferenceName = "Badui", + Scope = "I", + Type = "L" + }, + new + { + Id = "bae", + ReferenceName = "Baré", + Scope = "I", + Type = "E" + }, + new + { + Id = "baf", + ReferenceName = "Nubaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "bag", + ReferenceName = "Tuki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bah", + ReferenceName = "Bahamas Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "baj", + ReferenceName = "Barakai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bak", + Part1 = "ba", + Part2B = "bak", + Part2T = "bak", + ReferenceName = "Bashkir", + Scope = "I", + Type = "L" + }, + new + { + Id = "bal", + Part2B = "bal", + Part2T = "bal", + ReferenceName = "Baluchi", + Scope = "M", + Type = "L" + }, + new + { + Id = "bam", + Part1 = "bm", + Part2B = "bam", + Part2T = "bam", + ReferenceName = "Bambara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ban", + Part2B = "ban", + Part2T = "ban", + ReferenceName = "Balinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "bao", + ReferenceName = "Waimaha", + Scope = "I", + Type = "L" + }, + new + { + Id = "bap", + ReferenceName = "Bantawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bar", + ReferenceName = "Bavarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bas", + Part2B = "bas", + Part2T = "bas", + ReferenceName = "Basa (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bau", + ReferenceName = "Bada (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bav", + ReferenceName = "Vengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "baw", + ReferenceName = "Bambili-Bambui", + Scope = "I", + Type = "L" + }, + new + { + Id = "bax", + ReferenceName = "Bamun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bay", + ReferenceName = "Batuley", + Scope = "I", + Type = "L" + }, + new + { + Id = "bba", + ReferenceName = "Baatonum", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbb", + ReferenceName = "Barai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbc", + ReferenceName = "Batak Toba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbd", + ReferenceName = "Bau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbe", + ReferenceName = "Bangba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbf", + ReferenceName = "Baibai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbg", + ReferenceName = "Barama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbh", + ReferenceName = "Bugan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbi", + ReferenceName = "Barombi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbj", + ReferenceName = "Ghomálá'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbk", + ReferenceName = "Babanki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbl", + ReferenceName = "Bats", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbm", + ReferenceName = "Babango", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbn", + ReferenceName = "Uneapa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbo", + ReferenceName = "Northern Bobo Madaré", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbp", + ReferenceName = "West Central Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbq", + ReferenceName = "Bamali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbr", + ReferenceName = "Girawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbs", + ReferenceName = "Bakpinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbt", + ReferenceName = "Mburku", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbu", + ReferenceName = "Kulung (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbv", + ReferenceName = "Karnai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbw", + ReferenceName = "Baba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbx", + ReferenceName = "Bubia", + Scope = "I", + Type = "L" + }, + new + { + Id = "bby", + ReferenceName = "Befang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bbz", + ReferenceName = "Babalia Creole Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bca", + ReferenceName = "Central Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcb", + ReferenceName = "Bainouk-Samik", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcc", + ReferenceName = "Southern Balochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcd", + ReferenceName = "North Babar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bce", + ReferenceName = "Bamenyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcf", + ReferenceName = "Bamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcg", + ReferenceName = "Baga Pokur", + Scope = "I", + Type = "L" + }, + new + { + Id = "bch", + ReferenceName = "Bariai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bci", + ReferenceName = "Baoulé", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcj", + ReferenceName = "Bardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bck", + ReferenceName = "Bunuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcl", + ReferenceName = "Central Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcm", + ReferenceName = "Bannoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcn", + ReferenceName = "Bali (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bco", + ReferenceName = "Kaluli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcp", + ReferenceName = "Bali (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcq", + ReferenceName = "Bench", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcr", + ReferenceName = "Babine", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcs", + ReferenceName = "Kohumono", + Scope = "I", + Type = "L" + }, + new + { + Id = "bct", + ReferenceName = "Bendi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcu", + ReferenceName = "Awad Bing", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcv", + ReferenceName = "Shoo-Minda-Nye", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcw", + ReferenceName = "Bana", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcy", + ReferenceName = "Bacama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bcz", + ReferenceName = "Bainouk-Gunyaamolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bda", + ReferenceName = "Bayot", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdb", + ReferenceName = "Basap", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdc", + ReferenceName = "Emberá-Baudó", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdd", + ReferenceName = "Bunama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bde", + ReferenceName = "Bade", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdf", + ReferenceName = "Biage", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdg", + ReferenceName = "Bonggi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdh", + ReferenceName = "Baka (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdi", + ReferenceName = "Burun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdj", + ReferenceName = "Bai (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdk", + ReferenceName = "Budukh", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdl", + ReferenceName = "Indonesian Bajau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdm", + ReferenceName = "Buduma", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdn", + ReferenceName = "Baldemu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdo", + ReferenceName = "Morom", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdp", + ReferenceName = "Bende", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdq", + ReferenceName = "Bahnar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdr", + ReferenceName = "West Coast Bajau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bds", + ReferenceName = "Burunge", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdt", + ReferenceName = "Bokoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdu", + ReferenceName = "Oroko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdv", + ReferenceName = "Bodo Parja", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdw", + ReferenceName = "Baham", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdx", + ReferenceName = "Budong-Budong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdy", + ReferenceName = "Bandjalang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bdz", + ReferenceName = "Badeshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bea", + ReferenceName = "Beaver", + Scope = "I", + Type = "L" + }, + new + { + Id = "beb", + ReferenceName = "Bebele", + Scope = "I", + Type = "L" + }, + new + { + Id = "bec", + ReferenceName = "Iceve-Maci", + Scope = "I", + Type = "L" + }, + new + { + Id = "bed", + ReferenceName = "Bedoanas", + Scope = "I", + Type = "L" + }, + new + { + Id = "bee", + ReferenceName = "Byangsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bef", + ReferenceName = "Benabena", + Scope = "I", + Type = "L" + }, + new + { + Id = "beg", + ReferenceName = "Belait", + Scope = "I", + Type = "L" + }, + new + { + Id = "beh", + ReferenceName = "Biali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bei", + ReferenceName = "Bekati'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bej", + Part2B = "bej", + Part2T = "bej", + ReferenceName = "Beja", + Scope = "I", + Type = "L" + }, + new + { + Id = "bek", + ReferenceName = "Bebeli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bel", + Part1 = "be", + Part2B = "bel", + Part2T = "bel", + ReferenceName = "Belarusian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bem", + Part2B = "bem", + Part2T = "bem", + ReferenceName = "Bemba (Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ben", + Part1 = "bn", + Part2B = "ben", + Part2T = "ben", + ReferenceName = "Bengali", + Scope = "I", + Type = "L" + }, + new + { + Id = "beo", + ReferenceName = "Beami", + Scope = "I", + Type = "L" + }, + new + { + Id = "bep", + ReferenceName = "Besoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "beq", + ReferenceName = "Beembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bes", + ReferenceName = "Besme", + Scope = "I", + Type = "L" + }, + new + { + Id = "bet", + ReferenceName = "Guiberoua Béte", + Scope = "I", + Type = "L" + }, + new + { + Id = "beu", + ReferenceName = "Blagar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bev", + ReferenceName = "Daloa Bété", + Scope = "I", + Type = "L" + }, + new + { + Id = "bew", + ReferenceName = "Betawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bex", + ReferenceName = "Jur Modo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bey", + ReferenceName = "Beli (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bez", + ReferenceName = "Bena (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfa", + ReferenceName = "Bari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfb", + ReferenceName = "Pauri Bareli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfc", + ReferenceName = "Panyi Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfd", + ReferenceName = "Bafut", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfe", + ReferenceName = "Betaf", + Scope = "I", + Type = "L" + }, + new + { + Id = "bff", + ReferenceName = "Bofi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfg", + ReferenceName = "Busang Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfh", + ReferenceName = "Blafe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfi", + ReferenceName = "British Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfj", + ReferenceName = "Bafanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfk", + ReferenceName = "Ban Khor Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfl", + ReferenceName = "Banda-Ndélé", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfm", + ReferenceName = "Mmen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfn", + ReferenceName = "Bunak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfo", + ReferenceName = "Malba Birifor", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfp", + ReferenceName = "Beba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfq", + ReferenceName = "Badaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfr", + ReferenceName = "Bazigar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfs", + ReferenceName = "Southern Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bft", + ReferenceName = "Balti", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfu", + ReferenceName = "Gahri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfw", + ReferenceName = "Bondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfx", + ReferenceName = "Bantayanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfy", + ReferenceName = "Bagheli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bfz", + ReferenceName = "Mahasu Pahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bga", + ReferenceName = "Gwamhi-Wuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgb", + ReferenceName = "Bobongko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgc", + ReferenceName = "Haryanvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgd", + ReferenceName = "Rathwi Bareli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bge", + ReferenceName = "Bauria", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgf", + ReferenceName = "Bangandu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgg", + ReferenceName = "Bugun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgi", + ReferenceName = "Giangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgj", + ReferenceName = "Bangolan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgk", + ReferenceName = "Bit", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgl", + ReferenceName = "Bo (Laos)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgn", + ReferenceName = "Western Balochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgo", + ReferenceName = "Baga Koga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgp", + ReferenceName = "Eastern Balochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgq", + ReferenceName = "Bagri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgr", + ReferenceName = "Bawm Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgs", + ReferenceName = "Tagabawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgt", + ReferenceName = "Bughotu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgu", + ReferenceName = "Mbongno", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgv", + ReferenceName = "Warkay-Bipim", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgw", + ReferenceName = "Bhatri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgx", + ReferenceName = "Balkan Gagauz Turkish", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgy", + ReferenceName = "Benggoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bgz", + ReferenceName = "Banggai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bha", + ReferenceName = "Bharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhb", + ReferenceName = "Bhili", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhc", + ReferenceName = "Biga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhd", + ReferenceName = "Bhadrawahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhe", + ReferenceName = "Bhaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhf", + ReferenceName = "Odiai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhg", + ReferenceName = "Binandere", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhh", + ReferenceName = "Bukharic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhi", + ReferenceName = "Bhilali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhj", + ReferenceName = "Bahing", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhl", + ReferenceName = "Bimin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhm", + ReferenceName = "Bathari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhn", + ReferenceName = "Bohtan Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bho", + Part2B = "bho", + Part2T = "bho", + ReferenceName = "Bhojpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhp", + ReferenceName = "Bima", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhq", + ReferenceName = "Tukang Besi South", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhr", + ReferenceName = "Bara Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhs", + ReferenceName = "Buwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "bht", + ReferenceName = "Bhattiyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhu", + ReferenceName = "Bhunjia", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhv", + ReferenceName = "Bahau", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhw", + ReferenceName = "Biak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhx", + ReferenceName = "Bhalay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhy", + ReferenceName = "Bhele", + Scope = "I", + Type = "L" + }, + new + { + Id = "bhz", + ReferenceName = "Bada (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bia", + ReferenceName = "Badimaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bib", + ReferenceName = "Bissa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bic", + ReferenceName = "Bikaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "bid", + ReferenceName = "Bidiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bie", + ReferenceName = "Bepour", + Scope = "I", + Type = "L" + }, + new + { + Id = "bif", + ReferenceName = "Biafada", + Scope = "I", + Type = "L" + }, + new + { + Id = "big", + ReferenceName = "Biangai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bij", + ReferenceName = "Vaghat-Ya-Bijim-Legeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bik", + Part2B = "bik", + Part2T = "bik", + ReferenceName = "Bikol", + Scope = "M", + Type = "L" + }, + new + { + Id = "bil", + ReferenceName = "Bile", + Scope = "I", + Type = "L" + }, + new + { + Id = "bim", + ReferenceName = "Bimoba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bin", + Part2B = "bin", + Part2T = "bin", + ReferenceName = "Bini", + Scope = "I", + Type = "L" + }, + new + { + Id = "bio", + ReferenceName = "Nai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bip", + ReferenceName = "Bila", + Scope = "I", + Type = "L" + }, + new + { + Id = "biq", + ReferenceName = "Bipi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bir", + ReferenceName = "Bisorio", + Scope = "I", + Type = "L" + }, + new + { + Id = "bis", + Part1 = "bi", + Part2B = "bis", + Part2T = "bis", + ReferenceName = "Bislama", + Scope = "I", + Type = "L" + }, + new + { + Id = "bit", + ReferenceName = "Berinomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "biu", + ReferenceName = "Biete", + Scope = "I", + Type = "L" + }, + new + { + Id = "biv", + ReferenceName = "Southern Birifor", + Scope = "I", + Type = "L" + }, + new + { + Id = "biw", + ReferenceName = "Kol (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bix", + ReferenceName = "Bijori", + Scope = "I", + Type = "L" + }, + new + { + Id = "biy", + ReferenceName = "Birhor", + Scope = "I", + Type = "L" + }, + new + { + Id = "biz", + ReferenceName = "Baloi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bja", + ReferenceName = "Budza", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjb", + ReferenceName = "Banggarla", + Scope = "I", + Type = "E" + }, + new + { + Id = "bjc", + ReferenceName = "Bariji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bje", + ReferenceName = "Biao-Jiao Mien", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjf", + ReferenceName = "Barzani Jewish Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjg", + ReferenceName = "Bidyogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjh", + ReferenceName = "Bahinemo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bji", + ReferenceName = "Burji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjj", + ReferenceName = "Kanauji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjk", + ReferenceName = "Barok", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjl", + ReferenceName = "Bulu (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjm", + ReferenceName = "Bajelani", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjn", + ReferenceName = "Banjar", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjo", + ReferenceName = "Mid-Southern Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjp", + ReferenceName = "Fanamaket", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjr", + ReferenceName = "Binumarien", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjs", + ReferenceName = "Bajan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjt", + ReferenceName = "Balanta-Ganja", + Scope = "I", + Type = "L" + }, + new + { + Id = "bju", + ReferenceName = "Busuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjv", + ReferenceName = "Bedjond", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjw", + ReferenceName = "Bakwé", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjx", + ReferenceName = "Banao Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "bjy", + ReferenceName = "Bayali", + Scope = "I", + Type = "E" + }, + new + { + Id = "bjz", + ReferenceName = "Baruga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bka", + ReferenceName = "Kyak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkc", + ReferenceName = "Baka (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkd", + ReferenceName = "Binukid", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkf", + ReferenceName = "Beeke", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkg", + ReferenceName = "Buraka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkh", + ReferenceName = "Bakoko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bki", + ReferenceName = "Baki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkj", + ReferenceName = "Pande", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkk", + ReferenceName = "Brokskat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkl", + ReferenceName = "Berik", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkm", + ReferenceName = "Kom (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkn", + ReferenceName = "Bukitan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bko", + ReferenceName = "Kwa'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkp", + ReferenceName = "Boko (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkq", + ReferenceName = "Bakairí", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkr", + ReferenceName = "Bakumpai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bks", + ReferenceName = "Northern Sorsoganon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkt", + ReferenceName = "Boloki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bku", + ReferenceName = "Buhid", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkv", + ReferenceName = "Bekwarra", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkw", + ReferenceName = "Bekwel", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkx", + ReferenceName = "Baikeno", + Scope = "I", + Type = "L" + }, + new + { + Id = "bky", + ReferenceName = "Bokyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bkz", + ReferenceName = "Bungku", + Scope = "I", + Type = "L" + }, + new + { + Id = "bla", + Part2B = "bla", + Part2T = "bla", + ReferenceName = "Siksika", + Scope = "I", + Type = "L" + }, + new + { + Id = "blb", + ReferenceName = "Bilua", + Scope = "I", + Type = "L" + }, + new + { + Id = "blc", + ReferenceName = "Bella Coola", + Scope = "I", + Type = "L" + }, + new + { + Id = "bld", + ReferenceName = "Bolango", + Scope = "I", + Type = "L" + }, + new + { + Id = "ble", + ReferenceName = "Balanta-Kentohe", + Scope = "I", + Type = "L" + }, + new + { + Id = "blf", + ReferenceName = "Buol", + Scope = "I", + Type = "L" + }, + new + { + Id = "blg", + ReferenceName = "Balau", + Scope = "I", + Type = "L" + }, + new + { + Id = "blh", + ReferenceName = "Kuwaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bli", + ReferenceName = "Bolia", + Scope = "I", + Type = "L" + }, + new + { + Id = "blj", + ReferenceName = "Bolongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "blk", + ReferenceName = "Pa'o Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bll", + ReferenceName = "Biloxi", + Scope = "I", + Type = "E" + }, + new + { + Id = "blm", + ReferenceName = "Beli (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bln", + ReferenceName = "Southern Catanduanes Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "blo", + ReferenceName = "Anii", + Scope = "I", + Type = "L" + }, + new + { + Id = "blp", + ReferenceName = "Blablanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "blq", + ReferenceName = "Baluan-Pam", + Scope = "I", + Type = "L" + }, + new + { + Id = "blr", + ReferenceName = "Blang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bls", + ReferenceName = "Balaesang", + Scope = "I", + Type = "L" + }, + new + { + Id = "blt", + ReferenceName = "Tai Dam", + Scope = "I", + Type = "L" + }, + new + { + Id = "blv", + ReferenceName = "Kibala", + Scope = "I", + Type = "L" + }, + new + { + Id = "blw", + ReferenceName = "Balangao", + Scope = "I", + Type = "L" + }, + new + { + Id = "blx", + ReferenceName = "Mag-Indi Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "bly", + ReferenceName = "Notre", + Scope = "I", + Type = "L" + }, + new + { + Id = "blz", + ReferenceName = "Balantak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bma", + ReferenceName = "Lame", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmb", + ReferenceName = "Bembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmc", + ReferenceName = "Biem", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmd", + ReferenceName = "Baga Manduri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bme", + ReferenceName = "Limassa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmf", + ReferenceName = "Bom-Kim", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmg", + ReferenceName = "Bamwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmh", + ReferenceName = "Kein", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmi", + ReferenceName = "Bagirmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmj", + ReferenceName = "Bote-Majhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmk", + ReferenceName = "Ghayavi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bml", + ReferenceName = "Bomboli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmm", + ReferenceName = "Northern Betsimisaraka Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmn", + ReferenceName = "Bina (Papua New Guinea)", + Scope = "I", + Type = "E" + }, + new + { + Id = "bmo", + ReferenceName = "Bambalang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmp", + ReferenceName = "Bulgebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmq", + ReferenceName = "Bomu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmr", + ReferenceName = "Muinane", + Scope = "I", + Type = "L" + }, + new + { + Id = "bms", + ReferenceName = "Bilma Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmt", + ReferenceName = "Biao Mon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmu", + ReferenceName = "Somba-Siawari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmv", + ReferenceName = "Bum", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmw", + ReferenceName = "Bomwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmx", + ReferenceName = "Baimak", + Scope = "I", + Type = "L" + }, + new + { + Id = "bmz", + ReferenceName = "Baramu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bna", + ReferenceName = "Bonerate", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnb", + ReferenceName = "Bookan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnc", + ReferenceName = "Bontok", + Scope = "M", + Type = "L" + }, + new + { + Id = "bnd", + ReferenceName = "Banda (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bne", + ReferenceName = "Bintauna", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnf", + ReferenceName = "Masiwang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bng", + ReferenceName = "Benga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bni", + ReferenceName = "Bangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnj", + ReferenceName = "Eastern Tawbuid", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnk", + ReferenceName = "Bierebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnl", + ReferenceName = "Boon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnm", + ReferenceName = "Batanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnn", + ReferenceName = "Bunun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bno", + ReferenceName = "Bantoanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnp", + ReferenceName = "Bola", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnq", + ReferenceName = "Bantik", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnr", + ReferenceName = "Butmas-Tur", + Scope = "I", + Type = "L" + }, + new + { + Id = "bns", + ReferenceName = "Bundeli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnu", + ReferenceName = "Bentong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnv", + ReferenceName = "Bonerif", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnw", + ReferenceName = "Bisis", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnx", + ReferenceName = "Bangubangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bny", + ReferenceName = "Bintulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bnz", + ReferenceName = "Beezen", + Scope = "I", + Type = "L" + }, + new + { + Id = "boa", + ReferenceName = "Bora", + Scope = "I", + Type = "L" + }, + new + { + Id = "bob", + ReferenceName = "Aweer", + Scope = "I", + Type = "L" + }, + new + { + Id = "bod", + Part1 = "bo", + Part2B = "tib", + Part2T = "bod", + ReferenceName = "Tibetan", + Scope = "I", + Type = "L" + }, + new + { + Id = "boe", + ReferenceName = "Mundabli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bof", + ReferenceName = "Bolon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bog", + ReferenceName = "Bamako Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "boh", + ReferenceName = "Boma", + Scope = "I", + Type = "L" + }, + new + { + Id = "boi", + ReferenceName = "Barbareño", + Scope = "I", + Type = "E" + }, + new + { + Id = "boj", + ReferenceName = "Anjam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bok", + ReferenceName = "Bonjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bol", + ReferenceName = "Bole", + Scope = "I", + Type = "L" + }, + new + { + Id = "bom", + ReferenceName = "Berom", + Scope = "I", + Type = "L" + }, + new + { + Id = "bon", + ReferenceName = "Bine", + Scope = "I", + Type = "L" + }, + new + { + Id = "boo", + ReferenceName = "Tiemacèwè Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bop", + ReferenceName = "Bonkiman", + Scope = "I", + Type = "L" + }, + new + { + Id = "boq", + ReferenceName = "Bogaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bor", + ReferenceName = "Borôro", + Scope = "I", + Type = "L" + }, + new + { + Id = "bos", + Part1 = "bs", + Part2B = "bos", + Part2T = "bos", + ReferenceName = "Bosnian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bot", + ReferenceName = "Bongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bou", + ReferenceName = "Bondei", + Scope = "I", + Type = "L" + }, + new + { + Id = "bov", + ReferenceName = "Tuwuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bow", + ReferenceName = "Rema", + Scope = "I", + Type = "E" + }, + new + { + Id = "box", + ReferenceName = "Buamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "boy", + ReferenceName = "Bodo (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "boz", + ReferenceName = "Tiéyaxo Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpa", + ReferenceName = "Daakaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpb", + ReferenceName = "Barbacoas", + Scope = "I", + Type = "E" + }, + new + { + Id = "bpd", + ReferenceName = "Banda-Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpg", + ReferenceName = "Bonggo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bph", + ReferenceName = "Botlikh", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpi", + ReferenceName = "Bagupi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpj", + ReferenceName = "Binji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpk", + ReferenceName = "Orowe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpl", + ReferenceName = "Broome Pearling Lugger Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpm", + ReferenceName = "Biyom", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpn", + ReferenceName = "Dzao Min", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpo", + ReferenceName = "Anasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpp", + ReferenceName = "Kaure", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpq", + ReferenceName = "Banda Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpr", + ReferenceName = "Koronadal Blaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bps", + ReferenceName = "Sarangani Blaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpt", + ReferenceName = "Barrow Point", + Scope = "I", + Type = "E" + }, + new + { + Id = "bpu", + ReferenceName = "Bongu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpv", + ReferenceName = "Bian Marind", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpw", + ReferenceName = "Bo (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpx", + ReferenceName = "Palya Bareli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpy", + ReferenceName = "Bishnupriya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bpz", + ReferenceName = "Bilba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqa", + ReferenceName = "Tchumbuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqb", + ReferenceName = "Bagusa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqc", + ReferenceName = "Boko (Benin)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqd", + ReferenceName = "Bung", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqf", + ReferenceName = "Baga Kaloum", + Scope = "I", + Type = "E" + }, + new + { + Id = "bqg", + ReferenceName = "Bago-Kusuntu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqh", + ReferenceName = "Baima", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqi", + ReferenceName = "Bakhtiari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqj", + ReferenceName = "Bandial", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqk", + ReferenceName = "Banda-Mbrès", + Scope = "I", + Type = "L" + }, + new + { + Id = "bql", + ReferenceName = "Bilakura", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqm", + ReferenceName = "Wumboko", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqn", + ReferenceName = "Bulgarian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqo", + ReferenceName = "Balo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqp", + ReferenceName = "Busa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqq", + ReferenceName = "Biritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqr", + ReferenceName = "Burusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqs", + ReferenceName = "Bosngun", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqt", + ReferenceName = "Bamukumbit", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqu", + ReferenceName = "Boguru", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqv", + ReferenceName = "Koro Wachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqw", + ReferenceName = "Buru (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqx", + ReferenceName = "Baangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqy", + ReferenceName = "Bengkala Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bqz", + ReferenceName = "Bakaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bra", + Part2B = "bra", + Part2T = "bra", + ReferenceName = "Braj", + Scope = "I", + Type = "L" + }, + new + { + Id = "brb", + ReferenceName = "Lave", + Scope = "I", + Type = "L" + }, + new + { + Id = "brc", + ReferenceName = "Berbice Creole Dutch", + Scope = "I", + Type = "E" + }, + new + { + Id = "brd", + ReferenceName = "Baraamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bre", + Part1 = "br", + Part2B = "bre", + Part2T = "bre", + ReferenceName = "Breton", + Scope = "I", + Type = "L" + }, + new + { + Id = "brf", + ReferenceName = "Bera", + Scope = "I", + Type = "L" + }, + new + { + Id = "brg", + ReferenceName = "Baure", + Scope = "I", + Type = "L" + }, + new + { + Id = "brh", + ReferenceName = "Brahui", + Scope = "I", + Type = "L" + }, + new + { + Id = "bri", + ReferenceName = "Mokpwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "brj", + ReferenceName = "Bieria", + Scope = "I", + Type = "L" + }, + new + { + Id = "brk", + ReferenceName = "Birked", + Scope = "I", + Type = "E" + }, + new + { + Id = "brl", + ReferenceName = "Birwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "brm", + ReferenceName = "Barambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "brn", + ReferenceName = "Boruca", + Scope = "I", + Type = "L" + }, + new + { + Id = "bro", + ReferenceName = "Brokkat", + Scope = "I", + Type = "L" + }, + new + { + Id = "brp", + ReferenceName = "Barapasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "brq", + ReferenceName = "Breri", + Scope = "I", + Type = "L" + }, + new + { + Id = "brr", + ReferenceName = "Birao", + Scope = "I", + Type = "L" + }, + new + { + Id = "brs", + ReferenceName = "Baras", + Scope = "I", + Type = "L" + }, + new + { + Id = "brt", + ReferenceName = "Bitare", + Scope = "I", + Type = "L" + }, + new + { + Id = "bru", + ReferenceName = "Eastern Bru", + Scope = "I", + Type = "L" + }, + new + { + Id = "brv", + ReferenceName = "Western Bru", + Scope = "I", + Type = "L" + }, + new + { + Id = "brw", + ReferenceName = "Bellari", + Scope = "I", + Type = "L" + }, + new + { + Id = "brx", + ReferenceName = "Bodo (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bry", + ReferenceName = "Burui", + Scope = "I", + Type = "L" + }, + new + { + Id = "brz", + ReferenceName = "Bilbil", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsa", + ReferenceName = "Abinomn", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsb", + ReferenceName = "Brunei Bisaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsc", + ReferenceName = "Bassari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bse", + ReferenceName = "Wushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsf", + ReferenceName = "Bauchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsg", + ReferenceName = "Bashkardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsh", + ReferenceName = "Kati", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsi", + ReferenceName = "Bassossi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsj", + ReferenceName = "Bangwinji", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsk", + ReferenceName = "Burushaski", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsl", + ReferenceName = "Basa-Gumna", + Scope = "I", + Type = "E" + }, + new + { + Id = "bsm", + ReferenceName = "Busami", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsn", + ReferenceName = "Barasana-Eduria", + Scope = "I", + Type = "L" + }, + new + { + Id = "bso", + ReferenceName = "Buso", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsp", + ReferenceName = "Baga Sitemu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsq", + ReferenceName = "Bassa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsr", + ReferenceName = "Bassa-Kontagora", + Scope = "I", + Type = "L" + }, + new + { + Id = "bss", + ReferenceName = "Akoose", + Scope = "I", + Type = "L" + }, + new + { + Id = "bst", + ReferenceName = "Basketo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsu", + ReferenceName = "Bahonsuai", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsv", + ReferenceName = "Baga Sobané", + Scope = "I", + Type = "E" + }, + new + { + Id = "bsw", + ReferenceName = "Baiso", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsx", + ReferenceName = "Yangkam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bsy", + ReferenceName = "Sabah Bisaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bta", + ReferenceName = "Bata", + Scope = "I", + Type = "L" + }, + new + { + Id = "btc", + ReferenceName = "Bati (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "btd", + ReferenceName = "Batak Dairi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bte", + ReferenceName = "Gamo-Ningi", + Scope = "I", + Type = "E" + }, + new + { + Id = "btf", + ReferenceName = "Birgit", + Scope = "I", + Type = "L" + }, + new + { + Id = "btg", + ReferenceName = "Gagnoa Bété", + Scope = "I", + Type = "L" + }, + new + { + Id = "bth", + ReferenceName = "Biatah Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "bti", + ReferenceName = "Burate", + Scope = "I", + Type = "L" + }, + new + { + Id = "btj", + ReferenceName = "Bacanese Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "btm", + ReferenceName = "Batak Mandailing", + Scope = "I", + Type = "L" + }, + new + { + Id = "btn", + ReferenceName = "Ratagnon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bto", + ReferenceName = "Rinconada Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "btp", + ReferenceName = "Budibud", + Scope = "I", + Type = "L" + }, + new + { + Id = "btq", + ReferenceName = "Batek", + Scope = "I", + Type = "L" + }, + new + { + Id = "btr", + ReferenceName = "Baetora", + Scope = "I", + Type = "L" + }, + new + { + Id = "bts", + ReferenceName = "Batak Simalungun", + Scope = "I", + Type = "L" + }, + new + { + Id = "btt", + ReferenceName = "Bete-Bendi", + Scope = "I", + Type = "L" + }, + new + { + Id = "btu", + ReferenceName = "Batu", + Scope = "I", + Type = "L" + }, + new + { + Id = "btv", + ReferenceName = "Bateri", + Scope = "I", + Type = "L" + }, + new + { + Id = "btw", + ReferenceName = "Butuanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "btx", + ReferenceName = "Batak Karo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bty", + ReferenceName = "Bobot", + Scope = "I", + Type = "L" + }, + new + { + Id = "btz", + ReferenceName = "Batak Alas-Kluet", + Scope = "I", + Type = "L" + }, + new + { + Id = "bua", + Part2B = "bua", + Part2T = "bua", + ReferenceName = "Buriat", + Scope = "M", + Type = "L" + }, + new + { + Id = "bub", + ReferenceName = "Bua", + Scope = "I", + Type = "L" + }, + new + { + Id = "buc", + ReferenceName = "Bushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bud", + ReferenceName = "Ntcham", + Scope = "I", + Type = "L" + }, + new + { + Id = "bue", + ReferenceName = "Beothuk", + Scope = "I", + Type = "E" + }, + new + { + Id = "buf", + ReferenceName = "Bushoong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bug", + Part2B = "bug", + Part2T = "bug", + ReferenceName = "Buginese", + Scope = "I", + Type = "L" + }, + new + { + Id = "buh", + ReferenceName = "Younuo Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bui", + ReferenceName = "Bongili", + Scope = "I", + Type = "L" + }, + new + { + Id = "buj", + ReferenceName = "Basa-Gurmana", + Scope = "I", + Type = "L" + }, + new + { + Id = "buk", + ReferenceName = "Bugawac", + Scope = "I", + Type = "L" + }, + new + { + Id = "bul", + Part1 = "bg", + Part2B = "bul", + Part2T = "bul", + ReferenceName = "Bulgarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "bum", + ReferenceName = "Bulu (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bun", + ReferenceName = "Sherbro", + Scope = "I", + Type = "L" + }, + new + { + Id = "buo", + ReferenceName = "Terei", + Scope = "I", + Type = "L" + }, + new + { + Id = "bup", + ReferenceName = "Busoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "buq", + ReferenceName = "Brem", + Scope = "I", + Type = "L" + }, + new + { + Id = "bus", + ReferenceName = "Bokobaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "but", + ReferenceName = "Bungain", + Scope = "I", + Type = "L" + }, + new + { + Id = "buu", + ReferenceName = "Budu", + Scope = "I", + Type = "L" + }, + new + { + Id = "buv", + ReferenceName = "Bun", + Scope = "I", + Type = "L" + }, + new + { + Id = "buw", + ReferenceName = "Bubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bux", + ReferenceName = "Boghom", + Scope = "I", + Type = "L" + }, + new + { + Id = "buy", + ReferenceName = "Bullom So", + Scope = "I", + Type = "L" + }, + new + { + Id = "buz", + ReferenceName = "Bukwen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bva", + ReferenceName = "Barein", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvb", + ReferenceName = "Bube", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvc", + ReferenceName = "Baelelea", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvd", + ReferenceName = "Baeggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bve", + ReferenceName = "Berau Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvf", + ReferenceName = "Boor", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvg", + ReferenceName = "Bonkeng", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvh", + ReferenceName = "Bure", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvi", + ReferenceName = "Belanda Viri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvj", + ReferenceName = "Baan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvk", + ReferenceName = "Bukat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvl", + ReferenceName = "Bolivian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvm", + ReferenceName = "Bamunka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvn", + ReferenceName = "Buna", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvo", + ReferenceName = "Bolgo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvp", + ReferenceName = "Bumang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvq", + ReferenceName = "Birri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvr", + ReferenceName = "Burarra", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvt", + ReferenceName = "Bati (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvu", + ReferenceName = "Bukit Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvv", + ReferenceName = "Baniva", + Scope = "I", + Type = "E" + }, + new + { + Id = "bvw", + ReferenceName = "Boga", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvx", + ReferenceName = "Dibole", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvy", + ReferenceName = "Baybayanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "bvz", + ReferenceName = "Bauzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwa", + ReferenceName = "Bwatoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwb", + ReferenceName = "Namosi-Naitasiri-Serua", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwc", + ReferenceName = "Bwile", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwd", + ReferenceName = "Bwaidoka", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwe", + ReferenceName = "Bwe Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwf", + ReferenceName = "Boselewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwg", + ReferenceName = "Barwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwh", + ReferenceName = "Bishuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwi", + ReferenceName = "Baniwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwj", + ReferenceName = "Láá Láá Bwamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwk", + ReferenceName = "Bauwaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwl", + ReferenceName = "Bwela", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwm", + ReferenceName = "Biwat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwn", + ReferenceName = "Wunai Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwo", + ReferenceName = "Boro (Ethiopia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwp", + ReferenceName = "Mandobo Bawah", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwq", + ReferenceName = "Southern Bobo Madaré", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwr", + ReferenceName = "Bura-Pabir", + Scope = "I", + Type = "L" + }, + new + { + Id = "bws", + ReferenceName = "Bomboma", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwt", + ReferenceName = "Bafaw-Balong", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwu", + ReferenceName = "Buli (Ghana)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bww", + ReferenceName = "Bwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwx", + ReferenceName = "Bu-Nao Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwy", + ReferenceName = "Cwi Bwamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bwz", + ReferenceName = "Bwisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxa", + ReferenceName = "Tairaha", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxb", + ReferenceName = "Belanda Bor", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxc", + ReferenceName = "Molengue", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxd", + ReferenceName = "Pela", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxe", + ReferenceName = "Birale", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxf", + ReferenceName = "Bilur", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxg", + ReferenceName = "Bangala", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxh", + ReferenceName = "Buhutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxi", + ReferenceName = "Pirlatapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "bxj", + ReferenceName = "Bayungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxk", + ReferenceName = "Bukusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxl", + ReferenceName = "Jalkunan", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxm", + ReferenceName = "Mongolia Buriat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxn", + ReferenceName = "Burduna", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxo", + ReferenceName = "Barikanchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxp", + ReferenceName = "Bebil", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxq", + ReferenceName = "Beele", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxr", + ReferenceName = "Russia Buriat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxs", + ReferenceName = "Busam", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxu", + ReferenceName = "China Buriat", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxv", + ReferenceName = "Berakou", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxw", + ReferenceName = "Bankagooma", + Scope = "I", + Type = "L" + }, + new + { + Id = "bxz", + ReferenceName = "Binahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "bya", + ReferenceName = "Batak", + Scope = "I", + Type = "L" + }, + new + { + Id = "byb", + ReferenceName = "Bikya", + Scope = "I", + Type = "L" + }, + new + { + Id = "byc", + ReferenceName = "Ubaghara", + Scope = "I", + Type = "L" + }, + new + { + Id = "byd", + ReferenceName = "Benyadu'", + Scope = "I", + Type = "L" + }, + new + { + Id = "bye", + ReferenceName = "Pouye", + Scope = "I", + Type = "L" + }, + new + { + Id = "byf", + ReferenceName = "Bete", + Scope = "I", + Type = "L" + }, + new + { + Id = "byg", + ReferenceName = "Baygo", + Scope = "I", + Type = "E" + }, + new + { + Id = "byh", + ReferenceName = "Bhujel", + Scope = "I", + Type = "L" + }, + new + { + Id = "byi", + ReferenceName = "Buyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "byj", + ReferenceName = "Bina (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "byk", + ReferenceName = "Biao", + Scope = "I", + Type = "L" + }, + new + { + Id = "byl", + ReferenceName = "Bayono", + Scope = "I", + Type = "L" + }, + new + { + Id = "bym", + ReferenceName = "Bidjara", + Scope = "I", + Type = "L" + }, + new + { + Id = "byn", + Part2B = "byn", + Part2T = "byn", + ReferenceName = "Bilin", + Scope = "I", + Type = "L" + }, + new + { + Id = "byo", + ReferenceName = "Biyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "byp", + ReferenceName = "Bumaji", + Scope = "I", + Type = "L" + }, + new + { + Id = "byq", + ReferenceName = "Basay", + Scope = "I", + Type = "E" + }, + new + { + Id = "byr", + ReferenceName = "Baruya", + Scope = "I", + Type = "L" + }, + new + { + Id = "bys", + ReferenceName = "Burak", + Scope = "I", + Type = "L" + }, + new + { + Id = "byt", + ReferenceName = "Berti", + Scope = "I", + Type = "E" + }, + new + { + Id = "byv", + ReferenceName = "Medumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "byw", + ReferenceName = "Belhariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "byx", + ReferenceName = "Qaqet", + Scope = "I", + Type = "L" + }, + new + { + Id = "byz", + ReferenceName = "Banaro", + Scope = "I", + Type = "L" + }, + new + { + Id = "bza", + ReferenceName = "Bandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzb", + ReferenceName = "Andio", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzc", + ReferenceName = "Southern Betsimisaraka Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzd", + ReferenceName = "Bribri", + Scope = "I", + Type = "L" + }, + new + { + Id = "bze", + ReferenceName = "Jenaama Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzf", + ReferenceName = "Boikin", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzg", + ReferenceName = "Babuza", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzh", + ReferenceName = "Mapos Buang", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzi", + ReferenceName = "Bisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzj", + ReferenceName = "Belize Kriol English", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzk", + ReferenceName = "Nicaragua Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzl", + ReferenceName = "Boano (Sulawesi)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzm", + ReferenceName = "Bolondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzn", + ReferenceName = "Boano (Maluku)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzo", + ReferenceName = "Bozaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzp", + ReferenceName = "Kemberano", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzq", + ReferenceName = "Buli (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzr", + ReferenceName = "Biri", + Scope = "I", + Type = "E" + }, + new + { + Id = "bzs", + ReferenceName = "Brazilian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzt", + ReferenceName = "Brithenig", + Scope = "I", + Type = "C" + }, + new + { + Id = "bzu", + ReferenceName = "Burmeso", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzv", + ReferenceName = "Naami", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzw", + ReferenceName = "Basa (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzx", + ReferenceName = "Kɛlɛngaxo Bozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzy", + ReferenceName = "Obanliku", + Scope = "I", + Type = "L" + }, + new + { + Id = "bzz", + ReferenceName = "Evant", + Scope = "I", + Type = "L" + }, + new + { + Id = "caa", + ReferenceName = "Chortí", + Scope = "I", + Type = "L" + }, + new + { + Id = "cab", + ReferenceName = "Garifuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "cac", + ReferenceName = "Chuj", + Scope = "I", + Type = "L" + }, + new + { + Id = "cad", + Part2B = "cad", + Part2T = "cad", + ReferenceName = "Caddo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cae", + ReferenceName = "Lehar", + Scope = "I", + Type = "L" + }, + new + { + Id = "caf", + ReferenceName = "Southern Carrier", + Scope = "I", + Type = "L" + }, + new + { + Id = "cag", + ReferenceName = "Nivaclé", + Scope = "I", + Type = "L" + }, + new + { + Id = "cah", + ReferenceName = "Cahuarano", + Scope = "I", + Type = "L" + }, + new + { + Id = "caj", + ReferenceName = "Chané", + Scope = "I", + Type = "E" + }, + new + { + Id = "cak", + ReferenceName = "Kaqchikel", + Scope = "I", + Type = "L" + }, + new + { + Id = "cal", + ReferenceName = "Carolinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cam", + ReferenceName = "Cemuhî", + Scope = "I", + Type = "L" + }, + new + { + Id = "can", + ReferenceName = "Chambri", + Scope = "I", + Type = "L" + }, + new + { + Id = "cao", + ReferenceName = "Chácobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cap", + ReferenceName = "Chipaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "caq", + ReferenceName = "Car Nicobarese", + Scope = "I", + Type = "L" + }, + new + { + Id = "car", + Part2B = "car", + Part2T = "car", + ReferenceName = "Galibi Carib", + Scope = "I", + Type = "L" + }, + new + { + Id = "cas", + ReferenceName = "Tsimané", + Scope = "I", + Type = "L" + }, + new + { + Id = "cat", + Part1 = "ca", + Part2B = "cat", + Part2T = "cat", + ReferenceName = "Catalan", + Scope = "I", + Type = "L" + }, + new + { + Id = "cav", + ReferenceName = "Cavineña", + Scope = "I", + Type = "L" + }, + new + { + Id = "caw", + ReferenceName = "Callawalla", + Scope = "I", + Type = "L" + }, + new + { + Id = "cax", + ReferenceName = "Chiquitano", + Scope = "I", + Type = "L" + }, + new + { + Id = "cay", + ReferenceName = "Cayuga", + Scope = "I", + Type = "L" + }, + new + { + Id = "caz", + ReferenceName = "Canichana", + Scope = "I", + Type = "E" + }, + new + { + Id = "cbb", + ReferenceName = "Cabiyarí", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbc", + ReferenceName = "Carapana", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbd", + ReferenceName = "Carijona", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbg", + ReferenceName = "Chimila", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbi", + ReferenceName = "Chachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbj", + ReferenceName = "Ede Cabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbk", + ReferenceName = "Chavacano", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbl", + ReferenceName = "Bualkhaw Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbn", + ReferenceName = "Nyahkur", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbo", + ReferenceName = "Izora", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbq", + ReferenceName = "Tsucuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbr", + ReferenceName = "Cashibo-Cacataibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbs", + ReferenceName = "Cashinahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbt", + ReferenceName = "Chayahuita", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbu", + ReferenceName = "Candoshi-Shapra", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbv", + ReferenceName = "Cacua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cbw", + ReferenceName = "Kinabalian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cby", + ReferenceName = "Carabayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cca", + ReferenceName = "Cauca", + Scope = "I", + Type = "E" + }, + new + { + Id = "ccc", + ReferenceName = "Chamicuro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccd", + ReferenceName = "Cafundo Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "cce", + ReferenceName = "Chopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccg", + ReferenceName = "Samba Daka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cch", + ReferenceName = "Atsam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccj", + ReferenceName = "Kasanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccl", + ReferenceName = "Cutchi-Swahili", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccm", + ReferenceName = "Malaccan Creole Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "cco", + ReferenceName = "Comaltepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccp", + ReferenceName = "Chakma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ccr", + ReferenceName = "Cacaopera", + Scope = "I", + Type = "E" + }, + new + { + Id = "cda", + ReferenceName = "Choni", + Scope = "I", + Type = "L" + }, + new + { + Id = "cde", + ReferenceName = "Chenchu", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdf", + ReferenceName = "Chiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdg", + ReferenceName = "Chamari", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdh", + ReferenceName = "Chambeali", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdi", + ReferenceName = "Chodri", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdj", + ReferenceName = "Churahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdm", + ReferenceName = "Chepang", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdn", + ReferenceName = "Chaudangsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdo", + ReferenceName = "Min Dong Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdr", + ReferenceName = "Cinda-Regi-Tiyal", + Scope = "I", + Type = "L" + }, + new + { + Id = "cds", + ReferenceName = "Chadian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdy", + ReferenceName = "Chadong", + Scope = "I", + Type = "L" + }, + new + { + Id = "cdz", + ReferenceName = "Koda", + Scope = "I", + Type = "L" + }, + new + { + Id = "cea", + ReferenceName = "Lower Chehalis", + Scope = "I", + Type = "E" + }, + new + { + Id = "ceb", + Part2B = "ceb", + Part2T = "ceb", + ReferenceName = "Cebuano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ceg", + ReferenceName = "Chamacoco", + Scope = "I", + Type = "L" + }, + new + { + Id = "cek", + ReferenceName = "Eastern Khumi Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cen", + ReferenceName = "Cen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ces", + Part1 = "cs", + Part2B = "cze", + Part2T = "ces", + ReferenceName = "Czech", + Scope = "I", + Type = "L" + }, + new + { + Id = "cet", + ReferenceName = "Centúúm", + Scope = "I", + Type = "L" + }, + new + { + Id = "cey", + ReferenceName = "Ekai Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfa", + ReferenceName = "Dijim-Bwilim", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfd", + ReferenceName = "Cara", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfg", + ReferenceName = "Como Karim", + Scope = "I", + Type = "L" + }, + new + { + Id = "cfm", + ReferenceName = "Falam Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cga", + ReferenceName = "Changriwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cgc", + ReferenceName = "Kagayanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "cgg", + ReferenceName = "Chiga", + Scope = "I", + Type = "L" + }, + new + { + Id = "cgk", + ReferenceName = "Chocangacakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "cha", + Part1 = "ch", + Part2B = "cha", + Part2T = "cha", + ReferenceName = "Chamorro", + Scope = "I", + Type = "L" + }, + new + { + Id = "chb", + Part2B = "chb", + Part2T = "chb", + ReferenceName = "Chibcha", + Scope = "I", + Type = "E" + }, + new + { + Id = "chc", + ReferenceName = "Catawba", + Scope = "I", + Type = "E" + }, + new + { + Id = "chd", + ReferenceName = "Highland Oaxaca Chontal", + Scope = "I", + Type = "L" + }, + new + { + Id = "che", + Part1 = "ce", + Part2B = "che", + Part2T = "che", + ReferenceName = "Chechen", + Scope = "I", + Type = "L" + }, + new + { + Id = "chf", + ReferenceName = "Tabasco Chontal", + Scope = "I", + Type = "L" + }, + new + { + Id = "chg", + Part2B = "chg", + Part2T = "chg", + ReferenceName = "Chagatai", + Scope = "I", + Type = "E" + }, + new + { + Id = "chh", + ReferenceName = "Chinook", + Scope = "I", + Type = "E" + }, + new + { + Id = "chj", + ReferenceName = "Ojitlán Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "chk", + Part2B = "chk", + Part2T = "chk", + ReferenceName = "Chuukese", + Scope = "I", + Type = "L" + }, + new + { + Id = "chl", + ReferenceName = "Cahuilla", + Scope = "I", + Type = "L" + }, + new + { + Id = "chm", + Part2B = "chm", + Part2T = "chm", + ReferenceName = "Mari (Russia)", + Scope = "M", + Type = "L" + }, + new + { + Id = "chn", + Part2B = "chn", + Part2T = "chn", + ReferenceName = "Chinook jargon", + Scope = "I", + Type = "L" + }, + new + { + Id = "cho", + Part2B = "cho", + Part2T = "cho", + ReferenceName = "Choctaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "chp", + Part2B = "chp", + Part2T = "chp", + ReferenceName = "Chipewyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "chq", + ReferenceName = "Quiotepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "chr", + Part2B = "chr", + Part2T = "chr", + ReferenceName = "Cherokee", + Scope = "I", + Type = "L" + }, + new + { + Id = "cht", + ReferenceName = "Cholón", + Scope = "I", + Type = "E" + }, + new + { + Id = "chu", + Part1 = "cu", + Part2B = "chu", + Part2T = "chu", + ReferenceName = "Church Slavic", + Scope = "I", + Type = "A" + }, + new + { + Id = "chv", + Part1 = "cv", + Part2B = "chv", + Part2T = "chv", + ReferenceName = "Chuvash", + Scope = "I", + Type = "L" + }, + new + { + Id = "chw", + ReferenceName = "Chuwabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "chx", + ReferenceName = "Chantyal", + Scope = "I", + Type = "L" + }, + new + { + Id = "chy", + Part2B = "chy", + Part2T = "chy", + ReferenceName = "Cheyenne", + Scope = "I", + Type = "L" + }, + new + { + Id = "chz", + ReferenceName = "Ozumacín Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cia", + ReferenceName = "Cia-Cia", + Scope = "I", + Type = "L" + }, + new + { + Id = "cib", + ReferenceName = "Ci Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "cic", + ReferenceName = "Chickasaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "cid", + ReferenceName = "Chimariko", + Scope = "I", + Type = "E" + }, + new + { + Id = "cie", + ReferenceName = "Cineni", + Scope = "I", + Type = "L" + }, + new + { + Id = "cih", + ReferenceName = "Chinali", + Scope = "I", + Type = "L" + }, + new + { + Id = "cik", + ReferenceName = "Chitkuli Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "cim", + ReferenceName = "Cimbrian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cin", + ReferenceName = "Cinta Larga", + Scope = "I", + Type = "L" + }, + new + { + Id = "cip", + ReferenceName = "Chiapanec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cir", + ReferenceName = "Tiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ciw", + ReferenceName = "Chippewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ciy", + ReferenceName = "Chaima", + Scope = "I", + Type = "L" + }, + new + { + Id = "cja", + ReferenceName = "Western Cham", + Scope = "I", + Type = "L" + }, + new + { + Id = "cje", + ReferenceName = "Chru", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjh", + ReferenceName = "Upper Chehalis", + Scope = "I", + Type = "E" + }, + new + { + Id = "cji", + ReferenceName = "Chamalal", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjk", + ReferenceName = "Chokwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjm", + ReferenceName = "Eastern Cham", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjn", + ReferenceName = "Chenapian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjo", + ReferenceName = "Ashéninka Pajonal", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjp", + ReferenceName = "Cabécar", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjs", + ReferenceName = "Shor", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjv", + ReferenceName = "Chuave", + Scope = "I", + Type = "L" + }, + new + { + Id = "cjy", + ReferenceName = "Jinyu Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckb", + ReferenceName = "Central Kurdish", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckh", + ReferenceName = "Chak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckl", + ReferenceName = "Cibak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckn", + ReferenceName = "Kaang Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cko", + ReferenceName = "Anufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckq", + ReferenceName = "Kajakse", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckr", + ReferenceName = "Kairak", + Scope = "I", + Type = "L" + }, + new + { + Id = "cks", + ReferenceName = "Tayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckt", + ReferenceName = "Chukot", + Scope = "I", + Type = "L" + }, + new + { + Id = "cku", + ReferenceName = "Koasati", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckv", + ReferenceName = "Kavalan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckx", + ReferenceName = "Caka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cky", + ReferenceName = "Cakfem-Mushere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ckz", + ReferenceName = "Cakchiquel-Quiché Mixed Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cla", + ReferenceName = "Ron", + Scope = "I", + Type = "L" + }, + new + { + Id = "clc", + ReferenceName = "Chilcotin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cld", + ReferenceName = "Chaldean Neo-Aramaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "cle", + ReferenceName = "Lealao Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "clh", + ReferenceName = "Chilisso", + Scope = "I", + Type = "L" + }, + new + { + Id = "cli", + ReferenceName = "Chakali", + Scope = "I", + Type = "L" + }, + new + { + Id = "clj", + ReferenceName = "Laitu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "clk", + ReferenceName = "Idu-Mishmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "cll", + ReferenceName = "Chala", + Scope = "I", + Type = "L" + }, + new + { + Id = "clm", + ReferenceName = "Clallam", + Scope = "I", + Type = "L" + }, + new + { + Id = "clo", + ReferenceName = "Lowland Oaxaca Chontal", + Scope = "I", + Type = "L" + }, + new + { + Id = "clt", + ReferenceName = "Lautu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "clu", + ReferenceName = "Caluyanun", + Scope = "I", + Type = "L" + }, + new + { + Id = "clw", + ReferenceName = "Chulym", + Scope = "I", + Type = "L" + }, + new + { + Id = "cly", + ReferenceName = "Eastern Highland Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cma", + ReferenceName = "Maa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cme", + ReferenceName = "Cerma", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmg", + ReferenceName = "Classical Mongolian", + Scope = "I", + Type = "H" + }, + new + { + Id = "cmi", + ReferenceName = "Emberá-Chamí", + Scope = "I", + Type = "L" + }, + new + { + Id = "cml", + ReferenceName = "Campalagian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmm", + ReferenceName = "Michigamea", + Scope = "I", + Type = "E" + }, + new + { + Id = "cmn", + ReferenceName = "Mandarin Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmo", + ReferenceName = "Central Mnong", + Scope = "I", + Type = "L" + }, + new + { + Id = "cmr", + ReferenceName = "Mro-Khimi Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cms", + ReferenceName = "Messapic", + Scope = "I", + Type = "A" + }, + new + { + Id = "cmt", + ReferenceName = "Camtho", + Scope = "I", + Type = "L" + }, + new + { + Id = "cna", + ReferenceName = "Changthang", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnb", + ReferenceName = "Chinbon Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnc", + ReferenceName = "Côông", + Scope = "I", + Type = "L" + }, + new + { + Id = "cng", + ReferenceName = "Northern Qiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnh", + ReferenceName = "Hakha Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cni", + ReferenceName = "Asháninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnk", + ReferenceName = "Khumi Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnl", + ReferenceName = "Lalana Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cno", + ReferenceName = "Con", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnr", + Part2B = "cnr", + Part2T = "cnr", + ReferenceName = "Montenegrin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cns", + ReferenceName = "Central Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnt", + ReferenceName = "Tepetotutla Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnu", + ReferenceName = "Chenoua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnw", + ReferenceName = "Ngawn Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cnx", + ReferenceName = "Middle Cornish", + Scope = "I", + Type = "H" + }, + new + { + Id = "coa", + ReferenceName = "Cocos Islands Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "cob", + ReferenceName = "Chicomuceltec", + Scope = "I", + Type = "E" + }, + new + { + Id = "coc", + ReferenceName = "Cocopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cod", + ReferenceName = "Cocama-Cocamilla", + Scope = "I", + Type = "L" + }, + new + { + Id = "coe", + ReferenceName = "Koreguaje", + Scope = "I", + Type = "L" + }, + new + { + Id = "cof", + ReferenceName = "Colorado", + Scope = "I", + Type = "L" + }, + new + { + Id = "cog", + ReferenceName = "Chong", + Scope = "I", + Type = "L" + }, + new + { + Id = "coh", + ReferenceName = "Chonyi-Dzihana-Kauma", + Scope = "I", + Type = "L" + }, + new + { + Id = "coj", + ReferenceName = "Cochimi", + Scope = "I", + Type = "E" + }, + new + { + Id = "cok", + ReferenceName = "Santa Teresa Cora", + Scope = "I", + Type = "L" + }, + new + { + Id = "col", + ReferenceName = "Columbia-Wenatchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "com", + ReferenceName = "Comanche", + Scope = "I", + Type = "L" + }, + new + { + Id = "con", + ReferenceName = "Cofán", + Scope = "I", + Type = "L" + }, + new + { + Id = "coo", + ReferenceName = "Comox", + Scope = "I", + Type = "L" + }, + new + { + Id = "cop", + Part2B = "cop", + Part2T = "cop", + ReferenceName = "Coptic", + Scope = "I", + Type = "E" + }, + new + { + Id = "coq", + ReferenceName = "Coquille", + Scope = "I", + Type = "E" + }, + new + { + Id = "cor", + Part1 = "kw", + Part2B = "cor", + Part2T = "cor", + ReferenceName = "Cornish", + Scope = "I", + Type = "L" + }, + new + { + Id = "cos", + Part1 = "co", + Part2B = "cos", + Part2T = "cos", + ReferenceName = "Corsican", + Scope = "I", + Type = "L" + }, + new + { + Id = "cot", + ReferenceName = "Caquinte", + Scope = "I", + Type = "L" + }, + new + { + Id = "cou", + ReferenceName = "Wamey", + Scope = "I", + Type = "L" + }, + new + { + Id = "cov", + ReferenceName = "Cao Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "cow", + ReferenceName = "Cowlitz", + Scope = "I", + Type = "E" + }, + new + { + Id = "cox", + ReferenceName = "Nanti", + Scope = "I", + Type = "L" + }, + new + { + Id = "coz", + ReferenceName = "Chochotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpa", + ReferenceName = "Palantla Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpb", + ReferenceName = "Ucayali-Yurúa Ashéninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpc", + ReferenceName = "Ajyíninka Apurucayali", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpg", + ReferenceName = "Cappadocian Greek", + Scope = "I", + Type = "E" + }, + new + { + Id = "cpi", + ReferenceName = "Chinese Pidgin English", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpn", + ReferenceName = "Cherepon", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpo", + ReferenceName = "Kpeego", + Scope = "I", + Type = "L" + }, + new + { + Id = "cps", + ReferenceName = "Capiznon", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpu", + ReferenceName = "Pichis Ashéninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpx", + ReferenceName = "Pu-Xian Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "cpy", + ReferenceName = "South Ucayali Ashéninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cqd", + ReferenceName = "Chuanqiandian Cluster Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "cra", + ReferenceName = "Chara", + Scope = "I", + Type = "L" + }, + new + { + Id = "crb", + ReferenceName = "Island Carib", + Scope = "I", + Type = "E" + }, + new + { + Id = "crc", + ReferenceName = "Lonwolwol", + Scope = "I", + Type = "L" + }, + new + { + Id = "crd", + ReferenceName = "Coeur d'Alene", + Scope = "I", + Type = "L" + }, + new + { + Id = "cre", + Part1 = "cr", + Part2B = "cre", + Part2T = "cre", + ReferenceName = "Cree", + Scope = "M", + Type = "L" + }, + new + { + Id = "crf", + ReferenceName = "Caramanta", + Scope = "I", + Type = "E" + }, + new + { + Id = "crg", + ReferenceName = "Michif", + Scope = "I", + Type = "L" + }, + new + { + Id = "crh", + Part2B = "crh", + Part2T = "crh", + ReferenceName = "Crimean Tatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "cri", + ReferenceName = "Sãotomense", + Scope = "I", + Type = "L" + }, + new + { + Id = "crj", + ReferenceName = "Southern East Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crk", + ReferenceName = "Plains Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crl", + ReferenceName = "Northern East Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crm", + ReferenceName = "Moose Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "crn", + ReferenceName = "El Nayar Cora", + Scope = "I", + Type = "L" + }, + new + { + Id = "cro", + ReferenceName = "Crow", + Scope = "I", + Type = "L" + }, + new + { + Id = "crq", + ReferenceName = "Iyo'wujwa Chorote", + Scope = "I", + Type = "L" + }, + new + { + Id = "crr", + ReferenceName = "Carolina Algonquian", + Scope = "I", + Type = "E" + }, + new + { + Id = "crs", + ReferenceName = "Seselwa Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "crt", + ReferenceName = "Iyojwa'ja Chorote", + Scope = "I", + Type = "L" + }, + new + { + Id = "crv", + ReferenceName = "Chaura", + Scope = "I", + Type = "L" + }, + new + { + Id = "crw", + ReferenceName = "Chrau", + Scope = "I", + Type = "L" + }, + new + { + Id = "crx", + ReferenceName = "Carrier", + Scope = "I", + Type = "L" + }, + new + { + Id = "cry", + ReferenceName = "Cori", + Scope = "I", + Type = "L" + }, + new + { + Id = "crz", + ReferenceName = "Cruzeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "csa", + ReferenceName = "Chiltepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "csb", + Part2B = "csb", + Part2T = "csb", + ReferenceName = "Kashubian", + Scope = "I", + Type = "L" + }, + new + { + Id = "csc", + ReferenceName = "Catalan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csd", + ReferenceName = "Chiangmai Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cse", + ReferenceName = "Czech Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csf", + ReferenceName = "Cuba Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csg", + ReferenceName = "Chilean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csh", + ReferenceName = "Asho Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csi", + ReferenceName = "Coast Miwok", + Scope = "I", + Type = "E" + }, + new + { + Id = "csj", + ReferenceName = "Songlai Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csk", + ReferenceName = "Jola-Kasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "csl", + ReferenceName = "Chinese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csm", + ReferenceName = "Central Sierra Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "csn", + ReferenceName = "Colombian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "cso", + ReferenceName = "Sochiapam Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "csq", + ReferenceName = "Croatia Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "csr", + ReferenceName = "Costa Rican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "css", + ReferenceName = "Southern Ohlone", + Scope = "I", + Type = "E" + }, + new + { + Id = "cst", + ReferenceName = "Northern Ohlone", + Scope = "I", + Type = "L" + }, + new + { + Id = "csv", + ReferenceName = "Sumtu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csw", + ReferenceName = "Swampy Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "csy", + ReferenceName = "Siyin Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "csz", + ReferenceName = "Coos", + Scope = "I", + Type = "L" + }, + new + { + Id = "cta", + ReferenceName = "Tataltepec Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctc", + ReferenceName = "Chetco", + Scope = "I", + Type = "E" + }, + new + { + Id = "ctd", + ReferenceName = "Tedim Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "cte", + ReferenceName = "Tepinapa Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctg", + ReferenceName = "Chittagonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "cth", + ReferenceName = "Thaiphum Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctl", + ReferenceName = "Tlacoatzintepec Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctm", + ReferenceName = "Chitimacha", + Scope = "I", + Type = "E" + }, + new + { + Id = "ctn", + ReferenceName = "Chhintange", + Scope = "I", + Type = "L" + }, + new + { + Id = "cto", + ReferenceName = "Emberá-Catío", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctp", + ReferenceName = "Western Highland Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cts", + ReferenceName = "Northern Catanduanes Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctt", + ReferenceName = "Wayanad Chetti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctu", + ReferenceName = "Chol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ctz", + ReferenceName = "Zacatepec Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cua", + ReferenceName = "Cua", + Scope = "I", + Type = "L" + }, + new + { + Id = "cub", + ReferenceName = "Cubeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuc", + ReferenceName = "Usila Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cug", + ReferenceName = "Chungmboko", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuh", + ReferenceName = "Chuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "cui", + ReferenceName = "Cuiba", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuj", + ReferenceName = "Mashco Piro", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuk", + ReferenceName = "San Blas Kuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "cul", + ReferenceName = "Culina", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuo", + ReferenceName = "Cumanagoto", + Scope = "I", + Type = "E" + }, + new + { + Id = "cup", + ReferenceName = "Cupeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "cuq", + ReferenceName = "Cun", + Scope = "I", + Type = "L" + }, + new + { + Id = "cur", + ReferenceName = "Chhulung", + Scope = "I", + Type = "L" + }, + new + { + Id = "cut", + ReferenceName = "Teutila Cuicatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuu", + ReferenceName = "Tai Ya", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuv", + ReferenceName = "Cuvok", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuw", + ReferenceName = "Chukwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cux", + ReferenceName = "Tepeuxila Cuicatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cuy", + ReferenceName = "Cuitlatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cvg", + ReferenceName = "Chug", + Scope = "I", + Type = "L" + }, + new + { + Id = "cvn", + ReferenceName = "Valle Nacional Chinantec", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwa", + ReferenceName = "Kabwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwb", + ReferenceName = "Maindo", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwd", + ReferenceName = "Woods Cree", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwe", + ReferenceName = "Kwere", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwg", + ReferenceName = "Chewong", + Scope = "I", + Type = "L" + }, + new + { + Id = "cwt", + ReferenceName = "Kuwaataay", + Scope = "I", + Type = "L" + }, + new + { + Id = "cya", + ReferenceName = "Nopala Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "cyb", + ReferenceName = "Cayubaba", + Scope = "I", + Type = "E" + }, + new + { + Id = "cym", + Part1 = "cy", + Part2B = "wel", + Part2T = "cym", + ReferenceName = "Welsh", + Scope = "I", + Type = "L" + }, + new + { + Id = "cyo", + ReferenceName = "Cuyonon", + Scope = "I", + Type = "L" + }, + new + { + Id = "czh", + ReferenceName = "Huizhou Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "czk", + ReferenceName = "Knaanic", + Scope = "I", + Type = "E" + }, + new + { + Id = "czn", + ReferenceName = "Zenzontepec Chatino", + Scope = "I", + Type = "L" + }, + new + { + Id = "czo", + ReferenceName = "Min Zhong Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "czt", + ReferenceName = "Zotung Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "daa", + ReferenceName = "Dangaléat", + Scope = "I", + Type = "L" + }, + new + { + Id = "dac", + ReferenceName = "Dambi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dad", + ReferenceName = "Marik", + Scope = "I", + Type = "L" + }, + new + { + Id = "dae", + ReferenceName = "Duupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dag", + ReferenceName = "Dagbani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dah", + ReferenceName = "Gwahatike", + Scope = "I", + Type = "L" + }, + new + { + Id = "dai", + ReferenceName = "Day", + Scope = "I", + Type = "L" + }, + new + { + Id = "daj", + ReferenceName = "Dar Fur Daju", + Scope = "I", + Type = "L" + }, + new + { + Id = "dak", + Part2B = "dak", + Part2T = "dak", + ReferenceName = "Dakota", + Scope = "I", + Type = "L" + }, + new + { + Id = "dal", + ReferenceName = "Dahalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dam", + ReferenceName = "Damakawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dan", + Part1 = "da", + Part2B = "dan", + Part2T = "dan", + ReferenceName = "Danish", + Scope = "I", + Type = "L" + }, + new + { + Id = "dao", + ReferenceName = "Daai Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "daq", + ReferenceName = "Dandami Maria", + Scope = "I", + Type = "L" + }, + new + { + Id = "dar", + Part2B = "dar", + Part2T = "dar", + ReferenceName = "Dargwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "das", + ReferenceName = "Daho-Doo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dau", + ReferenceName = "Dar Sila Daju", + Scope = "I", + Type = "L" + }, + new + { + Id = "dav", + ReferenceName = "Taita", + Scope = "I", + Type = "L" + }, + new + { + Id = "daw", + ReferenceName = "Davawenyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dax", + ReferenceName = "Dayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "daz", + ReferenceName = "Dao", + Scope = "I", + Type = "L" + }, + new + { + Id = "dba", + ReferenceName = "Bangime", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbb", + ReferenceName = "Deno", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbd", + ReferenceName = "Dadiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbe", + ReferenceName = "Dabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbf", + ReferenceName = "Edopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbg", + ReferenceName = "Dogul Dom Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbi", + ReferenceName = "Doka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbj", + ReferenceName = "Ida'an", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbl", + ReferenceName = "Dyirbal", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbm", + ReferenceName = "Duguri", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbn", + ReferenceName = "Duriankere", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbo", + ReferenceName = "Dulbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbp", + ReferenceName = "Duwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbq", + ReferenceName = "Daba", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbr", + ReferenceName = "Dabarre", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbt", + ReferenceName = "Ben Tey Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbu", + ReferenceName = "Bondum Dom Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbv", + ReferenceName = "Dungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dbw", + ReferenceName = "Bankan Tey Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dby", + ReferenceName = "Dibiyaso", + Scope = "I", + Type = "L" + }, + new + { + Id = "dcc", + ReferenceName = "Deccan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dcr", + ReferenceName = "Negerhollands", + Scope = "I", + Type = "E" + }, + new + { + Id = "dda", + ReferenceName = "Dadi Dadi", + Scope = "I", + Type = "E" + }, + new + { + Id = "ddd", + ReferenceName = "Dongotono", + Scope = "I", + Type = "L" + }, + new + { + Id = "dde", + ReferenceName = "Doondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddg", + ReferenceName = "Fataluku", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddi", + ReferenceName = "West Goodenough", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddj", + ReferenceName = "Jaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddn", + ReferenceName = "Dendi (Benin)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddo", + ReferenceName = "Dido", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddr", + ReferenceName = "Dhudhuroa", + Scope = "I", + Type = "E" + }, + new + { + Id = "dds", + ReferenceName = "Donno So Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ddw", + ReferenceName = "Dawera-Daweloor", + Scope = "I", + Type = "L" + }, + new + { + Id = "dec", + ReferenceName = "Dagik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ded", + ReferenceName = "Dedua", + Scope = "I", + Type = "L" + }, + new + { + Id = "dee", + ReferenceName = "Dewoin", + Scope = "I", + Type = "L" + }, + new + { + Id = "def", + ReferenceName = "Dezfuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "deg", + ReferenceName = "Degema", + Scope = "I", + Type = "L" + }, + new + { + Id = "deh", + ReferenceName = "Dehwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "dei", + ReferenceName = "Demisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dek", + ReferenceName = "Dek", + Scope = "I", + Type = "L" + }, + new + { + Id = "del", + Part2B = "del", + Part2T = "del", + ReferenceName = "Delaware", + Scope = "M", + Type = "L" + }, + new + { + Id = "dem", + ReferenceName = "Dem", + Scope = "I", + Type = "L" + }, + new + { + Id = "den", + Part2B = "den", + Part2T = "den", + ReferenceName = "Slave (Athapascan)", + Scope = "M", + Type = "L" + }, + new + { + Id = "dep", + ReferenceName = "Pidgin Delaware", + Scope = "I", + Type = "E" + }, + new + { + Id = "deq", + ReferenceName = "Dendi (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "der", + ReferenceName = "Deori", + Scope = "I", + Type = "L" + }, + new + { + Id = "des", + ReferenceName = "Desano", + Scope = "I", + Type = "L" + }, + new + { + Id = "deu", + Part1 = "de", + Part2B = "ger", + Part2T = "deu", + ReferenceName = "German", + Scope = "I", + Type = "L" + }, + new + { + Id = "dev", + ReferenceName = "Domung", + Scope = "I", + Type = "L" + }, + new + { + Id = "dez", + ReferenceName = "Dengese", + Scope = "I", + Type = "L" + }, + new + { + Id = "dga", + ReferenceName = "Southern Dagaare", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgb", + ReferenceName = "Bunoge Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgc", + ReferenceName = "Casiguran Dumagat Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgd", + ReferenceName = "Dagaari Dioula", + Scope = "I", + Type = "L" + }, + new + { + Id = "dge", + ReferenceName = "Degenan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgg", + ReferenceName = "Doga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgh", + ReferenceName = "Dghwede", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgi", + ReferenceName = "Northern Dagara", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgk", + ReferenceName = "Dagba", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgl", + ReferenceName = "Andaandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgn", + ReferenceName = "Dagoman", + Scope = "I", + Type = "E" + }, + new + { + Id = "dgo", + ReferenceName = "Dogri (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgr", + Part2B = "dgr", + Part2T = "dgr", + ReferenceName = "Dogrib", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgs", + ReferenceName = "Dogoso", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgt", + ReferenceName = "Ndra'ngith", + Scope = "I", + Type = "E" + }, + new + { + Id = "dgu", + ReferenceName = "Degaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgw", + ReferenceName = "Daungwurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "dgx", + ReferenceName = "Doghoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "dgz", + ReferenceName = "Daga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhd", + ReferenceName = "Dhundari", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhg", + ReferenceName = "Dhangu-Djangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhi", + ReferenceName = "Dhimal", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhl", + ReferenceName = "Dhalandji", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhm", + ReferenceName = "Zemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhn", + ReferenceName = "Dhanki", + Scope = "I", + Type = "L" + }, + new + { + Id = "dho", + ReferenceName = "Dhodia", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhr", + ReferenceName = "Dhargari", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhs", + ReferenceName = "Dhaiso", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhu", + ReferenceName = "Dhurga", + Scope = "I", + Type = "E" + }, + new + { + Id = "dhv", + ReferenceName = "Dehu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhw", + ReferenceName = "Dhanwar (Nepal)", + Scope = "I", + Type = "L" + }, + new + { + Id = "dhx", + ReferenceName = "Dhungaloo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dia", + ReferenceName = "Dia", + Scope = "I", + Type = "L" + }, + new + { + Id = "dib", + ReferenceName = "South Central Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dic", + ReferenceName = "Lakota Dida", + Scope = "I", + Type = "L" + }, + new + { + Id = "did", + ReferenceName = "Didinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dif", + ReferenceName = "Dieri", + Scope = "I", + Type = "E" + }, + new + { + Id = "dig", + ReferenceName = "Digo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dih", + ReferenceName = "Kumiai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dii", + ReferenceName = "Dimbong", + Scope = "I", + Type = "L" + }, + new + { + Id = "dij", + ReferenceName = "Dai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dik", + ReferenceName = "Southwestern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dil", + ReferenceName = "Dilling", + Scope = "I", + Type = "L" + }, + new + { + Id = "dim", + ReferenceName = "Dime", + Scope = "I", + Type = "L" + }, + new + { + Id = "din", + Part2B = "din", + Part2T = "din", + ReferenceName = "Dinka", + Scope = "M", + Type = "L" + }, + new + { + Id = "dio", + ReferenceName = "Dibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dip", + ReferenceName = "Northeastern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "diq", + ReferenceName = "Dimli (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "dir", + ReferenceName = "Dirim", + Scope = "I", + Type = "L" + }, + new + { + Id = "dis", + ReferenceName = "Dimasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "diu", + ReferenceName = "Diriku", + Scope = "I", + Type = "L" + }, + new + { + Id = "div", + Part1 = "dv", + Part2B = "div", + Part2T = "div", + ReferenceName = "Dhivehi", + Scope = "I", + Type = "L" + }, + new + { + Id = "diw", + ReferenceName = "Northwestern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dix", + ReferenceName = "Dixon Reef", + Scope = "I", + Type = "L" + }, + new + { + Id = "diy", + ReferenceName = "Diuwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "diz", + ReferenceName = "Ding", + Scope = "I", + Type = "L" + }, + new + { + Id = "dja", + ReferenceName = "Djadjawurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "djb", + ReferenceName = "Djinba", + Scope = "I", + Type = "L" + }, + new + { + Id = "djc", + ReferenceName = "Dar Daju Daju", + Scope = "I", + Type = "L" + }, + new + { + Id = "djd", + ReferenceName = "Djamindjung", + Scope = "I", + Type = "L" + }, + new + { + Id = "dje", + ReferenceName = "Zarma", + Scope = "I", + Type = "L" + }, + new + { + Id = "djf", + ReferenceName = "Djangun", + Scope = "I", + Type = "E" + }, + new + { + Id = "dji", + ReferenceName = "Djinang", + Scope = "I", + Type = "L" + }, + new + { + Id = "djj", + ReferenceName = "Djeebbana", + Scope = "I", + Type = "L" + }, + new + { + Id = "djk", + ReferenceName = "Eastern Maroon Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "djm", + ReferenceName = "Jamsay Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "djn", + ReferenceName = "Jawoyn", + Scope = "I", + Type = "L" + }, + new + { + Id = "djo", + ReferenceName = "Jangkang", + Scope = "I", + Type = "L" + }, + new + { + Id = "djr", + ReferenceName = "Djambarrpuyngu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dju", + ReferenceName = "Kapriman", + Scope = "I", + Type = "L" + }, + new + { + Id = "djw", + ReferenceName = "Djawi", + Scope = "I", + Type = "E" + }, + new + { + Id = "dka", + ReferenceName = "Dakpakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "dkk", + ReferenceName = "Dakka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dkr", + ReferenceName = "Kuijau", + Scope = "I", + Type = "L" + }, + new + { + Id = "dks", + ReferenceName = "Southeastern Dinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dkx", + ReferenceName = "Mazagway", + Scope = "I", + Type = "L" + }, + new + { + Id = "dlg", + ReferenceName = "Dolgan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dlk", + ReferenceName = "Dahalik", + Scope = "I", + Type = "L" + }, + new + { + Id = "dlm", + ReferenceName = "Dalmatian", + Scope = "I", + Type = "E" + }, + new + { + Id = "dln", + ReferenceName = "Darlong", + Scope = "I", + Type = "L" + }, + new + { + Id = "dma", + ReferenceName = "Duma", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmb", + ReferenceName = "Mombo Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmc", + ReferenceName = "Gavak", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmd", + ReferenceName = "Madhi Madhi", + Scope = "I", + Type = "E" + }, + new + { + Id = "dme", + ReferenceName = "Dugwor", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmg", + ReferenceName = "Upper Kinabatangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmk", + ReferenceName = "Domaaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "dml", + ReferenceName = "Dameli", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmm", + ReferenceName = "Dama", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmo", + ReferenceName = "Kemedzung", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmr", + ReferenceName = "East Damar", + Scope = "I", + Type = "L" + }, + new + { + Id = "dms", + ReferenceName = "Dampelas", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmu", + ReferenceName = "Dubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmv", + ReferenceName = "Dumpas", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmw", + ReferenceName = "Mudburra", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmx", + ReferenceName = "Dema", + Scope = "I", + Type = "L" + }, + new + { + Id = "dmy", + ReferenceName = "Demta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dna", + ReferenceName = "Upper Grand Valley Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnd", + ReferenceName = "Daonda", + Scope = "I", + Type = "L" + }, + new + { + Id = "dne", + ReferenceName = "Ndendeule", + Scope = "I", + Type = "L" + }, + new + { + Id = "dng", + ReferenceName = "Dungan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dni", + ReferenceName = "Lower Grand Valley Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnj", + ReferenceName = "Dan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnk", + ReferenceName = "Dengka", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnn", + ReferenceName = "Dzùùngoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dno", + ReferenceName = "Ndrulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnr", + ReferenceName = "Danaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnt", + ReferenceName = "Mid Grand Valley Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnu", + ReferenceName = "Danau", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnv", + ReferenceName = "Danu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dnw", + ReferenceName = "Western Dani", + Scope = "I", + Type = "L" + }, + new + { + Id = "dny", + ReferenceName = "Dení", + Scope = "I", + Type = "L" + }, + new + { + Id = "doa", + ReferenceName = "Dom", + Scope = "I", + Type = "L" + }, + new + { + Id = "dob", + ReferenceName = "Dobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "doc", + ReferenceName = "Northern Dong", + Scope = "I", + Type = "L" + }, + new + { + Id = "doe", + ReferenceName = "Doe", + Scope = "I", + Type = "L" + }, + new + { + Id = "dof", + ReferenceName = "Domu", + Scope = "I", + Type = "L" + }, + new + { + Id = "doh", + ReferenceName = "Dong", + Scope = "I", + Type = "L" + }, + new + { + Id = "doi", + Part2B = "doi", + Part2T = "doi", + ReferenceName = "Dogri (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "dok", + ReferenceName = "Dondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dol", + ReferenceName = "Doso", + Scope = "I", + Type = "L" + }, + new + { + Id = "don", + ReferenceName = "Toura (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "doo", + ReferenceName = "Dongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dop", + ReferenceName = "Lukpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "doq", + ReferenceName = "Dominican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "dor", + ReferenceName = "Dori'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "dos", + ReferenceName = "Dogosé", + Scope = "I", + Type = "L" + }, + new + { + Id = "dot", + ReferenceName = "Dass", + Scope = "I", + Type = "L" + }, + new + { + Id = "dov", + ReferenceName = "Dombe", + Scope = "I", + Type = "L" + }, + new + { + Id = "dow", + ReferenceName = "Doyayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dox", + ReferenceName = "Bussa", + Scope = "I", + Type = "L" + }, + new + { + Id = "doy", + ReferenceName = "Dompo", + Scope = "I", + Type = "L" + }, + new + { + Id = "doz", + ReferenceName = "Dorze", + Scope = "I", + Type = "L" + }, + new + { + Id = "dpp", + ReferenceName = "Papar", + Scope = "I", + Type = "L" + }, + new + { + Id = "drb", + ReferenceName = "Dair", + Scope = "I", + Type = "L" + }, + new + { + Id = "drc", + ReferenceName = "Minderico", + Scope = "I", + Type = "L" + }, + new + { + Id = "drd", + ReferenceName = "Darmiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dre", + ReferenceName = "Dolpo", + Scope = "I", + Type = "L" + }, + new + { + Id = "drg", + ReferenceName = "Rungus", + Scope = "I", + Type = "L" + }, + new + { + Id = "dri", + ReferenceName = "C'Lela", + Scope = "I", + Type = "L" + }, + new + { + Id = "drl", + ReferenceName = "Paakantyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "drn", + ReferenceName = "West Damar", + Scope = "I", + Type = "L" + }, + new + { + Id = "dro", + ReferenceName = "Daro-Matu Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "drq", + ReferenceName = "Dura", + Scope = "I", + Type = "E" + }, + new + { + Id = "drr", + ReferenceName = "Dororo", + Scope = "I", + Type = "E" + }, + new + { + Id = "drs", + ReferenceName = "Gedeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "drt", + ReferenceName = "Drents", + Scope = "I", + Type = "L" + }, + new + { + Id = "dru", + ReferenceName = "Rukai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dry", + ReferenceName = "Darai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsb", + Part2B = "dsb", + Part2T = "dsb", + ReferenceName = "Lower Sorbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "dse", + ReferenceName = "Dutch Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsh", + ReferenceName = "Daasanach", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsi", + ReferenceName = "Disa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsl", + ReferenceName = "Danish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsn", + ReferenceName = "Dusner", + Scope = "I", + Type = "E" + }, + new + { + Id = "dso", + ReferenceName = "Desiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dsq", + ReferenceName = "Tadaksahak", + Scope = "I", + Type = "L" + }, + new + { + Id = "dta", + ReferenceName = "Daur", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtb", + ReferenceName = "Labuk-Kinabatangan Kadazan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtd", + ReferenceName = "Ditidaht", + Scope = "I", + Type = "L" + }, + new + { + Id = "dth", + ReferenceName = "Adithinngithigh", + Scope = "I", + Type = "E" + }, + new + { + Id = "dti", + ReferenceName = "Ana Tinga Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtk", + ReferenceName = "Tene Kan Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtm", + ReferenceName = "Tomo Kan Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtn", + ReferenceName = "Daatsʼíin", + Scope = "I", + Type = "L" + }, + new + { + Id = "dto", + ReferenceName = "Tommo So Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtp", + ReferenceName = "Kadazan Dusun", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtr", + ReferenceName = "Lotud", + Scope = "I", + Type = "L" + }, + new + { + Id = "dts", + ReferenceName = "Toro So Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtt", + ReferenceName = "Toro Tegu Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dtu", + ReferenceName = "Tebul Ure Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dty", + ReferenceName = "Dotyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "dua", + Part2B = "dua", + Part2T = "dua", + ReferenceName = "Duala", + Scope = "I", + Type = "L" + }, + new + { + Id = "dub", + ReferenceName = "Dubli", + Scope = "I", + Type = "L" + }, + new + { + Id = "duc", + ReferenceName = "Duna", + Scope = "I", + Type = "L" + }, + new + { + Id = "due", + ReferenceName = "Umiray Dumaget Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "duf", + ReferenceName = "Dumbea", + Scope = "I", + Type = "L" + }, + new + { + Id = "dug", + ReferenceName = "Duruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "duh", + ReferenceName = "Dungra Bhil", + Scope = "I", + Type = "L" + }, + new + { + Id = "dui", + ReferenceName = "Dumun", + Scope = "I", + Type = "L" + }, + new + { + Id = "duk", + ReferenceName = "Uyajitaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dul", + ReferenceName = "Alabat Island Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dum", + Part2B = "dum", + Part2T = "dum", + ReferenceName = "Middle Dutch (ca. 1050-1350)", + Scope = "I", + Type = "H" + }, + new + { + Id = "dun", + ReferenceName = "Dusun Deyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "duo", + ReferenceName = "Dupaninan Agta", + Scope = "I", + Type = "L" + }, + new + { + Id = "dup", + ReferenceName = "Duano", + Scope = "I", + Type = "L" + }, + new + { + Id = "duq", + ReferenceName = "Dusun Malang", + Scope = "I", + Type = "L" + }, + new + { + Id = "dur", + ReferenceName = "Dii", + Scope = "I", + Type = "L" + }, + new + { + Id = "dus", + ReferenceName = "Dumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "duu", + ReferenceName = "Drung", + Scope = "I", + Type = "L" + }, + new + { + Id = "duv", + ReferenceName = "Duvle", + Scope = "I", + Type = "L" + }, + new + { + Id = "duw", + ReferenceName = "Dusun Witu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dux", + ReferenceName = "Duungooma", + Scope = "I", + Type = "L" + }, + new + { + Id = "duy", + ReferenceName = "Dicamay Agta", + Scope = "I", + Type = "E" + }, + new + { + Id = "duz", + ReferenceName = "Duli-Gey", + Scope = "I", + Type = "E" + }, + new + { + Id = "dva", + ReferenceName = "Duau", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwa", + ReferenceName = "Diri", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwr", + ReferenceName = "Dawro", + Scope = "I", + Type = "L" + }, + new + { + Id = "dws", + ReferenceName = "Dutton World Speedwords", + Scope = "I", + Type = "C" + }, + new + { + Id = "dwu", + ReferenceName = "Dhuwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "dww", + ReferenceName = "Dawawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwy", + ReferenceName = "Dhuwaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "dwz", + ReferenceName = "Dewas Rai", + Scope = "I", + Type = "L" + }, + new + { + Id = "dya", + ReferenceName = "Dyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyb", + ReferenceName = "Dyaberdyaber", + Scope = "I", + Type = "E" + }, + new + { + Id = "dyd", + ReferenceName = "Dyugun", + Scope = "I", + Type = "E" + }, + new + { + Id = "dyg", + ReferenceName = "Villa Viciosa Agta", + Scope = "I", + Type = "E" + }, + new + { + Id = "dyi", + ReferenceName = "Djimini Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "dym", + ReferenceName = "Yanda Dom Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyn", + ReferenceName = "Dyangadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyo", + ReferenceName = "Jola-Fonyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyu", + Part2B = "dyu", + Part2T = "dyu", + ReferenceName = "Dyula", + Scope = "I", + Type = "L" + }, + new + { + Id = "dyy", + ReferenceName = "Djabugay", + Scope = "I", + Type = "L" + }, + new + { + Id = "dza", + ReferenceName = "Tunzu", + Scope = "I", + Type = "L" + }, + new + { + Id = "dze", + ReferenceName = "Djiwarli", + Scope = "I", + Type = "E" + }, + new + { + Id = "dzg", + ReferenceName = "Dazaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "dzl", + ReferenceName = "Dzalakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "dzn", + ReferenceName = "Dzando", + Scope = "I", + Type = "L" + }, + new + { + Id = "dzo", + Part1 = "dz", + Part2B = "dzo", + Part2T = "dzo", + ReferenceName = "Dzongkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "eaa", + ReferenceName = "Karenggapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "ebg", + ReferenceName = "Ebughu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebk", + ReferenceName = "Eastern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebo", + ReferenceName = "Teke-Ebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebr", + ReferenceName = "Ebrié", + Scope = "I", + Type = "L" + }, + new + { + Id = "ebu", + ReferenceName = "Embu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ecr", + ReferenceName = "Eteocretan", + Scope = "I", + Type = "A" + }, + new + { + Id = "ecs", + ReferenceName = "Ecuadorian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ecy", + ReferenceName = "Eteocypriot", + Scope = "I", + Type = "A" + }, + new + { + Id = "eee", + ReferenceName = "E", + Scope = "I", + Type = "L" + }, + new + { + Id = "efa", + ReferenceName = "Efai", + Scope = "I", + Type = "L" + }, + new + { + Id = "efe", + ReferenceName = "Efe", + Scope = "I", + Type = "L" + }, + new + { + Id = "efi", + Part2B = "efi", + Part2T = "efi", + ReferenceName = "Efik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ega", + ReferenceName = "Ega", + Scope = "I", + Type = "L" + }, + new + { + Id = "egl", + ReferenceName = "Emilian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ego", + ReferenceName = "Eggon", + Scope = "I", + Type = "L" + }, + new + { + Id = "egy", + Part2B = "egy", + Part2T = "egy", + ReferenceName = "Egyptian (Ancient)", + Scope = "I", + Type = "A" + }, + new + { + Id = "ehu", + ReferenceName = "Ehueun", + Scope = "I", + Type = "L" + }, + new + { + Id = "eip", + ReferenceName = "Eipomek", + Scope = "I", + Type = "L" + }, + new + { + Id = "eit", + ReferenceName = "Eitiep", + Scope = "I", + Type = "L" + }, + new + { + Id = "eiv", + ReferenceName = "Askopan", + Scope = "I", + Type = "L" + }, + new + { + Id = "eja", + ReferenceName = "Ejamat", + Scope = "I", + Type = "L" + }, + new + { + Id = "eka", + Part2B = "eka", + Part2T = "eka", + ReferenceName = "Ekajuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekc", + ReferenceName = "Eastern Karnic", + Scope = "I", + Type = "E" + }, + new + { + Id = "eke", + ReferenceName = "Ekit", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekg", + ReferenceName = "Ekari", + Scope = "I", + Type = "L" + }, + new + { + Id = "eki", + ReferenceName = "Eki", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekk", + ReferenceName = "Standard Estonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekl", + ReferenceName = "Kol (Bangladesh)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekm", + ReferenceName = "Elip", + Scope = "I", + Type = "L" + }, + new + { + Id = "eko", + ReferenceName = "Koti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekp", + ReferenceName = "Ekpeye", + Scope = "I", + Type = "L" + }, + new + { + Id = "ekr", + ReferenceName = "Yace", + Scope = "I", + Type = "L" + }, + new + { + Id = "eky", + ReferenceName = "Eastern Kayah", + Scope = "I", + Type = "L" + }, + new + { + Id = "ele", + ReferenceName = "Elepi", + Scope = "I", + Type = "L" + }, + new + { + Id = "elh", + ReferenceName = "El Hugeirat", + Scope = "I", + Type = "L" + }, + new + { + Id = "eli", + ReferenceName = "Nding", + Scope = "I", + Type = "E" + }, + new + { + Id = "elk", + ReferenceName = "Elkei", + Scope = "I", + Type = "L" + }, + new + { + Id = "ell", + Part1 = "el", + Part2B = "gre", + Part2T = "ell", + ReferenceName = "Modern Greek (1453-)", + Scope = "I", + Type = "L" + }, + new + { + Id = "elm", + ReferenceName = "Eleme", + Scope = "I", + Type = "L" + }, + new + { + Id = "elo", + ReferenceName = "El Molo", + Scope = "I", + Type = "L" + }, + new + { + Id = "elu", + ReferenceName = "Elu", + Scope = "I", + Type = "L" + }, + new + { + Id = "elx", + Part2B = "elx", + Part2T = "elx", + ReferenceName = "Elamite", + Scope = "I", + Type = "A" + }, + new + { + Id = "ema", + ReferenceName = "Emai-Iuleha-Ora", + Scope = "I", + Type = "L" + }, + new + { + Id = "emb", + ReferenceName = "Embaloh", + Scope = "I", + Type = "L" + }, + new + { + Id = "eme", + ReferenceName = "Emerillon", + Scope = "I", + Type = "L" + }, + new + { + Id = "emg", + ReferenceName = "Eastern Meohang", + Scope = "I", + Type = "L" + }, + new + { + Id = "emi", + ReferenceName = "Mussau-Emira", + Scope = "I", + Type = "L" + }, + new + { + Id = "emk", + ReferenceName = "Eastern Maninkakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "emm", + ReferenceName = "Mamulique", + Scope = "I", + Type = "E" + }, + new + { + Id = "emn", + ReferenceName = "Eman", + Scope = "I", + Type = "L" + }, + new + { + Id = "emp", + ReferenceName = "Northern Emberá", + Scope = "I", + Type = "L" + }, + new + { + Id = "ems", + ReferenceName = "Pacific Gulf Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "emu", + ReferenceName = "Eastern Muria", + Scope = "I", + Type = "L" + }, + new + { + Id = "emw", + ReferenceName = "Emplawas", + Scope = "I", + Type = "L" + }, + new + { + Id = "emx", + ReferenceName = "Erromintxela", + Scope = "I", + Type = "L" + }, + new + { + Id = "emy", + ReferenceName = "Epigraphic Mayan", + Scope = "I", + Type = "A" + }, + new + { + Id = "ena", + ReferenceName = "Apali", + Scope = "I", + Type = "L" + }, + new + { + Id = "enb", + ReferenceName = "Markweeta", + Scope = "I", + Type = "L" + }, + new + { + Id = "enc", + ReferenceName = "En", + Scope = "I", + Type = "L" + }, + new + { + Id = "end", + ReferenceName = "Ende", + Scope = "I", + Type = "L" + }, + new + { + Id = "enf", + ReferenceName = "Forest Enets", + Scope = "I", + Type = "L" + }, + new + { + Id = "eng", + Part1 = "en", + Part2B = "eng", + Part2T = "eng", + ReferenceName = "English", + Scope = "I", + Type = "L" + }, + new + { + Id = "enh", + ReferenceName = "Tundra Enets", + Scope = "I", + Type = "L" + }, + new + { + Id = "enl", + ReferenceName = "Enlhet", + Scope = "I", + Type = "L" + }, + new + { + Id = "enm", + Part2B = "enm", + Part2T = "enm", + ReferenceName = "Middle English (1100-1500)", + Scope = "I", + Type = "H" + }, + new + { + Id = "enn", + ReferenceName = "Engenni", + Scope = "I", + Type = "L" + }, + new + { + Id = "eno", + ReferenceName = "Enggano", + Scope = "I", + Type = "L" + }, + new + { + Id = "enq", + ReferenceName = "Enga", + Scope = "I", + Type = "L" + }, + new + { + Id = "enr", + ReferenceName = "Emumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "enu", + ReferenceName = "Enu", + Scope = "I", + Type = "L" + }, + new + { + Id = "env", + ReferenceName = "Enwan (Edu State)", + Scope = "I", + Type = "L" + }, + new + { + Id = "enw", + ReferenceName = "Enwan (Akwa Ibom State)", + Scope = "I", + Type = "L" + }, + new + { + Id = "enx", + ReferenceName = "Enxet", + Scope = "I", + Type = "L" + }, + new + { + Id = "eot", + ReferenceName = "Beti (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "epi", + ReferenceName = "Epie", + Scope = "I", + Type = "L" + }, + new + { + Id = "epo", + Part1 = "eo", + Part2B = "epo", + Part2T = "epo", + ReferenceName = "Esperanto", + Scope = "I", + Type = "C" + }, + new + { + Id = "era", + ReferenceName = "Eravallan", + Scope = "I", + Type = "L" + }, + new + { + Id = "erg", + ReferenceName = "Sie", + Scope = "I", + Type = "L" + }, + new + { + Id = "erh", + ReferenceName = "Eruwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "eri", + ReferenceName = "Ogea", + Scope = "I", + Type = "L" + }, + new + { + Id = "erk", + ReferenceName = "South Efate", + Scope = "I", + Type = "L" + }, + new + { + Id = "ero", + ReferenceName = "Horpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "err", + ReferenceName = "Erre", + Scope = "I", + Type = "E" + }, + new + { + Id = "ers", + ReferenceName = "Ersu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ert", + ReferenceName = "Eritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "erw", + ReferenceName = "Erokwanas", + Scope = "I", + Type = "L" + }, + new + { + Id = "ese", + ReferenceName = "Ese Ejja", + Scope = "I", + Type = "L" + }, + new + { + Id = "esg", + ReferenceName = "Aheri Gondi", + Scope = "I", + Type = "L" + }, + new + { + Id = "esh", + ReferenceName = "Eshtehardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "esi", + ReferenceName = "North Alaskan Inupiatun", + Scope = "I", + Type = "L" + }, + new + { + Id = "esk", + ReferenceName = "Northwest Alaska Inupiatun", + Scope = "I", + Type = "L" + }, + new + { + Id = "esl", + ReferenceName = "Egypt Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "esm", + ReferenceName = "Esuma", + Scope = "I", + Type = "E" + }, + new + { + Id = "esn", + ReferenceName = "Salvadoran Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "eso", + ReferenceName = "Estonian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "esq", + ReferenceName = "Esselen", + Scope = "I", + Type = "E" + }, + new + { + Id = "ess", + ReferenceName = "Central Siberian Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "est", + Part1 = "et", + Part2B = "est", + Part2T = "est", + ReferenceName = "Estonian", + Scope = "M", + Type = "L" + }, + new + { + Id = "esu", + ReferenceName = "Central Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "esy", + ReferenceName = "Eskayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "etb", + ReferenceName = "Etebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "etc", + ReferenceName = "Etchemin", + Scope = "I", + Type = "E" + }, + new + { + Id = "eth", + ReferenceName = "Ethiopian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "etn", + ReferenceName = "Eton (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "eto", + ReferenceName = "Eton (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "etr", + ReferenceName = "Edolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ets", + ReferenceName = "Yekhee", + Scope = "I", + Type = "L" + }, + new + { + Id = "ett", + ReferenceName = "Etruscan", + Scope = "I", + Type = "A" + }, + new + { + Id = "etu", + ReferenceName = "Ejagham", + Scope = "I", + Type = "L" + }, + new + { + Id = "etx", + ReferenceName = "Eten", + Scope = "I", + Type = "L" + }, + new + { + Id = "etz", + ReferenceName = "Semimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "eus", + Part1 = "eu", + Part2B = "baq", + Part2T = "eus", + ReferenceName = "Basque", + Scope = "I", + Type = "L" + }, + new + { + Id = "eve", + ReferenceName = "Even", + Scope = "I", + Type = "L" + }, + new + { + Id = "evh", + ReferenceName = "Uvbie", + Scope = "I", + Type = "L" + }, + new + { + Id = "evn", + ReferenceName = "Evenki", + Scope = "I", + Type = "L" + }, + new + { + Id = "ewe", + Part1 = "ee", + Part2B = "ewe", + Part2T = "ewe", + ReferenceName = "Ewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ewo", + Part2B = "ewo", + Part2T = "ewo", + ReferenceName = "Ewondo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ext", + ReferenceName = "Extremaduran", + Scope = "I", + Type = "L" + }, + new + { + Id = "eya", + ReferenceName = "Eyak", + Scope = "I", + Type = "E" + }, + new + { + Id = "eyo", + ReferenceName = "Keiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "eza", + ReferenceName = "Ezaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "eze", + ReferenceName = "Uzekwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "faa", + ReferenceName = "Fasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fab", + ReferenceName = "Fa d'Ambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fad", + ReferenceName = "Wagi", + Scope = "I", + Type = "L" + }, + new + { + Id = "faf", + ReferenceName = "Fagani", + Scope = "I", + Type = "L" + }, + new + { + Id = "fag", + ReferenceName = "Finongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "fah", + ReferenceName = "Baissa Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fai", + ReferenceName = "Faiwol", + Scope = "I", + Type = "L" + }, + new + { + Id = "faj", + ReferenceName = "Faita", + Scope = "I", + Type = "L" + }, + new + { + Id = "fak", + ReferenceName = "Fang (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "fal", + ReferenceName = "South Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fam", + ReferenceName = "Fam", + Scope = "I", + Type = "L" + }, + new + { + Id = "fan", + Part2B = "fan", + Part2T = "fan", + ReferenceName = "Fang (Equatorial Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "fao", + Part1 = "fo", + Part2B = "fao", + Part2T = "fao", + ReferenceName = "Faroese", + Scope = "I", + Type = "L" + }, + new + { + Id = "fap", + ReferenceName = "Paloor", + Scope = "I", + Type = "L" + }, + new + { + Id = "far", + ReferenceName = "Fataleka", + Scope = "I", + Type = "L" + }, + new + { + Id = "fas", + Part1 = "fa", + Part2B = "per", + Part2T = "fas", + ReferenceName = "Persian", + Scope = "M", + Type = "L" + }, + new + { + Id = "fat", + Part2B = "fat", + Part2T = "fat", + ReferenceName = "Fanti", + Scope = "I", + Type = "L" + }, + new + { + Id = "fau", + ReferenceName = "Fayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fax", + ReferenceName = "Fala", + Scope = "I", + Type = "L" + }, + new + { + Id = "fay", + ReferenceName = "Southwestern Fars", + Scope = "I", + Type = "L" + }, + new + { + Id = "faz", + ReferenceName = "Northwestern Fars", + Scope = "I", + Type = "L" + }, + new + { + Id = "fbl", + ReferenceName = "West Albay Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "fcs", + ReferenceName = "Quebec Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fer", + ReferenceName = "Feroge", + Scope = "I", + Type = "L" + }, + new + { + Id = "ffi", + ReferenceName = "Foia Foia", + Scope = "I", + Type = "L" + }, + new + { + Id = "ffm", + ReferenceName = "Maasina Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fgr", + ReferenceName = "Fongoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "fia", + ReferenceName = "Nobiin", + Scope = "I", + Type = "L" + }, + new + { + Id = "fie", + ReferenceName = "Fyer", + Scope = "I", + Type = "L" + }, + new + { + Id = "fij", + Part1 = "fj", + Part2B = "fij", + Part2T = "fij", + ReferenceName = "Fijian", + Scope = "I", + Type = "L" + }, + new + { + Id = "fil", + Part2B = "fil", + Part2T = "fil", + ReferenceName = "Filipino", + Scope = "I", + Type = "L" + }, + new + { + Id = "fin", + Part1 = "fi", + Part2B = "fin", + Part2T = "fin", + ReferenceName = "Finnish", + Scope = "I", + Type = "L" + }, + new + { + Id = "fip", + ReferenceName = "Fipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "fir", + ReferenceName = "Firan", + Scope = "I", + Type = "L" + }, + new + { + Id = "fit", + ReferenceName = "Tornedalen Finnish", + Scope = "I", + Type = "L" + }, + new + { + Id = "fiw", + ReferenceName = "Fiwaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "fkk", + ReferenceName = "Kirya-Konzəl", + Scope = "I", + Type = "L" + }, + new + { + Id = "fkv", + ReferenceName = "Kven Finnish", + Scope = "I", + Type = "L" + }, + new + { + Id = "fla", + ReferenceName = "Kalispel-Pend d'Oreille", + Scope = "I", + Type = "L" + }, + new + { + Id = "flh", + ReferenceName = "Foau", + Scope = "I", + Type = "L" + }, + new + { + Id = "fli", + ReferenceName = "Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fll", + ReferenceName = "North Fali", + Scope = "I", + Type = "L" + }, + new + { + Id = "fln", + ReferenceName = "Flinders Island", + Scope = "I", + Type = "E" + }, + new + { + Id = "flr", + ReferenceName = "Fuliiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "fly", + ReferenceName = "Flaaitaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "fmp", + ReferenceName = "Fe'fe'", + Scope = "I", + Type = "L" + }, + new + { + Id = "fmu", + ReferenceName = "Far Western Muria", + Scope = "I", + Type = "L" + }, + new + { + Id = "fnb", + ReferenceName = "Fanbak", + Scope = "I", + Type = "L" + }, + new + { + Id = "fng", + ReferenceName = "Fanagalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "fni", + ReferenceName = "Fania", + Scope = "I", + Type = "L" + }, + new + { + Id = "fod", + ReferenceName = "Foodo", + Scope = "I", + Type = "L" + }, + new + { + Id = "foi", + ReferenceName = "Foi", + Scope = "I", + Type = "L" + }, + new + { + Id = "fom", + ReferenceName = "Foma", + Scope = "I", + Type = "L" + }, + new + { + Id = "fon", + Part2B = "fon", + Part2T = "fon", + ReferenceName = "Fon", + Scope = "I", + Type = "L" + }, + new + { + Id = "for", + ReferenceName = "Fore", + Scope = "I", + Type = "L" + }, + new + { + Id = "fos", + ReferenceName = "Siraya", + Scope = "I", + Type = "E" + }, + new + { + Id = "fpe", + ReferenceName = "Fernando Po Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "fqs", + ReferenceName = "Fas", + Scope = "I", + Type = "L" + }, + new + { + Id = "fra", + Part1 = "fr", + Part2B = "fre", + Part2T = "fra", + ReferenceName = "French", + Scope = "I", + Type = "L" + }, + new + { + Id = "frc", + ReferenceName = "Cajun French", + Scope = "I", + Type = "L" + }, + new + { + Id = "frd", + ReferenceName = "Fordata", + Scope = "I", + Type = "L" + }, + new + { + Id = "frk", + ReferenceName = "Frankish", + Scope = "I", + Type = "H" + }, + new + { + Id = "frm", + Part2B = "frm", + Part2T = "frm", + ReferenceName = "Middle French (ca. 1400-1600)", + Scope = "I", + Type = "H" + }, + new + { + Id = "fro", + Part2B = "fro", + Part2T = "fro", + ReferenceName = "Old French (842-ca. 1400)", + Scope = "I", + Type = "H" + }, + new + { + Id = "frp", + ReferenceName = "Arpitan", + Scope = "I", + Type = "L" + }, + new + { + Id = "frq", + ReferenceName = "Forak", + Scope = "I", + Type = "L" + }, + new + { + Id = "frr", + Part2B = "frr", + Part2T = "frr", + ReferenceName = "Northern Frisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "frs", + Part2B = "frs", + Part2T = "frs", + ReferenceName = "Eastern Frisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "frt", + ReferenceName = "Fortsenal", + Scope = "I", + Type = "L" + }, + new + { + Id = "fry", + Part1 = "fy", + Part2B = "fry", + Part2T = "fry", + ReferenceName = "Western Frisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "fse", + ReferenceName = "Finnish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fsl", + ReferenceName = "French Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fss", + ReferenceName = "Finland-Swedish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "fub", + ReferenceName = "Adamawa Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuc", + ReferenceName = "Pulaar", + Scope = "I", + Type = "L" + }, + new + { + Id = "fud", + ReferenceName = "East Futuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "fue", + ReferenceName = "Borgu Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuf", + ReferenceName = "Pular", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuh", + ReferenceName = "Western Niger Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fui", + ReferenceName = "Bagirmi Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuj", + ReferenceName = "Ko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ful", + Part1 = "ff", + Part2B = "ful", + Part2T = "ful", + ReferenceName = "Fulah", + Scope = "M", + Type = "L" + }, + new + { + Id = "fum", + ReferenceName = "Fum", + Scope = "I", + Type = "L" + }, + new + { + Id = "fun", + ReferenceName = "Fulniô", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuq", + ReferenceName = "Central-Eastern Niger Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fur", + Part2B = "fur", + Part2T = "fur", + ReferenceName = "Friulian", + Scope = "I", + Type = "L" + }, + new + { + Id = "fut", + ReferenceName = "Futuna-Aniwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuu", + ReferenceName = "Furu", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuv", + ReferenceName = "Nigerian Fulfulde", + Scope = "I", + Type = "L" + }, + new + { + Id = "fuy", + ReferenceName = "Fuyug", + Scope = "I", + Type = "L" + }, + new + { + Id = "fvr", + ReferenceName = "Fur", + Scope = "I", + Type = "L" + }, + new + { + Id = "fwa", + ReferenceName = "Fwâi", + Scope = "I", + Type = "L" + }, + new + { + Id = "fwe", + ReferenceName = "Fwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaa", + Part2B = "gaa", + Part2T = "gaa", + ReferenceName = "Ga", + Scope = "I", + Type = "L" + }, + new + { + Id = "gab", + ReferenceName = "Gabri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gac", + ReferenceName = "Mixed Great Andamanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "gad", + ReferenceName = "Gaddang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gae", + ReferenceName = "Guarequena", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaf", + ReferenceName = "Gende", + Scope = "I", + Type = "L" + }, + new + { + Id = "gag", + ReferenceName = "Gagauz", + Scope = "I", + Type = "L" + }, + new + { + Id = "gah", + ReferenceName = "Alekano", + Scope = "I", + Type = "L" + }, + new + { + Id = "gai", + ReferenceName = "Borei", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaj", + ReferenceName = "Gadsup", + Scope = "I", + Type = "L" + }, + new + { + Id = "gak", + ReferenceName = "Gamkonora", + Scope = "I", + Type = "L" + }, + new + { + Id = "gal", + ReferenceName = "Galolen", + Scope = "I", + Type = "L" + }, + new + { + Id = "gam", + ReferenceName = "Kandawo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gan", + ReferenceName = "Gan Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "gao", + ReferenceName = "Gants", + Scope = "I", + Type = "L" + }, + new + { + Id = "gap", + ReferenceName = "Gal", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaq", + ReferenceName = "Gata'", + Scope = "I", + Type = "L" + }, + new + { + Id = "gar", + ReferenceName = "Galeya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gas", + ReferenceName = "Adiwasi Garasia", + Scope = "I", + Type = "L" + }, + new + { + Id = "gat", + ReferenceName = "Kenati", + Scope = "I", + Type = "L" + }, + new + { + Id = "gau", + ReferenceName = "Mudhili Gadaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaw", + ReferenceName = "Nobonob", + Scope = "I", + Type = "L" + }, + new + { + Id = "gax", + ReferenceName = "Borana-Arsi-Guji Oromo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gay", + Part2B = "gay", + Part2T = "gay", + ReferenceName = "Gayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gaz", + ReferenceName = "West Central Oromo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gba", + Part2B = "gba", + Part2T = "gba", + ReferenceName = "Gbaya (Central African Republic)", + Scope = "M", + Type = "L" + }, + new + { + Id = "gbb", + ReferenceName = "Kaytetye", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbd", + ReferenceName = "Karajarri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbe", + ReferenceName = "Niksek", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbf", + ReferenceName = "Gaikundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbg", + ReferenceName = "Gbanziri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbh", + ReferenceName = "Defi Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbi", + ReferenceName = "Galela", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbj", + ReferenceName = "Bodo Gadaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbk", + ReferenceName = "Gaddi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbl", + ReferenceName = "Gamit", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbm", + ReferenceName = "Garhwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbn", + ReferenceName = "Mo'da", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbo", + ReferenceName = "Northern Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbp", + ReferenceName = "Gbaya-Bossangoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbq", + ReferenceName = "Gbaya-Bozoum", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbr", + ReferenceName = "Gbagyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbs", + ReferenceName = "Gbesi Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbu", + ReferenceName = "Gagadu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbv", + ReferenceName = "Gbanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbw", + ReferenceName = "Gabi-Gabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbx", + ReferenceName = "Eastern Xwla Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gby", + ReferenceName = "Gbari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gbz", + ReferenceName = "Zoroastrian Dari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcc", + ReferenceName = "Mali", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcd", + ReferenceName = "Ganggalida", + Scope = "I", + Type = "E" + }, + new + { + Id = "gce", + ReferenceName = "Galice", + Scope = "I", + Type = "E" + }, + new + { + Id = "gcf", + ReferenceName = "Guadeloupean Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcl", + ReferenceName = "Grenadian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcn", + ReferenceName = "Gaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "gcr", + ReferenceName = "Guianese Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "gct", + ReferenceName = "Colonia Tovar German", + Scope = "I", + Type = "L" + }, + new + { + Id = "gda", + ReferenceName = "Gade Lohar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdb", + ReferenceName = "Pottangi Ollar Gadaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdc", + ReferenceName = "Gugu Badhun", + Scope = "I", + Type = "E" + }, + new + { + Id = "gdd", + ReferenceName = "Gedaged", + Scope = "I", + Type = "L" + }, + new + { + Id = "gde", + ReferenceName = "Gude", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdf", + ReferenceName = "Guduf-Gava", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdg", + ReferenceName = "Ga'dang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdh", + ReferenceName = "Gadjerawang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdi", + ReferenceName = "Gundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdj", + ReferenceName = "Gurdjar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdk", + ReferenceName = "Gadang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdl", + ReferenceName = "Dirasha", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdm", + ReferenceName = "Laal", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdn", + ReferenceName = "Umanakaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdo", + ReferenceName = "Ghodoberi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdq", + ReferenceName = "Mehri", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdr", + ReferenceName = "Wipi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gds", + ReferenceName = "Ghandruk Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdt", + ReferenceName = "Kungardutyi", + Scope = "I", + Type = "E" + }, + new + { + Id = "gdu", + ReferenceName = "Gudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gdx", + ReferenceName = "Godwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gea", + ReferenceName = "Geruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "geb", + ReferenceName = "Kire", + Scope = "I", + Type = "L" + }, + new + { + Id = "gec", + ReferenceName = "Gboloo Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ged", + ReferenceName = "Gade", + Scope = "I", + Type = "L" + }, + new + { + Id = "geg", + ReferenceName = "Gengle", + Scope = "I", + Type = "L" + }, + new + { + Id = "geh", + ReferenceName = "Hutterite German", + Scope = "I", + Type = "L" + }, + new + { + Id = "gei", + ReferenceName = "Gebe", + Scope = "I", + Type = "L" + }, + new + { + Id = "gej", + ReferenceName = "Gen", + Scope = "I", + Type = "L" + }, + new + { + Id = "gek", + ReferenceName = "Ywom", + Scope = "I", + Type = "L" + }, + new + { + Id = "gel", + ReferenceName = "ut-Ma'in", + Scope = "I", + Type = "L" + }, + new + { + Id = "geq", + ReferenceName = "Geme", + Scope = "I", + Type = "L" + }, + new + { + Id = "ges", + ReferenceName = "Geser-Gorom", + Scope = "I", + Type = "L" + }, + new + { + Id = "gev", + ReferenceName = "Eviya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gew", + ReferenceName = "Gera", + Scope = "I", + Type = "L" + }, + new + { + Id = "gex", + ReferenceName = "Garre", + Scope = "I", + Type = "L" + }, + new + { + Id = "gey", + ReferenceName = "Enya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gez", + Part2B = "gez", + Part2T = "gez", + ReferenceName = "Geez", + Scope = "I", + Type = "A" + }, + new + { + Id = "gfk", + ReferenceName = "Patpatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gft", + ReferenceName = "Gafat", + Scope = "I", + Type = "E" + }, + new + { + Id = "gga", + ReferenceName = "Gao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggb", + ReferenceName = "Gbii", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggd", + ReferenceName = "Gugadj", + Scope = "I", + Type = "E" + }, + new + { + Id = "gge", + ReferenceName = "Gurr-goni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggg", + ReferenceName = "Gurgula", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggk", + ReferenceName = "Kungarakany", + Scope = "I", + Type = "E" + }, + new + { + Id = "ggl", + ReferenceName = "Ganglau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggt", + ReferenceName = "Gitua", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggu", + ReferenceName = "Gagu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ggw", + ReferenceName = "Gogodala", + Scope = "I", + Type = "L" + }, + new + { + Id = "gha", + ReferenceName = "Ghadamès", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghc", + ReferenceName = "Hiberno-Scottish Gaelic", + Scope = "I", + Type = "H" + }, + new + { + Id = "ghe", + ReferenceName = "Southern Ghale", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghh", + ReferenceName = "Northern Ghale", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghk", + ReferenceName = "Geko Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghl", + ReferenceName = "Ghulfan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghn", + ReferenceName = "Ghanongga", + Scope = "I", + Type = "L" + }, + new + { + Id = "gho", + ReferenceName = "Ghomara", + Scope = "I", + Type = "E" + }, + new + { + Id = "ghr", + ReferenceName = "Ghera", + Scope = "I", + Type = "L" + }, + new + { + Id = "ghs", + ReferenceName = "Guhu-Samane", + Scope = "I", + Type = "L" + }, + new + { + Id = "ght", + ReferenceName = "Kuke", + Scope = "I", + Type = "L" + }, + new + { + Id = "gia", + ReferenceName = "Kija", + Scope = "I", + Type = "L" + }, + new + { + Id = "gib", + ReferenceName = "Gibanawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gic", + ReferenceName = "Gail", + Scope = "I", + Type = "L" + }, + new + { + Id = "gid", + ReferenceName = "Gidar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gie", + ReferenceName = "Gaɓogbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gig", + ReferenceName = "Goaria", + Scope = "I", + Type = "L" + }, + new + { + Id = "gih", + ReferenceName = "Githabul", + Scope = "I", + Type = "L" + }, + new + { + Id = "gil", + Part2B = "gil", + Part2T = "gil", + ReferenceName = "Gilbertese", + Scope = "I", + Type = "L" + }, + new + { + Id = "gim", + ReferenceName = "Gimi (Eastern Highlands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "gin", + ReferenceName = "Hinukh", + Scope = "I", + Type = "L" + }, + new + { + Id = "gip", + ReferenceName = "Gimi (West New Britain)", + Scope = "I", + Type = "L" + }, + new + { + Id = "giq", + ReferenceName = "Green Gelao", + Scope = "I", + Type = "L" + }, + new + { + Id = "gir", + ReferenceName = "Red Gelao", + Scope = "I", + Type = "L" + }, + new + { + Id = "gis", + ReferenceName = "North Giziga", + Scope = "I", + Type = "L" + }, + new + { + Id = "git", + ReferenceName = "Gitxsan", + Scope = "I", + Type = "L" + }, + new + { + Id = "giu", + ReferenceName = "Mulao", + Scope = "I", + Type = "L" + }, + new + { + Id = "giw", + ReferenceName = "White Gelao", + Scope = "I", + Type = "L" + }, + new + { + Id = "gix", + ReferenceName = "Gilima", + Scope = "I", + Type = "L" + }, + new + { + Id = "giy", + ReferenceName = "Giyug", + Scope = "I", + Type = "L" + }, + new + { + Id = "giz", + ReferenceName = "South Giziga", + Scope = "I", + Type = "L" + }, + new + { + Id = "gji", + ReferenceName = "Geji", + Scope = "I", + Type = "L" + }, + new + { + Id = "gjk", + ReferenceName = "Kachi Koli", + Scope = "I", + Type = "L" + }, + new + { + Id = "gjm", + ReferenceName = "Gunditjmara", + Scope = "I", + Type = "E" + }, + new + { + Id = "gjn", + ReferenceName = "Gonja", + Scope = "I", + Type = "L" + }, + new + { + Id = "gjr", + ReferenceName = "Gurindji Kriol", + Scope = "I", + Type = "L" + }, + new + { + Id = "gju", + ReferenceName = "Gujari", + Scope = "I", + Type = "L" + }, + new + { + Id = "gka", + ReferenceName = "Guya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gkd", + ReferenceName = "Magɨ (Madang Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "gke", + ReferenceName = "Ndai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gkn", + ReferenceName = "Gokana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gko", + ReferenceName = "Kok-Nar", + Scope = "I", + Type = "E" + }, + new + { + Id = "gkp", + ReferenceName = "Guinea Kpelle", + Scope = "I", + Type = "L" + }, + new + { + Id = "gku", + ReferenceName = "ǂUngkue", + Scope = "I", + Type = "E" + }, + new + { + Id = "gla", + Part1 = "gd", + Part2B = "gla", + Part2T = "gla", + ReferenceName = "Scottish Gaelic", + Scope = "I", + Type = "L" + }, + new + { + Id = "glc", + ReferenceName = "Bon Gula", + Scope = "I", + Type = "L" + }, + new + { + Id = "gld", + ReferenceName = "Nanai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gle", + Part1 = "ga", + Part2B = "gle", + Part2T = "gle", + ReferenceName = "Irish", + Scope = "I", + Type = "L" + }, + new + { + Id = "glg", + Part1 = "gl", + Part2B = "glg", + Part2T = "glg", + ReferenceName = "Galician", + Scope = "I", + Type = "L" + }, + new + { + Id = "glh", + ReferenceName = "Northwest Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gli", + ReferenceName = "Guliguli", + Scope = "I", + Type = "E" + }, + new + { + Id = "glj", + ReferenceName = "Gula Iro", + Scope = "I", + Type = "L" + }, + new + { + Id = "glk", + ReferenceName = "Gilaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "gll", + ReferenceName = "Garlali", + Scope = "I", + Type = "E" + }, + new + { + Id = "glo", + ReferenceName = "Galambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "glr", + ReferenceName = "Glaro-Twabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "glu", + ReferenceName = "Gula (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "glv", + Part1 = "gv", + Part2B = "glv", + Part2T = "glv", + ReferenceName = "Manx", + Scope = "I", + Type = "L" + }, + new + { + Id = "glw", + ReferenceName = "Glavda", + Scope = "I", + Type = "L" + }, + new + { + Id = "gly", + ReferenceName = "Gule", + Scope = "I", + Type = "E" + }, + new + { + Id = "gma", + ReferenceName = "Gambera", + Scope = "I", + Type = "E" + }, + new + { + Id = "gmb", + ReferenceName = "Gula'alaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmd", + ReferenceName = "Mághdì", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmg", + ReferenceName = "Magɨyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmh", + Part2B = "gmh", + Part2T = "gmh", + ReferenceName = "Middle High German (ca. 1050-1500)", + Scope = "I", + Type = "H" + }, + new + { + Id = "gml", + ReferenceName = "Middle Low German", + Scope = "I", + Type = "H" + }, + new + { + Id = "gmm", + ReferenceName = "Gbaya-Mbodomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmn", + ReferenceName = "Gimnime", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmu", + ReferenceName = "Gumalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmv", + ReferenceName = "Gamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmx", + ReferenceName = "Magoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "gmy", + ReferenceName = "Mycenaean Greek", + Scope = "I", + Type = "A" + }, + new + { + Id = "gmz", + ReferenceName = "Mgbolizhia", + Scope = "I", + Type = "L" + }, + new + { + Id = "gna", + ReferenceName = "Kaansa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnb", + ReferenceName = "Gangte", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnc", + ReferenceName = "Guanche", + Scope = "I", + Type = "E" + }, + new + { + Id = "gnd", + ReferenceName = "Zulgo-Gemzek", + Scope = "I", + Type = "L" + }, + new + { + Id = "gne", + ReferenceName = "Ganang", + Scope = "I", + Type = "L" + }, + new + { + Id = "gng", + ReferenceName = "Ngangam", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnh", + ReferenceName = "Lere", + Scope = "I", + Type = "L" + }, + new + { + Id = "gni", + ReferenceName = "Gooniyandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnj", + ReferenceName = "Ngen", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnk", + ReferenceName = "ǁGana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnl", + ReferenceName = "Gangulu", + Scope = "I", + Type = "E" + }, + new + { + Id = "gnm", + ReferenceName = "Ginuman", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnn", + ReferenceName = "Gumatj", + Scope = "I", + Type = "L" + }, + new + { + Id = "gno", + ReferenceName = "Northern Gondi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnq", + ReferenceName = "Gana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnr", + ReferenceName = "Gureng Gureng", + Scope = "I", + Type = "E" + }, + new + { + Id = "gnt", + ReferenceName = "Guntai", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnu", + ReferenceName = "Gnau", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnw", + ReferenceName = "Western Bolivian Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "gnz", + ReferenceName = "Ganzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "goa", + ReferenceName = "Guro", + Scope = "I", + Type = "L" + }, + new + { + Id = "gob", + ReferenceName = "Playero", + Scope = "I", + Type = "L" + }, + new + { + Id = "goc", + ReferenceName = "Gorakor", + Scope = "I", + Type = "L" + }, + new + { + Id = "god", + ReferenceName = "Godié", + Scope = "I", + Type = "L" + }, + new + { + Id = "goe", + ReferenceName = "Gongduk", + Scope = "I", + Type = "L" + }, + new + { + Id = "gof", + ReferenceName = "Gofa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gog", + ReferenceName = "Gogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "goh", + Part2B = "goh", + Part2T = "goh", + ReferenceName = "Old High German (ca. 750-1050)", + Scope = "I", + Type = "H" + }, + new + { + Id = "goi", + ReferenceName = "Gobasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "goj", + ReferenceName = "Gowlan", + Scope = "I", + Type = "L" + }, + new + { + Id = "gok", + ReferenceName = "Gowli", + Scope = "I", + Type = "L" + }, + new + { + Id = "gol", + ReferenceName = "Gola", + Scope = "I", + Type = "L" + }, + new + { + Id = "gom", + ReferenceName = "Goan Konkani", + Scope = "I", + Type = "L" + }, + new + { + Id = "gon", + Part2B = "gon", + Part2T = "gon", + ReferenceName = "Gondi", + Scope = "M", + Type = "L" + }, + new + { + Id = "goo", + ReferenceName = "Gone Dau", + Scope = "I", + Type = "L" + }, + new + { + Id = "gop", + ReferenceName = "Yeretuar", + Scope = "I", + Type = "L" + }, + new + { + Id = "goq", + ReferenceName = "Gorap", + Scope = "I", + Type = "L" + }, + new + { + Id = "gor", + Part2B = "gor", + Part2T = "gor", + ReferenceName = "Gorontalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gos", + ReferenceName = "Gronings", + Scope = "I", + Type = "L" + }, + new + { + Id = "got", + Part2B = "got", + Part2T = "got", + ReferenceName = "Gothic", + Scope = "I", + Type = "A" + }, + new + { + Id = "gou", + ReferenceName = "Gavar", + Scope = "I", + Type = "L" + }, + new + { + Id = "gow", + ReferenceName = "Gorowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gox", + ReferenceName = "Gobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "goy", + ReferenceName = "Goundo", + Scope = "I", + Type = "L" + }, + new + { + Id = "goz", + ReferenceName = "Gozarkhani", + Scope = "I", + Type = "L" + }, + new + { + Id = "gpa", + ReferenceName = "Gupa-Abawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gpe", + ReferenceName = "Ghanaian Pidgin English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gpn", + ReferenceName = "Taiap", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqa", + ReferenceName = "Ga'anda", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqi", + ReferenceName = "Guiqiong", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqn", + ReferenceName = "Guana (Brazil)", + Scope = "I", + Type = "E" + }, + new + { + Id = "gqr", + ReferenceName = "Gor", + Scope = "I", + Type = "L" + }, + new + { + Id = "gqu", + ReferenceName = "Qau", + Scope = "I", + Type = "L" + }, + new + { + Id = "gra", + ReferenceName = "Rajput Garasia", + Scope = "I", + Type = "L" + }, + new + { + Id = "grb", + Part2B = "grb", + Part2T = "grb", + ReferenceName = "Grebo", + Scope = "M", + Type = "L" + }, + new + { + Id = "grc", + Part2B = "grc", + Part2T = "grc", + ReferenceName = "Ancient Greek (to 1453)", + Scope = "I", + Type = "H" + }, + new + { + Id = "grd", + ReferenceName = "Guruntum-Mbaaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "grg", + ReferenceName = "Madi", + Scope = "I", + Type = "L" + }, + new + { + Id = "grh", + ReferenceName = "Gbiri-Niragu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gri", + ReferenceName = "Ghari", + Scope = "I", + Type = "L" + }, + new + { + Id = "grj", + ReferenceName = "Southern Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "grm", + ReferenceName = "Kota Marudu Talantang", + Scope = "I", + Type = "L" + }, + new + { + Id = "grn", + Part1 = "gn", + Part2B = "grn", + Part2T = "grn", + ReferenceName = "Guarani", + Scope = "M", + Type = "L" + }, + new + { + Id = "gro", + ReferenceName = "Groma", + Scope = "I", + Type = "L" + }, + new + { + Id = "grq", + ReferenceName = "Gorovu", + Scope = "I", + Type = "L" + }, + new + { + Id = "grr", + ReferenceName = "Taznatit", + Scope = "I", + Type = "L" + }, + new + { + Id = "grs", + ReferenceName = "Gresi", + Scope = "I", + Type = "L" + }, + new + { + Id = "grt", + ReferenceName = "Garo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gru", + ReferenceName = "Kistane", + Scope = "I", + Type = "L" + }, + new + { + Id = "grv", + ReferenceName = "Central Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "grw", + ReferenceName = "Gweda", + Scope = "I", + Type = "L" + }, + new + { + Id = "grx", + ReferenceName = "Guriaso", + Scope = "I", + Type = "L" + }, + new + { + Id = "gry", + ReferenceName = "Barclayville Grebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "grz", + ReferenceName = "Guramalum", + Scope = "I", + Type = "L" + }, + new + { + Id = "gse", + ReferenceName = "Ghanaian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsg", + ReferenceName = "German Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsl", + ReferenceName = "Gusilay", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsm", + ReferenceName = "Guatemalan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsn", + ReferenceName = "Nema", + Scope = "I", + Type = "L" + }, + new + { + Id = "gso", + ReferenceName = "Southwest Gbaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsp", + ReferenceName = "Wasembo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gss", + ReferenceName = "Greek Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gsw", + Part2B = "gsw", + Part2T = "gsw", + ReferenceName = "Swiss German", + Scope = "I", + Type = "L" + }, + new + { + Id = "gta", + ReferenceName = "Guató", + Scope = "I", + Type = "L" + }, + new + { + Id = "gtu", + ReferenceName = "Aghu-Tharnggala", + Scope = "I", + Type = "E" + }, + new + { + Id = "gua", + ReferenceName = "Shiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "gub", + ReferenceName = "Guajajára", + Scope = "I", + Type = "L" + }, + new + { + Id = "guc", + ReferenceName = "Wayuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gud", + ReferenceName = "Yocoboué Dida", + Scope = "I", + Type = "L" + }, + new + { + Id = "gue", + ReferenceName = "Gurindji", + Scope = "I", + Type = "L" + }, + new + { + Id = "guf", + ReferenceName = "Gupapuyngu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gug", + ReferenceName = "Paraguayan Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "guh", + ReferenceName = "Guahibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gui", + ReferenceName = "Eastern Bolivian Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "guj", + Part1 = "gu", + Part2B = "guj", + Part2T = "guj", + ReferenceName = "Gujarati", + Scope = "I", + Type = "L" + }, + new + { + Id = "guk", + ReferenceName = "Gumuz", + Scope = "I", + Type = "L" + }, + new + { + Id = "gul", + ReferenceName = "Sea Island Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gum", + ReferenceName = "Guambiano", + Scope = "I", + Type = "L" + }, + new + { + Id = "gun", + ReferenceName = "Mbyá Guaraní", + Scope = "I", + Type = "L" + }, + new + { + Id = "guo", + ReferenceName = "Guayabero", + Scope = "I", + Type = "L" + }, + new + { + Id = "gup", + ReferenceName = "Gunwinggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "guq", + ReferenceName = "Aché", + Scope = "I", + Type = "L" + }, + new + { + Id = "gur", + ReferenceName = "Farefare", + Scope = "I", + Type = "L" + }, + new + { + Id = "gus", + ReferenceName = "Guinean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "gut", + ReferenceName = "Maléku Jaíka", + Scope = "I", + Type = "L" + }, + new + { + Id = "guu", + ReferenceName = "Yanomamö", + Scope = "I", + Type = "L" + }, + new + { + Id = "guw", + ReferenceName = "Gun", + Scope = "I", + Type = "L" + }, + new + { + Id = "gux", + ReferenceName = "Gourmanchéma", + Scope = "I", + Type = "L" + }, + new + { + Id = "guz", + ReferenceName = "Gusii", + Scope = "I", + Type = "L" + }, + new + { + Id = "gva", + ReferenceName = "Guana (Paraguay)", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvc", + ReferenceName = "Guanano", + Scope = "I", + Type = "L" + }, + new + { + Id = "gve", + ReferenceName = "Duwet", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvf", + ReferenceName = "Golin", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvj", + ReferenceName = "Guajá", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvl", + ReferenceName = "Gulay", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvm", + ReferenceName = "Gurmana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvn", + ReferenceName = "Kuku-Yalanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvo", + ReferenceName = "Gavião Do Jiparaná", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvp", + ReferenceName = "Pará Gavião", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvr", + ReferenceName = "Gurung", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvs", + ReferenceName = "Gumawana", + Scope = "I", + Type = "L" + }, + new + { + Id = "gvy", + ReferenceName = "Guyani", + Scope = "I", + Type = "E" + }, + new + { + Id = "gwa", + ReferenceName = "Mbato", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwb", + ReferenceName = "Gwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwc", + ReferenceName = "Kalami", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwd", + ReferenceName = "Gawwada", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwe", + ReferenceName = "Gweno", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwf", + ReferenceName = "Gowro", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwg", + ReferenceName = "Moo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwi", + Part2B = "gwi", + Part2T = "gwi", + ReferenceName = "Gwichʼin", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwj", + ReferenceName = "ǀGwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwm", + ReferenceName = "Awngthim", + Scope = "I", + Type = "E" + }, + new + { + Id = "gwn", + ReferenceName = "Gwandara", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwr", + ReferenceName = "Gwere", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwt", + ReferenceName = "Gawar-Bati", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwu", + ReferenceName = "Guwamu", + Scope = "I", + Type = "E" + }, + new + { + Id = "gww", + ReferenceName = "Kwini", + Scope = "I", + Type = "L" + }, + new + { + Id = "gwx", + ReferenceName = "Gua", + Scope = "I", + Type = "L" + }, + new + { + Id = "gxx", + ReferenceName = "Wè Southern", + Scope = "I", + Type = "L" + }, + new + { + Id = "gya", + ReferenceName = "Northwest Gbaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyb", + ReferenceName = "Garus", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyd", + ReferenceName = "Kayardild", + Scope = "I", + Type = "L" + }, + new + { + Id = "gye", + ReferenceName = "Gyem", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyf", + ReferenceName = "Gungabula", + Scope = "I", + Type = "E" + }, + new + { + Id = "gyg", + ReferenceName = "Gbayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyi", + ReferenceName = "Gyele", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyl", + ReferenceName = "Gayil", + Scope = "I", + Type = "L" + }, + new + { + Id = "gym", + ReferenceName = "Ngäbere", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyn", + ReferenceName = "Guyanese Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyo", + ReferenceName = "Gyalsumdo", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyr", + ReferenceName = "Guarayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "gyy", + ReferenceName = "Gunya", + Scope = "I", + Type = "E" + }, + new + { + Id = "gza", + ReferenceName = "Ganza", + Scope = "I", + Type = "L" + }, + new + { + Id = "gzi", + ReferenceName = "Gazi", + Scope = "I", + Type = "L" + }, + new + { + Id = "gzn", + ReferenceName = "Gane", + Scope = "I", + Type = "L" + }, + new + { + Id = "haa", + ReferenceName = "Han", + Scope = "I", + Type = "L" + }, + new + { + Id = "hab", + ReferenceName = "Hanoi Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hac", + ReferenceName = "Gurani", + Scope = "I", + Type = "L" + }, + new + { + Id = "had", + ReferenceName = "Hatam", + Scope = "I", + Type = "L" + }, + new + { + Id = "hae", + ReferenceName = "Eastern Oromo", + Scope = "I", + Type = "L" + }, + new + { + Id = "haf", + ReferenceName = "Haiphong Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hag", + ReferenceName = "Hanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "hah", + ReferenceName = "Hahon", + Scope = "I", + Type = "L" + }, + new + { + Id = "hai", + Part2B = "hai", + Part2T = "hai", + ReferenceName = "Haida", + Scope = "M", + Type = "L" + }, + new + { + Id = "haj", + ReferenceName = "Hajong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hak", + ReferenceName = "Hakka Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "hal", + ReferenceName = "Halang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ham", + ReferenceName = "Hewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "han", + ReferenceName = "Hangaza", + Scope = "I", + Type = "L" + }, + new + { + Id = "hao", + ReferenceName = "Hakö", + Scope = "I", + Type = "L" + }, + new + { + Id = "hap", + ReferenceName = "Hupla", + Scope = "I", + Type = "L" + }, + new + { + Id = "haq", + ReferenceName = "Ha", + Scope = "I", + Type = "L" + }, + new + { + Id = "har", + ReferenceName = "Harari", + Scope = "I", + Type = "L" + }, + new + { + Id = "has", + ReferenceName = "Haisla", + Scope = "I", + Type = "L" + }, + new + { + Id = "hat", + Part1 = "ht", + Part2B = "hat", + Part2T = "hat", + ReferenceName = "Haitian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hau", + Part1 = "ha", + Part2B = "hau", + Part2T = "hau", + ReferenceName = "Hausa", + Scope = "I", + Type = "L" + }, + new + { + Id = "hav", + ReferenceName = "Havu", + Scope = "I", + Type = "L" + }, + new + { + Id = "haw", + Part2B = "haw", + Part2T = "haw", + ReferenceName = "Hawaiian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hax", + ReferenceName = "Southern Haida", + Scope = "I", + Type = "L" + }, + new + { + Id = "hay", + ReferenceName = "Haya", + Scope = "I", + Type = "L" + }, + new + { + Id = "haz", + ReferenceName = "Hazaragi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hba", + ReferenceName = "Hamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "hbb", + ReferenceName = "Huba", + Scope = "I", + Type = "L" + }, + new + { + Id = "hbn", + ReferenceName = "Heiban", + Scope = "I", + Type = "L" + }, + new + { + Id = "hbo", + ReferenceName = "Ancient Hebrew", + Scope = "I", + Type = "H" + }, + new + { + Id = "hbs", + Part1 = "sh", + ReferenceName = "Serbo-Croatian", + Scope = "M", + Type = "L" + }, + new + { + Id = "hbu", + ReferenceName = "Habu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hca", + ReferenceName = "Andaman Creole Hindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hch", + ReferenceName = "Huichol", + Scope = "I", + Type = "L" + }, + new + { + Id = "hdn", + ReferenceName = "Northern Haida", + Scope = "I", + Type = "L" + }, + new + { + Id = "hds", + ReferenceName = "Honduras Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hdy", + ReferenceName = "Hadiyya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hea", + ReferenceName = "Northern Qiandong Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "heb", + Part1 = "he", + Part2B = "heb", + Part2T = "heb", + ReferenceName = "Hebrew", + Scope = "I", + Type = "L" + }, + new + { + Id = "hed", + ReferenceName = "Herdé", + Scope = "I", + Type = "L" + }, + new + { + Id = "heg", + ReferenceName = "Helong", + Scope = "I", + Type = "L" + }, + new + { + Id = "heh", + ReferenceName = "Hehe", + Scope = "I", + Type = "L" + }, + new + { + Id = "hei", + ReferenceName = "Heiltsuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "hem", + ReferenceName = "Hemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "her", + Part1 = "hz", + Part2B = "her", + Part2T = "her", + ReferenceName = "Herero", + Scope = "I", + Type = "L" + }, + new + { + Id = "hgm", + ReferenceName = "Haiǁom", + Scope = "I", + Type = "L" + }, + new + { + Id = "hgw", + ReferenceName = "Haigwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "hhi", + ReferenceName = "Hoia Hoia", + Scope = "I", + Type = "L" + }, + new + { + Id = "hhr", + ReferenceName = "Kerak", + Scope = "I", + Type = "L" + }, + new + { + Id = "hhy", + ReferenceName = "Hoyahoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hia", + ReferenceName = "Lamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "hib", + ReferenceName = "Hibito", + Scope = "I", + Type = "E" + }, + new + { + Id = "hid", + ReferenceName = "Hidatsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "hif", + ReferenceName = "Fiji Hindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hig", + ReferenceName = "Kamwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "hih", + ReferenceName = "Pamosu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hii", + ReferenceName = "Hinduri", + Scope = "I", + Type = "L" + }, + new + { + Id = "hij", + ReferenceName = "Hijuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "hik", + ReferenceName = "Seit-Kaitetu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hil", + Part2B = "hil", + Part2T = "hil", + ReferenceName = "Hiligaynon", + Scope = "I", + Type = "L" + }, + new + { + Id = "hin", + Part1 = "hi", + Part2B = "hin", + Part2T = "hin", + ReferenceName = "Hindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hio", + ReferenceName = "Tsoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "hir", + ReferenceName = "Himarimã", + Scope = "I", + Type = "L" + }, + new + { + Id = "hit", + Part2B = "hit", + Part2T = "hit", + ReferenceName = "Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "hiw", + ReferenceName = "Hiw", + Scope = "I", + Type = "L" + }, + new + { + Id = "hix", + ReferenceName = "Hixkaryána", + Scope = "I", + Type = "L" + }, + new + { + Id = "hji", + ReferenceName = "Haji", + Scope = "I", + Type = "L" + }, + new + { + Id = "hka", + ReferenceName = "Kahe", + Scope = "I", + Type = "L" + }, + new + { + Id = "hke", + ReferenceName = "Hunde", + Scope = "I", + Type = "L" + }, + new + { + Id = "hkk", + ReferenceName = "Hunjara-Kaina Ke", + Scope = "I", + Type = "L" + }, + new + { + Id = "hkn", + ReferenceName = "Mel-Khaonh", + Scope = "I", + Type = "L" + }, + new + { + Id = "hks", + ReferenceName = "Hong Kong Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hla", + ReferenceName = "Halia", + Scope = "I", + Type = "L" + }, + new + { + Id = "hlb", + ReferenceName = "Halbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hld", + ReferenceName = "Halang Doan", + Scope = "I", + Type = "L" + }, + new + { + Id = "hle", + ReferenceName = "Hlersu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hlt", + ReferenceName = "Matu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "hlu", + ReferenceName = "Hieroglyphic Luwian", + Scope = "I", + Type = "A" + }, + new + { + Id = "hma", + ReferenceName = "Southern Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmb", + ReferenceName = "Humburi Senni Songhay", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmc", + ReferenceName = "Central Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmd", + ReferenceName = "Large Flowery Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hme", + ReferenceName = "Eastern Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmf", + ReferenceName = "Hmong Don", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmg", + ReferenceName = "Southwestern Guiyang Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmh", + ReferenceName = "Southwestern Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmi", + ReferenceName = "Northern Huishui Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmj", + ReferenceName = "Ge", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmk", + ReferenceName = "Maek", + Scope = "I", + Type = "A" + }, + new + { + Id = "hml", + ReferenceName = "Luopohe Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmm", + ReferenceName = "Central Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmn", + Part2B = "hmn", + Part2T = "hmn", + ReferenceName = "Hmong", + Scope = "M", + Type = "L" + }, + new + { + Id = "hmo", + Part1 = "ho", + Part2B = "hmo", + Part2T = "hmo", + ReferenceName = "Hiri Motu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmp", + ReferenceName = "Northern Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmq", + ReferenceName = "Eastern Qiandong Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmr", + ReferenceName = "Hmar", + Scope = "I", + Type = "L" + }, + new + { + Id = "hms", + ReferenceName = "Southern Qiandong Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmt", + ReferenceName = "Hamtai", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmu", + ReferenceName = "Hamap", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmv", + ReferenceName = "Hmong Dô", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmw", + ReferenceName = "Western Mashan Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmy", + ReferenceName = "Southern Guiyang Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "hmz", + ReferenceName = "Hmong Shua", + Scope = "I", + Type = "L" + }, + new + { + Id = "hna", + ReferenceName = "Mina (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnd", + ReferenceName = "Southern Hindko", + Scope = "I", + Type = "L" + }, + new + { + Id = "hne", + ReferenceName = "Chhattisgarhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnh", + ReferenceName = "ǁAni", + Scope = "I", + Type = "L" + }, + new + { + Id = "hni", + ReferenceName = "Hani", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnj", + ReferenceName = "Hmong Njua", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnn", + ReferenceName = "Hanunoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "hno", + ReferenceName = "Northern Hindko", + Scope = "I", + Type = "L" + }, + new + { + Id = "hns", + ReferenceName = "Caribbean Hindustani", + Scope = "I", + Type = "L" + }, + new + { + Id = "hnu", + ReferenceName = "Hung", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoa", + ReferenceName = "Hoava", + Scope = "I", + Type = "L" + }, + new + { + Id = "hob", + ReferenceName = "Mari (Madang Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoc", + ReferenceName = "Ho", + Scope = "I", + Type = "L" + }, + new + { + Id = "hod", + ReferenceName = "Holma", + Scope = "I", + Type = "E" + }, + new + { + Id = "hoe", + ReferenceName = "Horom", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoh", + ReferenceName = "Hobyót", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoi", + ReferenceName = "Holikachuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoj", + ReferenceName = "Hadothi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hol", + ReferenceName = "Holu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hom", + ReferenceName = "Homa", + Scope = "I", + Type = "E" + }, + new + { + Id = "hoo", + ReferenceName = "Holoholo", + Scope = "I", + Type = "L" + }, + new + { + Id = "hop", + ReferenceName = "Hopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hor", + ReferenceName = "Horo", + Scope = "I", + Type = "E" + }, + new + { + Id = "hos", + ReferenceName = "Ho Chi Minh City Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hot", + ReferenceName = "Hote", + Scope = "I", + Type = "L" + }, + new + { + Id = "hov", + ReferenceName = "Hovongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "how", + ReferenceName = "Honi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoy", + ReferenceName = "Holiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hoz", + ReferenceName = "Hozo", + Scope = "I", + Type = "L" + }, + new + { + Id = "hpo", + ReferenceName = "Hpon", + Scope = "I", + Type = "E" + }, + new + { + Id = "hps", + ReferenceName = "Hawai'i Sign Language (HSL)", + Scope = "I", + Type = "L" + }, + new + { + Id = "hra", + ReferenceName = "Hrangkhol", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrc", + ReferenceName = "Niwer Mil", + Scope = "I", + Type = "L" + }, + new + { + Id = "hre", + ReferenceName = "Hre", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrk", + ReferenceName = "Haruku", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrm", + ReferenceName = "Horned Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "hro", + ReferenceName = "Haroi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrp", + ReferenceName = "Nhirrpi", + Scope = "I", + Type = "E" + }, + new + { + Id = "hrt", + ReferenceName = "Hértevin", + Scope = "I", + Type = "L" + }, + new + { + Id = "hru", + ReferenceName = "Hruso", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrv", + Part1 = "hr", + Part2B = "hrv", + Part2T = "hrv", + ReferenceName = "Croatian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrw", + ReferenceName = "Warwar Feni", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrx", + ReferenceName = "Hunsrik", + Scope = "I", + Type = "L" + }, + new + { + Id = "hrz", + ReferenceName = "Harzani", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsb", + Part2B = "hsb", + Part2T = "hsb", + ReferenceName = "Upper Sorbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsh", + ReferenceName = "Hungarian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsl", + ReferenceName = "Hausa Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hsn", + ReferenceName = "Xiang Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "hss", + ReferenceName = "Harsusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "hti", + ReferenceName = "Hoti", + Scope = "I", + Type = "E" + }, + new + { + Id = "hto", + ReferenceName = "Minica Huitoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "hts", + ReferenceName = "Hadza", + Scope = "I", + Type = "L" + }, + new + { + Id = "htu", + ReferenceName = "Hitu", + Scope = "I", + Type = "L" + }, + new + { + Id = "htx", + ReferenceName = "Middle Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "hub", + ReferenceName = "Huambisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "huc", + ReferenceName = "ǂHua", + Scope = "I", + Type = "L" + }, + new + { + Id = "hud", + ReferenceName = "Huaulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hue", + ReferenceName = "San Francisco Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "huf", + ReferenceName = "Humene", + Scope = "I", + Type = "L" + }, + new + { + Id = "hug", + ReferenceName = "Huachipaeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "huh", + ReferenceName = "Huilliche", + Scope = "I", + Type = "L" + }, + new + { + Id = "hui", + ReferenceName = "Huli", + Scope = "I", + Type = "L" + }, + new + { + Id = "huj", + ReferenceName = "Northern Guiyang Hmong", + Scope = "I", + Type = "L" + }, + new + { + Id = "huk", + ReferenceName = "Hulung", + Scope = "I", + Type = "E" + }, + new + { + Id = "hul", + ReferenceName = "Hula", + Scope = "I", + Type = "L" + }, + new + { + Id = "hum", + ReferenceName = "Hungana", + Scope = "I", + Type = "L" + }, + new + { + Id = "hun", + Part1 = "hu", + Part2B = "hun", + Part2T = "hun", + ReferenceName = "Hungarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "huo", + ReferenceName = "Hu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hup", + Part2B = "hup", + Part2T = "hup", + ReferenceName = "Hupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "huq", + ReferenceName = "Tsat", + Scope = "I", + Type = "L" + }, + new + { + Id = "hur", + ReferenceName = "Halkomelem", + Scope = "I", + Type = "L" + }, + new + { + Id = "hus", + ReferenceName = "Huastec", + Scope = "I", + Type = "L" + }, + new + { + Id = "hut", + ReferenceName = "Humla", + Scope = "I", + Type = "L" + }, + new + { + Id = "huu", + ReferenceName = "Murui Huitoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "huv", + ReferenceName = "San Mateo Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "huw", + ReferenceName = "Hukumina", + Scope = "I", + Type = "E" + }, + new + { + Id = "hux", + ReferenceName = "Nüpode Huitoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "huy", + ReferenceName = "Hulaulá", + Scope = "I", + Type = "L" + }, + new + { + Id = "huz", + ReferenceName = "Hunzib", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvc", + ReferenceName = "Haitian Vodoun Culture Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "hve", + ReferenceName = "San Dionisio Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvk", + ReferenceName = "Haveke", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvn", + ReferenceName = "Sabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "hvv", + ReferenceName = "Santa María Del Mar Huave", + Scope = "I", + Type = "L" + }, + new + { + Id = "hwa", + ReferenceName = "Wané", + Scope = "I", + Type = "L" + }, + new + { + Id = "hwc", + ReferenceName = "Hawai'i Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "hwo", + ReferenceName = "Hwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "hya", + ReferenceName = "Hya", + Scope = "I", + Type = "L" + }, + new + { + Id = "hye", + Part1 = "hy", + Part2B = "arm", + Part2T = "hye", + ReferenceName = "Armenian", + Scope = "I", + Type = "L" + }, + new + { + Id = "hyw", + ReferenceName = "Western Armenian", + Scope = "I", + Type = "L" + }, + new + { + Id = "iai", + ReferenceName = "Iaai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ian", + ReferenceName = "Iatmul", + Scope = "I", + Type = "L" + }, + new + { + Id = "iar", + ReferenceName = "Purari", + Scope = "I", + Type = "L" + }, + new + { + Id = "iba", + Part2B = "iba", + Part2T = "iba", + ReferenceName = "Iban", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibb", + ReferenceName = "Ibibio", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibd", + ReferenceName = "Iwaidja", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibe", + ReferenceName = "Akpes", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibg", + ReferenceName = "Ibanag", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibh", + ReferenceName = "Bih", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibl", + ReferenceName = "Ibaloi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibm", + ReferenceName = "Agoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibn", + ReferenceName = "Ibino", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibo", + Part1 = "ig", + Part2B = "ibo", + Part2T = "ibo", + ReferenceName = "Igbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibr", + ReferenceName = "Ibuoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ibu", + ReferenceName = "Ibu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iby", + ReferenceName = "Ibani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ica", + ReferenceName = "Ede Ica", + Scope = "I", + Type = "L" + }, + new + { + Id = "ich", + ReferenceName = "Etkywan", + Scope = "I", + Type = "L" + }, + new + { + Id = "icl", + ReferenceName = "Icelandic Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "icr", + ReferenceName = "Islander Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "ida", + ReferenceName = "Idakho-Isukha-Tiriki", + Scope = "I", + Type = "L" + }, + new + { + Id = "idb", + ReferenceName = "Indo-Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "idc", + ReferenceName = "Idon", + Scope = "I", + Type = "L" + }, + new + { + Id = "idd", + ReferenceName = "Ede Idaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "ide", + ReferenceName = "Idere", + Scope = "I", + Type = "L" + }, + new + { + Id = "idi", + ReferenceName = "Idi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ido", + Part1 = "io", + Part2B = "ido", + Part2T = "ido", + ReferenceName = "Ido", + Scope = "I", + Type = "C" + }, + new + { + Id = "idr", + ReferenceName = "Indri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ids", + ReferenceName = "Idesa", + Scope = "I", + Type = "L" + }, + new + { + Id = "idt", + ReferenceName = "Idaté", + Scope = "I", + Type = "L" + }, + new + { + Id = "idu", + ReferenceName = "Idoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifa", + ReferenceName = "Amganad Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifb", + ReferenceName = "Batad Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ife", + ReferenceName = "Ifè", + Scope = "I", + Type = "L" + }, + new + { + Id = "iff", + ReferenceName = "Ifo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ifk", + ReferenceName = "Tuwali Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifm", + ReferenceName = "Teke-Fuumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ifu", + ReferenceName = "Mayoyao Ifugao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ify", + ReferenceName = "Keley-I Kallahan", + Scope = "I", + Type = "L" + }, + new + { + Id = "igb", + ReferenceName = "Ebira", + Scope = "I", + Type = "L" + }, + new + { + Id = "ige", + ReferenceName = "Igede", + Scope = "I", + Type = "L" + }, + new + { + Id = "igg", + ReferenceName = "Igana", + Scope = "I", + Type = "L" + }, + new + { + Id = "igl", + ReferenceName = "Igala", + Scope = "I", + Type = "L" + }, + new + { + Id = "igm", + ReferenceName = "Kanggape", + Scope = "I", + Type = "L" + }, + new + { + Id = "ign", + ReferenceName = "Ignaciano", + Scope = "I", + Type = "L" + }, + new + { + Id = "igo", + ReferenceName = "Isebe", + Scope = "I", + Type = "L" + }, + new + { + Id = "igs", + ReferenceName = "Interglossa", + Scope = "I", + Type = "C" + }, + new + { + Id = "igw", + ReferenceName = "Igwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihb", + ReferenceName = "Iha Based Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihi", + ReferenceName = "Ihievbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihp", + ReferenceName = "Iha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ihw", + ReferenceName = "Bidhawal", + Scope = "I", + Type = "E" + }, + new + { + Id = "iii", + Part1 = "ii", + Part2B = "iii", + Part2T = "iii", + ReferenceName = "Sichuan Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "iin", + ReferenceName = "Thiin", + Scope = "I", + Type = "E" + }, + new + { + Id = "ijc", + ReferenceName = "Izon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ije", + ReferenceName = "Biseni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ijj", + ReferenceName = "Ede Ije", + Scope = "I", + Type = "L" + }, + new + { + Id = "ijn", + ReferenceName = "Kalabari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ijs", + ReferenceName = "Southeast Ijo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ike", + ReferenceName = "Eastern Canadian Inuktitut", + Scope = "I", + Type = "L" + }, + new + { + Id = "iki", + ReferenceName = "Iko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikk", + ReferenceName = "Ika", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikl", + ReferenceName = "Ikulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iko", + ReferenceName = "Olulumo-Ikom", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikp", + ReferenceName = "Ikpeshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikr", + ReferenceName = "Ikaranggal", + Scope = "I", + Type = "E" + }, + new + { + Id = "iks", + ReferenceName = "Inuit Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikt", + ReferenceName = "Inuinnaqtun", + Scope = "I", + Type = "L" + }, + new + { + Id = "iku", + Part1 = "iu", + Part2B = "iku", + Part2T = "iku", + ReferenceName = "Inuktitut", + Scope = "M", + Type = "L" + }, + new + { + Id = "ikv", + ReferenceName = "Iku-Gora-Ankwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikw", + ReferenceName = "Ikwere", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikx", + ReferenceName = "Ik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ikz", + ReferenceName = "Ikizu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ila", + ReferenceName = "Ile Ape", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilb", + ReferenceName = "Ila", + Scope = "I", + Type = "L" + }, + new + { + Id = "ile", + Part1 = "ie", + Part2B = "ile", + Part2T = "ile", + ReferenceName = "Interlingue", + Scope = "I", + Type = "C" + }, + new + { + Id = "ilg", + ReferenceName = "Garig-Ilgar", + Scope = "I", + Type = "E" + }, + new + { + Id = "ili", + ReferenceName = "Ili Turki", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilk", + ReferenceName = "Ilongot", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilm", + ReferenceName = "Iranun (Malaysia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilo", + Part2B = "ilo", + Part2T = "ilo", + ReferenceName = "Iloko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilp", + ReferenceName = "Iranun (Philippines)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ils", + ReferenceName = "International Sign", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilu", + ReferenceName = "Ili'uun", + Scope = "I", + Type = "L" + }, + new + { + Id = "ilv", + ReferenceName = "Ilue", + Scope = "I", + Type = "L" + }, + new + { + Id = "ima", + ReferenceName = "Mala Malasar", + Scope = "I", + Type = "L" + }, + new + { + Id = "imi", + ReferenceName = "Anamgura", + Scope = "I", + Type = "L" + }, + new + { + Id = "iml", + ReferenceName = "Miluk", + Scope = "I", + Type = "E" + }, + new + { + Id = "imn", + ReferenceName = "Imonda", + Scope = "I", + Type = "L" + }, + new + { + Id = "imo", + ReferenceName = "Imbongu", + Scope = "I", + Type = "L" + }, + new + { + Id = "imr", + ReferenceName = "Imroing", + Scope = "I", + Type = "L" + }, + new + { + Id = "ims", + ReferenceName = "Marsian", + Scope = "I", + Type = "A" + }, + new + { + Id = "imy", + ReferenceName = "Milyan", + Scope = "I", + Type = "A" + }, + new + { + Id = "ina", + Part1 = "ia", + Part2B = "ina", + Part2T = "ina", + ReferenceName = "Interlingua (International Auxiliary Language Association)", + Scope = "I", + Type = "C" + }, + new + { + Id = "inb", + ReferenceName = "Inga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ind", + Part1 = "id", + Part2B = "ind", + Part2T = "ind", + ReferenceName = "Indonesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ing", + ReferenceName = "Degexit'an", + Scope = "I", + Type = "L" + }, + new + { + Id = "inh", + Part2B = "inh", + Part2T = "inh", + ReferenceName = "Ingush", + Scope = "I", + Type = "L" + }, + new + { + Id = "inj", + ReferenceName = "Jungle Inga", + Scope = "I", + Type = "L" + }, + new + { + Id = "inl", + ReferenceName = "Indonesian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "inm", + ReferenceName = "Minaean", + Scope = "I", + Type = "A" + }, + new + { + Id = "inn", + ReferenceName = "Isinai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ino", + ReferenceName = "Inoke-Yate", + Scope = "I", + Type = "L" + }, + new + { + Id = "inp", + ReferenceName = "Iñapari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ins", + ReferenceName = "Indian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "int", + ReferenceName = "Intha", + Scope = "I", + Type = "L" + }, + new + { + Id = "inz", + ReferenceName = "Ineseño", + Scope = "I", + Type = "E" + }, + new + { + Id = "ior", + ReferenceName = "Inor", + Scope = "I", + Type = "L" + }, + new + { + Id = "iou", + ReferenceName = "Tuma-Irumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iow", + ReferenceName = "Iowa-Oto", + Scope = "I", + Type = "E" + }, + new + { + Id = "ipi", + ReferenceName = "Ipili", + Scope = "I", + Type = "L" + }, + new + { + Id = "ipk", + Part1 = "ik", + Part2B = "ipk", + Part2T = "ipk", + ReferenceName = "Inupiaq", + Scope = "M", + Type = "L" + }, + new + { + Id = "ipo", + ReferenceName = "Ipiko", + Scope = "I", + Type = "L" + }, + new + { + Id = "iqu", + ReferenceName = "Iquito", + Scope = "I", + Type = "L" + }, + new + { + Id = "iqw", + ReferenceName = "Ikwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ire", + ReferenceName = "Iresim", + Scope = "I", + Type = "L" + }, + new + { + Id = "irh", + ReferenceName = "Irarutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iri", + ReferenceName = "Rigwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "irk", + ReferenceName = "Iraqw", + Scope = "I", + Type = "L" + }, + new + { + Id = "irn", + ReferenceName = "Irántxe", + Scope = "I", + Type = "L" + }, + new + { + Id = "irr", + ReferenceName = "Ir", + Scope = "I", + Type = "L" + }, + new + { + Id = "iru", + ReferenceName = "Irula", + Scope = "I", + Type = "L" + }, + new + { + Id = "irx", + ReferenceName = "Kamberau", + Scope = "I", + Type = "L" + }, + new + { + Id = "iry", + ReferenceName = "Iraya", + Scope = "I", + Type = "L" + }, + new + { + Id = "isa", + ReferenceName = "Isabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "isc", + ReferenceName = "Isconahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "isd", + ReferenceName = "Isnag", + Scope = "I", + Type = "L" + }, + new + { + Id = "ise", + ReferenceName = "Italian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "isg", + ReferenceName = "Irish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ish", + ReferenceName = "Esan", + Scope = "I", + Type = "L" + }, + new + { + Id = "isi", + ReferenceName = "Nkem-Nkum", + Scope = "I", + Type = "L" + }, + new + { + Id = "isk", + ReferenceName = "Ishkashimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "isl", + Part1 = "is", + Part2B = "ice", + Part2T = "isl", + ReferenceName = "Icelandic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ism", + ReferenceName = "Masimasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "isn", + ReferenceName = "Isanzu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iso", + ReferenceName = "Isoko", + Scope = "I", + Type = "L" + }, + new + { + Id = "isr", + ReferenceName = "Israeli Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ist", + ReferenceName = "Istriot", + Scope = "I", + Type = "L" + }, + new + { + Id = "isu", + ReferenceName = "Isu (Menchum Division)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ita", + Part1 = "it", + Part2B = "ita", + Part2T = "ita", + ReferenceName = "Italian", + Scope = "I", + Type = "L" + }, + new + { + Id = "itb", + ReferenceName = "Binongan Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itd", + ReferenceName = "Southern Tidung", + Scope = "I", + Type = "L" + }, + new + { + Id = "ite", + ReferenceName = "Itene", + Scope = "I", + Type = "E" + }, + new + { + Id = "iti", + ReferenceName = "Inlaod Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itk", + ReferenceName = "Judeo-Italian", + Scope = "I", + Type = "L" + }, + new + { + Id = "itl", + ReferenceName = "Itelmen", + Scope = "I", + Type = "L" + }, + new + { + Id = "itm", + ReferenceName = "Itu Mbon Uzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ito", + ReferenceName = "Itonama", + Scope = "I", + Type = "L" + }, + new + { + Id = "itr", + ReferenceName = "Iteri", + Scope = "I", + Type = "L" + }, + new + { + Id = "its", + ReferenceName = "Isekiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "itt", + ReferenceName = "Maeng Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itv", + ReferenceName = "Itawit", + Scope = "I", + Type = "L" + }, + new + { + Id = "itw", + ReferenceName = "Ito", + Scope = "I", + Type = "L" + }, + new + { + Id = "itx", + ReferenceName = "Itik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ity", + ReferenceName = "Moyadan Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "itz", + ReferenceName = "Itzá", + Scope = "I", + Type = "L" + }, + new + { + Id = "ium", + ReferenceName = "Iu Mien", + Scope = "I", + Type = "L" + }, + new + { + Id = "ivb", + ReferenceName = "Ibatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ivv", + ReferenceName = "Ivatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "iwk", + ReferenceName = "I-Wak", + Scope = "I", + Type = "L" + }, + new + { + Id = "iwm", + ReferenceName = "Iwam", + Scope = "I", + Type = "L" + }, + new + { + Id = "iwo", + ReferenceName = "Iwur", + Scope = "I", + Type = "L" + }, + new + { + Id = "iws", + ReferenceName = "Sepik Iwam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ixc", + ReferenceName = "Ixcatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ixl", + ReferenceName = "Ixil", + Scope = "I", + Type = "L" + }, + new + { + Id = "iya", + ReferenceName = "Iyayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "iyo", + ReferenceName = "Mesaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "iyx", + ReferenceName = "Yaka (Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "izh", + ReferenceName = "Ingrian", + Scope = "I", + Type = "L" + }, + new + { + Id = "izr", + ReferenceName = "Izere", + Scope = "I", + Type = "L" + }, + new + { + Id = "izz", + ReferenceName = "Izii", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaa", + ReferenceName = "Jamamadí", + Scope = "I", + Type = "L" + }, + new + { + Id = "jab", + ReferenceName = "Hyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "jac", + ReferenceName = "Popti'", + Scope = "I", + Type = "L" + }, + new + { + Id = "jad", + ReferenceName = "Jahanka", + Scope = "I", + Type = "L" + }, + new + { + Id = "jae", + ReferenceName = "Yabem", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaf", + ReferenceName = "Jara", + Scope = "I", + Type = "L" + }, + new + { + Id = "jah", + ReferenceName = "Jah Hut", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaj", + ReferenceName = "Zazao", + Scope = "I", + Type = "L" + }, + new + { + Id = "jak", + ReferenceName = "Jakun", + Scope = "I", + Type = "L" + }, + new + { + Id = "jal", + ReferenceName = "Yalahatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "jam", + ReferenceName = "Jamaican Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "jan", + ReferenceName = "Jandai", + Scope = "I", + Type = "E" + }, + new + { + Id = "jao", + ReferenceName = "Yanyuwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaq", + ReferenceName = "Yaqay", + Scope = "I", + Type = "L" + }, + new + { + Id = "jas", + ReferenceName = "New Caledonian Javanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jat", + ReferenceName = "Jakati", + Scope = "I", + Type = "L" + }, + new + { + Id = "jau", + ReferenceName = "Yaur", + Scope = "I", + Type = "L" + }, + new + { + Id = "jav", + Part1 = "jv", + Part2B = "jav", + Part2T = "jav", + ReferenceName = "Javanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jax", + ReferenceName = "Jambi Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "jay", + ReferenceName = "Yan-nhangu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jaz", + ReferenceName = "Jawe", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbe", + ReferenceName = "Judeo-Berber", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbi", + ReferenceName = "Badjiri", + Scope = "I", + Type = "E" + }, + new + { + Id = "jbj", + ReferenceName = "Arandai", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbk", + ReferenceName = "Barikewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbn", + ReferenceName = "Nafusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbo", + Part2B = "jbo", + Part2T = "jbo", + ReferenceName = "Lojban", + Scope = "I", + Type = "C" + }, + new + { + Id = "jbr", + ReferenceName = "Jofotek-Bromnya", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbt", + ReferenceName = "Jabutí", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbu", + ReferenceName = "Jukun Takum", + Scope = "I", + Type = "L" + }, + new + { + Id = "jbw", + ReferenceName = "Yawijibaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "jcs", + ReferenceName = "Jamaican Country Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jct", + ReferenceName = "Krymchak", + Scope = "I", + Type = "L" + }, + new + { + Id = "jda", + ReferenceName = "Jad", + Scope = "I", + Type = "L" + }, + new + { + Id = "jdg", + ReferenceName = "Jadgali", + Scope = "I", + Type = "L" + }, + new + { + Id = "jdt", + ReferenceName = "Judeo-Tat", + Scope = "I", + Type = "L" + }, + new + { + Id = "jeb", + ReferenceName = "Jebero", + Scope = "I", + Type = "L" + }, + new + { + Id = "jee", + ReferenceName = "Jerung", + Scope = "I", + Type = "L" + }, + new + { + Id = "jeh", + ReferenceName = "Jeh", + Scope = "I", + Type = "L" + }, + new + { + Id = "jei", + ReferenceName = "Yei", + Scope = "I", + Type = "L" + }, + new + { + Id = "jek", + ReferenceName = "Jeri Kuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jel", + ReferenceName = "Yelmek", + Scope = "I", + Type = "L" + }, + new + { + Id = "jen", + ReferenceName = "Dza", + Scope = "I", + Type = "L" + }, + new + { + Id = "jer", + ReferenceName = "Jere", + Scope = "I", + Type = "L" + }, + new + { + Id = "jet", + ReferenceName = "Manem", + Scope = "I", + Type = "L" + }, + new + { + Id = "jeu", + ReferenceName = "Jonkor Bourmataguil", + Scope = "I", + Type = "L" + }, + new + { + Id = "jgb", + ReferenceName = "Ngbee", + Scope = "I", + Type = "E" + }, + new + { + Id = "jge", + ReferenceName = "Judeo-Georgian", + Scope = "I", + Type = "L" + }, + new + { + Id = "jgk", + ReferenceName = "Gwak", + Scope = "I", + Type = "L" + }, + new + { + Id = "jgo", + ReferenceName = "Ngomba", + Scope = "I", + Type = "L" + }, + new + { + Id = "jhi", + ReferenceName = "Jehai", + Scope = "I", + Type = "L" + }, + new + { + Id = "jhs", + ReferenceName = "Jhankot Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jia", + ReferenceName = "Jina", + Scope = "I", + Type = "L" + }, + new + { + Id = "jib", + ReferenceName = "Jibu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jic", + ReferenceName = "Tol", + Scope = "I", + Type = "L" + }, + new + { + Id = "jid", + ReferenceName = "Bu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jie", + ReferenceName = "Jilbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "jig", + ReferenceName = "Jingulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jih", + ReferenceName = "sTodsde", + Scope = "I", + Type = "L" + }, + new + { + Id = "jii", + ReferenceName = "Jiiddu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jil", + ReferenceName = "Jilim", + Scope = "I", + Type = "L" + }, + new + { + Id = "jim", + ReferenceName = "Jimi (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jio", + ReferenceName = "Jiamao", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiq", + ReferenceName = "Guanyinqiao", + Scope = "I", + Type = "L" + }, + new + { + Id = "jit", + ReferenceName = "Jita", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiu", + ReferenceName = "Youle Jinuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiv", + ReferenceName = "Shuar", + Scope = "I", + Type = "L" + }, + new + { + Id = "jiy", + ReferenceName = "Buyuan Jinuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jje", + ReferenceName = "Jejueo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jjr", + ReferenceName = "Bankal", + Scope = "I", + Type = "L" + }, + new + { + Id = "jka", + ReferenceName = "Kaera", + Scope = "I", + Type = "L" + }, + new + { + Id = "jkm", + ReferenceName = "Mobwa Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "jko", + ReferenceName = "Kubo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jkp", + ReferenceName = "Paku Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "jkr", + ReferenceName = "Koro (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jku", + ReferenceName = "Labir", + Scope = "I", + Type = "L" + }, + new + { + Id = "jle", + ReferenceName = "Ngile", + Scope = "I", + Type = "L" + }, + new + { + Id = "jls", + ReferenceName = "Jamaican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jma", + ReferenceName = "Dima", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmb", + ReferenceName = "Zumbun", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmc", + ReferenceName = "Machame", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmd", + ReferenceName = "Yamdena", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmi", + ReferenceName = "Jimi (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jml", + ReferenceName = "Jumli", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmn", + ReferenceName = "Makuri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmr", + ReferenceName = "Kamara", + Scope = "I", + Type = "L" + }, + new + { + Id = "jms", + ReferenceName = "Mashi (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmw", + ReferenceName = "Mouwase", + Scope = "I", + Type = "L" + }, + new + { + Id = "jmx", + ReferenceName = "Western Juxtlahuaca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "jna", + ReferenceName = "Jangshung", + Scope = "I", + Type = "L" + }, + new + { + Id = "jnd", + ReferenceName = "Jandavra", + Scope = "I", + Type = "L" + }, + new + { + Id = "jng", + ReferenceName = "Yangman", + Scope = "I", + Type = "E" + }, + new + { + Id = "jni", + ReferenceName = "Janji", + Scope = "I", + Type = "L" + }, + new + { + Id = "jnj", + ReferenceName = "Yemsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jnl", + ReferenceName = "Rawat", + Scope = "I", + Type = "L" + }, + new + { + Id = "jns", + ReferenceName = "Jaunsari", + Scope = "I", + Type = "L" + }, + new + { + Id = "job", + ReferenceName = "Joba", + Scope = "I", + Type = "L" + }, + new + { + Id = "jod", + ReferenceName = "Wojenaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "jog", + ReferenceName = "Jogi", + Scope = "I", + Type = "L" + }, + new + { + Id = "jor", + ReferenceName = "Jorá", + Scope = "I", + Type = "E" + }, + new + { + Id = "jos", + ReferenceName = "Jordanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jow", + ReferenceName = "Jowulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "jpa", + ReferenceName = "Jewish Palestinian Aramaic", + Scope = "I", + Type = "H" + }, + new + { + Id = "jpn", + Part1 = "ja", + Part2B = "jpn", + Part2T = "jpn", + ReferenceName = "Japanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jpr", + Part2B = "jpr", + Part2T = "jpr", + ReferenceName = "Judeo-Persian", + Scope = "I", + Type = "L" + }, + new + { + Id = "jqr", + ReferenceName = "Jaqaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "jra", + ReferenceName = "Jarai", + Scope = "I", + Type = "L" + }, + new + { + Id = "jrb", + Part2B = "jrb", + Part2T = "jrb", + ReferenceName = "Judeo-Arabic", + Scope = "M", + Type = "L" + }, + new + { + Id = "jrr", + ReferenceName = "Jiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "jrt", + ReferenceName = "Jorto", + Scope = "I", + Type = "L" + }, + new + { + Id = "jru", + ReferenceName = "Japrería", + Scope = "I", + Type = "L" + }, + new + { + Id = "jsl", + ReferenceName = "Japanese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jua", + ReferenceName = "Júma", + Scope = "I", + Type = "L" + }, + new + { + Id = "jub", + ReferenceName = "Wannu", + Scope = "I", + Type = "L" + }, + new + { + Id = "juc", + ReferenceName = "Jurchen", + Scope = "I", + Type = "E" + }, + new + { + Id = "jud", + ReferenceName = "Worodougou", + Scope = "I", + Type = "L" + }, + new + { + Id = "juh", + ReferenceName = "Hõne", + Scope = "I", + Type = "L" + }, + new + { + Id = "jui", + ReferenceName = "Ngadjuri", + Scope = "I", + Type = "E" + }, + new + { + Id = "juk", + ReferenceName = "Wapan", + Scope = "I", + Type = "L" + }, + new + { + Id = "jul", + ReferenceName = "Jirel", + Scope = "I", + Type = "L" + }, + new + { + Id = "jum", + ReferenceName = "Jumjum", + Scope = "I", + Type = "L" + }, + new + { + Id = "jun", + ReferenceName = "Juang", + Scope = "I", + Type = "L" + }, + new + { + Id = "juo", + ReferenceName = "Jiba", + Scope = "I", + Type = "L" + }, + new + { + Id = "jup", + ReferenceName = "Hupdë", + Scope = "I", + Type = "L" + }, + new + { + Id = "jur", + ReferenceName = "Jurúna", + Scope = "I", + Type = "L" + }, + new + { + Id = "jus", + ReferenceName = "Jumla Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "jut", + ReferenceName = "Jutish", + Scope = "I", + Type = "H" + }, + new + { + Id = "juu", + ReferenceName = "Ju", + Scope = "I", + Type = "L" + }, + new + { + Id = "juw", + ReferenceName = "Wãpha", + Scope = "I", + Type = "L" + }, + new + { + Id = "juy", + ReferenceName = "Juray", + Scope = "I", + Type = "L" + }, + new + { + Id = "jvd", + ReferenceName = "Javindo", + Scope = "I", + Type = "L" + }, + new + { + Id = "jvn", + ReferenceName = "Caribbean Javanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "jwi", + ReferenceName = "Jwira-Pepesa", + Scope = "I", + Type = "L" + }, + new + { + Id = "jya", + ReferenceName = "Jiarong", + Scope = "I", + Type = "L" + }, + new + { + Id = "jye", + ReferenceName = "Judeo-Yemeni Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "jyy", + ReferenceName = "Jaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaa", + Part2B = "kaa", + Part2T = "kaa", + ReferenceName = "Kara-Kalpak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kab", + Part2B = "kab", + Part2T = "kab", + ReferenceName = "Kabyle", + Scope = "I", + Type = "L" + }, + new + { + Id = "kac", + Part2B = "kac", + Part2T = "kac", + ReferenceName = "Kachin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kad", + ReferenceName = "Adara", + Scope = "I", + Type = "L" + }, + new + { + Id = "kae", + ReferenceName = "Ketangalan", + Scope = "I", + Type = "E" + }, + new + { + Id = "kaf", + ReferenceName = "Katso", + Scope = "I", + Type = "L" + }, + new + { + Id = "kag", + ReferenceName = "Kajaman", + Scope = "I", + Type = "L" + }, + new + { + Id = "kah", + ReferenceName = "Kara (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kai", + ReferenceName = "Karekare", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaj", + ReferenceName = "Jju", + Scope = "I", + Type = "L" + }, + new + { + Id = "kak", + ReferenceName = "Kalanguya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kal", + Part1 = "kl", + Part2B = "kal", + Part2T = "kal", + ReferenceName = "Kalaallisut", + Scope = "I", + Type = "L" + }, + new + { + Id = "kam", + Part2B = "kam", + Part2T = "kam", + ReferenceName = "Kamba (Kenya)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kan", + Part1 = "kn", + Part2B = "kan", + Part2T = "kan", + ReferenceName = "Kannada", + Scope = "I", + Type = "L" + }, + new + { + Id = "kao", + ReferenceName = "Xaasongaxango", + Scope = "I", + Type = "L" + }, + new + { + Id = "kap", + ReferenceName = "Bezhta", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaq", + ReferenceName = "Capanahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kas", + Part1 = "ks", + Part2B = "kas", + Part2T = "kas", + ReferenceName = "Kashmiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kat", + Part1 = "ka", + Part2B = "geo", + Part2T = "kat", + ReferenceName = "Georgian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kau", + Part1 = "kr", + Part2B = "kau", + Part2T = "kau", + ReferenceName = "Kanuri", + Scope = "M", + Type = "L" + }, + new + { + Id = "kav", + ReferenceName = "Katukína", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaw", + Part2B = "kaw", + Part2T = "kaw", + ReferenceName = "Kawi", + Scope = "I", + Type = "A" + }, + new + { + Id = "kax", + ReferenceName = "Kao", + Scope = "I", + Type = "L" + }, + new + { + Id = "kay", + ReferenceName = "Kamayurá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kaz", + Part1 = "kk", + Part2B = "kaz", + Part2T = "kaz", + ReferenceName = "Kazakh", + Scope = "I", + Type = "L" + }, + new + { + Id = "kba", + ReferenceName = "Kalarko", + Scope = "I", + Type = "E" + }, + new + { + Id = "kbb", + ReferenceName = "Kaxuiâna", + Scope = "I", + Type = "E" + }, + new + { + Id = "kbc", + ReferenceName = "Kadiwéu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbd", + Part2B = "kbd", + Part2T = "kbd", + ReferenceName = "Kabardian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbe", + ReferenceName = "Kanju", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbg", + ReferenceName = "Khamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbh", + ReferenceName = "Camsá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbi", + ReferenceName = "Kaptiau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbj", + ReferenceName = "Kari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbk", + ReferenceName = "Grass Koiari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbl", + ReferenceName = "Kanembu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbm", + ReferenceName = "Iwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbn", + ReferenceName = "Kare (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbo", + ReferenceName = "Keliko", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbp", + ReferenceName = "Kabiyè", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbq", + ReferenceName = "Kamano", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbr", + ReferenceName = "Kafa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbs", + ReferenceName = "Kande", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbt", + ReferenceName = "Abadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbu", + ReferenceName = "Kabutra", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbv", + ReferenceName = "Dera (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbw", + ReferenceName = "Kaiep", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbx", + ReferenceName = "Ap Ma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kby", + ReferenceName = "Manga Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kbz", + ReferenceName = "Duhwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kca", + ReferenceName = "Khanty", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcb", + ReferenceName = "Kawacha", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcc", + ReferenceName = "Lubila", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcd", + ReferenceName = "Ngkâlmpw Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kce", + ReferenceName = "Kaivi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcf", + ReferenceName = "Ukaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcg", + ReferenceName = "Tyap", + Scope = "I", + Type = "L" + }, + new + { + Id = "kch", + ReferenceName = "Vono", + Scope = "I", + Type = "L" + }, + new + { + Id = "kci", + ReferenceName = "Kamantan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcj", + ReferenceName = "Kobiana", + Scope = "I", + Type = "L" + }, + new + { + Id = "kck", + ReferenceName = "Kalanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcl", + ReferenceName = "Kela (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcm", + ReferenceName = "Gula (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcn", + ReferenceName = "Nubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kco", + ReferenceName = "Kinalakna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcp", + ReferenceName = "Kanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcq", + ReferenceName = "Kamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcr", + ReferenceName = "Katla", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcs", + ReferenceName = "Koenoem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kct", + ReferenceName = "Kaian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcu", + ReferenceName = "Kami (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcv", + ReferenceName = "Kete", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcw", + ReferenceName = "Kabwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcx", + ReferenceName = "Kachama-Ganjule", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcy", + ReferenceName = "Korandje", + Scope = "I", + Type = "L" + }, + new + { + Id = "kcz", + ReferenceName = "Konongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kda", + ReferenceName = "Worimi", + Scope = "I", + Type = "E" + }, + new + { + Id = "kdc", + ReferenceName = "Kutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdd", + ReferenceName = "Yankunytjatjara", + Scope = "I", + Type = "L" + }, + new + { + Id = "kde", + ReferenceName = "Makonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdf", + ReferenceName = "Mamusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdg", + ReferenceName = "Seba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdh", + ReferenceName = "Tem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdi", + ReferenceName = "Kumam", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdj", + ReferenceName = "Karamojong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdk", + ReferenceName = "Numèè", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdl", + ReferenceName = "Tsikimba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdm", + ReferenceName = "Kagoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdn", + ReferenceName = "Kunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdp", + ReferenceName = "Kaningdon-Nindem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdq", + ReferenceName = "Koch", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdr", + ReferenceName = "Karaim", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdt", + ReferenceName = "Kuy", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdu", + ReferenceName = "Kadaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdw", + ReferenceName = "Koneraw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdx", + ReferenceName = "Kam", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdy", + ReferenceName = "Keder", + Scope = "I", + Type = "L" + }, + new + { + Id = "kdz", + ReferenceName = "Kwaja", + Scope = "I", + Type = "L" + }, + new + { + Id = "kea", + ReferenceName = "Kabuverdianu", + Scope = "I", + Type = "L" + }, + new + { + Id = "keb", + ReferenceName = "Kélé", + Scope = "I", + Type = "L" + }, + new + { + Id = "kec", + ReferenceName = "Keiga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ked", + ReferenceName = "Kerewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kee", + ReferenceName = "Eastern Keres", + Scope = "I", + Type = "L" + }, + new + { + Id = "kef", + ReferenceName = "Kpessi", + Scope = "I", + Type = "L" + }, + new + { + Id = "keg", + ReferenceName = "Tese", + Scope = "I", + Type = "L" + }, + new + { + Id = "keh", + ReferenceName = "Keak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kei", + ReferenceName = "Kei", + Scope = "I", + Type = "L" + }, + new + { + Id = "kej", + ReferenceName = "Kadar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kek", + ReferenceName = "Kekchí", + Scope = "I", + Type = "L" + }, + new + { + Id = "kel", + ReferenceName = "Kela (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kem", + ReferenceName = "Kemak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ken", + ReferenceName = "Kenyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "keo", + ReferenceName = "Kakwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kep", + ReferenceName = "Kaikadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "keq", + ReferenceName = "Kamar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ker", + ReferenceName = "Kera", + Scope = "I", + Type = "L" + }, + new + { + Id = "kes", + ReferenceName = "Kugbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ket", + ReferenceName = "Ket", + Scope = "I", + Type = "L" + }, + new + { + Id = "keu", + ReferenceName = "Akebu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kev", + ReferenceName = "Kanikkaran", + Scope = "I", + Type = "L" + }, + new + { + Id = "kew", + ReferenceName = "West Kewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kex", + ReferenceName = "Kukna", + Scope = "I", + Type = "L" + }, + new + { + Id = "key", + ReferenceName = "Kupia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kez", + ReferenceName = "Kukele", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfa", + ReferenceName = "Kodava", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfb", + ReferenceName = "Northwestern Kolami", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfc", + ReferenceName = "Konda-Dora", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfd", + ReferenceName = "Korra Koraga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfe", + ReferenceName = "Kota (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kff", + ReferenceName = "Koya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfg", + ReferenceName = "Kudiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfh", + ReferenceName = "Kurichiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfi", + ReferenceName = "Kannada Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfj", + ReferenceName = "Kemiehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfk", + ReferenceName = "Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfl", + ReferenceName = "Kung", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfm", + ReferenceName = "Khunsari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfn", + ReferenceName = "Kuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfo", + ReferenceName = "Koro (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfp", + ReferenceName = "Korwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfq", + ReferenceName = "Korku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfr", + ReferenceName = "Kachhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfs", + ReferenceName = "Bilaspuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kft", + ReferenceName = "Kanjari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfu", + ReferenceName = "Katkari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfv", + ReferenceName = "Kurmukar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfw", + ReferenceName = "Kharam Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfx", + ReferenceName = "Kullu Pahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfy", + ReferenceName = "Kumaoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "kfz", + ReferenceName = "Koromfé", + Scope = "I", + Type = "L" + }, + new + { + Id = "kga", + ReferenceName = "Koyaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgb", + ReferenceName = "Kawe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kge", + ReferenceName = "Komering", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgf", + ReferenceName = "Kube", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgg", + ReferenceName = "Kusunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgi", + ReferenceName = "Selangor Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgj", + ReferenceName = "Gamale Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgk", + ReferenceName = "Kaiwá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgl", + ReferenceName = "Kunggari", + Scope = "I", + Type = "E" + }, + new + { + Id = "kgm", + ReferenceName = "Karipúna", + Scope = "I", + Type = "E" + }, + new + { + Id = "kgn", + ReferenceName = "Karingani", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgo", + ReferenceName = "Krongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgp", + ReferenceName = "Kaingang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgq", + ReferenceName = "Kamoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgr", + ReferenceName = "Abun", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgs", + ReferenceName = "Kumbainggar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgt", + ReferenceName = "Somyev", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgu", + ReferenceName = "Kobol", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgv", + ReferenceName = "Karas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgw", + ReferenceName = "Karon Dori", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgx", + ReferenceName = "Kamaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "kgy", + ReferenceName = "Kyerung", + Scope = "I", + Type = "L" + }, + new + { + Id = "kha", + Part2B = "kha", + Part2T = "kha", + ReferenceName = "Khasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khb", + ReferenceName = "Lü", + Scope = "I", + Type = "L" + }, + new + { + Id = "khc", + ReferenceName = "Tukang Besi North", + Scope = "I", + Type = "L" + }, + new + { + Id = "khd", + ReferenceName = "Bädi Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "khe", + ReferenceName = "Korowai", + Scope = "I", + Type = "L" + }, + new + { + Id = "khf", + ReferenceName = "Khuen", + Scope = "I", + Type = "L" + }, + new + { + Id = "khg", + ReferenceName = "Khams Tibetan", + Scope = "I", + Type = "L" + }, + new + { + Id = "khh", + ReferenceName = "Kehu", + Scope = "I", + Type = "L" + }, + new + { + Id = "khj", + ReferenceName = "Kuturmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khk", + ReferenceName = "Halh Mongolian", + Scope = "I", + Type = "L" + }, + new + { + Id = "khl", + ReferenceName = "Lusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khm", + Part1 = "km", + Part2B = "khm", + Part2T = "khm", + ReferenceName = "Khmer", + Scope = "I", + Type = "L" + }, + new + { + Id = "khn", + ReferenceName = "Khandesi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kho", + Part2B = "kho", + Part2T = "kho", + ReferenceName = "Khotanese", + Scope = "I", + Type = "A" + }, + new + { + Id = "khp", + ReferenceName = "Kapori", + Scope = "I", + Type = "L" + }, + new + { + Id = "khq", + ReferenceName = "Koyra Chiini Songhay", + Scope = "I", + Type = "L" + }, + new + { + Id = "khr", + ReferenceName = "Kharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "khs", + ReferenceName = "Kasua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kht", + ReferenceName = "Khamti", + Scope = "I", + Type = "L" + }, + new + { + Id = "khu", + ReferenceName = "Nkhumbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khv", + ReferenceName = "Khvarshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "khw", + ReferenceName = "Khowar", + Scope = "I", + Type = "L" + }, + new + { + Id = "khx", + ReferenceName = "Kanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "khy", + ReferenceName = "Kele (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "khz", + ReferenceName = "Keapara", + Scope = "I", + Type = "L" + }, + new + { + Id = "kia", + ReferenceName = "Kim", + Scope = "I", + Type = "L" + }, + new + { + Id = "kib", + ReferenceName = "Koalib", + Scope = "I", + Type = "L" + }, + new + { + Id = "kic", + ReferenceName = "Kickapoo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kid", + ReferenceName = "Koshin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kie", + ReferenceName = "Kibet", + Scope = "I", + Type = "L" + }, + new + { + Id = "kif", + ReferenceName = "Eastern Parbate Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kig", + ReferenceName = "Kimaama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kih", + ReferenceName = "Kilmeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kii", + ReferenceName = "Kitsai", + Scope = "I", + Type = "E" + }, + new + { + Id = "kij", + ReferenceName = "Kilivila", + Scope = "I", + Type = "L" + }, + new + { + Id = "kik", + Part1 = "ki", + Part2B = "kik", + Part2T = "kik", + ReferenceName = "Kikuyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kil", + ReferenceName = "Kariya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kim", + ReferenceName = "Karagas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kin", + Part1 = "rw", + Part2B = "kin", + Part2T = "kin", + ReferenceName = "Kinyarwanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kio", + ReferenceName = "Kiowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kip", + ReferenceName = "Sheshi Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiq", + ReferenceName = "Kosadle", + Scope = "I", + Type = "L" + }, + new + { + Id = "kir", + Part1 = "ky", + Part2B = "kir", + Part2T = "kir", + ReferenceName = "Kirghiz", + Scope = "I", + Type = "L" + }, + new + { + Id = "kis", + ReferenceName = "Kis", + Scope = "I", + Type = "L" + }, + new + { + Id = "kit", + ReferenceName = "Agob", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiu", + ReferenceName = "Kirmanjki (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiv", + ReferenceName = "Kimbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiw", + ReferenceName = "Northeast Kiwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kix", + ReferenceName = "Khiamniungan Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiy", + ReferenceName = "Kirikiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kiz", + ReferenceName = "Kisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kja", + ReferenceName = "Mlap", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjb", + ReferenceName = "Q'anjob'al", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjc", + ReferenceName = "Coastal Konjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjd", + ReferenceName = "Southern Kiwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kje", + ReferenceName = "Kisar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjf", + ReferenceName = "Khalaj", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjg", + ReferenceName = "Khmu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjh", + ReferenceName = "Khakas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kji", + ReferenceName = "Zabana", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjj", + ReferenceName = "Khinalugh", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjk", + ReferenceName = "Highland Konjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjl", + ReferenceName = "Western Parbate Kham", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjm", + ReferenceName = "Kháng", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjn", + ReferenceName = "Kunjen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjo", + ReferenceName = "Harijan Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjp", + ReferenceName = "Pwo Eastern Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjq", + ReferenceName = "Western Keres", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjr", + ReferenceName = "Kurudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjs", + ReferenceName = "East Kewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjt", + ReferenceName = "Phrae Pwo Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kju", + ReferenceName = "Kashaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjv", + ReferenceName = "Kaikavian Literary Language", + Scope = "I", + Type = "H" + }, + new + { + Id = "kjx", + ReferenceName = "Ramopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjy", + ReferenceName = "Erave", + Scope = "I", + Type = "L" + }, + new + { + Id = "kjz", + ReferenceName = "Bumthangkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "kka", + ReferenceName = "Kakanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkb", + ReferenceName = "Kwerisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkc", + ReferenceName = "Odoodee", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkd", + ReferenceName = "Kinuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kke", + ReferenceName = "Kakabe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkf", + ReferenceName = "Kalaktang Monpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkg", + ReferenceName = "Mabaka Valley Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkh", + ReferenceName = "Khün", + Scope = "I", + Type = "L" + }, + new + { + Id = "kki", + ReferenceName = "Kagulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkj", + ReferenceName = "Kako", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkk", + ReferenceName = "Kokota", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkl", + ReferenceName = "Kosarek Yale", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkm", + ReferenceName = "Kiong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkn", + ReferenceName = "Kon Keu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kko", + ReferenceName = "Karko", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkp", + ReferenceName = "Gugubera", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkq", + ReferenceName = "Kaiku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkr", + ReferenceName = "Kir-Balar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kks", + ReferenceName = "Giiwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkt", + ReferenceName = "Koi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kku", + ReferenceName = "Tumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkv", + ReferenceName = "Kangean", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkw", + ReferenceName = "Teke-Kukuya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkx", + ReferenceName = "Kohin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kky", + ReferenceName = "Guugu Yimidhirr", + Scope = "I", + Type = "L" + }, + new + { + Id = "kkz", + ReferenceName = "Kaska", + Scope = "I", + Type = "L" + }, + new + { + Id = "kla", + ReferenceName = "Klamath-Modoc", + Scope = "I", + Type = "E" + }, + new + { + Id = "klb", + ReferenceName = "Kiliwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "klc", + ReferenceName = "Kolbila", + Scope = "I", + Type = "L" + }, + new + { + Id = "kld", + ReferenceName = "Gamilaraay", + Scope = "I", + Type = "L" + }, + new + { + Id = "kle", + ReferenceName = "Kulung (Nepal)", + Scope = "I", + Type = "L" + }, + new + { + Id = "klf", + ReferenceName = "Kendeje", + Scope = "I", + Type = "L" + }, + new + { + Id = "klg", + ReferenceName = "Tagakaulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "klh", + ReferenceName = "Weliki", + Scope = "I", + Type = "L" + }, + new + { + Id = "kli", + ReferenceName = "Kalumpang", + Scope = "I", + Type = "L" + }, + new + { + Id = "klj", + ReferenceName = "Turkic Khalaj", + Scope = "I", + Type = "L" + }, + new + { + Id = "klk", + ReferenceName = "Kono (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kll", + ReferenceName = "Kagan Kalagan", + Scope = "I", + Type = "L" + }, + new + { + Id = "klm", + ReferenceName = "Migum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kln", + ReferenceName = "Kalenjin", + Scope = "M", + Type = "L" + }, + new + { + Id = "klo", + ReferenceName = "Kapya", + Scope = "I", + Type = "L" + }, + new + { + Id = "klp", + ReferenceName = "Kamasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "klq", + ReferenceName = "Rumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "klr", + ReferenceName = "Khaling", + Scope = "I", + Type = "L" + }, + new + { + Id = "kls", + ReferenceName = "Kalasha", + Scope = "I", + Type = "L" + }, + new + { + Id = "klt", + ReferenceName = "Nukna", + Scope = "I", + Type = "L" + }, + new + { + Id = "klu", + ReferenceName = "Klao", + Scope = "I", + Type = "L" + }, + new + { + Id = "klv", + ReferenceName = "Maskelynes", + Scope = "I", + Type = "L" + }, + new + { + Id = "klw", + ReferenceName = "Tado", + Scope = "I", + Type = "L" + }, + new + { + Id = "klx", + ReferenceName = "Koluwawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kly", + ReferenceName = "Kalao", + Scope = "I", + Type = "L" + }, + new + { + Id = "klz", + ReferenceName = "Kabola", + Scope = "I", + Type = "L" + }, + new + { + Id = "kma", + ReferenceName = "Konni", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmb", + Part2B = "kmb", + Part2T = "kmb", + ReferenceName = "Kimbundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmc", + ReferenceName = "Southern Dong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmd", + ReferenceName = "Majukayang Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kme", + ReferenceName = "Bakole", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmf", + ReferenceName = "Kare (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmg", + ReferenceName = "Kâte", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmh", + ReferenceName = "Kalam", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmi", + ReferenceName = "Kami (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmj", + ReferenceName = "Kumarbhag Paharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmk", + ReferenceName = "Limos Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kml", + ReferenceName = "Tanudan Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmm", + ReferenceName = "Kom (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmn", + ReferenceName = "Awtuw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmo", + ReferenceName = "Kwoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmp", + ReferenceName = "Gimme", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmq", + ReferenceName = "Kwama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmr", + ReferenceName = "Northern Kurdish", + Scope = "I", + Type = "L" + }, + new + { + Id = "kms", + ReferenceName = "Kamasau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmt", + ReferenceName = "Kemtuik", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmu", + ReferenceName = "Kanite", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmv", + ReferenceName = "Karipúna Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmw", + ReferenceName = "Komo (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmx", + ReferenceName = "Waboda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmy", + ReferenceName = "Koma", + Scope = "I", + Type = "L" + }, + new + { + Id = "kmz", + ReferenceName = "Khorasani Turkish", + Scope = "I", + Type = "L" + }, + new + { + Id = "kna", + ReferenceName = "Dera (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "knb", + ReferenceName = "Lubuagan Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "knc", + ReferenceName = "Central Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "knd", + ReferenceName = "Konda", + Scope = "I", + Type = "L" + }, + new + { + Id = "kne", + ReferenceName = "Kankanaey", + Scope = "I", + Type = "L" + }, + new + { + Id = "knf", + ReferenceName = "Mankanya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kng", + ReferenceName = "Koongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kni", + ReferenceName = "Kanufi", + Scope = "I", + Type = "L" + }, + new + { + Id = "knj", + ReferenceName = "Western Kanjobal", + Scope = "I", + Type = "L" + }, + new + { + Id = "knk", + ReferenceName = "Kuranko", + Scope = "I", + Type = "L" + }, + new + { + Id = "knl", + ReferenceName = "Keninjal", + Scope = "I", + Type = "L" + }, + new + { + Id = "knm", + ReferenceName = "Kanamarí", + Scope = "I", + Type = "L" + }, + new + { + Id = "knn", + ReferenceName = "Konkani (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kno", + ReferenceName = "Kono (Sierra Leone)", + Scope = "I", + Type = "L" + }, + new + { + Id = "knp", + ReferenceName = "Kwanja", + Scope = "I", + Type = "L" + }, + new + { + Id = "knq", + ReferenceName = "Kintaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "knr", + ReferenceName = "Kaningra", + Scope = "I", + Type = "L" + }, + new + { + Id = "kns", + ReferenceName = "Kensiu", + Scope = "I", + Type = "L" + }, + new + { + Id = "knt", + ReferenceName = "Panoan Katukína", + Scope = "I", + Type = "L" + }, + new + { + Id = "knu", + ReferenceName = "Kono (Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "knv", + ReferenceName = "Tabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "knw", + ReferenceName = "Kung-Ekoka", + Scope = "I", + Type = "L" + }, + new + { + Id = "knx", + ReferenceName = "Kendayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kny", + ReferenceName = "Kanyok", + Scope = "I", + Type = "L" + }, + new + { + Id = "knz", + ReferenceName = "Kalamsé", + Scope = "I", + Type = "L" + }, + new + { + Id = "koa", + ReferenceName = "Konomala", + Scope = "I", + Type = "L" + }, + new + { + Id = "koc", + ReferenceName = "Kpati", + Scope = "I", + Type = "E" + }, + new + { + Id = "kod", + ReferenceName = "Kodi", + Scope = "I", + Type = "L" + }, + new + { + Id = "koe", + ReferenceName = "Kacipo-Balesi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kof", + ReferenceName = "Kubi", + Scope = "I", + Type = "E" + }, + new + { + Id = "kog", + ReferenceName = "Cogui", + Scope = "I", + Type = "L" + }, + new + { + Id = "koh", + ReferenceName = "Koyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "koi", + ReferenceName = "Komi-Permyak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kok", + Part2B = "kok", + Part2T = "kok", + ReferenceName = "Konkani (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "kol", + ReferenceName = "Kol (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kom", + Part1 = "kv", + Part2B = "kom", + Part2T = "kom", + ReferenceName = "Komi", + Scope = "M", + Type = "L" + }, + new + { + Id = "kon", + Part1 = "kg", + Part2B = "kon", + Part2T = "kon", + ReferenceName = "Kongo", + Scope = "M", + Type = "L" + }, + new + { + Id = "koo", + ReferenceName = "Konzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kop", + ReferenceName = "Waube", + Scope = "I", + Type = "L" + }, + new + { + Id = "koq", + ReferenceName = "Kota (Gabon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kor", + Part1 = "ko", + Part2B = "kor", + Part2T = "kor", + ReferenceName = "Korean", + Scope = "I", + Type = "L" + }, + new + { + Id = "kos", + Part2B = "kos", + Part2T = "kos", + ReferenceName = "Kosraean", + Scope = "I", + Type = "L" + }, + new + { + Id = "kot", + ReferenceName = "Lagwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kou", + ReferenceName = "Koke", + Scope = "I", + Type = "L" + }, + new + { + Id = "kov", + ReferenceName = "Kudu-Camo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kow", + ReferenceName = "Kugama", + Scope = "I", + Type = "L" + }, + new + { + Id = "koy", + ReferenceName = "Koyukon", + Scope = "I", + Type = "L" + }, + new + { + Id = "koz", + ReferenceName = "Korak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpa", + ReferenceName = "Kutto", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpb", + ReferenceName = "Mullu Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpc", + ReferenceName = "Curripaco", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpd", + ReferenceName = "Koba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpe", + Part2B = "kpe", + Part2T = "kpe", + ReferenceName = "Kpelle", + Scope = "M", + Type = "L" + }, + new + { + Id = "kpf", + ReferenceName = "Komba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpg", + ReferenceName = "Kapingamarangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kph", + ReferenceName = "Kplang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpi", + ReferenceName = "Kofei", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpj", + ReferenceName = "Karajá", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpk", + ReferenceName = "Kpan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpl", + ReferenceName = "Kpala", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpm", + ReferenceName = "Koho", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpn", + ReferenceName = "Kepkiriwát", + Scope = "I", + Type = "E" + }, + new + { + Id = "kpo", + ReferenceName = "Ikposo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpq", + ReferenceName = "Korupun-Sela", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpr", + ReferenceName = "Korafe-Yegha", + Scope = "I", + Type = "L" + }, + new + { + Id = "kps", + ReferenceName = "Tehit", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpt", + ReferenceName = "Karata", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpu", + ReferenceName = "Kafoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpv", + ReferenceName = "Komi-Zyrian", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpw", + ReferenceName = "Kobon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpx", + ReferenceName = "Mountain Koiali", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpy", + ReferenceName = "Koryak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kpz", + ReferenceName = "Kupsabiny", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqa", + ReferenceName = "Mum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqb", + ReferenceName = "Kovai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqc", + ReferenceName = "Doromu-Koki", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqd", + ReferenceName = "Koy Sanjaq Surat", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqe", + ReferenceName = "Kalagan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqf", + ReferenceName = "Kakabai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqg", + ReferenceName = "Khe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqh", + ReferenceName = "Kisankasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqi", + ReferenceName = "Koitabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqj", + ReferenceName = "Koromira", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqk", + ReferenceName = "Kotafon Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "kql", + ReferenceName = "Kyenele", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqm", + ReferenceName = "Khisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqn", + ReferenceName = "Kaonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqo", + ReferenceName = "Eastern Krahn", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqp", + ReferenceName = "Kimré", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqq", + ReferenceName = "Krenak", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqr", + ReferenceName = "Kimaragang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqs", + ReferenceName = "Northern Kissi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqt", + ReferenceName = "Klias River Kadazan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqu", + ReferenceName = "Seroa", + Scope = "I", + Type = "E" + }, + new + { + Id = "kqv", + ReferenceName = "Okolod", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqw", + ReferenceName = "Kandas", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqx", + ReferenceName = "Mser", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqy", + ReferenceName = "Koorete", + Scope = "I", + Type = "L" + }, + new + { + Id = "kqz", + ReferenceName = "Korana", + Scope = "I", + Type = "E" + }, + new + { + Id = "kra", + ReferenceName = "Kumhali", + Scope = "I", + Type = "L" + }, + new + { + Id = "krb", + ReferenceName = "Karkin", + Scope = "I", + Type = "E" + }, + new + { + Id = "krc", + Part2B = "krc", + Part2T = "krc", + ReferenceName = "Karachay-Balkar", + Scope = "I", + Type = "L" + }, + new + { + Id = "krd", + ReferenceName = "Kairui-Midiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "kre", + ReferenceName = "Panará", + Scope = "I", + Type = "L" + }, + new + { + Id = "krf", + ReferenceName = "Koro (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "krh", + ReferenceName = "Kurama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kri", + ReferenceName = "Krio", + Scope = "I", + Type = "L" + }, + new + { + Id = "krj", + ReferenceName = "Kinaray-A", + Scope = "I", + Type = "L" + }, + new + { + Id = "krk", + ReferenceName = "Kerek", + Scope = "I", + Type = "E" + }, + new + { + Id = "krl", + Part2B = "krl", + Part2T = "krl", + ReferenceName = "Karelian", + Scope = "I", + Type = "L" + }, + new + { + Id = "krn", + ReferenceName = "Sapo", + Scope = "I", + Type = "L" + }, + new + { + Id = "krp", + ReferenceName = "Korop", + Scope = "I", + Type = "L" + }, + new + { + Id = "krr", + ReferenceName = "Krung", + Scope = "I", + Type = "L" + }, + new + { + Id = "krs", + ReferenceName = "Gbaya (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "krt", + ReferenceName = "Tumari Kanuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "kru", + Part2B = "kru", + Part2T = "kru", + ReferenceName = "Kurukh", + Scope = "I", + Type = "L" + }, + new + { + Id = "krv", + ReferenceName = "Kavet", + Scope = "I", + Type = "L" + }, + new + { + Id = "krw", + ReferenceName = "Western Krahn", + Scope = "I", + Type = "L" + }, + new + { + Id = "krx", + ReferenceName = "Karon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kry", + ReferenceName = "Kryts", + Scope = "I", + Type = "L" + }, + new + { + Id = "krz", + ReferenceName = "Sota Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksa", + ReferenceName = "Shuwa-Zamani", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksb", + ReferenceName = "Shambala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksc", + ReferenceName = "Southern Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksd", + ReferenceName = "Kuanua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kse", + ReferenceName = "Kuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksf", + ReferenceName = "Bafia", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksg", + ReferenceName = "Kusaghe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksh", + ReferenceName = "Kölsch", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksi", + ReferenceName = "Krisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksj", + ReferenceName = "Uare", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksk", + ReferenceName = "Kansa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksl", + ReferenceName = "Kumalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksm", + ReferenceName = "Kumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksn", + ReferenceName = "Kasiguranin", + Scope = "I", + Type = "L" + }, + new + { + Id = "kso", + ReferenceName = "Kofa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksp", + ReferenceName = "Kaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksq", + ReferenceName = "Kwaami", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksr", + ReferenceName = "Borong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kss", + ReferenceName = "Southern Kisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kst", + ReferenceName = "Winyé", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksu", + ReferenceName = "Khamyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksv", + ReferenceName = "Kusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksw", + ReferenceName = "S'gaw Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksx", + ReferenceName = "Kedang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksy", + ReferenceName = "Kharia Thar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ksz", + ReferenceName = "Kodaku", + Scope = "I", + Type = "L" + }, + new + { + Id = "kta", + ReferenceName = "Katua", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktb", + ReferenceName = "Kambaata", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktc", + ReferenceName = "Kholok", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktd", + ReferenceName = "Kokata", + Scope = "I", + Type = "L" + }, + new + { + Id = "kte", + ReferenceName = "Nubri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktf", + ReferenceName = "Kwami", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktg", + ReferenceName = "Kalkutung", + Scope = "I", + Type = "E" + }, + new + { + Id = "kth", + ReferenceName = "Karanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kti", + ReferenceName = "North Muyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktj", + ReferenceName = "Plapo Krumen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktk", + ReferenceName = "Kaniet", + Scope = "I", + Type = "E" + }, + new + { + Id = "ktl", + ReferenceName = "Koroshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktm", + ReferenceName = "Kurti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktn", + ReferenceName = "Karitiâna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kto", + ReferenceName = "Kuot", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktp", + ReferenceName = "Kaduo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktq", + ReferenceName = "Katabaga", + Scope = "I", + Type = "E" + }, + new + { + Id = "kts", + ReferenceName = "South Muyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktt", + ReferenceName = "Ketum", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktu", + ReferenceName = "Kituba (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktv", + ReferenceName = "Eastern Katu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktw", + ReferenceName = "Kato", + Scope = "I", + Type = "E" + }, + new + { + Id = "ktx", + ReferenceName = "Kaxararí", + Scope = "I", + Type = "L" + }, + new + { + Id = "kty", + ReferenceName = "Kango (Bas-Uélé District)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ktz", + ReferenceName = "Juǀʼhoan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kua", + Part1 = "kj", + Part2B = "kua", + Part2T = "kua", + ReferenceName = "Kuanyama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kub", + ReferenceName = "Kutep", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuc", + ReferenceName = "Kwinsu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kud", + ReferenceName = "'Auhelawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kue", + ReferenceName = "Kuman (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuf", + ReferenceName = "Western Katu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kug", + ReferenceName = "Kupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuh", + ReferenceName = "Kushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kui", + ReferenceName = "Kuikúro-Kalapálo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuj", + ReferenceName = "Kuria", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuk", + ReferenceName = "Kepo'", + Scope = "I", + Type = "L" + }, + new + { + Id = "kul", + ReferenceName = "Kulere", + Scope = "I", + Type = "L" + }, + new + { + Id = "kum", + Part2B = "kum", + Part2T = "kum", + ReferenceName = "Kumyk", + Scope = "I", + Type = "L" + }, + new + { + Id = "kun", + ReferenceName = "Kunama", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuo", + ReferenceName = "Kumukio", + Scope = "I", + Type = "L" + }, + new + { + Id = "kup", + ReferenceName = "Kunimaipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuq", + ReferenceName = "Karipuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kur", + Part1 = "ku", + Part2B = "kur", + Part2T = "kur", + ReferenceName = "Kurdish", + Scope = "M", + Type = "L" + }, + new + { + Id = "kus", + ReferenceName = "Kusaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "kut", + Part2B = "kut", + Part2T = "kut", + ReferenceName = "Kutenai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuu", + ReferenceName = "Upper Kuskokwim", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuv", + ReferenceName = "Kur", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuw", + ReferenceName = "Kpagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "kux", + ReferenceName = "Kukatja", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuy", + ReferenceName = "Kuuku-Ya'u", + Scope = "I", + Type = "L" + }, + new + { + Id = "kuz", + ReferenceName = "Kunza", + Scope = "I", + Type = "E" + }, + new + { + Id = "kva", + ReferenceName = "Bagvalal", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvb", + ReferenceName = "Kubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvc", + ReferenceName = "Kove", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvd", + ReferenceName = "Kui (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kve", + ReferenceName = "Kalabakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvf", + ReferenceName = "Kabalai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvg", + ReferenceName = "Kuni-Boazi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvh", + ReferenceName = "Komodo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvi", + ReferenceName = "Kwang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvj", + ReferenceName = "Psikye", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvk", + ReferenceName = "Korean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvl", + ReferenceName = "Kayaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvm", + ReferenceName = "Kendem", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvn", + ReferenceName = "Border Kuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvo", + ReferenceName = "Dobel", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvp", + ReferenceName = "Kompane", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvq", + ReferenceName = "Geba Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvr", + ReferenceName = "Kerinci", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvt", + ReferenceName = "Lahta Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvu", + ReferenceName = "Yinbaw Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvv", + ReferenceName = "Kola", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvw", + ReferenceName = "Wersing", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvx", + ReferenceName = "Parkari Koli", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvy", + ReferenceName = "Yintale Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kvz", + ReferenceName = "Tsakwambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwa", + ReferenceName = "Dâw", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwb", + ReferenceName = "Kwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwc", + ReferenceName = "Likwala", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwd", + ReferenceName = "Kwaio", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwe", + ReferenceName = "Kwerba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwf", + ReferenceName = "Kwara'ae", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwg", + ReferenceName = "Sara Kaba Deme", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwh", + ReferenceName = "Kowiai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwi", + ReferenceName = "Awa-Cuaiquer", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwj", + ReferenceName = "Kwanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwk", + ReferenceName = "Kwakiutl", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwl", + ReferenceName = "Kofyar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwm", + ReferenceName = "Kwambi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwn", + ReferenceName = "Kwangali", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwo", + ReferenceName = "Kwomtari", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwp", + ReferenceName = "Kodia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwr", + ReferenceName = "Kwer", + Scope = "I", + Type = "L" + }, + new + { + Id = "kws", + ReferenceName = "Kwese", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwt", + ReferenceName = "Kwesten", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwu", + ReferenceName = "Kwakum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwv", + ReferenceName = "Sara Kaba Náà", + Scope = "I", + Type = "L" + }, + new + { + Id = "kww", + ReferenceName = "Kwinti", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwx", + ReferenceName = "Khirwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwy", + ReferenceName = "San Salvador Kongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kwz", + ReferenceName = "Kwadi", + Scope = "I", + Type = "E" + }, + new + { + Id = "kxa", + ReferenceName = "Kairiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxb", + ReferenceName = "Krobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxc", + ReferenceName = "Konso", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxd", + ReferenceName = "Brunei", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxf", + ReferenceName = "Manumanaw Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxh", + ReferenceName = "Karo (Ethiopia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxi", + ReferenceName = "Keningau Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxj", + ReferenceName = "Kulfa", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxk", + ReferenceName = "Zayein Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxl", + ReferenceName = "Nepali Kurux", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxm", + ReferenceName = "Northern Khmer", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxn", + ReferenceName = "Kanowit-Tanjong Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxo", + ReferenceName = "Kanoé", + Scope = "I", + Type = "E" + }, + new + { + Id = "kxp", + ReferenceName = "Wadiyara Koli", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxq", + ReferenceName = "Smärky Kanum", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxr", + ReferenceName = "Koro (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxs", + ReferenceName = "Kangjia", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxt", + ReferenceName = "Koiwat", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxu", + ReferenceName = "Kui (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxv", + ReferenceName = "Kuvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxw", + ReferenceName = "Konai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxx", + ReferenceName = "Likuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxy", + ReferenceName = "Kayong", + Scope = "I", + Type = "L" + }, + new + { + Id = "kxz", + ReferenceName = "Kerewo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kya", + ReferenceName = "Kwaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyb", + ReferenceName = "Butbut Kalinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyc", + ReferenceName = "Kyaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyd", + ReferenceName = "Karey", + Scope = "I", + Type = "L" + }, + new + { + Id = "kye", + ReferenceName = "Krache", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyf", + ReferenceName = "Kouya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyg", + ReferenceName = "Keyagana", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyh", + ReferenceName = "Karok", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyi", + ReferenceName = "Kiput", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyj", + ReferenceName = "Karao", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyk", + ReferenceName = "Kamayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyl", + ReferenceName = "Kalapuya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kym", + ReferenceName = "Kpatili", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyn", + ReferenceName = "Northern Binukidnon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyo", + ReferenceName = "Kelon", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyp", + ReferenceName = "Kang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyq", + ReferenceName = "Kenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyr", + ReferenceName = "Kuruáya", + Scope = "I", + Type = "L" + }, + new + { + Id = "kys", + ReferenceName = "Baram Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyt", + ReferenceName = "Kayagar", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyu", + ReferenceName = "Western Kayah", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyv", + ReferenceName = "Kayort", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyw", + ReferenceName = "Kudmali", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyx", + ReferenceName = "Rapoisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyy", + ReferenceName = "Kambaira", + Scope = "I", + Type = "L" + }, + new + { + Id = "kyz", + ReferenceName = "Kayabí", + Scope = "I", + Type = "L" + }, + new + { + Id = "kza", + ReferenceName = "Western Karaboro", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzb", + ReferenceName = "Kaibobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzc", + ReferenceName = "Bondoukou Kulango", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzd", + ReferenceName = "Kadai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kze", + ReferenceName = "Kosena", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzf", + ReferenceName = "Da'a Kaili", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzg", + ReferenceName = "Kikai", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzi", + ReferenceName = "Kelabit", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzk", + ReferenceName = "Kazukuru", + Scope = "I", + Type = "E" + }, + new + { + Id = "kzl", + ReferenceName = "Kayeli", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzm", + ReferenceName = "Kais", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzn", + ReferenceName = "Kokola", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzo", + ReferenceName = "Kaningi", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzp", + ReferenceName = "Kaidipang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzq", + ReferenceName = "Kaike", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzr", + ReferenceName = "Karang", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzs", + ReferenceName = "Sugut Dusun", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzu", + ReferenceName = "Kayupulau", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzv", + ReferenceName = "Komyandaret", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzw", + ReferenceName = "Karirí-Xocó", + Scope = "I", + Type = "E" + }, + new + { + Id = "kzx", + ReferenceName = "Kamarian", + Scope = "I", + Type = "E" + }, + new + { + Id = "kzy", + ReferenceName = "Kango (Tshopo District)", + Scope = "I", + Type = "L" + }, + new + { + Id = "kzz", + ReferenceName = "Kalabra", + Scope = "I", + Type = "L" + }, + new + { + Id = "laa", + ReferenceName = "Southern Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "lab", + ReferenceName = "Linear A", + Scope = "I", + Type = "A" + }, + new + { + Id = "lac", + ReferenceName = "Lacandon", + Scope = "I", + Type = "L" + }, + new + { + Id = "lad", + Part2B = "lad", + Part2T = "lad", + ReferenceName = "Ladino", + Scope = "I", + Type = "L" + }, + new + { + Id = "lae", + ReferenceName = "Pattani", + Scope = "I", + Type = "L" + }, + new + { + Id = "laf", + ReferenceName = "Lafofa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lag", + ReferenceName = "Langi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lah", + Part2B = "lah", + Part2T = "lah", + ReferenceName = "Lahnda", + Scope = "M", + Type = "L" + }, + new + { + Id = "lai", + ReferenceName = "Lambya", + Scope = "I", + Type = "L" + }, + new + { + Id = "laj", + ReferenceName = "Lango (Uganda)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lak", + ReferenceName = "Laka (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lal", + ReferenceName = "Lalia", + Scope = "I", + Type = "L" + }, + new + { + Id = "lam", + Part2B = "lam", + Part2T = "lam", + ReferenceName = "Lamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lan", + ReferenceName = "Laru", + Scope = "I", + Type = "L" + }, + new + { + Id = "lao", + Part1 = "lo", + Part2B = "lao", + Part2T = "lao", + ReferenceName = "Lao", + Scope = "I", + Type = "L" + }, + new + { + Id = "lap", + ReferenceName = "Laka (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "laq", + ReferenceName = "Qabiao", + Scope = "I", + Type = "L" + }, + new + { + Id = "lar", + ReferenceName = "Larteh", + Scope = "I", + Type = "L" + }, + new + { + Id = "las", + ReferenceName = "Lama (Togo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lat", + Part1 = "la", + Part2B = "lat", + Part2T = "lat", + ReferenceName = "Latin", + Scope = "I", + Type = "A" + }, + new + { + Id = "lau", + ReferenceName = "Laba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lav", + Part1 = "lv", + Part2B = "lav", + Part2T = "lav", + ReferenceName = "Latvian", + Scope = "M", + Type = "L" + }, + new + { + Id = "law", + ReferenceName = "Lauje", + Scope = "I", + Type = "L" + }, + new + { + Id = "lax", + ReferenceName = "Tiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lay", + ReferenceName = "Lama Bai", + Scope = "I", + Type = "L" + }, + new + { + Id = "laz", + ReferenceName = "Aribwatsa", + Scope = "I", + Type = "E" + }, + new + { + Id = "lbb", + ReferenceName = "Label", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbc", + ReferenceName = "Lakkia", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbe", + ReferenceName = "Lak", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbf", + ReferenceName = "Tinani", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbg", + ReferenceName = "Laopang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbi", + ReferenceName = "La'bi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbj", + ReferenceName = "Ladakhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbk", + ReferenceName = "Central Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbl", + ReferenceName = "Libon Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbm", + ReferenceName = "Lodhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbn", + ReferenceName = "Rmeet", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbo", + ReferenceName = "Laven", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbq", + ReferenceName = "Wampar", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbr", + ReferenceName = "Lohorung", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbs", + ReferenceName = "Libyan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbt", + ReferenceName = "Lachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbu", + ReferenceName = "Labu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbv", + ReferenceName = "Lavatbura-Lamusong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbw", + ReferenceName = "Tolaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lbx", + ReferenceName = "Lawangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lby", + ReferenceName = "Lamalama", + Scope = "I", + Type = "E" + }, + new + { + Id = "lbz", + ReferenceName = "Lardil", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcc", + ReferenceName = "Legenyem", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcd", + ReferenceName = "Lola", + Scope = "I", + Type = "L" + }, + new + { + Id = "lce", + ReferenceName = "Loncong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcf", + ReferenceName = "Lubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lch", + ReferenceName = "Luchazi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcl", + ReferenceName = "Lisela", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcm", + ReferenceName = "Tungag", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcp", + ReferenceName = "Western Lawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcq", + ReferenceName = "Luhu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lcs", + ReferenceName = "Lisabata-Nuniali", + Scope = "I", + Type = "L" + }, + new + { + Id = "lda", + ReferenceName = "Kla-Dan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldb", + ReferenceName = "Dũya", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldd", + ReferenceName = "Luri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldg", + ReferenceName = "Lenyima", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldh", + ReferenceName = "Lamja-Dengsa-Tola", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldi", + ReferenceName = "Laari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldj", + ReferenceName = "Lemoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldk", + ReferenceName = "Leelau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldl", + ReferenceName = "Kaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldm", + ReferenceName = "Landoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldn", + ReferenceName = "Láadan", + Scope = "I", + Type = "C" + }, + new + { + Id = "ldo", + ReferenceName = "Loo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldp", + ReferenceName = "Tso", + Scope = "I", + Type = "L" + }, + new + { + Id = "ldq", + ReferenceName = "Lufu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lea", + ReferenceName = "Lega-Shabunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "leb", + ReferenceName = "Lala-Bisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lec", + ReferenceName = "Leco", + Scope = "I", + Type = "L" + }, + new + { + Id = "led", + ReferenceName = "Lendu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lee", + ReferenceName = "Lyélé", + Scope = "I", + Type = "L" + }, + new + { + Id = "lef", + ReferenceName = "Lelemi", + Scope = "I", + Type = "L" + }, + new + { + Id = "leh", + ReferenceName = "Lenje", + Scope = "I", + Type = "L" + }, + new + { + Id = "lei", + ReferenceName = "Lemio", + Scope = "I", + Type = "L" + }, + new + { + Id = "lej", + ReferenceName = "Lengola", + Scope = "I", + Type = "L" + }, + new + { + Id = "lek", + ReferenceName = "Leipon", + Scope = "I", + Type = "L" + }, + new + { + Id = "lel", + ReferenceName = "Lele (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lem", + ReferenceName = "Nomaande", + Scope = "I", + Type = "L" + }, + new + { + Id = "len", + ReferenceName = "Lenca", + Scope = "I", + Type = "E" + }, + new + { + Id = "leo", + ReferenceName = "Leti (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lep", + ReferenceName = "Lepcha", + Scope = "I", + Type = "L" + }, + new + { + Id = "leq", + ReferenceName = "Lembena", + Scope = "I", + Type = "L" + }, + new + { + Id = "ler", + ReferenceName = "Lenkau", + Scope = "I", + Type = "L" + }, + new + { + Id = "les", + ReferenceName = "Lese", + Scope = "I", + Type = "L" + }, + new + { + Id = "let", + ReferenceName = "Lesing-Gelimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "leu", + ReferenceName = "Kara (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lev", + ReferenceName = "Lamma", + Scope = "I", + Type = "L" + }, + new + { + Id = "lew", + ReferenceName = "Ledo Kaili", + Scope = "I", + Type = "L" + }, + new + { + Id = "lex", + ReferenceName = "Luang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ley", + ReferenceName = "Lemolang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lez", + Part2B = "lez", + Part2T = "lez", + ReferenceName = "Lezghian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lfa", + ReferenceName = "Lefa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lfn", + ReferenceName = "Lingua Franca Nova", + Scope = "I", + Type = "C" + }, + new + { + Id = "lga", + ReferenceName = "Lungga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgb", + ReferenceName = "Laghu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgg", + ReferenceName = "Lugbara", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgh", + ReferenceName = "Laghuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgi", + ReferenceName = "Lengilu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgk", + ReferenceName = "Lingarak", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgl", + ReferenceName = "Wala", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgm", + ReferenceName = "Lega-Mwenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgn", + ReferenceName = "T'apo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgq", + ReferenceName = "Logba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgr", + ReferenceName = "Lengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgt", + ReferenceName = "Pahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgu", + ReferenceName = "Longgu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lgz", + ReferenceName = "Ligenza", + Scope = "I", + Type = "L" + }, + new + { + Id = "lha", + ReferenceName = "Laha (Viet Nam)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhh", + ReferenceName = "Laha (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhi", + ReferenceName = "Lahu Shi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhl", + ReferenceName = "Lahul Lohar", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhm", + ReferenceName = "Lhomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhn", + ReferenceName = "Lahanan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhp", + ReferenceName = "Lhokpu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhs", + ReferenceName = "Mlahsö", + Scope = "I", + Type = "E" + }, + new + { + Id = "lht", + ReferenceName = "Lo-Toga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lhu", + ReferenceName = "Lahu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lia", + ReferenceName = "West-Central Limba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lib", + ReferenceName = "Likum", + Scope = "I", + Type = "L" + }, + new + { + Id = "lic", + ReferenceName = "Hlai", + Scope = "I", + Type = "L" + }, + new + { + Id = "lid", + ReferenceName = "Nyindrou", + Scope = "I", + Type = "L" + }, + new + { + Id = "lie", + ReferenceName = "Likila", + Scope = "I", + Type = "L" + }, + new + { + Id = "lif", + ReferenceName = "Limbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lig", + ReferenceName = "Ligbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lih", + ReferenceName = "Lihir", + Scope = "I", + Type = "L" + }, + new + { + Id = "lij", + ReferenceName = "Ligurian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lik", + ReferenceName = "Lika", + Scope = "I", + Type = "L" + }, + new + { + Id = "lil", + ReferenceName = "Lillooet", + Scope = "I", + Type = "L" + }, + new + { + Id = "lim", + Part1 = "li", + Part2B = "lim", + Part2T = "lim", + ReferenceName = "Limburgan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lin", + Part1 = "ln", + Part2B = "lin", + Part2T = "lin", + ReferenceName = "Lingala", + Scope = "I", + Type = "L" + }, + new + { + Id = "lio", + ReferenceName = "Liki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lip", + ReferenceName = "Sekpele", + Scope = "I", + Type = "L" + }, + new + { + Id = "liq", + ReferenceName = "Libido", + Scope = "I", + Type = "L" + }, + new + { + Id = "lir", + ReferenceName = "Liberian English", + Scope = "I", + Type = "L" + }, + new + { + Id = "lis", + ReferenceName = "Lisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lit", + Part1 = "lt", + Part2B = "lit", + Part2T = "lit", + ReferenceName = "Lithuanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "liu", + ReferenceName = "Logorik", + Scope = "I", + Type = "L" + }, + new + { + Id = "liv", + ReferenceName = "Liv", + Scope = "I", + Type = "L" + }, + new + { + Id = "liw", + ReferenceName = "Col", + Scope = "I", + Type = "L" + }, + new + { + Id = "lix", + ReferenceName = "Liabuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "liy", + ReferenceName = "Banda-Bambari", + Scope = "I", + Type = "L" + }, + new + { + Id = "liz", + ReferenceName = "Libinza", + Scope = "I", + Type = "L" + }, + new + { + Id = "lja", + ReferenceName = "Golpa", + Scope = "I", + Type = "E" + }, + new + { + Id = "lje", + ReferenceName = "Rampi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lji", + ReferenceName = "Laiyolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljl", + ReferenceName = "Li'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljp", + ReferenceName = "Lampung Api", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljw", + ReferenceName = "Yirandali", + Scope = "I", + Type = "L" + }, + new + { + Id = "ljx", + ReferenceName = "Yuru", + Scope = "I", + Type = "E" + }, + new + { + Id = "lka", + ReferenceName = "Lakalei", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkb", + ReferenceName = "Kabras", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkc", + ReferenceName = "Kucong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkd", + ReferenceName = "Lakondê", + Scope = "I", + Type = "L" + }, + new + { + Id = "lke", + ReferenceName = "Kenyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkh", + ReferenceName = "Lakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "lki", + ReferenceName = "Laki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkj", + ReferenceName = "Remun", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkl", + ReferenceName = "Laeko-Libuat", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkm", + ReferenceName = "Kalaamaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "lkn", + ReferenceName = "Lakon", + Scope = "I", + Type = "L" + }, + new + { + Id = "lko", + ReferenceName = "Khayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkr", + ReferenceName = "Päri", + Scope = "I", + Type = "L" + }, + new + { + Id = "lks", + ReferenceName = "Kisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lkt", + ReferenceName = "Lakota", + Scope = "I", + Type = "L" + }, + new + { + Id = "lku", + ReferenceName = "Kungkari", + Scope = "I", + Type = "E" + }, + new + { + Id = "lky", + ReferenceName = "Lokoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "lla", + ReferenceName = "Lala-Roba", + Scope = "I", + Type = "L" + }, + new + { + Id = "llb", + ReferenceName = "Lolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "llc", + ReferenceName = "Lele (Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lld", + ReferenceName = "Ladin", + Scope = "I", + Type = "L" + }, + new + { + Id = "lle", + ReferenceName = "Lele (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "llf", + ReferenceName = "Hermit", + Scope = "I", + Type = "E" + }, + new + { + Id = "llg", + ReferenceName = "Lole", + Scope = "I", + Type = "L" + }, + new + { + Id = "llh", + ReferenceName = "Lamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lli", + ReferenceName = "Teke-Laali", + Scope = "I", + Type = "L" + }, + new + { + Id = "llj", + ReferenceName = "Ladji Ladji", + Scope = "I", + Type = "E" + }, + new + { + Id = "llk", + ReferenceName = "Lelak", + Scope = "I", + Type = "E" + }, + new + { + Id = "lll", + ReferenceName = "Lilau", + Scope = "I", + Type = "L" + }, + new + { + Id = "llm", + ReferenceName = "Lasalimu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lln", + ReferenceName = "Lele (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "llp", + ReferenceName = "North Efate", + Scope = "I", + Type = "L" + }, + new + { + Id = "llq", + ReferenceName = "Lolak", + Scope = "I", + Type = "L" + }, + new + { + Id = "lls", + ReferenceName = "Lithuanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "llu", + ReferenceName = "Lau", + Scope = "I", + Type = "L" + }, + new + { + Id = "llx", + ReferenceName = "Lauan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lma", + ReferenceName = "East Limba", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmb", + ReferenceName = "Merei", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmc", + ReferenceName = "Limilngan", + Scope = "I", + Type = "E" + }, + new + { + Id = "lmd", + ReferenceName = "Lumun", + Scope = "I", + Type = "L" + }, + new + { + Id = "lme", + ReferenceName = "Pévé", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmf", + ReferenceName = "South Lembata", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmg", + ReferenceName = "Lamogai", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmh", + ReferenceName = "Lambichhong", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmi", + ReferenceName = "Lombi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmj", + ReferenceName = "West Lembata", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmk", + ReferenceName = "Lamkang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lml", + ReferenceName = "Hano", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmn", + ReferenceName = "Lambadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmo", + ReferenceName = "Lombard", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmp", + ReferenceName = "Limbum", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmq", + ReferenceName = "Lamatuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmr", + ReferenceName = "Lamalera", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmu", + ReferenceName = "Lamenu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmv", + ReferenceName = "Lomaiviti", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmw", + ReferenceName = "Lake Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmx", + ReferenceName = "Laimbue", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmy", + ReferenceName = "Lamboya", + Scope = "I", + Type = "L" + }, + new + { + Id = "lmz", + ReferenceName = "Lumbee", + Scope = "I", + Type = "E" + }, + new + { + Id = "lna", + ReferenceName = "Langbashe", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnb", + ReferenceName = "Mbalanhu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnd", + ReferenceName = "Lundayeh", + Scope = "I", + Type = "L" + }, + new + { + Id = "lng", + ReferenceName = "Langobardic", + Scope = "I", + Type = "A" + }, + new + { + Id = "lnh", + ReferenceName = "Lanoh", + Scope = "I", + Type = "L" + }, + new + { + Id = "lni", + ReferenceName = "Daantanai'", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnj", + ReferenceName = "Leningitij", + Scope = "I", + Type = "E" + }, + new + { + Id = "lnl", + ReferenceName = "South Central Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnm", + ReferenceName = "Langam", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnn", + ReferenceName = "Lorediakarkar", + Scope = "I", + Type = "L" + }, + new + { + Id = "lno", + ReferenceName = "Lango (South Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lns", + ReferenceName = "Lamnso'", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnu", + ReferenceName = "Longuda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lnw", + ReferenceName = "Lanima", + Scope = "I", + Type = "E" + }, + new + { + Id = "lnz", + ReferenceName = "Lonzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "loa", + ReferenceName = "Loloda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lob", + ReferenceName = "Lobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "loc", + ReferenceName = "Inonhan", + Scope = "I", + Type = "L" + }, + new + { + Id = "loe", + ReferenceName = "Saluan", + Scope = "I", + Type = "L" + }, + new + { + Id = "lof", + ReferenceName = "Logol", + Scope = "I", + Type = "L" + }, + new + { + Id = "log", + ReferenceName = "Logo", + Scope = "I", + Type = "L" + }, + new + { + Id = "loh", + ReferenceName = "Narim", + Scope = "I", + Type = "L" + }, + new + { + Id = "loi", + ReferenceName = "Loma (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "loj", + ReferenceName = "Lou", + Scope = "I", + Type = "L" + }, + new + { + Id = "lok", + ReferenceName = "Loko", + Scope = "I", + Type = "L" + }, + new + { + Id = "lol", + Part2B = "lol", + Part2T = "lol", + ReferenceName = "Mongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lom", + ReferenceName = "Loma (Liberia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lon", + ReferenceName = "Malawi Lomwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "loo", + ReferenceName = "Lombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lop", + ReferenceName = "Lopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "loq", + ReferenceName = "Lobala", + Scope = "I", + Type = "L" + }, + new + { + Id = "lor", + ReferenceName = "Téén", + Scope = "I", + Type = "L" + }, + new + { + Id = "los", + ReferenceName = "Loniu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lot", + ReferenceName = "Otuho", + Scope = "I", + Type = "L" + }, + new + { + Id = "lou", + ReferenceName = "Louisiana Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "lov", + ReferenceName = "Lopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "low", + ReferenceName = "Tampias Lobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lox", + ReferenceName = "Loun", + Scope = "I", + Type = "L" + }, + new + { + Id = "loy", + ReferenceName = "Loke", + Scope = "I", + Type = "L" + }, + new + { + Id = "loz", + Part2B = "loz", + Part2T = "loz", + ReferenceName = "Lozi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpa", + ReferenceName = "Lelepa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpe", + ReferenceName = "Lepki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpn", + ReferenceName = "Long Phuri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpo", + ReferenceName = "Lipo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lpx", + ReferenceName = "Lopit", + Scope = "I", + Type = "L" + }, + new + { + Id = "lra", + ReferenceName = "Rara Bakati'", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrc", + ReferenceName = "Northern Luri", + Scope = "I", + Type = "L" + }, + new + { + Id = "lre", + ReferenceName = "Laurentian", + Scope = "I", + Type = "E" + }, + new + { + Id = "lrg", + ReferenceName = "Laragia", + Scope = "I", + Type = "E" + }, + new + { + Id = "lri", + ReferenceName = "Marachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrk", + ReferenceName = "Loarki", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrl", + ReferenceName = "Lari", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrm", + ReferenceName = "Marama", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrn", + ReferenceName = "Lorang", + Scope = "I", + Type = "L" + }, + new + { + Id = "lro", + ReferenceName = "Laro", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrr", + ReferenceName = "Southern Yamphu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrt", + ReferenceName = "Larantuka Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrv", + ReferenceName = "Larevat", + Scope = "I", + Type = "L" + }, + new + { + Id = "lrz", + ReferenceName = "Lemerig", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsa", + ReferenceName = "Lasgerdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsd", + ReferenceName = "Lishana Deni", + Scope = "I", + Type = "L" + }, + new + { + Id = "lse", + ReferenceName = "Lusengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsh", + ReferenceName = "Lish", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsi", + ReferenceName = "Lashi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsl", + ReferenceName = "Latvian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsm", + ReferenceName = "Saamia", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsn", + ReferenceName = "Tibetan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lso", + ReferenceName = "Laos Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsp", + ReferenceName = "Panamanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsr", + ReferenceName = "Aruop", + Scope = "I", + Type = "L" + }, + new + { + Id = "lss", + ReferenceName = "Lasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lst", + ReferenceName = "Trinidad and Tobago Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsv", + ReferenceName = "Sivia Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lsy", + ReferenceName = "Mauritian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltc", + ReferenceName = "Late Middle Chinese", + Scope = "I", + Type = "H" + }, + new + { + Id = "ltg", + ReferenceName = "Latgalian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lth", + ReferenceName = "Thur", + Scope = "I", + Type = "L" + }, + new + { + Id = "lti", + ReferenceName = "Leti (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltn", + ReferenceName = "Latundê", + Scope = "I", + Type = "L" + }, + new + { + Id = "lto", + ReferenceName = "Tsotso", + Scope = "I", + Type = "L" + }, + new + { + Id = "lts", + ReferenceName = "Tachoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltu", + ReferenceName = "Latu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ltz", + Part1 = "lb", + Part2B = "ltz", + Part2T = "ltz", + ReferenceName = "Luxembourgish", + Scope = "I", + Type = "L" + }, + new + { + Id = "lua", + Part2B = "lua", + Part2T = "lua", + ReferenceName = "Luba-Lulua", + Scope = "I", + Type = "L" + }, + new + { + Id = "lub", + Part1 = "lu", + Part2B = "lub", + Part2T = "lub", + ReferenceName = "Luba-Katanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "luc", + ReferenceName = "Aringa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lud", + ReferenceName = "Ludian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lue", + ReferenceName = "Luvale", + Scope = "I", + Type = "L" + }, + new + { + Id = "luf", + ReferenceName = "Laua", + Scope = "I", + Type = "L" + }, + new + { + Id = "lug", + Part1 = "lg", + Part2B = "lug", + Part2T = "lug", + ReferenceName = "Ganda", + Scope = "I", + Type = "L" + }, + new + { + Id = "lui", + Part2B = "lui", + Part2T = "lui", + ReferenceName = "Luiseno", + Scope = "I", + Type = "E" + }, + new + { + Id = "luj", + ReferenceName = "Luna", + Scope = "I", + Type = "L" + }, + new + { + Id = "luk", + ReferenceName = "Lunanakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "lul", + ReferenceName = "Olu'bo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lum", + ReferenceName = "Luimbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lun", + Part2B = "lun", + Part2T = "lun", + ReferenceName = "Lunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "luo", + Part2B = "luo", + Part2T = "luo", + ReferenceName = "Luo (Kenya and Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "lup", + ReferenceName = "Lumbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "luq", + ReferenceName = "Lucumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lur", + ReferenceName = "Laura", + Scope = "I", + Type = "L" + }, + new + { + Id = "lus", + Part2B = "lus", + Part2T = "lus", + ReferenceName = "Lushai", + Scope = "I", + Type = "L" + }, + new + { + Id = "lut", + ReferenceName = "Lushootseed", + Scope = "I", + Type = "L" + }, + new + { + Id = "luu", + ReferenceName = "Lumba-Yakkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "luv", + ReferenceName = "Luwati", + Scope = "I", + Type = "L" + }, + new + { + Id = "luw", + ReferenceName = "Luo (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "luy", + ReferenceName = "Luyia", + Scope = "M", + Type = "L" + }, + new + { + Id = "luz", + ReferenceName = "Southern Luri", + Scope = "I", + Type = "L" + }, + new + { + Id = "lva", + ReferenceName = "Maku'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvi", + ReferenceName = "Lavi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvk", + ReferenceName = "Lavukaleve", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvs", + ReferenceName = "Standard Latvian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lvu", + ReferenceName = "Levuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwa", + ReferenceName = "Lwalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwe", + ReferenceName = "Lewo Eleng", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwg", + ReferenceName = "Wanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwh", + ReferenceName = "White Lachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwl", + ReferenceName = "Eastern Lawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwm", + ReferenceName = "Laomian", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwo", + ReferenceName = "Luwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lws", + ReferenceName = "Malawian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwt", + ReferenceName = "Lewotobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "lwu", + ReferenceName = "Lawu", + Scope = "I", + Type = "L" + }, + new + { + Id = "lww", + ReferenceName = "Lewo", + Scope = "I", + Type = "L" + }, + new + { + Id = "lya", + ReferenceName = "Layakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "lyg", + ReferenceName = "Lyngngam", + Scope = "I", + Type = "L" + }, + new + { + Id = "lyn", + ReferenceName = "Luyana", + Scope = "I", + Type = "L" + }, + new + { + Id = "lzh", + ReferenceName = "Literary Chinese", + Scope = "I", + Type = "H" + }, + new + { + Id = "lzl", + ReferenceName = "Litzlitz", + Scope = "I", + Type = "L" + }, + new + { + Id = "lzn", + ReferenceName = "Leinong Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "lzz", + ReferenceName = "Laz", + Scope = "I", + Type = "L" + }, + new + { + Id = "maa", + ReferenceName = "San Jerónimo Tecóatl Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mab", + ReferenceName = "Yutanduchi Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mad", + Part2B = "mad", + Part2T = "mad", + ReferenceName = "Madurese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mae", + ReferenceName = "Bo-Rukul", + Scope = "I", + Type = "L" + }, + new + { + Id = "maf", + ReferenceName = "Mafa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mag", + Part2B = "mag", + Part2T = "mag", + ReferenceName = "Magahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mah", + Part1 = "mh", + Part2B = "mah", + Part2T = "mah", + ReferenceName = "Marshallese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mai", + Part2B = "mai", + Part2T = "mai", + ReferenceName = "Maithili", + Scope = "I", + Type = "L" + }, + new + { + Id = "maj", + ReferenceName = "Jalapa De Díaz Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mak", + Part2B = "mak", + Part2T = "mak", + ReferenceName = "Makasar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mal", + Part1 = "ml", + Part2B = "mal", + Part2T = "mal", + ReferenceName = "Malayalam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mam", + ReferenceName = "Mam", + Scope = "I", + Type = "L" + }, + new + { + Id = "man", + Part2B = "man", + Part2T = "man", + ReferenceName = "Mandingo", + Scope = "M", + Type = "L" + }, + new + { + Id = "maq", + ReferenceName = "Chiquihuitlán Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mar", + Part1 = "mr", + Part2B = "mar", + Part2T = "mar", + ReferenceName = "Marathi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mas", + Part2B = "mas", + Part2T = "mas", + ReferenceName = "Masai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mat", + ReferenceName = "San Francisco Matlatzinca", + Scope = "I", + Type = "L" + }, + new + { + Id = "mau", + ReferenceName = "Huautla Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mav", + ReferenceName = "Sateré-Mawé", + Scope = "I", + Type = "L" + }, + new + { + Id = "maw", + ReferenceName = "Mampruli", + Scope = "I", + Type = "L" + }, + new + { + Id = "max", + ReferenceName = "North Moluccan Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "maz", + ReferenceName = "Central Mazahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mba", + ReferenceName = "Higaonon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbb", + ReferenceName = "Western Bukidnon Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbc", + ReferenceName = "Macushi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbd", + ReferenceName = "Dibabawon Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbe", + ReferenceName = "Molale", + Scope = "I", + Type = "E" + }, + new + { + Id = "mbf", + ReferenceName = "Baba Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbh", + ReferenceName = "Mangseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbi", + ReferenceName = "Ilianen Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbj", + ReferenceName = "Nadëb", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbk", + ReferenceName = "Malol", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbl", + ReferenceName = "Maxakalí", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbm", + ReferenceName = "Ombamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbn", + ReferenceName = "Macaguán", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbo", + ReferenceName = "Mbo (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbp", + ReferenceName = "Malayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbq", + ReferenceName = "Maisin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbr", + ReferenceName = "Nukak Makú", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbs", + ReferenceName = "Sarangani Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbt", + ReferenceName = "Matigsalug Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbu", + ReferenceName = "Mbula-Bwazza", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbv", + ReferenceName = "Mbulungish", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbw", + ReferenceName = "Maring", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbx", + ReferenceName = "Mari (East Sepik Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mby", + ReferenceName = "Memoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "mbz", + ReferenceName = "Amoltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mca", + ReferenceName = "Maca", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcb", + ReferenceName = "Machiguenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcc", + ReferenceName = "Bitur", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcd", + ReferenceName = "Sharanahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mce", + ReferenceName = "Itundujia Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcf", + ReferenceName = "Matsés", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcg", + ReferenceName = "Mapoyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mch", + ReferenceName = "Maquiritari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mci", + ReferenceName = "Mese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcj", + ReferenceName = "Mvanip", + Scope = "I", + Type = "L" + }, + new + { + Id = "mck", + ReferenceName = "Mbunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcl", + ReferenceName = "Macaguaje", + Scope = "I", + Type = "E" + }, + new + { + Id = "mcm", + ReferenceName = "Malaccan Creole Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcn", + ReferenceName = "Masana", + Scope = "I", + Type = "L" + }, + new + { + Id = "mco", + ReferenceName = "Coatlán Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcp", + ReferenceName = "Makaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcq", + ReferenceName = "Ese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcr", + ReferenceName = "Menya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcs", + ReferenceName = "Mambai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mct", + ReferenceName = "Mengisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcu", + ReferenceName = "Cameroon Mambila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcv", + ReferenceName = "Minanibai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcw", + ReferenceName = "Mawa (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcx", + ReferenceName = "Mpiemo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcy", + ReferenceName = "South Watut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mcz", + ReferenceName = "Mawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mda", + ReferenceName = "Mada (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdb", + ReferenceName = "Morigi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdc", + ReferenceName = "Male (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdd", + ReferenceName = "Mbum", + Scope = "I", + Type = "L" + }, + new + { + Id = "mde", + ReferenceName = "Maba (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdf", + Part2B = "mdf", + Part2T = "mdf", + ReferenceName = "Moksha", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdg", + ReferenceName = "Massalat", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdh", + ReferenceName = "Maguindanaon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdi", + ReferenceName = "Mamvu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdj", + ReferenceName = "Mangbetu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdk", + ReferenceName = "Mangbutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdl", + ReferenceName = "Maltese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdm", + ReferenceName = "Mayogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdn", + ReferenceName = "Mbati", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdp", + ReferenceName = "Mbala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdq", + ReferenceName = "Mbole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdr", + Part2B = "mdr", + Part2T = "mdr", + ReferenceName = "Mandar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mds", + ReferenceName = "Maria (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdt", + ReferenceName = "Mbere", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdu", + ReferenceName = "Mboko", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdv", + ReferenceName = "Santa Lucía Monteverde Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdw", + ReferenceName = "Mbosi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdx", + ReferenceName = "Dizin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdy", + ReferenceName = "Male (Ethiopia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mdz", + ReferenceName = "Suruí Do Pará", + Scope = "I", + Type = "L" + }, + new + { + Id = "mea", + ReferenceName = "Menka", + Scope = "I", + Type = "L" + }, + new + { + Id = "meb", + ReferenceName = "Ikobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mec", + ReferenceName = "Marra", + Scope = "I", + Type = "L" + }, + new + { + Id = "med", + ReferenceName = "Melpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mee", + ReferenceName = "Mengen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mef", + ReferenceName = "Megam", + Scope = "I", + Type = "L" + }, + new + { + Id = "meh", + ReferenceName = "Southwestern Tlaxiaco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mei", + ReferenceName = "Midob", + Scope = "I", + Type = "L" + }, + new + { + Id = "mej", + ReferenceName = "Meyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "mek", + ReferenceName = "Mekeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mel", + ReferenceName = "Central Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "mem", + ReferenceName = "Mangala", + Scope = "I", + Type = "E" + }, + new + { + Id = "men", + Part2B = "men", + Part2T = "men", + ReferenceName = "Mende (Sierra Leone)", + Scope = "I", + Type = "L" + }, + new + { + Id = "meo", + ReferenceName = "Kedah Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mep", + ReferenceName = "Miriwoong", + Scope = "I", + Type = "L" + }, + new + { + Id = "meq", + ReferenceName = "Merey", + Scope = "I", + Type = "L" + }, + new + { + Id = "mer", + ReferenceName = "Meru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mes", + ReferenceName = "Masmaje", + Scope = "I", + Type = "L" + }, + new + { + Id = "met", + ReferenceName = "Mato", + Scope = "I", + Type = "L" + }, + new + { + Id = "meu", + ReferenceName = "Motu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mev", + ReferenceName = "Mano", + Scope = "I", + Type = "L" + }, + new + { + Id = "mew", + ReferenceName = "Maaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mey", + ReferenceName = "Hassaniyya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mez", + ReferenceName = "Menominee", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfa", + ReferenceName = "Pattani Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfb", + ReferenceName = "Bangka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfc", + ReferenceName = "Mba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfd", + ReferenceName = "Mendankwe-Nkwen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfe", + ReferenceName = "Morisyen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mff", + ReferenceName = "Naki", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfg", + ReferenceName = "Mogofin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfh", + ReferenceName = "Matal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfi", + ReferenceName = "Wandala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfj", + ReferenceName = "Mefele", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfk", + ReferenceName = "North Mofu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfl", + ReferenceName = "Putai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfm", + ReferenceName = "Marghi South", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfn", + ReferenceName = "Cross River Mbembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfo", + ReferenceName = "Mbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfp", + ReferenceName = "Makassar Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfq", + ReferenceName = "Moba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfr", + ReferenceName = "Marrithiyel", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfs", + ReferenceName = "Mexican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mft", + ReferenceName = "Mokerang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfu", + ReferenceName = "Mbwela", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfv", + ReferenceName = "Mandjak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfw", + ReferenceName = "Mulaha", + Scope = "I", + Type = "E" + }, + new + { + Id = "mfx", + ReferenceName = "Melo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfy", + ReferenceName = "Mayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mfz", + ReferenceName = "Mabaan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mga", + Part2B = "mga", + Part2T = "mga", + ReferenceName = "Middle Irish (900-1200)", + Scope = "I", + Type = "H" + }, + new + { + Id = "mgb", + ReferenceName = "Mararit", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgc", + ReferenceName = "Morokodo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgd", + ReferenceName = "Moru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mge", + ReferenceName = "Mango", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgf", + ReferenceName = "Maklew", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgg", + ReferenceName = "Mpumpong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgh", + ReferenceName = "Makhuwa-Meetto", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgi", + ReferenceName = "Lijili", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgj", + ReferenceName = "Abureni", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgk", + ReferenceName = "Mawes", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgl", + ReferenceName = "Maleu-Kilenge", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgm", + ReferenceName = "Mambae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgn", + ReferenceName = "Mbangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgo", + ReferenceName = "Meta'", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgp", + ReferenceName = "Eastern Magar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgq", + ReferenceName = "Malila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgr", + ReferenceName = "Mambwe-Lungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgs", + ReferenceName = "Manda (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgt", + ReferenceName = "Mongol", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgu", + ReferenceName = "Mailu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgv", + ReferenceName = "Matengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgw", + ReferenceName = "Matumbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgy", + ReferenceName = "Mbunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mgz", + ReferenceName = "Mbugwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mha", + ReferenceName = "Manda (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhb", + ReferenceName = "Mahongwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhc", + ReferenceName = "Mocho", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhd", + ReferenceName = "Mbugu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhe", + ReferenceName = "Besisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhf", + ReferenceName = "Mamaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhg", + ReferenceName = "Margu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhi", + ReferenceName = "Ma'di", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhj", + ReferenceName = "Mogholi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhk", + ReferenceName = "Mungaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhl", + ReferenceName = "Mauwake", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhm", + ReferenceName = "Makhuwa-Moniga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhn", + ReferenceName = "Mócheno", + Scope = "I", + Type = "L" + }, + new + { + Id = "mho", + ReferenceName = "Mashi (Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhp", + ReferenceName = "Balinese Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhq", + ReferenceName = "Mandan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhr", + ReferenceName = "Eastern Mari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhs", + ReferenceName = "Buru (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mht", + ReferenceName = "Mandahuaca", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhu", + ReferenceName = "Digaro-Mishmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhw", + ReferenceName = "Mbukushu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhx", + ReferenceName = "Maru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhy", + ReferenceName = "Ma'anyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mhz", + ReferenceName = "Mor (Mor Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mia", + ReferenceName = "Miami", + Scope = "I", + Type = "L" + }, + new + { + Id = "mib", + ReferenceName = "Atatláhuca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mic", + Part2B = "mic", + Part2T = "mic", + ReferenceName = "Mi'kmaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "mid", + ReferenceName = "Mandaic", + Scope = "I", + Type = "L" + }, + new + { + Id = "mie", + ReferenceName = "Ocotepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mif", + ReferenceName = "Mofu-Gudur", + Scope = "I", + Type = "L" + }, + new + { + Id = "mig", + ReferenceName = "San Miguel El Grande Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mih", + ReferenceName = "Chayuco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mii", + ReferenceName = "Chigmecatitlán Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mij", + ReferenceName = "Abar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mik", + ReferenceName = "Mikasuki", + Scope = "I", + Type = "L" + }, + new + { + Id = "mil", + ReferenceName = "Peñoles Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mim", + ReferenceName = "Alacatlatzala Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "min", + Part2B = "min", + Part2T = "min", + ReferenceName = "Minangkabau", + Scope = "I", + Type = "L" + }, + new + { + Id = "mio", + ReferenceName = "Pinotepa Nacional Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mip", + ReferenceName = "Apasco-Apoala Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miq", + ReferenceName = "Mískito", + Scope = "I", + Type = "L" + }, + new + { + Id = "mir", + ReferenceName = "Isthmus Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mis", + Part2B = "mis", + Part2T = "mis", + ReferenceName = "Uncoded languages", + Scope = "S", + Type = "S" + }, + new + { + Id = "mit", + ReferenceName = "Southern Puebla Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miu", + ReferenceName = "Cacaloxtepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miw", + ReferenceName = "Akoye", + Scope = "I", + Type = "L" + }, + new + { + Id = "mix", + ReferenceName = "Mixtepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miy", + ReferenceName = "Ayutla Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "miz", + ReferenceName = "Coatzospan Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjb", + ReferenceName = "Makalero", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjc", + ReferenceName = "San Juan Colorado Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjd", + ReferenceName = "Northwest Maidu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mje", + ReferenceName = "Muskum", + Scope = "I", + Type = "E" + }, + new + { + Id = "mjg", + ReferenceName = "Tu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjh", + ReferenceName = "Mwera (Nyasa)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mji", + ReferenceName = "Kim Mun", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjj", + ReferenceName = "Mawak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjk", + ReferenceName = "Matukar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjl", + ReferenceName = "Mandeali", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjm", + ReferenceName = "Medebur", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjn", + ReferenceName = "Ma (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjo", + ReferenceName = "Malankuravan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjp", + ReferenceName = "Malapandaram", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjq", + ReferenceName = "Malaryan", + Scope = "I", + Type = "E" + }, + new + { + Id = "mjr", + ReferenceName = "Malavedan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjs", + ReferenceName = "Miship", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjt", + ReferenceName = "Sauria Paharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "mju", + ReferenceName = "Manna-Dora", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjv", + ReferenceName = "Mannan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjw", + ReferenceName = "Karbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjx", + ReferenceName = "Mahali", + Scope = "I", + Type = "L" + }, + new + { + Id = "mjy", + ReferenceName = "Mahican", + Scope = "I", + Type = "E" + }, + new + { + Id = "mjz", + ReferenceName = "Majhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mka", + ReferenceName = "Mbre", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkb", + ReferenceName = "Mal Paharia", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkc", + ReferenceName = "Siliput", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkd", + Part1 = "mk", + Part2B = "mac", + Part2T = "mkd", + ReferenceName = "Macedonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mke", + ReferenceName = "Mawchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkf", + ReferenceName = "Miya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkg", + ReferenceName = "Mak (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mki", + ReferenceName = "Dhatki", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkj", + ReferenceName = "Mokilese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkk", + ReferenceName = "Byep", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkl", + ReferenceName = "Mokole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkm", + ReferenceName = "Moklen", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkn", + ReferenceName = "Kupang Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mko", + ReferenceName = "Mingang Doso", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkp", + ReferenceName = "Moikodi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkq", + ReferenceName = "Bay Miwok", + Scope = "I", + Type = "E" + }, + new + { + Id = "mkr", + ReferenceName = "Malas", + Scope = "I", + Type = "L" + }, + new + { + Id = "mks", + ReferenceName = "Silacayoapan Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkt", + ReferenceName = "Vamale", + Scope = "I", + Type = "L" + }, + new + { + Id = "mku", + ReferenceName = "Konyanka Maninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkv", + ReferenceName = "Mafea", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkw", + ReferenceName = "Kituba (Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkx", + ReferenceName = "Kinamiging Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mky", + ReferenceName = "East Makian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mkz", + ReferenceName = "Makasae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mla", + ReferenceName = "Malo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlb", + ReferenceName = "Mbule", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlc", + ReferenceName = "Cao Lan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mle", + ReferenceName = "Manambu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlf", + ReferenceName = "Mal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlg", + Part1 = "mg", + Part2B = "mlg", + Part2T = "mlg", + ReferenceName = "Malagasy", + Scope = "M", + Type = "L" + }, + new + { + Id = "mlh", + ReferenceName = "Mape", + Scope = "I", + Type = "L" + }, + new + { + Id = "mli", + ReferenceName = "Malimpung", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlj", + ReferenceName = "Miltu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlk", + ReferenceName = "Ilwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "mll", + ReferenceName = "Malua Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlm", + ReferenceName = "Mulam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mln", + ReferenceName = "Malango", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlo", + ReferenceName = "Mlomp", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlp", + ReferenceName = "Bargam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlq", + ReferenceName = "Western Maninkakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlr", + ReferenceName = "Vame", + Scope = "I", + Type = "L" + }, + new + { + Id = "mls", + ReferenceName = "Masalit", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlt", + Part1 = "mt", + Part2B = "mlt", + Part2T = "mlt", + ReferenceName = "Maltese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlu", + ReferenceName = "To'abaita", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlv", + ReferenceName = "Motlav", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlw", + ReferenceName = "Moloko", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlx", + ReferenceName = "Malfaxal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mlz", + ReferenceName = "Malaynon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mma", + ReferenceName = "Mama", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmb", + ReferenceName = "Momina", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmc", + ReferenceName = "Michoacán Mazahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmd", + ReferenceName = "Maonan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mme", + ReferenceName = "Mae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmf", + ReferenceName = "Mundat", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmg", + ReferenceName = "North Ambrym", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmh", + ReferenceName = "Mehináku", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmi", + ReferenceName = "Musar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmj", + ReferenceName = "Majhwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmk", + ReferenceName = "Mukha-Dora", + Scope = "I", + Type = "L" + }, + new + { + Id = "mml", + ReferenceName = "Man Met", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmm", + ReferenceName = "Maii", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmn", + ReferenceName = "Mamanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmo", + ReferenceName = "Mangga Buang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmp", + ReferenceName = "Siawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmq", + ReferenceName = "Musak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmr", + ReferenceName = "Western Xiangxi Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmt", + ReferenceName = "Malalamai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmu", + ReferenceName = "Mmaala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmv", + ReferenceName = "Miriti", + Scope = "I", + Type = "E" + }, + new + { + Id = "mmw", + ReferenceName = "Emae", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmx", + ReferenceName = "Madak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmy", + ReferenceName = "Migaama", + Scope = "I", + Type = "L" + }, + new + { + Id = "mmz", + ReferenceName = "Mabaale", + Scope = "I", + Type = "L" + }, + new + { + Id = "mna", + ReferenceName = "Mbula", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnb", + ReferenceName = "Muna", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnc", + Part2B = "mnc", + Part2T = "mnc", + ReferenceName = "Manchu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnd", + ReferenceName = "Mondé", + Scope = "I", + Type = "L" + }, + new + { + Id = "mne", + ReferenceName = "Naba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnf", + ReferenceName = "Mundani", + Scope = "I", + Type = "L" + }, + new + { + Id = "mng", + ReferenceName = "Eastern Mnong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnh", + ReferenceName = "Mono (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mni", + Part2B = "mni", + Part2T = "mni", + ReferenceName = "Manipuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnj", + ReferenceName = "Munji", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnk", + ReferenceName = "Mandinka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnl", + ReferenceName = "Tiale", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnm", + ReferenceName = "Mapena", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnn", + ReferenceName = "Southern Mnong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnp", + ReferenceName = "Min Bei Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnq", + ReferenceName = "Minriq", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnr", + ReferenceName = "Mono (USA)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mns", + ReferenceName = "Mansi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnu", + ReferenceName = "Mer", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnv", + ReferenceName = "Rennell-Bellona", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnw", + ReferenceName = "Mon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnx", + ReferenceName = "Manikion", + Scope = "I", + Type = "L" + }, + new + { + Id = "mny", + ReferenceName = "Manyawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mnz", + ReferenceName = "Moni", + Scope = "I", + Type = "L" + }, + new + { + Id = "moa", + ReferenceName = "Mwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "moc", + ReferenceName = "Mocoví", + Scope = "I", + Type = "L" + }, + new + { + Id = "mod", + ReferenceName = "Mobilian", + Scope = "I", + Type = "E" + }, + new + { + Id = "moe", + ReferenceName = "Montagnais", + Scope = "I", + Type = "L" + }, + new + { + Id = "mog", + ReferenceName = "Mongondow", + Scope = "I", + Type = "L" + }, + new + { + Id = "moh", + Part2B = "moh", + Part2T = "moh", + ReferenceName = "Mohawk", + Scope = "I", + Type = "L" + }, + new + { + Id = "moi", + ReferenceName = "Mboi", + Scope = "I", + Type = "L" + }, + new + { + Id = "moj", + ReferenceName = "Monzombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mok", + ReferenceName = "Morori", + Scope = "I", + Type = "L" + }, + new + { + Id = "mom", + ReferenceName = "Mangue", + Scope = "I", + Type = "E" + }, + new + { + Id = "mon", + Part1 = "mn", + Part2B = "mon", + Part2T = "mon", + ReferenceName = "Mongolian", + Scope = "M", + Type = "L" + }, + new + { + Id = "moo", + ReferenceName = "Monom", + Scope = "I", + Type = "L" + }, + new + { + Id = "mop", + ReferenceName = "Mopán Maya", + Scope = "I", + Type = "L" + }, + new + { + Id = "moq", + ReferenceName = "Mor (Bomberai Peninsula)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mor", + ReferenceName = "Moro", + Scope = "I", + Type = "L" + }, + new + { + Id = "mos", + Part2B = "mos", + Part2T = "mos", + ReferenceName = "Mossi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mot", + ReferenceName = "Barí", + Scope = "I", + Type = "L" + }, + new + { + Id = "mou", + ReferenceName = "Mogum", + Scope = "I", + Type = "L" + }, + new + { + Id = "mov", + ReferenceName = "Mohave", + Scope = "I", + Type = "L" + }, + new + { + Id = "mow", + ReferenceName = "Moi (Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mox", + ReferenceName = "Molima", + Scope = "I", + Type = "L" + }, + new + { + Id = "moy", + ReferenceName = "Shekkacho", + Scope = "I", + Type = "L" + }, + new + { + Id = "moz", + ReferenceName = "Mukulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpa", + ReferenceName = "Mpoto", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpb", + ReferenceName = "Malak Malak", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpc", + ReferenceName = "Mangarrayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpd", + ReferenceName = "Machinere", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpe", + ReferenceName = "Majang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpg", + ReferenceName = "Marba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mph", + ReferenceName = "Maung", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpi", + ReferenceName = "Mpade", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpj", + ReferenceName = "Martu Wangka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpk", + ReferenceName = "Mbara (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpl", + ReferenceName = "Middle Watut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpm", + ReferenceName = "Yosondúa Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpn", + ReferenceName = "Mindiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpo", + ReferenceName = "Miu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpp", + ReferenceName = "Migabac", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpq", + ReferenceName = "Matís", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpr", + ReferenceName = "Vangunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mps", + ReferenceName = "Dadibi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpt", + ReferenceName = "Mian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpu", + ReferenceName = "Makuráp", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpv", + ReferenceName = "Mungkip", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpw", + ReferenceName = "Mapidian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpx", + ReferenceName = "Misima-Panaeati", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpy", + ReferenceName = "Mapia", + Scope = "I", + Type = "L" + }, + new + { + Id = "mpz", + ReferenceName = "Mpi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqa", + ReferenceName = "Maba (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqb", + ReferenceName = "Mbuko", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqc", + ReferenceName = "Mangole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqe", + ReferenceName = "Matepi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqf", + ReferenceName = "Momuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqg", + ReferenceName = "Kota Bangun Kutai Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqh", + ReferenceName = "Tlazoyaltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqi", + ReferenceName = "Mariri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqj", + ReferenceName = "Mamasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqk", + ReferenceName = "Rajah Kabunsuwan Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mql", + ReferenceName = "Mbelime", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqm", + ReferenceName = "South Marquesan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqn", + ReferenceName = "Moronene", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqo", + ReferenceName = "Modole", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqp", + ReferenceName = "Manipa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqq", + ReferenceName = "Minokok", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqr", + ReferenceName = "Mander", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqs", + ReferenceName = "West Makian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqt", + ReferenceName = "Mok", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqu", + ReferenceName = "Mandari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqv", + ReferenceName = "Mosimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqw", + ReferenceName = "Murupi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqx", + ReferenceName = "Mamuju", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqy", + ReferenceName = "Manggarai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mqz", + ReferenceName = "Pano", + Scope = "I", + Type = "L" + }, + new + { + Id = "mra", + ReferenceName = "Mlabri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrb", + ReferenceName = "Marino", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrc", + ReferenceName = "Maricopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrd", + ReferenceName = "Western Magar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mre", + ReferenceName = "Martha's Vineyard Sign Language", + Scope = "I", + Type = "E" + }, + new + { + Id = "mrf", + ReferenceName = "Elseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrg", + ReferenceName = "Mising", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrh", + ReferenceName = "Mara Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mri", + Part1 = "mi", + Part2B = "mao", + Part2T = "mri", + ReferenceName = "Maori", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrj", + ReferenceName = "Western Mari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrk", + ReferenceName = "Hmwaveke", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrl", + ReferenceName = "Mortlockese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrm", + ReferenceName = "Merlav", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrn", + ReferenceName = "Cheke Holo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mro", + ReferenceName = "Mru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrp", + ReferenceName = "Morouas", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrq", + ReferenceName = "North Marquesan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrr", + ReferenceName = "Maria (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrs", + ReferenceName = "Maragus", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrt", + ReferenceName = "Marghi Central", + Scope = "I", + Type = "L" + }, + new + { + Id = "mru", + ReferenceName = "Mono (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrv", + ReferenceName = "Mangareva", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrw", + ReferenceName = "Maranao", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrx", + ReferenceName = "Maremgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mry", + ReferenceName = "Mandaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mrz", + ReferenceName = "Marind", + Scope = "I", + Type = "L" + }, + new + { + Id = "msa", + Part1 = "ms", + Part2B = "may", + Part2T = "msa", + ReferenceName = "Malay (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "msb", + ReferenceName = "Masbatenyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "msc", + ReferenceName = "Sankaran Maninka", + Scope = "I", + Type = "L" + }, + new + { + Id = "msd", + ReferenceName = "Yucatec Maya Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mse", + ReferenceName = "Musey", + Scope = "I", + Type = "L" + }, + new + { + Id = "msf", + ReferenceName = "Mekwei", + Scope = "I", + Type = "L" + }, + new + { + Id = "msg", + ReferenceName = "Moraid", + Scope = "I", + Type = "L" + }, + new + { + Id = "msh", + ReferenceName = "Masikoro Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "msi", + ReferenceName = "Sabah Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "msj", + ReferenceName = "Ma (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "msk", + ReferenceName = "Mansaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "msl", + ReferenceName = "Molof", + Scope = "I", + Type = "L" + }, + new + { + Id = "msm", + ReferenceName = "Agusan Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "msn", + ReferenceName = "Vurës", + Scope = "I", + Type = "L" + }, + new + { + Id = "mso", + ReferenceName = "Mombum", + Scope = "I", + Type = "L" + }, + new + { + Id = "msp", + ReferenceName = "Maritsauá", + Scope = "I", + Type = "E" + }, + new + { + Id = "msq", + ReferenceName = "Caac", + Scope = "I", + Type = "L" + }, + new + { + Id = "msr", + ReferenceName = "Mongolian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mss", + ReferenceName = "West Masela", + Scope = "I", + Type = "L" + }, + new + { + Id = "msu", + ReferenceName = "Musom", + Scope = "I", + Type = "L" + }, + new + { + Id = "msv", + ReferenceName = "Maslam", + Scope = "I", + Type = "L" + }, + new + { + Id = "msw", + ReferenceName = "Mansoanka", + Scope = "I", + Type = "L" + }, + new + { + Id = "msx", + ReferenceName = "Moresada", + Scope = "I", + Type = "L" + }, + new + { + Id = "msy", + ReferenceName = "Aruamu", + Scope = "I", + Type = "L" + }, + new + { + Id = "msz", + ReferenceName = "Momare", + Scope = "I", + Type = "L" + }, + new + { + Id = "mta", + ReferenceName = "Cotabato Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtb", + ReferenceName = "Anyin Morofo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtc", + ReferenceName = "Munit", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtd", + ReferenceName = "Mualang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mte", + ReferenceName = "Mono (Solomon Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtf", + ReferenceName = "Murik (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtg", + ReferenceName = "Una", + Scope = "I", + Type = "L" + }, + new + { + Id = "mth", + ReferenceName = "Munggui", + Scope = "I", + Type = "L" + }, + new + { + Id = "mti", + ReferenceName = "Maiwa (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtj", + ReferenceName = "Moskona", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtk", + ReferenceName = "Mbe'", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtl", + ReferenceName = "Montol", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtm", + ReferenceName = "Mator", + Scope = "I", + Type = "E" + }, + new + { + Id = "mtn", + ReferenceName = "Matagalpa", + Scope = "I", + Type = "E" + }, + new + { + Id = "mto", + ReferenceName = "Totontepec Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtp", + ReferenceName = "Wichí Lhamtés Nocten", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtq", + ReferenceName = "Muong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtr", + ReferenceName = "Mewari", + Scope = "I", + Type = "L" + }, + new + { + Id = "mts", + ReferenceName = "Yora", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtt", + ReferenceName = "Mota", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtu", + ReferenceName = "Tututepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtv", + ReferenceName = "Asaro'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtw", + ReferenceName = "Southern Binukidnon", + Scope = "I", + Type = "L" + }, + new + { + Id = "mtx", + ReferenceName = "Tidaá Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mty", + ReferenceName = "Nabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mua", + ReferenceName = "Mundang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mub", + ReferenceName = "Mubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "muc", + ReferenceName = "Ajumbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mud", + ReferenceName = "Mednyj Aleut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mue", + ReferenceName = "Media Lengua", + Scope = "I", + Type = "L" + }, + new + { + Id = "mug", + ReferenceName = "Musgu", + Scope = "I", + Type = "L" + }, + new + { + Id = "muh", + ReferenceName = "Mündü", + Scope = "I", + Type = "L" + }, + new + { + Id = "mui", + ReferenceName = "Musi", + Scope = "I", + Type = "L" + }, + new + { + Id = "muj", + ReferenceName = "Mabire", + Scope = "I", + Type = "L" + }, + new + { + Id = "muk", + ReferenceName = "Mugom", + Scope = "I", + Type = "L" + }, + new + { + Id = "mul", + Part2B = "mul", + Part2T = "mul", + ReferenceName = "Multiple languages", + Scope = "S", + Type = "S" + }, + new + { + Id = "mum", + ReferenceName = "Maiwala", + Scope = "I", + Type = "L" + }, + new + { + Id = "muo", + ReferenceName = "Nyong", + Scope = "I", + Type = "L" + }, + new + { + Id = "mup", + ReferenceName = "Malvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "muq", + ReferenceName = "Eastern Xiangxi Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "mur", + ReferenceName = "Murle", + Scope = "I", + Type = "L" + }, + new + { + Id = "mus", + Part2B = "mus", + Part2T = "mus", + ReferenceName = "Creek", + Scope = "I", + Type = "L" + }, + new + { + Id = "mut", + ReferenceName = "Western Muria", + Scope = "I", + Type = "L" + }, + new + { + Id = "muu", + ReferenceName = "Yaaku", + Scope = "I", + Type = "L" + }, + new + { + Id = "muv", + ReferenceName = "Muthuvan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mux", + ReferenceName = "Bo-Ung", + Scope = "I", + Type = "L" + }, + new + { + Id = "muy", + ReferenceName = "Muyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "muz", + ReferenceName = "Mursi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mva", + ReferenceName = "Manam", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvb", + ReferenceName = "Mattole", + Scope = "I", + Type = "E" + }, + new + { + Id = "mvd", + ReferenceName = "Mamboru", + Scope = "I", + Type = "L" + }, + new + { + Id = "mve", + ReferenceName = "Marwari (Pakistan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvf", + ReferenceName = "Peripheral Mongolian", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvg", + ReferenceName = "Yucuañe Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvh", + ReferenceName = "Mulgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvi", + ReferenceName = "Miyako", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvk", + ReferenceName = "Mekmek", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvl", + ReferenceName = "Mbara (Australia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "mvm", + ReferenceName = "Muya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvn", + ReferenceName = "Minaveha", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvo", + ReferenceName = "Marovo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvp", + ReferenceName = "Duri", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvq", + ReferenceName = "Moere", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvr", + ReferenceName = "Marau", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvs", + ReferenceName = "Massep", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvt", + ReferenceName = "Mpotovoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvu", + ReferenceName = "Marfa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvv", + ReferenceName = "Tagal Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvw", + ReferenceName = "Machinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvx", + ReferenceName = "Meoswar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvy", + ReferenceName = "Indus Kohistani", + Scope = "I", + Type = "L" + }, + new + { + Id = "mvz", + ReferenceName = "Mesqan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwa", + ReferenceName = "Mwatebu", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwb", + ReferenceName = "Juwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwc", + ReferenceName = "Are", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwe", + ReferenceName = "Mwera (Chimwera)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwf", + ReferenceName = "Murrinh-Patha", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwg", + ReferenceName = "Aiklep", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwh", + ReferenceName = "Mouk-Aria", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwi", + ReferenceName = "Labo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwk", + ReferenceName = "Kita Maninkakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwl", + Part2B = "mwl", + Part2T = "mwl", + ReferenceName = "Mirandese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwm", + ReferenceName = "Sar", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwn", + ReferenceName = "Nyamwanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwo", + ReferenceName = "Central Maewo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwp", + ReferenceName = "Kala Lagaw Ya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwq", + ReferenceName = "Mün Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwr", + Part2B = "mwr", + Part2T = "mwr", + ReferenceName = "Marwari", + Scope = "M", + Type = "L" + }, + new + { + Id = "mws", + ReferenceName = "Mwimbi-Muthambi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwt", + ReferenceName = "Moken", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwu", + ReferenceName = "Mittu", + Scope = "I", + Type = "E" + }, + new + { + Id = "mwv", + ReferenceName = "Mentawai", + Scope = "I", + Type = "L" + }, + new + { + Id = "mww", + ReferenceName = "Hmong Daw", + Scope = "I", + Type = "L" + }, + new + { + Id = "mwz", + ReferenceName = "Moingi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxa", + ReferenceName = "Northwest Oaxaca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxb", + ReferenceName = "Tezoatlán Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxc", + ReferenceName = "Manyika", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxd", + ReferenceName = "Modang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxe", + ReferenceName = "Mele-Fila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxf", + ReferenceName = "Malgbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxg", + ReferenceName = "Mbangala", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxh", + ReferenceName = "Mvuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxi", + ReferenceName = "Mozarabic", + Scope = "I", + Type = "H" + }, + new + { + Id = "mxj", + ReferenceName = "Miju-Mishmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxk", + ReferenceName = "Monumbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxl", + ReferenceName = "Maxi Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxm", + ReferenceName = "Meramera", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxn", + ReferenceName = "Moi (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxo", + ReferenceName = "Mbowe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxp", + ReferenceName = "Tlahuitoltepec Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxq", + ReferenceName = "Juquila Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxr", + ReferenceName = "Murik (Malaysia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxs", + ReferenceName = "Huitepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxt", + ReferenceName = "Jamiltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxu", + ReferenceName = "Mada (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxv", + ReferenceName = "Metlatónoc Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxw", + ReferenceName = "Namo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxx", + ReferenceName = "Mahou", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxy", + ReferenceName = "Southeastern Nochixtlán Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mxz", + ReferenceName = "Central Masela", + Scope = "I", + Type = "L" + }, + new + { + Id = "mya", + Part1 = "my", + Part2B = "bur", + Part2T = "mya", + ReferenceName = "Burmese", + Scope = "I", + Type = "L" + }, + new + { + Id = "myb", + ReferenceName = "Mbay", + Scope = "I", + Type = "L" + }, + new + { + Id = "myc", + ReferenceName = "Mayeka", + Scope = "I", + Type = "L" + }, + new + { + Id = "mye", + ReferenceName = "Myene", + Scope = "I", + Type = "L" + }, + new + { + Id = "myf", + ReferenceName = "Bambassi", + Scope = "I", + Type = "L" + }, + new + { + Id = "myg", + ReferenceName = "Manta", + Scope = "I", + Type = "L" + }, + new + { + Id = "myh", + ReferenceName = "Makah", + Scope = "I", + Type = "L" + }, + new + { + Id = "myj", + ReferenceName = "Mangayat", + Scope = "I", + Type = "L" + }, + new + { + Id = "myk", + ReferenceName = "Mamara Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "myl", + ReferenceName = "Moma", + Scope = "I", + Type = "L" + }, + new + { + Id = "mym", + ReferenceName = "Me'en", + Scope = "I", + Type = "L" + }, + new + { + Id = "myo", + ReferenceName = "Anfillo", + Scope = "I", + Type = "L" + }, + new + { + Id = "myp", + ReferenceName = "Pirahã", + Scope = "I", + Type = "L" + }, + new + { + Id = "myr", + ReferenceName = "Muniche", + Scope = "I", + Type = "L" + }, + new + { + Id = "mys", + ReferenceName = "Mesmes", + Scope = "I", + Type = "E" + }, + new + { + Id = "myu", + ReferenceName = "Mundurukú", + Scope = "I", + Type = "L" + }, + new + { + Id = "myv", + Part2B = "myv", + Part2T = "myv", + ReferenceName = "Erzya", + Scope = "I", + Type = "L" + }, + new + { + Id = "myw", + ReferenceName = "Muyuw", + Scope = "I", + Type = "L" + }, + new + { + Id = "myx", + ReferenceName = "Masaaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "myy", + ReferenceName = "Macuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "myz", + ReferenceName = "Classical Mandaic", + Scope = "I", + Type = "H" + }, + new + { + Id = "mza", + ReferenceName = "Santa María Zacatepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzb", + ReferenceName = "Tumzabt", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzc", + ReferenceName = "Madagascar Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzd", + ReferenceName = "Malimba", + Scope = "I", + Type = "L" + }, + new + { + Id = "mze", + ReferenceName = "Morawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzg", + ReferenceName = "Monastic Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzh", + ReferenceName = "Wichí Lhamtés Güisnay", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzi", + ReferenceName = "Ixcatlán Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzj", + ReferenceName = "Manya", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzk", + ReferenceName = "Nigeria Mambila", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzl", + ReferenceName = "Mazatlán Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzm", + ReferenceName = "Mumuye", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzn", + ReferenceName = "Mazanderani", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzo", + ReferenceName = "Matipuhy", + Scope = "I", + Type = "E" + }, + new + { + Id = "mzp", + ReferenceName = "Movima", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzq", + ReferenceName = "Mori Atas", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzr", + ReferenceName = "Marúbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzs", + ReferenceName = "Macanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzt", + ReferenceName = "Mintil", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzu", + ReferenceName = "Inapang", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzv", + ReferenceName = "Manza", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzw", + ReferenceName = "Deg", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzx", + ReferenceName = "Mawayana", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzy", + ReferenceName = "Mozambican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "mzz", + ReferenceName = "Maiadomu", + Scope = "I", + Type = "L" + }, + new + { + Id = "naa", + ReferenceName = "Namla", + Scope = "I", + Type = "L" + }, + new + { + Id = "nab", + ReferenceName = "Southern Nambikuára", + Scope = "I", + Type = "L" + }, + new + { + Id = "nac", + ReferenceName = "Narak", + Scope = "I", + Type = "L" + }, + new + { + Id = "nae", + ReferenceName = "Naka'ela", + Scope = "I", + Type = "E" + }, + new + { + Id = "naf", + ReferenceName = "Nabak", + Scope = "I", + Type = "L" + }, + new + { + Id = "nag", + ReferenceName = "Naga Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "naj", + ReferenceName = "Nalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nak", + ReferenceName = "Nakanai", + Scope = "I", + Type = "L" + }, + new + { + Id = "nal", + ReferenceName = "Nalik", + Scope = "I", + Type = "L" + }, + new + { + Id = "nam", + ReferenceName = "Ngan'gityemerri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nan", + ReferenceName = "Min Nan Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "nao", + ReferenceName = "Naaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nap", + Part2B = "nap", + Part2T = "nap", + ReferenceName = "Neapolitan", + Scope = "I", + Type = "L" + }, + new + { + Id = "naq", + ReferenceName = "Khoekhoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nar", + ReferenceName = "Iguta", + Scope = "I", + Type = "L" + }, + new + { + Id = "nas", + ReferenceName = "Naasioi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nat", + ReferenceName = "Ca̱hungwa̱rya̱", + Scope = "I", + Type = "L" + }, + new + { + Id = "nau", + Part1 = "na", + Part2B = "nau", + Part2T = "nau", + ReferenceName = "Nauru", + Scope = "I", + Type = "L" + }, + new + { + Id = "nav", + Part1 = "nv", + Part2B = "nav", + Part2T = "nav", + ReferenceName = "Navajo", + Scope = "I", + Type = "L" + }, + new + { + Id = "naw", + ReferenceName = "Nawuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nax", + ReferenceName = "Nakwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nay", + ReferenceName = "Ngarrindjeri", + Scope = "I", + Type = "E" + }, + new + { + Id = "naz", + ReferenceName = "Coatepec Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nba", + ReferenceName = "Nyemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbb", + ReferenceName = "Ndoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbc", + ReferenceName = "Chang Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbd", + ReferenceName = "Ngbinda", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbe", + ReferenceName = "Konyak Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbg", + ReferenceName = "Nagarchal", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbh", + ReferenceName = "Ngamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbi", + ReferenceName = "Mao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbj", + ReferenceName = "Ngarinyman", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbk", + ReferenceName = "Nake", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbl", + Part1 = "nr", + Part2B = "nbl", + Part2T = "nbl", + ReferenceName = "South Ndebele", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbm", + ReferenceName = "Ngbaka Ma'bo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbn", + ReferenceName = "Kuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbo", + ReferenceName = "Nkukoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbp", + ReferenceName = "Nnam", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbq", + ReferenceName = "Nggem", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbr", + ReferenceName = "Numana", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbs", + ReferenceName = "Namibian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbt", + ReferenceName = "Na", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbu", + ReferenceName = "Rongmei Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbv", + ReferenceName = "Ngamambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nbw", + ReferenceName = "Southern Ngbandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nby", + ReferenceName = "Ningera", + Scope = "I", + Type = "L" + }, + new + { + Id = "nca", + ReferenceName = "Iyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncb", + ReferenceName = "Central Nicobarese", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncc", + ReferenceName = "Ponam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncd", + ReferenceName = "Nachering", + Scope = "I", + Type = "L" + }, + new + { + Id = "nce", + ReferenceName = "Yale", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncf", + ReferenceName = "Notsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncg", + ReferenceName = "Nisga'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "nch", + ReferenceName = "Central Huasteca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nci", + ReferenceName = "Classical Nahuatl", + Scope = "I", + Type = "H" + }, + new + { + Id = "ncj", + ReferenceName = "Northern Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nck", + ReferenceName = "Na-kara", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncl", + ReferenceName = "Michoacán Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncm", + ReferenceName = "Nambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncn", + ReferenceName = "Nauna", + Scope = "I", + Type = "L" + }, + new + { + Id = "nco", + ReferenceName = "Sibe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncq", + ReferenceName = "Northern Katang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncr", + ReferenceName = "Ncane", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncs", + ReferenceName = "Nicaraguan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nct", + ReferenceName = "Chothe Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncu", + ReferenceName = "Chumburung", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncx", + ReferenceName = "Central Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "ncz", + ReferenceName = "Natchez", + Scope = "I", + Type = "E" + }, + new + { + Id = "nda", + ReferenceName = "Ndasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndb", + ReferenceName = "Kenswei Nsei", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndc", + ReferenceName = "Ndau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndd", + ReferenceName = "Nde-Nsele-Nta", + Scope = "I", + Type = "L" + }, + new + { + Id = "nde", + Part1 = "nd", + Part2B = "nde", + Part2T = "nde", + ReferenceName = "North Ndebele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndf", + ReferenceName = "Nadruvian", + Scope = "I", + Type = "H" + }, + new + { + Id = "ndg", + ReferenceName = "Ndengereko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndh", + ReferenceName = "Ndali", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndi", + ReferenceName = "Samba Leko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndj", + ReferenceName = "Ndamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndk", + ReferenceName = "Ndaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndl", + ReferenceName = "Ndolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndm", + ReferenceName = "Ndam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndn", + ReferenceName = "Ngundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndo", + Part1 = "ng", + Part2B = "ndo", + Part2T = "ndo", + ReferenceName = "Ndonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndp", + ReferenceName = "Ndo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndq", + ReferenceName = "Ndombe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndr", + ReferenceName = "Ndoola", + Scope = "I", + Type = "L" + }, + new + { + Id = "nds", + Part2B = "nds", + Part2T = "nds", + ReferenceName = "Low German", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndt", + ReferenceName = "Ndunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndu", + ReferenceName = "Dugun", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndv", + ReferenceName = "Ndut", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndw", + ReferenceName = "Ndobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndx", + ReferenceName = "Nduga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndy", + ReferenceName = "Lutos", + Scope = "I", + Type = "L" + }, + new + { + Id = "ndz", + ReferenceName = "Ndogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nea", + ReferenceName = "Eastern Ngad'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "neb", + ReferenceName = "Toura (Côte d'Ivoire)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nec", + ReferenceName = "Nedebang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ned", + ReferenceName = "Nde-Gbite", + Scope = "I", + Type = "L" + }, + new + { + Id = "nee", + ReferenceName = "Nêlêmwa-Nixumwak", + Scope = "I", + Type = "L" + }, + new + { + Id = "nef", + ReferenceName = "Nefamese", + Scope = "I", + Type = "L" + }, + new + { + Id = "neg", + ReferenceName = "Negidal", + Scope = "I", + Type = "L" + }, + new + { + Id = "neh", + ReferenceName = "Nyenkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "nei", + ReferenceName = "Neo-Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "nej", + ReferenceName = "Neko", + Scope = "I", + Type = "L" + }, + new + { + Id = "nek", + ReferenceName = "Neku", + Scope = "I", + Type = "L" + }, + new + { + Id = "nem", + ReferenceName = "Nemi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nen", + ReferenceName = "Nengone", + Scope = "I", + Type = "L" + }, + new + { + Id = "neo", + ReferenceName = "Ná-Meo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nep", + Part1 = "ne", + Part2B = "nep", + Part2T = "nep", + ReferenceName = "Nepali (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "neq", + ReferenceName = "North Central Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ner", + ReferenceName = "Yahadian", + Scope = "I", + Type = "L" + }, + new + { + Id = "nes", + ReferenceName = "Bhoti Kinnauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "net", + ReferenceName = "Nete", + Scope = "I", + Type = "L" + }, + new + { + Id = "neu", + ReferenceName = "Neo", + Scope = "I", + Type = "C" + }, + new + { + Id = "nev", + ReferenceName = "Nyaheun", + Scope = "I", + Type = "L" + }, + new + { + Id = "new", + Part2B = "new", + Part2T = "new", + ReferenceName = "Newari", + Scope = "I", + Type = "L" + }, + new + { + Id = "nex", + ReferenceName = "Neme", + Scope = "I", + Type = "L" + }, + new + { + Id = "ney", + ReferenceName = "Neyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nez", + ReferenceName = "Nez Perce", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfa", + ReferenceName = "Dhao", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfd", + ReferenceName = "Ahwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfl", + ReferenceName = "Ayiwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfr", + ReferenceName = "Nafaanra", + Scope = "I", + Type = "L" + }, + new + { + Id = "nfu", + ReferenceName = "Mfumte", + Scope = "I", + Type = "L" + }, + new + { + Id = "nga", + ReferenceName = "Ngbaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngb", + ReferenceName = "Northern Ngbandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngc", + ReferenceName = "Ngombe (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngd", + ReferenceName = "Ngando (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nge", + ReferenceName = "Ngemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngg", + ReferenceName = "Ngbaka Manza", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngh", + ReferenceName = "Nǁng", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngi", + ReferenceName = "Ngizim", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngj", + ReferenceName = "Ngie", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngk", + ReferenceName = "Dalabon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngl", + ReferenceName = "Lomwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngm", + ReferenceName = "Ngatik Men's Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngn", + ReferenceName = "Ngwo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngo", + ReferenceName = "Ngoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngp", + ReferenceName = "Ngulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngq", + ReferenceName = "Ngurimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngr", + ReferenceName = "Engdewu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngs", + ReferenceName = "Gvoko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngt", + ReferenceName = "Kriang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngu", + ReferenceName = "Guerrero Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngv", + ReferenceName = "Nagumi", + Scope = "I", + Type = "E" + }, + new + { + Id = "ngw", + ReferenceName = "Ngwaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngx", + ReferenceName = "Nggwahyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngy", + ReferenceName = "Tibea", + Scope = "I", + Type = "L" + }, + new + { + Id = "ngz", + ReferenceName = "Ngungwel", + Scope = "I", + Type = "L" + }, + new + { + Id = "nha", + ReferenceName = "Nhanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhb", + ReferenceName = "Beng", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhc", + ReferenceName = "Tabasco Nahuatl", + Scope = "I", + Type = "E" + }, + new + { + Id = "nhd", + ReferenceName = "Chiripá", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhe", + ReferenceName = "Eastern Huasteca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhf", + ReferenceName = "Nhuwala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhg", + ReferenceName = "Tetelcingo Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhh", + ReferenceName = "Nahari", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhi", + ReferenceName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhk", + ReferenceName = "Isthmus-Cosoleacaque Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhm", + ReferenceName = "Morelos Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhn", + ReferenceName = "Central Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nho", + ReferenceName = "Takuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhp", + ReferenceName = "Isthmus-Pajapan Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhq", + ReferenceName = "Huaxcaleca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhr", + ReferenceName = "Naro", + Scope = "I", + Type = "L" + }, + new + { + Id = "nht", + ReferenceName = "Ometepec Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhu", + ReferenceName = "Noone", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhv", + ReferenceName = "Temascaltepec Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhw", + ReferenceName = "Western Huasteca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhx", + ReferenceName = "Isthmus-Mecayapan Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhy", + ReferenceName = "Northern Oaxaca Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nhz", + ReferenceName = "Santa María La Alta Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nia", + Part2B = "nia", + Part2T = "nia", + ReferenceName = "Nias", + Scope = "I", + Type = "L" + }, + new + { + Id = "nib", + ReferenceName = "Nakame", + Scope = "I", + Type = "L" + }, + new + { + Id = "nid", + ReferenceName = "Ngandi", + Scope = "I", + Type = "E" + }, + new + { + Id = "nie", + ReferenceName = "Niellim", + Scope = "I", + Type = "L" + }, + new + { + Id = "nif", + ReferenceName = "Nek", + Scope = "I", + Type = "L" + }, + new + { + Id = "nig", + ReferenceName = "Ngalakgan", + Scope = "I", + Type = "E" + }, + new + { + Id = "nih", + ReferenceName = "Nyiha (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nii", + ReferenceName = "Nii", + Scope = "I", + Type = "L" + }, + new + { + Id = "nij", + ReferenceName = "Ngaju", + Scope = "I", + Type = "L" + }, + new + { + Id = "nik", + ReferenceName = "Southern Nicobarese", + Scope = "I", + Type = "L" + }, + new + { + Id = "nil", + ReferenceName = "Nila", + Scope = "I", + Type = "L" + }, + new + { + Id = "nim", + ReferenceName = "Nilamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nin", + ReferenceName = "Ninzo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nio", + ReferenceName = "Nganasan", + Scope = "I", + Type = "L" + }, + new + { + Id = "niq", + ReferenceName = "Nandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nir", + ReferenceName = "Nimboran", + Scope = "I", + Type = "L" + }, + new + { + Id = "nis", + ReferenceName = "Nimi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nit", + ReferenceName = "Southeastern Kolami", + Scope = "I", + Type = "L" + }, + new + { + Id = "niu", + Part2B = "niu", + Part2T = "niu", + ReferenceName = "Niuean", + Scope = "I", + Type = "L" + }, + new + { + Id = "niv", + ReferenceName = "Gilyak", + Scope = "I", + Type = "L" + }, + new + { + Id = "niw", + ReferenceName = "Nimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nix", + ReferenceName = "Hema", + Scope = "I", + Type = "L" + }, + new + { + Id = "niy", + ReferenceName = "Ngiti", + Scope = "I", + Type = "L" + }, + new + { + Id = "niz", + ReferenceName = "Ningil", + Scope = "I", + Type = "L" + }, + new + { + Id = "nja", + ReferenceName = "Nzanyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "njb", + ReferenceName = "Nocte Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njd", + ReferenceName = "Ndonde Hamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "njh", + ReferenceName = "Lotha Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nji", + ReferenceName = "Gudanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "njj", + ReferenceName = "Njen", + Scope = "I", + Type = "L" + }, + new + { + Id = "njl", + ReferenceName = "Njalgulgule", + Scope = "I", + Type = "L" + }, + new + { + Id = "njm", + ReferenceName = "Angami Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njn", + ReferenceName = "Liangmai Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njo", + ReferenceName = "Ao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "njr", + ReferenceName = "Njerep", + Scope = "I", + Type = "L" + }, + new + { + Id = "njs", + ReferenceName = "Nisa", + Scope = "I", + Type = "L" + }, + new + { + Id = "njt", + ReferenceName = "Ndyuka-Trio Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "nju", + ReferenceName = "Ngadjunmaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "njx", + ReferenceName = "Kunyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "njy", + ReferenceName = "Njyem", + Scope = "I", + Type = "L" + }, + new + { + Id = "njz", + ReferenceName = "Nyishi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nka", + ReferenceName = "Nkoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkb", + ReferenceName = "Khoibu Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkc", + ReferenceName = "Nkongho", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkd", + ReferenceName = "Koireng", + Scope = "I", + Type = "L" + }, + new + { + Id = "nke", + ReferenceName = "Duke", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkf", + ReferenceName = "Inpui Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkg", + ReferenceName = "Nekgini", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkh", + ReferenceName = "Khezha Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nki", + ReferenceName = "Thangal Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkj", + ReferenceName = "Nakai", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkk", + ReferenceName = "Nokuku", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkm", + ReferenceName = "Namat", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkn", + ReferenceName = "Nkangala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nko", + ReferenceName = "Nkonya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkp", + ReferenceName = "Niuatoputapu", + Scope = "I", + Type = "E" + }, + new + { + Id = "nkq", + ReferenceName = "Nkami", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkr", + ReferenceName = "Nukuoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "nks", + ReferenceName = "North Asmat", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkt", + ReferenceName = "Nyika (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nku", + ReferenceName = "Bouna Kulango", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkv", + ReferenceName = "Nyika (Malawi and Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkw", + ReferenceName = "Nkutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkx", + ReferenceName = "Nkoroo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nkz", + ReferenceName = "Nkari", + Scope = "I", + Type = "L" + }, + new + { + Id = "nla", + ReferenceName = "Ngombale", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlc", + ReferenceName = "Nalca", + Scope = "I", + Type = "L" + }, + new + { + Id = "nld", + Part1 = "nl", + Part2B = "dut", + Part2T = "nld", + ReferenceName = "Dutch", + Scope = "I", + Type = "L" + }, + new + { + Id = "nle", + ReferenceName = "East Nyala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlg", + ReferenceName = "Gela", + Scope = "I", + Type = "L" + }, + new + { + Id = "nli", + ReferenceName = "Grangali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlj", + ReferenceName = "Nyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlk", + ReferenceName = "Ninia Yali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nll", + ReferenceName = "Nihali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlm", + ReferenceName = "Mankiyali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlo", + ReferenceName = "Ngul", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlq", + ReferenceName = "Lao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlu", + ReferenceName = "Nchumbulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlv", + ReferenceName = "Orizaba Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlw", + ReferenceName = "Walangama", + Scope = "I", + Type = "E" + }, + new + { + Id = "nlx", + ReferenceName = "Nahali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nly", + ReferenceName = "Nyamal", + Scope = "I", + Type = "L" + }, + new + { + Id = "nlz", + ReferenceName = "Nalögo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nma", + ReferenceName = "Maram Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmb", + ReferenceName = "Big Nambas", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmc", + ReferenceName = "Ngam", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmd", + ReferenceName = "Ndumu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nme", + ReferenceName = "Mzieme Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmf", + ReferenceName = "Tangkhul Naga (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmg", + ReferenceName = "Kwasio", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmh", + ReferenceName = "Monsang Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmi", + ReferenceName = "Nyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmj", + ReferenceName = "Ngombe (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmk", + ReferenceName = "Namakura", + Scope = "I", + Type = "L" + }, + new + { + Id = "nml", + ReferenceName = "Ndemli", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmm", + ReferenceName = "Manangba", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmn", + ReferenceName = "ǃXóõ", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmo", + ReferenceName = "Moyon Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmp", + ReferenceName = "Nimanbur", + Scope = "I", + Type = "E" + }, + new + { + Id = "nmq", + ReferenceName = "Nambya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmr", + ReferenceName = "Nimbari", + Scope = "I", + Type = "E" + }, + new + { + Id = "nms", + ReferenceName = "Letemboi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmt", + ReferenceName = "Namonuito", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmu", + ReferenceName = "Northeast Maidu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmv", + ReferenceName = "Ngamini", + Scope = "I", + Type = "E" + }, + new + { + Id = "nmw", + ReferenceName = "Nimoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmx", + ReferenceName = "Nama (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmy", + ReferenceName = "Namuyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nmz", + ReferenceName = "Nawdm", + Scope = "I", + Type = "L" + }, + new + { + Id = "nna", + ReferenceName = "Nyangumarta", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnb", + ReferenceName = "Nande", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnc", + ReferenceName = "Nancere", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnd", + ReferenceName = "West Ambae", + Scope = "I", + Type = "L" + }, + new + { + Id = "nne", + ReferenceName = "Ngandyera", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnf", + ReferenceName = "Ngaing", + Scope = "I", + Type = "L" + }, + new + { + Id = "nng", + ReferenceName = "Maring Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnh", + ReferenceName = "Ngiemboon", + Scope = "I", + Type = "L" + }, + new + { + Id = "nni", + ReferenceName = "North Nuaulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnj", + ReferenceName = "Nyangatom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnk", + ReferenceName = "Nankina", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnl", + ReferenceName = "Northern Rengma Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnm", + ReferenceName = "Namia", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnn", + ReferenceName = "Ngete", + Scope = "I", + Type = "L" + }, + new + { + Id = "nno", + Part1 = "nn", + Part2B = "nno", + Part2T = "nno", + ReferenceName = "Norwegian Nynorsk", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnp", + ReferenceName = "Wancho Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnq", + ReferenceName = "Ngindo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnr", + ReferenceName = "Narungga", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnt", + ReferenceName = "Nanticoke", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnu", + ReferenceName = "Dwang", + Scope = "I", + Type = "L" + }, + new + { + Id = "nnv", + ReferenceName = "Nugunu (Australia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnw", + ReferenceName = "Southern Nuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "nny", + ReferenceName = "Nyangga", + Scope = "I", + Type = "E" + }, + new + { + Id = "nnz", + ReferenceName = "Nda'nda'", + Scope = "I", + Type = "L" + }, + new + { + Id = "noa", + ReferenceName = "Woun Meu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nob", + Part1 = "nb", + Part2B = "nob", + Part2T = "nob", + ReferenceName = "Norwegian Bokmål", + Scope = "I", + Type = "L" + }, + new + { + Id = "noc", + ReferenceName = "Nuk", + Scope = "I", + Type = "L" + }, + new + { + Id = "nod", + ReferenceName = "Northern Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "noe", + ReferenceName = "Nimadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nof", + ReferenceName = "Nomane", + Scope = "I", + Type = "L" + }, + new + { + Id = "nog", + Part2B = "nog", + Part2T = "nog", + ReferenceName = "Nogai", + Scope = "I", + Type = "L" + }, + new + { + Id = "noh", + ReferenceName = "Nomu", + Scope = "I", + Type = "L" + }, + new + { + Id = "noi", + ReferenceName = "Noiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "noj", + ReferenceName = "Nonuya", + Scope = "I", + Type = "L" + }, + new + { + Id = "nok", + ReferenceName = "Nooksack", + Scope = "I", + Type = "E" + }, + new + { + Id = "nol", + ReferenceName = "Nomlaki", + Scope = "I", + Type = "E" + }, + new + { + Id = "nom", + ReferenceName = "Nocamán", + Scope = "I", + Type = "E" + }, + new + { + Id = "non", + Part2B = "non", + Part2T = "non", + ReferenceName = "Old Norse", + Scope = "I", + Type = "H" + }, + new + { + Id = "nop", + ReferenceName = "Numanggang", + Scope = "I", + Type = "L" + }, + new + { + Id = "noq", + ReferenceName = "Ngongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nor", + Part1 = "no", + Part2B = "nor", + Part2T = "nor", + ReferenceName = "Norwegian", + Scope = "M", + Type = "L" + }, + new + { + Id = "nos", + ReferenceName = "Eastern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "not", + ReferenceName = "Nomatsiguenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nou", + ReferenceName = "Ewage-Notu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nov", + ReferenceName = "Novial", + Scope = "I", + Type = "C" + }, + new + { + Id = "now", + ReferenceName = "Nyambo", + Scope = "I", + Type = "L" + }, + new + { + Id = "noy", + ReferenceName = "Noy", + Scope = "I", + Type = "L" + }, + new + { + Id = "noz", + ReferenceName = "Nayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "npa", + ReferenceName = "Nar Phu", + Scope = "I", + Type = "L" + }, + new + { + Id = "npb", + ReferenceName = "Nupbikha", + Scope = "I", + Type = "L" + }, + new + { + Id = "npg", + ReferenceName = "Ponyo-Gongwang Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nph", + ReferenceName = "Phom Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "npi", + ReferenceName = "Nepali (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "npl", + ReferenceName = "Southeastern Puebla Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "npn", + ReferenceName = "Mondropolon", + Scope = "I", + Type = "L" + }, + new + { + Id = "npo", + ReferenceName = "Pochuri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nps", + ReferenceName = "Nipsan", + Scope = "I", + Type = "L" + }, + new + { + Id = "npu", + ReferenceName = "Puimei Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "npx", + ReferenceName = "Noipx", + Scope = "I", + Type = "L" + }, + new + { + Id = "npy", + ReferenceName = "Napu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqg", + ReferenceName = "Southern Nago", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqk", + ReferenceName = "Kura Ede Nago", + Scope = "I", + Type = "L" + }, + new + { + Id = "nql", + ReferenceName = "Ngendelengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqm", + ReferenceName = "Ndom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqn", + ReferenceName = "Nen", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqo", + Part2B = "nqo", + Part2T = "nqo", + ReferenceName = "N'Ko", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqq", + ReferenceName = "Kyan-Karyaw Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nqy", + ReferenceName = "Akyaung Ari Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nra", + ReferenceName = "Ngom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrb", + ReferenceName = "Nara", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrc", + ReferenceName = "Noric", + Scope = "I", + Type = "A" + }, + new + { + Id = "nre", + ReferenceName = "Southern Rengma Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrf", + ReferenceName = "Jèrriais", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrg", + ReferenceName = "Narango", + Scope = "I", + Type = "L" + }, + new + { + Id = "nri", + ReferenceName = "Chokri Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrk", + ReferenceName = "Ngarla", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrl", + ReferenceName = "Ngarluma", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrm", + ReferenceName = "Narom", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrn", + ReferenceName = "Norn", + Scope = "I", + Type = "E" + }, + new + { + Id = "nrp", + ReferenceName = "North Picene", + Scope = "I", + Type = "A" + }, + new + { + Id = "nrr", + ReferenceName = "Norra", + Scope = "I", + Type = "E" + }, + new + { + Id = "nrt", + ReferenceName = "Northern Kalapuya", + Scope = "I", + Type = "E" + }, + new + { + Id = "nru", + ReferenceName = "Narua", + Scope = "I", + Type = "L" + }, + new + { + Id = "nrx", + ReferenceName = "Ngurmbur", + Scope = "I", + Type = "E" + }, + new + { + Id = "nrz", + ReferenceName = "Lala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsa", + ReferenceName = "Sangtam Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsc", + ReferenceName = "Nshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsd", + ReferenceName = "Southern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nse", + ReferenceName = "Nsenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsf", + ReferenceName = "Northwestern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsg", + ReferenceName = "Ngasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsh", + ReferenceName = "Ngoshie", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsi", + ReferenceName = "Nigerian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsk", + ReferenceName = "Naskapi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsl", + ReferenceName = "Norwegian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsm", + ReferenceName = "Sumi Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsn", + ReferenceName = "Nehan", + Scope = "I", + Type = "L" + }, + new + { + Id = "nso", + Part2B = "nso", + Part2T = "nso", + ReferenceName = "Pedi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsp", + ReferenceName = "Nepalese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsq", + ReferenceName = "Northern Sierra Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsr", + ReferenceName = "Maritime Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nss", + ReferenceName = "Nali", + Scope = "I", + Type = "L" + }, + new + { + Id = "nst", + ReferenceName = "Tase Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsu", + ReferenceName = "Sierra Negra Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsv", + ReferenceName = "Southwestern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsw", + ReferenceName = "Navut", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsx", + ReferenceName = "Nsongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsy", + ReferenceName = "Nasal", + Scope = "I", + Type = "L" + }, + new + { + Id = "nsz", + ReferenceName = "Nisenan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntd", + ReferenceName = "Northern Tidung", + Scope = "I", + Type = "L" + }, + new + { + Id = "nte", + ReferenceName = "Nathembo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntg", + ReferenceName = "Ngantangarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "nti", + ReferenceName = "Natioro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntj", + ReferenceName = "Ngaanyatjarra", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntk", + ReferenceName = "Ikoma-Nata-Isenye", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntm", + ReferenceName = "Nateni", + Scope = "I", + Type = "L" + }, + new + { + Id = "nto", + ReferenceName = "Ntomba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntp", + ReferenceName = "Northern Tepehuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntr", + ReferenceName = "Delo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntu", + ReferenceName = "Natügu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntw", + ReferenceName = "Nottoway", + Scope = "I", + Type = "E" + }, + new + { + Id = "ntx", + ReferenceName = "Tangkhul Naga (Myanmar)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nty", + ReferenceName = "Mantsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ntz", + ReferenceName = "Natanzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nua", + ReferenceName = "Yuanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuc", + ReferenceName = "Nukuini", + Scope = "I", + Type = "E" + }, + new + { + Id = "nud", + ReferenceName = "Ngala", + Scope = "I", + Type = "L" + }, + new + { + Id = "nue", + ReferenceName = "Ngundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuf", + ReferenceName = "Nusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nug", + ReferenceName = "Nungali", + Scope = "I", + Type = "E" + }, + new + { + Id = "nuh", + ReferenceName = "Ndunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "nui", + ReferenceName = "Ngumbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuj", + ReferenceName = "Nyole", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuk", + ReferenceName = "Nuu-chah-nulth", + Scope = "I", + Type = "L" + }, + new + { + Id = "nul", + ReferenceName = "Nusa Laut", + Scope = "I", + Type = "E" + }, + new + { + Id = "num", + ReferenceName = "Niuafo'ou", + Scope = "I", + Type = "L" + }, + new + { + Id = "nun", + ReferenceName = "Anong", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuo", + ReferenceName = "Nguôn", + Scope = "I", + Type = "L" + }, + new + { + Id = "nup", + ReferenceName = "Nupe-Nupe-Tako", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuq", + ReferenceName = "Nukumanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nur", + ReferenceName = "Nukuria", + Scope = "I", + Type = "L" + }, + new + { + Id = "nus", + ReferenceName = "Nuer", + Scope = "I", + Type = "L" + }, + new + { + Id = "nut", + ReferenceName = "Nung (Viet Nam)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuu", + ReferenceName = "Ngbundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuv", + ReferenceName = "Northern Nuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuw", + ReferenceName = "Nguluwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "nux", + ReferenceName = "Mehek", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuy", + ReferenceName = "Nunggubuyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nuz", + ReferenceName = "Tlamacazapa Nahuatl", + Scope = "I", + Type = "L" + }, + new + { + Id = "nvh", + ReferenceName = "Nasarian", + Scope = "I", + Type = "L" + }, + new + { + Id = "nvm", + ReferenceName = "Namiae", + Scope = "I", + Type = "L" + }, + new + { + Id = "nvo", + ReferenceName = "Nyokon", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwa", + ReferenceName = "Nawathinehena", + Scope = "I", + Type = "E" + }, + new + { + Id = "nwb", + ReferenceName = "Nyabwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwc", + Part2B = "nwc", + Part2T = "nwc", + ReferenceName = "Classical Newari", + Scope = "I", + Type = "H" + }, + new + { + Id = "nwe", + ReferenceName = "Ngwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwg", + ReferenceName = "Ngayawung", + Scope = "I", + Type = "E" + }, + new + { + Id = "nwi", + ReferenceName = "Southwest Tanna", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwm", + ReferenceName = "Nyamusa-Molo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwo", + ReferenceName = "Nauo", + Scope = "I", + Type = "E" + }, + new + { + Id = "nwr", + ReferenceName = "Nawaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "nwx", + ReferenceName = "Middle Newar", + Scope = "I", + Type = "H" + }, + new + { + Id = "nwy", + ReferenceName = "Nottoway-Meherrin", + Scope = "I", + Type = "E" + }, + new + { + Id = "nxa", + ReferenceName = "Nauete", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxd", + ReferenceName = "Ngando (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxe", + ReferenceName = "Nage", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxg", + ReferenceName = "Ngad'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxi", + ReferenceName = "Nindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxk", + ReferenceName = "Koki Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxl", + ReferenceName = "South Nuaulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxm", + ReferenceName = "Numidian", + Scope = "I", + Type = "A" + }, + new + { + Id = "nxn", + ReferenceName = "Ngawun", + Scope = "I", + Type = "E" + }, + new + { + Id = "nxo", + ReferenceName = "Ndambomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxq", + ReferenceName = "Naxi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxr", + ReferenceName = "Ninggerum", + Scope = "I", + Type = "L" + }, + new + { + Id = "nxu", + ReferenceName = "Narau", + Scope = "I", + Type = "E" + }, + new + { + Id = "nxx", + ReferenceName = "Nafri", + Scope = "I", + Type = "L" + }, + new + { + Id = "nya", + Part1 = "ny", + Part2B = "nya", + Part2T = "nya", + ReferenceName = "Nyanja", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyb", + ReferenceName = "Nyangbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyc", + ReferenceName = "Nyanga-li", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyd", + ReferenceName = "Nyore", + Scope = "I", + Type = "L" + }, + new + { + Id = "nye", + ReferenceName = "Nyengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyf", + ReferenceName = "Giryama", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyg", + ReferenceName = "Nyindu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyh", + ReferenceName = "Nyikina", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyi", + ReferenceName = "Ama (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyj", + ReferenceName = "Nyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyk", + ReferenceName = "Nyaneka", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyl", + ReferenceName = "Nyeu", + Scope = "I", + Type = "L" + }, + new + { + Id = "nym", + Part2B = "nym", + Part2T = "nym", + ReferenceName = "Nyamwezi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyn", + Part2B = "nyn", + Part2T = "nyn", + ReferenceName = "Nyankole", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyo", + Part2B = "nyo", + Part2T = "nyo", + ReferenceName = "Nyoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyp", + ReferenceName = "Nyang'i", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyq", + ReferenceName = "Nayini", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyr", + ReferenceName = "Nyiha (Malawi)", + Scope = "I", + Type = "L" + }, + new + { + Id = "nys", + ReferenceName = "Nyungar", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyt", + ReferenceName = "Nyawaygi", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyu", + ReferenceName = "Nyungwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyv", + ReferenceName = "Nyulnyul", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyw", + ReferenceName = "Nyaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "nyx", + ReferenceName = "Nganyaywana", + Scope = "I", + Type = "E" + }, + new + { + Id = "nyy", + ReferenceName = "Nyakyusa-Ngonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "nza", + ReferenceName = "Tigon Mbembe", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzb", + ReferenceName = "Njebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzd", + ReferenceName = "Nzadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzi", + Part2B = "nzi", + Part2T = "nzi", + ReferenceName = "Nzima", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzk", + ReferenceName = "Nzakara", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzm", + ReferenceName = "Zeme Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzs", + ReferenceName = "New Zealand Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzu", + ReferenceName = "Teke-Nzikou", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzy", + ReferenceName = "Nzakambay", + Scope = "I", + Type = "L" + }, + new + { + Id = "nzz", + ReferenceName = "Nanga Dama Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "oaa", + ReferenceName = "Orok", + Scope = "I", + Type = "L" + }, + new + { + Id = "oac", + ReferenceName = "Oroch", + Scope = "I", + Type = "L" + }, + new + { + Id = "oar", + ReferenceName = "Old Aramaic (up to 700 BCE)", + Scope = "I", + Type = "A" + }, + new + { + Id = "oav", + ReferenceName = "Old Avar", + Scope = "I", + Type = "H" + }, + new + { + Id = "obi", + ReferenceName = "Obispeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "obk", + ReferenceName = "Southern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "obl", + ReferenceName = "Oblo", + Scope = "I", + Type = "L" + }, + new + { + Id = "obm", + ReferenceName = "Moabite", + Scope = "I", + Type = "A" + }, + new + { + Id = "obo", + ReferenceName = "Obo Manobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "obr", + ReferenceName = "Old Burmese", + Scope = "I", + Type = "H" + }, + new + { + Id = "obt", + ReferenceName = "Old Breton", + Scope = "I", + Type = "H" + }, + new + { + Id = "obu", + ReferenceName = "Obulom", + Scope = "I", + Type = "L" + }, + new + { + Id = "oca", + ReferenceName = "Ocaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "och", + ReferenceName = "Old Chinese", + Scope = "I", + Type = "A" + }, + new + { + Id = "oci", + Part1 = "oc", + Part2B = "oci", + Part2T = "oci", + ReferenceName = "Occitan (post 1500)", + Scope = "I", + Type = "L" + }, + new + { + Id = "oco", + ReferenceName = "Old Cornish", + Scope = "I", + Type = "H" + }, + new + { + Id = "ocu", + ReferenceName = "Atzingo Matlatzinca", + Scope = "I", + Type = "L" + }, + new + { + Id = "oda", + ReferenceName = "Odut", + Scope = "I", + Type = "L" + }, + new + { + Id = "odk", + ReferenceName = "Od", + Scope = "I", + Type = "L" + }, + new + { + Id = "odt", + ReferenceName = "Old Dutch", + Scope = "I", + Type = "H" + }, + new + { + Id = "odu", + ReferenceName = "Odual", + Scope = "I", + Type = "L" + }, + new + { + Id = "ofo", + ReferenceName = "Ofo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ofs", + ReferenceName = "Old Frisian", + Scope = "I", + Type = "H" + }, + new + { + Id = "ofu", + ReferenceName = "Efutop", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogb", + ReferenceName = "Ogbia", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogc", + ReferenceName = "Ogbah", + Scope = "I", + Type = "L" + }, + new + { + Id = "oge", + ReferenceName = "Old Georgian", + Scope = "I", + Type = "H" + }, + new + { + Id = "ogg", + ReferenceName = "Ogbogolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogo", + ReferenceName = "Khana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ogu", + ReferenceName = "Ogbronuagum", + Scope = "I", + Type = "L" + }, + new + { + Id = "oht", + ReferenceName = "Old Hittite", + Scope = "I", + Type = "A" + }, + new + { + Id = "ohu", + ReferenceName = "Old Hungarian", + Scope = "I", + Type = "H" + }, + new + { + Id = "oia", + ReferenceName = "Oirata", + Scope = "I", + Type = "L" + }, + new + { + Id = "oin", + ReferenceName = "Inebu One", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojb", + ReferenceName = "Northwestern Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojc", + ReferenceName = "Central Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojg", + ReferenceName = "Eastern Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "oji", + Part1 = "oj", + Part2B = "oji", + Part2T = "oji", + ReferenceName = "Ojibwa", + Scope = "M", + Type = "L" + }, + new + { + Id = "ojp", + ReferenceName = "Old Japanese", + Scope = "I", + Type = "H" + }, + new + { + Id = "ojs", + ReferenceName = "Severn Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojv", + ReferenceName = "Ontong Java", + Scope = "I", + Type = "L" + }, + new + { + Id = "ojw", + ReferenceName = "Western Ojibwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "oka", + ReferenceName = "Okanagan", + Scope = "I", + Type = "L" + }, + new + { + Id = "okb", + ReferenceName = "Okobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "okd", + ReferenceName = "Okodia", + Scope = "I", + Type = "L" + }, + new + { + Id = "oke", + ReferenceName = "Okpe (Southwestern Edo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "okg", + ReferenceName = "Koko Babangk", + Scope = "I", + Type = "E" + }, + new + { + Id = "okh", + ReferenceName = "Koresh-e Rostam", + Scope = "I", + Type = "L" + }, + new + { + Id = "oki", + ReferenceName = "Okiek", + Scope = "I", + Type = "L" + }, + new + { + Id = "okj", + ReferenceName = "Oko-Juwoi", + Scope = "I", + Type = "E" + }, + new + { + Id = "okk", + ReferenceName = "Kwamtim One", + Scope = "I", + Type = "L" + }, + new + { + Id = "okl", + ReferenceName = "Old Kentish Sign Language", + Scope = "I", + Type = "E" + }, + new + { + Id = "okm", + ReferenceName = "Middle Korean (10th-16th cent.)", + Scope = "I", + Type = "H" + }, + new + { + Id = "okn", + ReferenceName = "Oki-No-Erabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "oko", + ReferenceName = "Old Korean (3rd-9th cent.)", + Scope = "I", + Type = "H" + }, + new + { + Id = "okr", + ReferenceName = "Kirike", + Scope = "I", + Type = "L" + }, + new + { + Id = "oks", + ReferenceName = "Oko-Eni-Osayen", + Scope = "I", + Type = "L" + }, + new + { + Id = "oku", + ReferenceName = "Oku", + Scope = "I", + Type = "L" + }, + new + { + Id = "okv", + ReferenceName = "Orokaiva", + Scope = "I", + Type = "L" + }, + new + { + Id = "okx", + ReferenceName = "Okpe (Northwestern Edo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ola", + ReferenceName = "Walungge", + Scope = "I", + Type = "L" + }, + new + { + Id = "old", + ReferenceName = "Mochi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ole", + ReferenceName = "Olekha", + Scope = "I", + Type = "L" + }, + new + { + Id = "olk", + ReferenceName = "Olkol", + Scope = "I", + Type = "E" + }, + new + { + Id = "olm", + ReferenceName = "Oloma", + Scope = "I", + Type = "L" + }, + new + { + Id = "olo", + ReferenceName = "Livvi", + Scope = "I", + Type = "L" + }, + new + { + Id = "olr", + ReferenceName = "Olrat", + Scope = "I", + Type = "L" + }, + new + { + Id = "olt", + ReferenceName = "Old Lithuanian", + Scope = "I", + Type = "H" + }, + new + { + Id = "olu", + ReferenceName = "Kuvale", + Scope = "I", + Type = "L" + }, + new + { + Id = "oma", + ReferenceName = "Omaha-Ponca", + Scope = "I", + Type = "L" + }, + new + { + Id = "omb", + ReferenceName = "East Ambae", + Scope = "I", + Type = "L" + }, + new + { + Id = "omc", + ReferenceName = "Mochica", + Scope = "I", + Type = "E" + }, + new + { + Id = "omg", + ReferenceName = "Omagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "omi", + ReferenceName = "Omi", + Scope = "I", + Type = "L" + }, + new + { + Id = "omk", + ReferenceName = "Omok", + Scope = "I", + Type = "E" + }, + new + { + Id = "oml", + ReferenceName = "Ombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "omn", + ReferenceName = "Minoan", + Scope = "I", + Type = "A" + }, + new + { + Id = "omo", + ReferenceName = "Utarmbung", + Scope = "I", + Type = "L" + }, + new + { + Id = "omp", + ReferenceName = "Old Manipuri", + Scope = "I", + Type = "H" + }, + new + { + Id = "omr", + ReferenceName = "Old Marathi", + Scope = "I", + Type = "H" + }, + new + { + Id = "omt", + ReferenceName = "Omotik", + Scope = "I", + Type = "L" + }, + new + { + Id = "omu", + ReferenceName = "Omurano", + Scope = "I", + Type = "E" + }, + new + { + Id = "omw", + ReferenceName = "South Tairora", + Scope = "I", + Type = "L" + }, + new + { + Id = "omx", + ReferenceName = "Old Mon", + Scope = "I", + Type = "H" + }, + new + { + Id = "ona", + ReferenceName = "Ona", + Scope = "I", + Type = "L" + }, + new + { + Id = "onb", + ReferenceName = "Lingao", + Scope = "I", + Type = "L" + }, + new + { + Id = "one", + ReferenceName = "Oneida", + Scope = "I", + Type = "L" + }, + new + { + Id = "ong", + ReferenceName = "Olo", + Scope = "I", + Type = "L" + }, + new + { + Id = "oni", + ReferenceName = "Onin", + Scope = "I", + Type = "L" + }, + new + { + Id = "onj", + ReferenceName = "Onjob", + Scope = "I", + Type = "L" + }, + new + { + Id = "onk", + ReferenceName = "Kabore One", + Scope = "I", + Type = "L" + }, + new + { + Id = "onn", + ReferenceName = "Onobasulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ono", + ReferenceName = "Onondaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "onp", + ReferenceName = "Sartang", + Scope = "I", + Type = "L" + }, + new + { + Id = "onr", + ReferenceName = "Northern One", + Scope = "I", + Type = "L" + }, + new + { + Id = "ons", + ReferenceName = "Ono", + Scope = "I", + Type = "L" + }, + new + { + Id = "ont", + ReferenceName = "Ontenu", + Scope = "I", + Type = "L" + }, + new + { + Id = "onu", + ReferenceName = "Unua", + Scope = "I", + Type = "L" + }, + new + { + Id = "onw", + ReferenceName = "Old Nubian", + Scope = "I", + Type = "H" + }, + new + { + Id = "onx", + ReferenceName = "Onin Based Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ood", + ReferenceName = "Tohono O'odham", + Scope = "I", + Type = "L" + }, + new + { + Id = "oog", + ReferenceName = "Ong", + Scope = "I", + Type = "L" + }, + new + { + Id = "oon", + ReferenceName = "Önge", + Scope = "I", + Type = "L" + }, + new + { + Id = "oor", + ReferenceName = "Oorlams", + Scope = "I", + Type = "L" + }, + new + { + Id = "oos", + ReferenceName = "Old Ossetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "opa", + ReferenceName = "Okpamheri", + Scope = "I", + Type = "L" + }, + new + { + Id = "opk", + ReferenceName = "Kopkaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "opm", + ReferenceName = "Oksapmin", + Scope = "I", + Type = "L" + }, + new + { + Id = "opo", + ReferenceName = "Opao", + Scope = "I", + Type = "L" + }, + new + { + Id = "opt", + ReferenceName = "Opata", + Scope = "I", + Type = "E" + }, + new + { + Id = "opy", + ReferenceName = "Ofayé", + Scope = "I", + Type = "L" + }, + new + { + Id = "ora", + ReferenceName = "Oroha", + Scope = "I", + Type = "L" + }, + new + { + Id = "orc", + ReferenceName = "Orma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ore", + ReferenceName = "Orejón", + Scope = "I", + Type = "L" + }, + new + { + Id = "org", + ReferenceName = "Oring", + Scope = "I", + Type = "L" + }, + new + { + Id = "orh", + ReferenceName = "Oroqen", + Scope = "I", + Type = "L" + }, + new + { + Id = "ori", + Part1 = "or", + Part2B = "ori", + Part2T = "ori", + ReferenceName = "Oriya (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "orm", + Part1 = "om", + Part2B = "orm", + Part2T = "orm", + ReferenceName = "Oromo", + Scope = "M", + Type = "L" + }, + new + { + Id = "orn", + ReferenceName = "Orang Kanaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "oro", + ReferenceName = "Orokolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "orr", + ReferenceName = "Oruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ors", + ReferenceName = "Orang Seletar", + Scope = "I", + Type = "L" + }, + new + { + Id = "ort", + ReferenceName = "Adivasi Oriya", + Scope = "I", + Type = "L" + }, + new + { + Id = "oru", + ReferenceName = "Ormuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "orv", + ReferenceName = "Old Russian", + Scope = "I", + Type = "H" + }, + new + { + Id = "orw", + ReferenceName = "Oro Win", + Scope = "I", + Type = "L" + }, + new + { + Id = "orx", + ReferenceName = "Oro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ory", + ReferenceName = "Odia", + Scope = "I", + Type = "L" + }, + new + { + Id = "orz", + ReferenceName = "Ormu", + Scope = "I", + Type = "L" + }, + new + { + Id = "osa", + Part2B = "osa", + Part2T = "osa", + ReferenceName = "Osage", + Scope = "I", + Type = "L" + }, + new + { + Id = "osc", + ReferenceName = "Oscan", + Scope = "I", + Type = "A" + }, + new + { + Id = "osi", + ReferenceName = "Osing", + Scope = "I", + Type = "L" + }, + new + { + Id = "oso", + ReferenceName = "Ososo", + Scope = "I", + Type = "L" + }, + new + { + Id = "osp", + ReferenceName = "Old Spanish", + Scope = "I", + Type = "H" + }, + new + { + Id = "oss", + Part1 = "os", + Part2B = "oss", + Part2T = "oss", + ReferenceName = "Ossetian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ost", + ReferenceName = "Osatu", + Scope = "I", + Type = "L" + }, + new + { + Id = "osu", + ReferenceName = "Southern One", + Scope = "I", + Type = "L" + }, + new + { + Id = "osx", + ReferenceName = "Old Saxon", + Scope = "I", + Type = "H" + }, + new + { + Id = "ota", + Part2B = "ota", + Part2T = "ota", + ReferenceName = "Ottoman Turkish (1500-1928)", + Scope = "I", + Type = "H" + }, + new + { + Id = "otb", + ReferenceName = "Old Tibetan", + Scope = "I", + Type = "H" + }, + new + { + Id = "otd", + ReferenceName = "Ot Danum", + Scope = "I", + Type = "L" + }, + new + { + Id = "ote", + ReferenceName = "Mezquital Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oti", + ReferenceName = "Oti", + Scope = "I", + Type = "E" + }, + new + { + Id = "otk", + ReferenceName = "Old Turkish", + Scope = "I", + Type = "H" + }, + new + { + Id = "otl", + ReferenceName = "Tilapa Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otm", + ReferenceName = "Eastern Highland Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otn", + ReferenceName = "Tenango Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otq", + ReferenceName = "Querétaro Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otr", + ReferenceName = "Otoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ots", + ReferenceName = "Estado de México Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ott", + ReferenceName = "Temoaya Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "otu", + ReferenceName = "Otuke", + Scope = "I", + Type = "E" + }, + new + { + Id = "otw", + ReferenceName = "Ottawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "otx", + ReferenceName = "Texcatepec Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oty", + ReferenceName = "Old Tamil", + Scope = "I", + Type = "A" + }, + new + { + Id = "otz", + ReferenceName = "Ixtenco Otomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oua", + ReferenceName = "Tagargrent", + Scope = "I", + Type = "L" + }, + new + { + Id = "oub", + ReferenceName = "Glio-Oubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oue", + ReferenceName = "Oune", + Scope = "I", + Type = "L" + }, + new + { + Id = "oui", + ReferenceName = "Old Uighur", + Scope = "I", + Type = "H" + }, + new + { + Id = "oum", + ReferenceName = "Ouma", + Scope = "I", + Type = "E" + }, + new + { + Id = "ovd", + ReferenceName = "Elfdalian", + Scope = "I", + Type = "L" + }, + new + { + Id = "owi", + ReferenceName = "Owiniga", + Scope = "I", + Type = "L" + }, + new + { + Id = "owl", + ReferenceName = "Old Welsh", + Scope = "I", + Type = "H" + }, + new + { + Id = "oyb", + ReferenceName = "Oy", + Scope = "I", + Type = "L" + }, + new + { + Id = "oyd", + ReferenceName = "Oyda", + Scope = "I", + Type = "L" + }, + new + { + Id = "oym", + ReferenceName = "Wayampi", + Scope = "I", + Type = "L" + }, + new + { + Id = "oyy", + ReferenceName = "Oya'oya", + Scope = "I", + Type = "L" + }, + new + { + Id = "ozm", + ReferenceName = "Koonzime", + Scope = "I", + Type = "L" + }, + new + { + Id = "pab", + ReferenceName = "Parecís", + Scope = "I", + Type = "L" + }, + new + { + Id = "pac", + ReferenceName = "Pacoh", + Scope = "I", + Type = "L" + }, + new + { + Id = "pad", + ReferenceName = "Paumarí", + Scope = "I", + Type = "L" + }, + new + { + Id = "pae", + ReferenceName = "Pagibete", + Scope = "I", + Type = "L" + }, + new + { + Id = "paf", + ReferenceName = "Paranawát", + Scope = "I", + Type = "E" + }, + new + { + Id = "pag", + Part2B = "pag", + Part2T = "pag", + ReferenceName = "Pangasinan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pah", + ReferenceName = "Tenharim", + Scope = "I", + Type = "L" + }, + new + { + Id = "pai", + ReferenceName = "Pe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pak", + ReferenceName = "Parakanã", + Scope = "I", + Type = "L" + }, + new + { + Id = "pal", + Part2B = "pal", + Part2T = "pal", + ReferenceName = "Pahlavi", + Scope = "I", + Type = "A" + }, + new + { + Id = "pam", + Part2B = "pam", + Part2T = "pam", + ReferenceName = "Pampanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "pan", + Part1 = "pa", + Part2B = "pan", + Part2T = "pan", + ReferenceName = "Panjabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pao", + ReferenceName = "Northern Paiute", + Scope = "I", + Type = "L" + }, + new + { + Id = "pap", + Part2B = "pap", + Part2T = "pap", + ReferenceName = "Papiamento", + Scope = "I", + Type = "L" + }, + new + { + Id = "paq", + ReferenceName = "Parya", + Scope = "I", + Type = "L" + }, + new + { + Id = "par", + ReferenceName = "Panamint", + Scope = "I", + Type = "L" + }, + new + { + Id = "pas", + ReferenceName = "Papasena", + Scope = "I", + Type = "L" + }, + new + { + Id = "pat", + ReferenceName = "Papitalai", + Scope = "I", + Type = "L" + }, + new + { + Id = "pau", + Part2B = "pau", + Part2T = "pau", + ReferenceName = "Palauan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pav", + ReferenceName = "Pakaásnovos", + Scope = "I", + Type = "L" + }, + new + { + Id = "paw", + ReferenceName = "Pawnee", + Scope = "I", + Type = "L" + }, + new + { + Id = "pax", + ReferenceName = "Pankararé", + Scope = "I", + Type = "E" + }, + new + { + Id = "pay", + ReferenceName = "Pech", + Scope = "I", + Type = "L" + }, + new + { + Id = "paz", + ReferenceName = "Pankararú", + Scope = "I", + Type = "E" + }, + new + { + Id = "pbb", + ReferenceName = "Páez", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbc", + ReferenceName = "Patamona", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbe", + ReferenceName = "Mezontla Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbf", + ReferenceName = "Coyotepec Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbg", + ReferenceName = "Paraujano", + Scope = "I", + Type = "E" + }, + new + { + Id = "pbh", + ReferenceName = "E'ñapa Woromaipu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbi", + ReferenceName = "Parkwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbl", + ReferenceName = "Mak (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbm", + ReferenceName = "Puebla Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbn", + ReferenceName = "Kpasam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbo", + ReferenceName = "Papel", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbp", + ReferenceName = "Badyara", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbr", + ReferenceName = "Pangwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbs", + ReferenceName = "Central Pame", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbt", + ReferenceName = "Southern Pashto", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbu", + ReferenceName = "Northern Pashto", + Scope = "I", + Type = "L" + }, + new + { + Id = "pbv", + ReferenceName = "Pnar", + Scope = "I", + Type = "L" + }, + new + { + Id = "pby", + ReferenceName = "Pyu (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pca", + ReferenceName = "Santa Inés Ahuatempan Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcb", + ReferenceName = "Pear", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcc", + ReferenceName = "Bouyei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcd", + ReferenceName = "Picard", + Scope = "I", + Type = "L" + }, + new + { + Id = "pce", + ReferenceName = "Ruching Palaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcf", + ReferenceName = "Paliyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcg", + ReferenceName = "Paniya", + Scope = "I", + Type = "L" + }, + new + { + Id = "pch", + ReferenceName = "Pardhan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pci", + ReferenceName = "Duruwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcj", + ReferenceName = "Parenga", + Scope = "I", + Type = "L" + }, + new + { + Id = "pck", + ReferenceName = "Paite Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcl", + ReferenceName = "Pardhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcm", + ReferenceName = "Nigerian Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcn", + ReferenceName = "Piti", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcp", + ReferenceName = "Pacahuara", + Scope = "I", + Type = "L" + }, + new + { + Id = "pcw", + ReferenceName = "Pyapun", + Scope = "I", + Type = "L" + }, + new + { + Id = "pda", + ReferenceName = "Anam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdc", + ReferenceName = "Pennsylvania German", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdi", + ReferenceName = "Pa Di", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdn", + ReferenceName = "Podena", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdo", + ReferenceName = "Padoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdt", + ReferenceName = "Plautdietsch", + Scope = "I", + Type = "L" + }, + new + { + Id = "pdu", + ReferenceName = "Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pea", + ReferenceName = "Peranakan Indonesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "peb", + ReferenceName = "Eastern Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ped", + ReferenceName = "Mala (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pee", + ReferenceName = "Taje", + Scope = "I", + Type = "L" + }, + new + { + Id = "pef", + ReferenceName = "Northeastern Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "peg", + ReferenceName = "Pengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "peh", + ReferenceName = "Bonan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pei", + ReferenceName = "Chichimeca-Jonaz", + Scope = "I", + Type = "L" + }, + new + { + Id = "pej", + ReferenceName = "Northern Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "pek", + ReferenceName = "Penchal", + Scope = "I", + Type = "L" + }, + new + { + Id = "pel", + ReferenceName = "Pekal", + Scope = "I", + Type = "L" + }, + new + { + Id = "pem", + ReferenceName = "Phende", + Scope = "I", + Type = "L" + }, + new + { + Id = "peo", + Part2B = "peo", + Part2T = "peo", + ReferenceName = "Old Persian (ca. 600-400 B.C.)", + Scope = "I", + Type = "H" + }, + new + { + Id = "pep", + ReferenceName = "Kunja", + Scope = "I", + Type = "L" + }, + new + { + Id = "peq", + ReferenceName = "Southern Pomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pes", + ReferenceName = "Iranian Persian", + Scope = "I", + Type = "L" + }, + new + { + Id = "pev", + ReferenceName = "Pémono", + Scope = "I", + Type = "L" + }, + new + { + Id = "pex", + ReferenceName = "Petats", + Scope = "I", + Type = "L" + }, + new + { + Id = "pey", + ReferenceName = "Petjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pez", + ReferenceName = "Eastern Penan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pfa", + ReferenceName = "Pááfang", + Scope = "I", + Type = "L" + }, + new + { + Id = "pfe", + ReferenceName = "Peere", + Scope = "I", + Type = "L" + }, + new + { + Id = "pfl", + ReferenceName = "Pfaelzisch", + Scope = "I", + Type = "L" + }, + new + { + Id = "pga", + ReferenceName = "Sudanese Creole Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgd", + ReferenceName = "Gāndhārī", + Scope = "I", + Type = "H" + }, + new + { + Id = "pgg", + ReferenceName = "Pangwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgi", + ReferenceName = "Pagi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgk", + ReferenceName = "Rerep", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgl", + ReferenceName = "Primitive Irish", + Scope = "I", + Type = "A" + }, + new + { + Id = "pgn", + ReferenceName = "Paelignian", + Scope = "I", + Type = "A" + }, + new + { + Id = "pgs", + ReferenceName = "Pangseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgu", + ReferenceName = "Pagu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pgz", + ReferenceName = "Papua New Guinean Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pha", + ReferenceName = "Pa-Hng", + Scope = "I", + Type = "L" + }, + new + { + Id = "phd", + ReferenceName = "Phudagi", + Scope = "I", + Type = "L" + }, + new + { + Id = "phg", + ReferenceName = "Phuong", + Scope = "I", + Type = "L" + }, + new + { + Id = "phh", + ReferenceName = "Phukha", + Scope = "I", + Type = "L" + }, + new + { + Id = "phk", + ReferenceName = "Phake", + Scope = "I", + Type = "L" + }, + new + { + Id = "phl", + ReferenceName = "Phalura", + Scope = "I", + Type = "L" + }, + new + { + Id = "phm", + ReferenceName = "Phimbi", + Scope = "I", + Type = "L" + }, + new + { + Id = "phn", + Part2B = "phn", + Part2T = "phn", + ReferenceName = "Phoenician", + Scope = "I", + Type = "A" + }, + new + { + Id = "pho", + ReferenceName = "Phunoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "phq", + ReferenceName = "Phana'", + Scope = "I", + Type = "L" + }, + new + { + Id = "phr", + ReferenceName = "Pahari-Potwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "pht", + ReferenceName = "Phu Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "phu", + ReferenceName = "Phuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "phv", + ReferenceName = "Pahlavani", + Scope = "I", + Type = "L" + }, + new + { + Id = "phw", + ReferenceName = "Phangduwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "pia", + ReferenceName = "Pima Bajo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pib", + ReferenceName = "Yine", + Scope = "I", + Type = "L" + }, + new + { + Id = "pic", + ReferenceName = "Pinji", + Scope = "I", + Type = "L" + }, + new + { + Id = "pid", + ReferenceName = "Piaroa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pie", + ReferenceName = "Piro", + Scope = "I", + Type = "E" + }, + new + { + Id = "pif", + ReferenceName = "Pingelapese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pig", + ReferenceName = "Pisabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pih", + ReferenceName = "Pitcairn-Norfolk", + Scope = "I", + Type = "L" + }, + new + { + Id = "pii", + ReferenceName = "Pini", + Scope = "I", + Type = "L" + }, + new + { + Id = "pij", + ReferenceName = "Pijao", + Scope = "I", + Type = "E" + }, + new + { + Id = "pil", + ReferenceName = "Yom", + Scope = "I", + Type = "L" + }, + new + { + Id = "pim", + ReferenceName = "Powhatan", + Scope = "I", + Type = "E" + }, + new + { + Id = "pin", + ReferenceName = "Piame", + Scope = "I", + Type = "L" + }, + new + { + Id = "pio", + ReferenceName = "Piapoco", + Scope = "I", + Type = "L" + }, + new + { + Id = "pip", + ReferenceName = "Pero", + Scope = "I", + Type = "L" + }, + new + { + Id = "pir", + ReferenceName = "Piratapuyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pis", + ReferenceName = "Pijin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pit", + ReferenceName = "Pitta Pitta", + Scope = "I", + Type = "E" + }, + new + { + Id = "piu", + ReferenceName = "Pintupi-Luritja", + Scope = "I", + Type = "L" + }, + new + { + Id = "piv", + ReferenceName = "Pileni", + Scope = "I", + Type = "L" + }, + new + { + Id = "piw", + ReferenceName = "Pimbwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pix", + ReferenceName = "Piu", + Scope = "I", + Type = "L" + }, + new + { + Id = "piy", + ReferenceName = "Piya-Kwonci", + Scope = "I", + Type = "L" + }, + new + { + Id = "piz", + ReferenceName = "Pije", + Scope = "I", + Type = "L" + }, + new + { + Id = "pjt", + ReferenceName = "Pitjantjatjara", + Scope = "I", + Type = "L" + }, + new + { + Id = "pka", + ReferenceName = "Ardhamāgadhī Prākrit", + Scope = "I", + Type = "H" + }, + new + { + Id = "pkb", + ReferenceName = "Pokomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkc", + ReferenceName = "Paekche", + Scope = "I", + Type = "A" + }, + new + { + Id = "pkg", + ReferenceName = "Pak-Tong", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkh", + ReferenceName = "Pankhu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkn", + ReferenceName = "Pakanha", + Scope = "I", + Type = "L" + }, + new + { + Id = "pko", + ReferenceName = "Pökoot", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkp", + ReferenceName = "Pukapuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkr", + ReferenceName = "Attapady Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "pks", + ReferenceName = "Pakistan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pkt", + ReferenceName = "Maleng", + Scope = "I", + Type = "L" + }, + new + { + Id = "pku", + ReferenceName = "Paku", + Scope = "I", + Type = "L" + }, + new + { + Id = "pla", + ReferenceName = "Miani", + Scope = "I", + Type = "L" + }, + new + { + Id = "plb", + ReferenceName = "Polonombauk", + Scope = "I", + Type = "L" + }, + new + { + Id = "plc", + ReferenceName = "Central Palawano", + Scope = "I", + Type = "L" + }, + new + { + Id = "pld", + ReferenceName = "Polari", + Scope = "I", + Type = "L" + }, + new + { + Id = "ple", + ReferenceName = "Palu'e", + Scope = "I", + Type = "L" + }, + new + { + Id = "plg", + ReferenceName = "Pilagá", + Scope = "I", + Type = "L" + }, + new + { + Id = "plh", + ReferenceName = "Paulohi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pli", + Part1 = "pi", + Part2B = "pli", + Part2T = "pli", + ReferenceName = "Pali", + Scope = "I", + Type = "A" + }, + new + { + Id = "plj", + ReferenceName = "Polci", + Scope = "I", + Type = "L" + }, + new + { + Id = "plk", + ReferenceName = "Kohistani Shina", + Scope = "I", + Type = "L" + }, + new + { + Id = "pll", + ReferenceName = "Shwe Palaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "pln", + ReferenceName = "Palenquero", + Scope = "I", + Type = "L" + }, + new + { + Id = "plo", + ReferenceName = "Oluta Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "plp", + ReferenceName = "Palpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "plq", + ReferenceName = "Palaic", + Scope = "I", + Type = "A" + }, + new + { + Id = "plr", + ReferenceName = "Palaka Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pls", + ReferenceName = "San Marcos Tlacoyalco Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "plt", + ReferenceName = "Plateau Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "plu", + ReferenceName = "Palikúr", + Scope = "I", + Type = "L" + }, + new + { + Id = "plv", + ReferenceName = "Southwest Palawano", + Scope = "I", + Type = "L" + }, + new + { + Id = "plw", + ReferenceName = "Brooke's Point Palawano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ply", + ReferenceName = "Bolyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "plz", + ReferenceName = "Paluan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pma", + ReferenceName = "Paama", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmb", + ReferenceName = "Pambia", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmd", + ReferenceName = "Pallanganmiddang", + Scope = "I", + Type = "E" + }, + new + { + Id = "pme", + ReferenceName = "Pwaamei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmf", + ReferenceName = "Pamona", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmh", + ReferenceName = "Māhārāṣṭri Prākrit", + Scope = "I", + Type = "H" + }, + new + { + Id = "pmi", + ReferenceName = "Northern Pumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmj", + ReferenceName = "Southern Pumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmk", + ReferenceName = "Pamlico", + Scope = "I", + Type = "E" + }, + new + { + Id = "pml", + ReferenceName = "Lingua Franca", + Scope = "I", + Type = "E" + }, + new + { + Id = "pmm", + ReferenceName = "Pomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmn", + ReferenceName = "Pam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmo", + ReferenceName = "Pom", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmq", + ReferenceName = "Northern Pame", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmr", + ReferenceName = "Paynamar", + Scope = "I", + Type = "L" + }, + new + { + Id = "pms", + ReferenceName = "Piemontese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmt", + ReferenceName = "Tuamotuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmw", + ReferenceName = "Plains Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmx", + ReferenceName = "Poumei Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmy", + ReferenceName = "Papuan Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "pmz", + ReferenceName = "Southern Pame", + Scope = "I", + Type = "E" + }, + new + { + Id = "pna", + ReferenceName = "Punan Bah-Biau", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnb", + ReferenceName = "Western Panjabi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnc", + ReferenceName = "Pannei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnd", + ReferenceName = "Mpinda", + Scope = "I", + Type = "L" + }, + new + { + Id = "pne", + ReferenceName = "Western Penan", + Scope = "I", + Type = "L" + }, + new + { + Id = "png", + ReferenceName = "Pongu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnh", + ReferenceName = "Penrhyn", + Scope = "I", + Type = "L" + }, + new + { + Id = "pni", + ReferenceName = "Aoheng", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnj", + ReferenceName = "Pinjarup", + Scope = "I", + Type = "E" + }, + new + { + Id = "pnk", + ReferenceName = "Paunaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnl", + ReferenceName = "Paleni", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnm", + ReferenceName = "Punan Batu 1", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnn", + ReferenceName = "Pinai-Hagahai", + Scope = "I", + Type = "L" + }, + new + { + Id = "pno", + ReferenceName = "Panobo", + Scope = "I", + Type = "E" + }, + new + { + Id = "pnp", + ReferenceName = "Pancana", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnq", + ReferenceName = "Pana (Burkina Faso)", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnr", + ReferenceName = "Panim", + Scope = "I", + Type = "L" + }, + new + { + Id = "pns", + ReferenceName = "Ponosakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnt", + ReferenceName = "Pontic", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnu", + ReferenceName = "Jiongnai Bunu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnv", + ReferenceName = "Pinigura", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnw", + ReferenceName = "Banyjima", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnx", + ReferenceName = "Phong-Kniang", + Scope = "I", + Type = "L" + }, + new + { + Id = "pny", + ReferenceName = "Pinyin", + Scope = "I", + Type = "L" + }, + new + { + Id = "pnz", + ReferenceName = "Pana (Central African Republic)", + Scope = "I", + Type = "L" + }, + new + { + Id = "poc", + ReferenceName = "Poqomam", + Scope = "I", + Type = "L" + }, + new + { + Id = "poe", + ReferenceName = "San Juan Atzingo Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pof", + ReferenceName = "Poke", + Scope = "I", + Type = "L" + }, + new + { + Id = "pog", + ReferenceName = "Potiguára", + Scope = "I", + Type = "E" + }, + new + { + Id = "poh", + ReferenceName = "Poqomchi'", + Scope = "I", + Type = "L" + }, + new + { + Id = "poi", + ReferenceName = "Highland Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pok", + ReferenceName = "Pokangá", + Scope = "I", + Type = "L" + }, + new + { + Id = "pol", + Part1 = "pl", + Part2B = "pol", + Part2T = "pol", + ReferenceName = "Polish", + Scope = "I", + Type = "L" + }, + new + { + Id = "pom", + ReferenceName = "Southeastern Pomo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pon", + Part2B = "pon", + Part2T = "pon", + ReferenceName = "Pohnpeian", + Scope = "I", + Type = "L" + }, + new + { + Id = "poo", + ReferenceName = "Central Pomo", + Scope = "I", + Type = "E" + }, + new + { + Id = "pop", + ReferenceName = "Pwapwâ", + Scope = "I", + Type = "L" + }, + new + { + Id = "poq", + ReferenceName = "Texistepec Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "por", + Part1 = "pt", + Part2B = "por", + Part2T = "por", + ReferenceName = "Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pos", + ReferenceName = "Sayula Popoluca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pot", + ReferenceName = "Potawatomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "pov", + ReferenceName = "Upper Guinea Crioulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "pow", + ReferenceName = "San Felipe Otlaltepec Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "pox", + ReferenceName = "Polabian", + Scope = "I", + Type = "E" + }, + new + { + Id = "poy", + ReferenceName = "Pogolo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppe", + ReferenceName = "Papi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppi", + ReferenceName = "Paipai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppk", + ReferenceName = "Uma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppl", + ReferenceName = "Pipil", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppm", + ReferenceName = "Papuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppn", + ReferenceName = "Papapana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppo", + ReferenceName = "Folopa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppp", + ReferenceName = "Pelende", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppq", + ReferenceName = "Pei", + Scope = "I", + Type = "L" + }, + new + { + Id = "pps", + ReferenceName = "San Luís Temalacayuca Popoloca", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppt", + ReferenceName = "Pare", + Scope = "I", + Type = "L" + }, + new + { + Id = "ppu", + ReferenceName = "Papora", + Scope = "I", + Type = "E" + }, + new + { + Id = "pqa", + ReferenceName = "Pa'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "pqm", + ReferenceName = "Malecite-Passamaquoddy", + Scope = "I", + Type = "L" + }, + new + { + Id = "prc", + ReferenceName = "Parachi", + Scope = "I", + Type = "L" + }, + new + { + Id = "prd", + ReferenceName = "Parsi-Dari", + Scope = "I", + Type = "L" + }, + new + { + Id = "pre", + ReferenceName = "Principense", + Scope = "I", + Type = "L" + }, + new + { + Id = "prf", + ReferenceName = "Paranan", + Scope = "I", + Type = "L" + }, + new + { + Id = "prg", + ReferenceName = "Prussian", + Scope = "I", + Type = "L" + }, + new + { + Id = "prh", + ReferenceName = "Porohanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "pri", + ReferenceName = "Paicî", + Scope = "I", + Type = "L" + }, + new + { + Id = "prk", + ReferenceName = "Parauk", + Scope = "I", + Type = "L" + }, + new + { + Id = "prl", + ReferenceName = "Peruvian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "prm", + ReferenceName = "Kibiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "prn", + ReferenceName = "Prasuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "pro", + Part2B = "pro", + Part2T = "pro", + ReferenceName = "Old Provençal (to 1500)", + Scope = "I", + Type = "H" + }, + new + { + Id = "prp", + ReferenceName = "Parsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "prq", + ReferenceName = "Ashéninka Perené", + Scope = "I", + Type = "L" + }, + new + { + Id = "prr", + ReferenceName = "Puri", + Scope = "I", + Type = "E" + }, + new + { + Id = "prs", + ReferenceName = "Dari", + Scope = "I", + Type = "L" + }, + new + { + Id = "prt", + ReferenceName = "Phai", + Scope = "I", + Type = "L" + }, + new + { + Id = "pru", + ReferenceName = "Puragi", + Scope = "I", + Type = "L" + }, + new + { + Id = "prw", + ReferenceName = "Parawen", + Scope = "I", + Type = "L" + }, + new + { + Id = "prx", + ReferenceName = "Purik", + Scope = "I", + Type = "L" + }, + new + { + Id = "prz", + ReferenceName = "Providencia Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psa", + ReferenceName = "Asue Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "psc", + ReferenceName = "Persian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psd", + ReferenceName = "Plains Indian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pse", + ReferenceName = "Central Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "psg", + ReferenceName = "Penang Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psh", + ReferenceName = "Southwest Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "psi", + ReferenceName = "Southeast Pashai", + Scope = "I", + Type = "L" + }, + new + { + Id = "psl", + ReferenceName = "Puerto Rican Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psm", + ReferenceName = "Pauserna", + Scope = "I", + Type = "E" + }, + new + { + Id = "psn", + ReferenceName = "Panasuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pso", + ReferenceName = "Polish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psp", + ReferenceName = "Philippine Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "psq", + ReferenceName = "Pasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "psr", + ReferenceName = "Portuguese Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pss", + ReferenceName = "Kaulong", + Scope = "I", + Type = "L" + }, + new + { + Id = "pst", + ReferenceName = "Central Pashto", + Scope = "I", + Type = "L" + }, + new + { + Id = "psu", + ReferenceName = "Sauraseni Prākrit", + Scope = "I", + Type = "H" + }, + new + { + Id = "psw", + ReferenceName = "Port Sandwich", + Scope = "I", + Type = "L" + }, + new + { + Id = "psy", + ReferenceName = "Piscataway", + Scope = "I", + Type = "E" + }, + new + { + Id = "pta", + ReferenceName = "Pai Tavytera", + Scope = "I", + Type = "L" + }, + new + { + Id = "pth", + ReferenceName = "Pataxó Hã-Ha-Hãe", + Scope = "I", + Type = "E" + }, + new + { + Id = "pti", + ReferenceName = "Pindiini", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptn", + ReferenceName = "Patani", + Scope = "I", + Type = "L" + }, + new + { + Id = "pto", + ReferenceName = "Zo'é", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptp", + ReferenceName = "Patep", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptq", + ReferenceName = "Pattapu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptr", + ReferenceName = "Piamatsina", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptt", + ReferenceName = "Enrekang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptu", + ReferenceName = "Bambam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptv", + ReferenceName = "Port Vato", + Scope = "I", + Type = "L" + }, + new + { + Id = "ptw", + ReferenceName = "Pentlatch", + Scope = "I", + Type = "E" + }, + new + { + Id = "pty", + ReferenceName = "Pathiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "pua", + ReferenceName = "Western Highland Purepecha", + Scope = "I", + Type = "L" + }, + new + { + Id = "pub", + ReferenceName = "Purum", + Scope = "I", + Type = "L" + }, + new + { + Id = "puc", + ReferenceName = "Punan Merap", + Scope = "I", + Type = "L" + }, + new + { + Id = "pud", + ReferenceName = "Punan Aput", + Scope = "I", + Type = "L" + }, + new + { + Id = "pue", + ReferenceName = "Puelche", + Scope = "I", + Type = "E" + }, + new + { + Id = "puf", + ReferenceName = "Punan Merah", + Scope = "I", + Type = "L" + }, + new + { + Id = "pug", + ReferenceName = "Phuie", + Scope = "I", + Type = "L" + }, + new + { + Id = "pui", + ReferenceName = "Puinave", + Scope = "I", + Type = "L" + }, + new + { + Id = "puj", + ReferenceName = "Punan Tubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "pum", + ReferenceName = "Puma", + Scope = "I", + Type = "L" + }, + new + { + Id = "puo", + ReferenceName = "Puoc", + Scope = "I", + Type = "L" + }, + new + { + Id = "pup", + ReferenceName = "Pulabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "puq", + ReferenceName = "Puquina", + Scope = "I", + Type = "E" + }, + new + { + Id = "pur", + ReferenceName = "Puruborá", + Scope = "I", + Type = "L" + }, + new + { + Id = "pus", + Part1 = "ps", + Part2B = "pus", + Part2T = "pus", + ReferenceName = "Pushto", + Scope = "M", + Type = "L" + }, + new + { + Id = "put", + ReferenceName = "Putoh", + Scope = "I", + Type = "L" + }, + new + { + Id = "puu", + ReferenceName = "Punu", + Scope = "I", + Type = "L" + }, + new + { + Id = "puw", + ReferenceName = "Puluwatese", + Scope = "I", + Type = "L" + }, + new + { + Id = "pux", + ReferenceName = "Puare", + Scope = "I", + Type = "L" + }, + new + { + Id = "puy", + ReferenceName = "Purisimeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "pwa", + ReferenceName = "Pawaia", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwb", + ReferenceName = "Panawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwg", + ReferenceName = "Gapapaiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwi", + ReferenceName = "Patwin", + Scope = "I", + Type = "E" + }, + new + { + Id = "pwm", + ReferenceName = "Molbog", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwn", + ReferenceName = "Paiwan", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwo", + ReferenceName = "Pwo Western Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pwr", + ReferenceName = "Powari", + Scope = "I", + Type = "L" + }, + new + { + Id = "pww", + ReferenceName = "Pwo Northern Karen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pxm", + ReferenceName = "Quetzaltepec Mixe", + Scope = "I", + Type = "L" + }, + new + { + Id = "pye", + ReferenceName = "Pye Krumen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pym", + ReferenceName = "Fyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "pyn", + ReferenceName = "Poyanáwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "pys", + ReferenceName = "Paraguayan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "pyu", + ReferenceName = "Puyuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "pyx", + ReferenceName = "Pyu (Myanmar)", + Scope = "I", + Type = "A" + }, + new + { + Id = "pyy", + ReferenceName = "Pyen", + Scope = "I", + Type = "L" + }, + new + { + Id = "pzn", + ReferenceName = "Para Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "qua", + ReferenceName = "Quapaw", + Scope = "I", + Type = "L" + }, + new + { + Id = "qub", + ReferenceName = "Huallaga Huánuco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quc", + ReferenceName = "K'iche'", + Scope = "I", + Type = "L" + }, + new + { + Id = "qud", + ReferenceName = "Calderón Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "que", + Part1 = "qu", + Part2B = "que", + Part2T = "que", + ReferenceName = "Quechua", + Scope = "M", + Type = "L" + }, + new + { + Id = "quf", + ReferenceName = "Lambayeque Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qug", + ReferenceName = "Chimborazo Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quh", + ReferenceName = "South Bolivian Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qui", + ReferenceName = "Quileute", + Scope = "I", + Type = "L" + }, + new + { + Id = "quk", + ReferenceName = "Chachapoyas Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qul", + ReferenceName = "North Bolivian Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qum", + ReferenceName = "Sipacapense", + Scope = "I", + Type = "L" + }, + new + { + Id = "qun", + ReferenceName = "Quinault", + Scope = "I", + Type = "E" + }, + new + { + Id = "qup", + ReferenceName = "Southern Pastaza Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quq", + ReferenceName = "Quinqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "qur", + ReferenceName = "Yanahuanca Pasco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qus", + ReferenceName = "Santiago del Estero Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quv", + ReferenceName = "Sacapulteco", + Scope = "I", + Type = "L" + }, + new + { + Id = "quw", + ReferenceName = "Tena Lowland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qux", + ReferenceName = "Yauyos Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quy", + ReferenceName = "Ayacucho Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "quz", + ReferenceName = "Cusco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qva", + ReferenceName = "Ambo-Pasco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvc", + ReferenceName = "Cajamarca Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qve", + ReferenceName = "Eastern Apurímac Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvh", + ReferenceName = "Huamalíes-Dos de Mayo Huánuco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvi", + ReferenceName = "Imbabura Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvj", + ReferenceName = "Loja Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvl", + ReferenceName = "Cajatambo North Lima Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvm", + ReferenceName = "Margos-Yarowilca-Lauricocha Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvn", + ReferenceName = "North Junín Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvo", + ReferenceName = "Napo Lowland Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvp", + ReferenceName = "Pacaraos Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvs", + ReferenceName = "San Martín Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvw", + ReferenceName = "Huaylla Wanca Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvy", + ReferenceName = "Queyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "qvz", + ReferenceName = "Northern Pastaza Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwa", + ReferenceName = "Corongo Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwc", + ReferenceName = "Classical Quechua", + Scope = "I", + Type = "H" + }, + new + { + Id = "qwh", + ReferenceName = "Huaylas Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwm", + ReferenceName = "Kuman (Russia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "qws", + ReferenceName = "Sihuas Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qwt", + ReferenceName = "Kwalhioqua-Tlatskanai", + Scope = "I", + Type = "E" + }, + new + { + Id = "qxa", + ReferenceName = "Chiquián Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxc", + ReferenceName = "Chincha Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxh", + ReferenceName = "Panao Huánuco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxl", + ReferenceName = "Salasaca Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxn", + ReferenceName = "Northern Conchucos Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxo", + ReferenceName = "Southern Conchucos Ancash Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxp", + ReferenceName = "Puno Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxq", + ReferenceName = "Qashqa'i", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxr", + ReferenceName = "Cañar Highland Quichua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxs", + ReferenceName = "Southern Qiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxt", + ReferenceName = "Santa Ana de Tusi Pasco Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxu", + ReferenceName = "Arequipa-La Unión Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qxw", + ReferenceName = "Jauja Wanca Quechua", + Scope = "I", + Type = "L" + }, + new + { + Id = "qya", + ReferenceName = "Quenya", + Scope = "I", + Type = "C" + }, + new + { + Id = "qyp", + ReferenceName = "Quiripi", + Scope = "I", + Type = "E" + }, + new + { + Id = "raa", + ReferenceName = "Dungmali", + Scope = "I", + Type = "L" + }, + new + { + Id = "rab", + ReferenceName = "Camling", + Scope = "I", + Type = "L" + }, + new + { + Id = "rac", + ReferenceName = "Rasawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rad", + ReferenceName = "Rade", + Scope = "I", + Type = "L" + }, + new + { + Id = "raf", + ReferenceName = "Western Meohang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rag", + ReferenceName = "Logooli", + Scope = "I", + Type = "L" + }, + new + { + Id = "rah", + ReferenceName = "Rabha", + Scope = "I", + Type = "L" + }, + new + { + Id = "rai", + ReferenceName = "Ramoaaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "raj", + Part2B = "raj", + Part2T = "raj", + ReferenceName = "Rajasthani", + Scope = "M", + Type = "L" + }, + new + { + Id = "rak", + ReferenceName = "Tulu-Bohuai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ral", + ReferenceName = "Ralte", + Scope = "I", + Type = "L" + }, + new + { + Id = "ram", + ReferenceName = "Canela", + Scope = "I", + Type = "L" + }, + new + { + Id = "ran", + ReferenceName = "Riantana", + Scope = "I", + Type = "L" + }, + new + { + Id = "rao", + ReferenceName = "Rao", + Scope = "I", + Type = "L" + }, + new + { + Id = "rap", + Part2B = "rap", + Part2T = "rap", + ReferenceName = "Rapanui", + Scope = "I", + Type = "L" + }, + new + { + Id = "raq", + ReferenceName = "Saam", + Scope = "I", + Type = "L" + }, + new + { + Id = "rar", + Part2B = "rar", + Part2T = "rar", + ReferenceName = "Rarotongan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ras", + ReferenceName = "Tegali", + Scope = "I", + Type = "L" + }, + new + { + Id = "rat", + ReferenceName = "Razajerdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rau", + ReferenceName = "Raute", + Scope = "I", + Type = "L" + }, + new + { + Id = "rav", + ReferenceName = "Sampang", + Scope = "I", + Type = "L" + }, + new + { + Id = "raw", + ReferenceName = "Rawang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rax", + ReferenceName = "Rang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ray", + ReferenceName = "Rapa", + Scope = "I", + Type = "L" + }, + new + { + Id = "raz", + ReferenceName = "Rahambuu", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbb", + ReferenceName = "Rumai Palaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbk", + ReferenceName = "Northern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbl", + ReferenceName = "Miraya Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "rbp", + ReferenceName = "Barababaraba", + Scope = "I", + Type = "E" + }, + new + { + Id = "rcf", + ReferenceName = "Réunion Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "rdb", + ReferenceName = "Rudbari", + Scope = "I", + Type = "L" + }, + new + { + Id = "rea", + ReferenceName = "Rerau", + Scope = "I", + Type = "L" + }, + new + { + Id = "reb", + ReferenceName = "Rembong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ree", + ReferenceName = "Rejang Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "reg", + ReferenceName = "Kara (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rei", + ReferenceName = "Reli", + Scope = "I", + Type = "L" + }, + new + { + Id = "rej", + ReferenceName = "Rejang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rel", + ReferenceName = "Rendille", + Scope = "I", + Type = "L" + }, + new + { + Id = "rem", + ReferenceName = "Remo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ren", + ReferenceName = "Rengao", + Scope = "I", + Type = "L" + }, + new + { + Id = "rer", + ReferenceName = "Rer Bare", + Scope = "I", + Type = "E" + }, + new + { + Id = "res", + ReferenceName = "Reshe", + Scope = "I", + Type = "L" + }, + new + { + Id = "ret", + ReferenceName = "Retta", + Scope = "I", + Type = "L" + }, + new + { + Id = "rey", + ReferenceName = "Reyesano", + Scope = "I", + Type = "L" + }, + new + { + Id = "rga", + ReferenceName = "Roria", + Scope = "I", + Type = "L" + }, + new + { + Id = "rge", + ReferenceName = "Romano-Greek", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgk", + ReferenceName = "Rangkas", + Scope = "I", + Type = "E" + }, + new + { + Id = "rgn", + ReferenceName = "Romagnol", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgr", + ReferenceName = "Resígaro", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgs", + ReferenceName = "Southern Roglai", + Scope = "I", + Type = "L" + }, + new + { + Id = "rgu", + ReferenceName = "Ringgou", + Scope = "I", + Type = "L" + }, + new + { + Id = "rhg", + ReferenceName = "Rohingya", + Scope = "I", + Type = "L" + }, + new + { + Id = "rhp", + ReferenceName = "Yahang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ria", + ReferenceName = "Riang (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rif", + ReferenceName = "Tarifit", + Scope = "I", + Type = "L" + }, + new + { + Id = "ril", + ReferenceName = "Riang Lang", + Scope = "I", + Type = "L" + }, + new + { + Id = "rim", + ReferenceName = "Nyaturu", + Scope = "I", + Type = "L" + }, + new + { + Id = "rin", + ReferenceName = "Nungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "rir", + ReferenceName = "Ribun", + Scope = "I", + Type = "L" + }, + new + { + Id = "rit", + ReferenceName = "Ritharrngu", + Scope = "I", + Type = "L" + }, + new + { + Id = "riu", + ReferenceName = "Riung", + Scope = "I", + Type = "L" + }, + new + { + Id = "rjg", + ReferenceName = "Rajong", + Scope = "I", + Type = "L" + }, + new + { + Id = "rji", + ReferenceName = "Raji", + Scope = "I", + Type = "L" + }, + new + { + Id = "rjs", + ReferenceName = "Rajbanshi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rka", + ReferenceName = "Kraol", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkb", + ReferenceName = "Rikbaktsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkh", + ReferenceName = "Rakahanga-Manihiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "rki", + ReferenceName = "Rakhine", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkm", + ReferenceName = "Marka", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkt", + ReferenceName = "Rangpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "rkw", + ReferenceName = "Arakwal", + Scope = "I", + Type = "E" + }, + new + { + Id = "rma", + ReferenceName = "Rama", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmb", + ReferenceName = "Rembarrnga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmc", + ReferenceName = "Carpathian Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmd", + ReferenceName = "Traveller Danish", + Scope = "I", + Type = "E" + }, + new + { + Id = "rme", + ReferenceName = "Angloromani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmf", + ReferenceName = "Kalo Finnish Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmg", + ReferenceName = "Traveller Norwegian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmh", + ReferenceName = "Murkim", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmi", + ReferenceName = "Lomavren", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmk", + ReferenceName = "Romkun", + Scope = "I", + Type = "L" + }, + new + { + Id = "rml", + ReferenceName = "Baltic Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmm", + ReferenceName = "Roma", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmn", + ReferenceName = "Balkan Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmo", + ReferenceName = "Sinte Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmp", + ReferenceName = "Rempi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmq", + ReferenceName = "Caló", + Scope = "I", + Type = "L" + }, + new + { + Id = "rms", + ReferenceName = "Romanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmt", + ReferenceName = "Domari", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmu", + ReferenceName = "Tavringer Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmv", + ReferenceName = "Romanova", + Scope = "I", + Type = "C" + }, + new + { + Id = "rmw", + ReferenceName = "Welsh Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmx", + ReferenceName = "Romam", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmy", + ReferenceName = "Vlax Romani", + Scope = "I", + Type = "L" + }, + new + { + Id = "rmz", + ReferenceName = "Marma", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnd", + ReferenceName = "Ruund", + Scope = "I", + Type = "L" + }, + new + { + Id = "rng", + ReferenceName = "Ronga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnl", + ReferenceName = "Ranglong", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnn", + ReferenceName = "Roon", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnp", + ReferenceName = "Rongpo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rnr", + ReferenceName = "Nari Nari", + Scope = "I", + Type = "E" + }, + new + { + Id = "rnw", + ReferenceName = "Rungwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rob", + ReferenceName = "Tae'", + Scope = "I", + Type = "L" + }, + new + { + Id = "roc", + ReferenceName = "Cacgia Roglai", + Scope = "I", + Type = "L" + }, + new + { + Id = "rod", + ReferenceName = "Rogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "roe", + ReferenceName = "Ronji", + Scope = "I", + Type = "L" + }, + new + { + Id = "rof", + ReferenceName = "Rombo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rog", + ReferenceName = "Northern Roglai", + Scope = "I", + Type = "L" + }, + new + { + Id = "roh", + Part1 = "rm", + Part2B = "roh", + Part2T = "roh", + ReferenceName = "Romansh", + Scope = "I", + Type = "L" + }, + new + { + Id = "rol", + ReferenceName = "Romblomanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "rom", + Part2B = "rom", + Part2T = "rom", + ReferenceName = "Romany", + Scope = "M", + Type = "L" + }, + new + { + Id = "ron", + Part1 = "ro", + Part2B = "rum", + Part2T = "ron", + ReferenceName = "Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "roo", + ReferenceName = "Rotokas", + Scope = "I", + Type = "L" + }, + new + { + Id = "rop", + ReferenceName = "Kriol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ror", + ReferenceName = "Rongga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rou", + ReferenceName = "Runga", + Scope = "I", + Type = "L" + }, + new + { + Id = "row", + ReferenceName = "Dela-Oenale", + Scope = "I", + Type = "L" + }, + new + { + Id = "rpn", + ReferenceName = "Repanbitip", + Scope = "I", + Type = "L" + }, + new + { + Id = "rpt", + ReferenceName = "Rapting", + Scope = "I", + Type = "L" + }, + new + { + Id = "rri", + ReferenceName = "Ririo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rro", + ReferenceName = "Waima", + Scope = "I", + Type = "L" + }, + new + { + Id = "rrt", + ReferenceName = "Arritinngithigh", + Scope = "I", + Type = "E" + }, + new + { + Id = "rsb", + ReferenceName = "Romano-Serbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rsl", + ReferenceName = "Russian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "rsm", + ReferenceName = "Miriwoong Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "rtc", + ReferenceName = "Rungtu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "rth", + ReferenceName = "Ratahan", + Scope = "I", + Type = "L" + }, + new + { + Id = "rtm", + ReferenceName = "Rotuman", + Scope = "I", + Type = "L" + }, + new + { + Id = "rts", + ReferenceName = "Yurats", + Scope = "I", + Type = "E" + }, + new + { + Id = "rtw", + ReferenceName = "Rathawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rub", + ReferenceName = "Gungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruc", + ReferenceName = "Ruuli", + Scope = "I", + Type = "L" + }, + new + { + Id = "rue", + ReferenceName = "Rusyn", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruf", + ReferenceName = "Luguru", + Scope = "I", + Type = "L" + }, + new + { + Id = "rug", + ReferenceName = "Roviana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruh", + ReferenceName = "Ruga", + Scope = "I", + Type = "L" + }, + new + { + Id = "rui", + ReferenceName = "Rufiji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruk", + ReferenceName = "Che", + Scope = "I", + Type = "L" + }, + new + { + Id = "run", + Part1 = "rn", + Part2B = "run", + Part2T = "run", + ReferenceName = "Rundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruo", + ReferenceName = "Istro Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rup", + Part2B = "rup", + Part2T = "rup", + ReferenceName = "Macedo-Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruq", + ReferenceName = "Megleno Romanian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rus", + Part1 = "ru", + Part2B = "rus", + Part2T = "rus", + ReferenceName = "Russian", + Scope = "I", + Type = "L" + }, + new + { + Id = "rut", + ReferenceName = "Rutul", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruu", + ReferenceName = "Lanas Lobu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruy", + ReferenceName = "Mala (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ruz", + ReferenceName = "Ruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwa", + ReferenceName = "Rawo", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwk", + ReferenceName = "Rwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwm", + ReferenceName = "Amba (Uganda)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwo", + ReferenceName = "Rawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "rwr", + ReferenceName = "Marwari (India)", + Scope = "I", + Type = "L" + }, + new + { + Id = "rxd", + ReferenceName = "Ngardi", + Scope = "I", + Type = "L" + }, + new + { + Id = "rxw", + ReferenceName = "Karuwali", + Scope = "I", + Type = "E" + }, + new + { + Id = "ryn", + ReferenceName = "Northern Amami-Oshima", + Scope = "I", + Type = "L" + }, + new + { + Id = "rys", + ReferenceName = "Yaeyama", + Scope = "I", + Type = "L" + }, + new + { + Id = "ryu", + ReferenceName = "Central Okinawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "rzh", + ReferenceName = "Rāziḥī", + Scope = "I", + Type = "L" + }, + new + { + Id = "saa", + ReferenceName = "Saba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sab", + ReferenceName = "Buglere", + Scope = "I", + Type = "L" + }, + new + { + Id = "sac", + ReferenceName = "Meskwaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "sad", + Part2B = "sad", + Part2T = "sad", + ReferenceName = "Sandawe", + Scope = "I", + Type = "L" + }, + new + { + Id = "sae", + ReferenceName = "Sabanê", + Scope = "I", + Type = "L" + }, + new + { + Id = "saf", + ReferenceName = "Safaliba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sag", + Part1 = "sg", + Part2B = "sag", + Part2T = "sag", + ReferenceName = "Sango", + Scope = "I", + Type = "L" + }, + new + { + Id = "sah", + Part2B = "sah", + Part2T = "sah", + ReferenceName = "Yakut", + Scope = "I", + Type = "L" + }, + new + { + Id = "saj", + ReferenceName = "Sahu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sak", + ReferenceName = "Sake", + Scope = "I", + Type = "L" + }, + new + { + Id = "sam", + Part2B = "sam", + Part2T = "sam", + ReferenceName = "Samaritan Aramaic", + Scope = "I", + Type = "E" + }, + new + { + Id = "san", + Part1 = "sa", + Part2B = "san", + Part2T = "san", + ReferenceName = "Sanskrit", + Scope = "I", + Type = "A" + }, + new + { + Id = "sao", + ReferenceName = "Sause", + Scope = "I", + Type = "L" + }, + new + { + Id = "saq", + ReferenceName = "Samburu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sar", + ReferenceName = "Saraveca", + Scope = "I", + Type = "E" + }, + new + { + Id = "sas", + Part2B = "sas", + Part2T = "sas", + ReferenceName = "Sasak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sat", + Part2B = "sat", + Part2T = "sat", + ReferenceName = "Santali", + Scope = "I", + Type = "L" + }, + new + { + Id = "sau", + ReferenceName = "Saleman", + Scope = "I", + Type = "L" + }, + new + { + Id = "sav", + ReferenceName = "Saafi-Saafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "saw", + ReferenceName = "Sawi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sax", + ReferenceName = "Sa", + Scope = "I", + Type = "L" + }, + new + { + Id = "say", + ReferenceName = "Saya", + Scope = "I", + Type = "L" + }, + new + { + Id = "saz", + ReferenceName = "Saurashtra", + Scope = "I", + Type = "L" + }, + new + { + Id = "sba", + ReferenceName = "Ngambay", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbb", + ReferenceName = "Simbo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbc", + ReferenceName = "Kele (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbd", + ReferenceName = "Southern Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbe", + ReferenceName = "Saliba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbf", + ReferenceName = "Chabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbg", + ReferenceName = "Seget", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbh", + ReferenceName = "Sori-Harengan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbi", + ReferenceName = "Seti", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbj", + ReferenceName = "Surbakhal", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbk", + ReferenceName = "Safwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbl", + ReferenceName = "Botolan Sambal", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbm", + ReferenceName = "Sagala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbn", + ReferenceName = "Sindhi Bhil", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbo", + ReferenceName = "Sabüm", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbp", + ReferenceName = "Sangu (Tanzania)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbq", + ReferenceName = "Sileibi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbr", + ReferenceName = "Sembakung Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbs", + ReferenceName = "Subiya", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbt", + ReferenceName = "Kimki", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbu", + ReferenceName = "Stod Bhoti", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbv", + ReferenceName = "Sabine", + Scope = "I", + Type = "A" + }, + new + { + Id = "sbw", + ReferenceName = "Simba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbx", + ReferenceName = "Seberuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "sby", + ReferenceName = "Soli", + Scope = "I", + Type = "L" + }, + new + { + Id = "sbz", + ReferenceName = "Sara Kaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "scb", + ReferenceName = "Chut", + Scope = "I", + Type = "L" + }, + new + { + Id = "sce", + ReferenceName = "Dongxiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "scf", + ReferenceName = "San Miguel Creole French", + Scope = "I", + Type = "L" + }, + new + { + Id = "scg", + ReferenceName = "Sanggau", + Scope = "I", + Type = "L" + }, + new + { + Id = "sch", + ReferenceName = "Sakachep", + Scope = "I", + Type = "L" + }, + new + { + Id = "sci", + ReferenceName = "Sri Lankan Creole Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "sck", + ReferenceName = "Sadri", + Scope = "I", + Type = "L" + }, + new + { + Id = "scl", + ReferenceName = "Shina", + Scope = "I", + Type = "L" + }, + new + { + Id = "scn", + Part2B = "scn", + Part2T = "scn", + ReferenceName = "Sicilian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sco", + Part2B = "sco", + Part2T = "sco", + ReferenceName = "Scots", + Scope = "I", + Type = "L" + }, + new + { + Id = "scp", + ReferenceName = "Hyolmo", + Scope = "I", + Type = "L" + }, + new + { + Id = "scq", + ReferenceName = "Sa'och", + Scope = "I", + Type = "L" + }, + new + { + Id = "scs", + ReferenceName = "North Slavey", + Scope = "I", + Type = "L" + }, + new + { + Id = "sct", + ReferenceName = "Southern Katang", + Scope = "I", + Type = "L" + }, + new + { + Id = "scu", + ReferenceName = "Shumcho", + Scope = "I", + Type = "L" + }, + new + { + Id = "scv", + ReferenceName = "Sheni", + Scope = "I", + Type = "L" + }, + new + { + Id = "scw", + ReferenceName = "Sha", + Scope = "I", + Type = "L" + }, + new + { + Id = "scx", + ReferenceName = "Sicel", + Scope = "I", + Type = "A" + }, + new + { + Id = "sda", + ReferenceName = "Toraja-Sa'dan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdb", + ReferenceName = "Shabak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdc", + ReferenceName = "Sassarese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sde", + ReferenceName = "Surubu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdf", + ReferenceName = "Sarli", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdg", + ReferenceName = "Savi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdh", + ReferenceName = "Southern Kurdish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdj", + ReferenceName = "Suundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdk", + ReferenceName = "Sos Kundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdl", + ReferenceName = "Saudi Arabian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdm", + ReferenceName = "Semandang", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdn", + ReferenceName = "Gallurese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdo", + ReferenceName = "Bukar-Sadung Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdp", + ReferenceName = "Sherdukpen", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdr", + ReferenceName = "Oraon Sadri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sds", + ReferenceName = "Sened", + Scope = "I", + Type = "E" + }, + new + { + Id = "sdt", + ReferenceName = "Shuadit", + Scope = "I", + Type = "E" + }, + new + { + Id = "sdu", + ReferenceName = "Sarudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdx", + ReferenceName = "Sibu Melanau", + Scope = "I", + Type = "L" + }, + new + { + Id = "sdz", + ReferenceName = "Sallands", + Scope = "I", + Type = "L" + }, + new + { + Id = "sea", + ReferenceName = "Semai", + Scope = "I", + Type = "L" + }, + new + { + Id = "seb", + ReferenceName = "Shempire Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sec", + ReferenceName = "Sechelt", + Scope = "I", + Type = "L" + }, + new + { + Id = "sed", + ReferenceName = "Sedang", + Scope = "I", + Type = "L" + }, + new + { + Id = "see", + ReferenceName = "Seneca", + Scope = "I", + Type = "L" + }, + new + { + Id = "sef", + ReferenceName = "Cebaara Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "seg", + ReferenceName = "Segeju", + Scope = "I", + Type = "L" + }, + new + { + Id = "seh", + ReferenceName = "Sena", + Scope = "I", + Type = "L" + }, + new + { + Id = "sei", + ReferenceName = "Seri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sej", + ReferenceName = "Sene", + Scope = "I", + Type = "L" + }, + new + { + Id = "sek", + ReferenceName = "Sekani", + Scope = "I", + Type = "L" + }, + new + { + Id = "sel", + Part2B = "sel", + Part2T = "sel", + ReferenceName = "Selkup", + Scope = "I", + Type = "L" + }, + new + { + Id = "sen", + ReferenceName = "Nanerigé Sénoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "seo", + ReferenceName = "Suarmin", + Scope = "I", + Type = "L" + }, + new + { + Id = "sep", + ReferenceName = "Sìcìté Sénoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "seq", + ReferenceName = "Senara Sénoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ser", + ReferenceName = "Serrano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ses", + ReferenceName = "Koyraboro Senni Songhai", + Scope = "I", + Type = "L" + }, + new + { + Id = "set", + ReferenceName = "Sentani", + Scope = "I", + Type = "L" + }, + new + { + Id = "seu", + ReferenceName = "Serui-Laut", + Scope = "I", + Type = "L" + }, + new + { + Id = "sev", + ReferenceName = "Nyarafolo Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sew", + ReferenceName = "Sewa Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "sey", + ReferenceName = "Secoya", + Scope = "I", + Type = "L" + }, + new + { + Id = "sez", + ReferenceName = "Senthang Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfb", + ReferenceName = "Langue des signes de Belgique Francophone", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfe", + ReferenceName = "Eastern Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfm", + ReferenceName = "Small Flowery Miao", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfs", + ReferenceName = "South African Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sfw", + ReferenceName = "Sehwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sga", + Part2B = "sga", + Part2T = "sga", + ReferenceName = "Old Irish (to 900)", + Scope = "I", + Type = "H" + }, + new + { + Id = "sgb", + ReferenceName = "Mag-antsi Ayta", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgc", + ReferenceName = "Kipsigis", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgd", + ReferenceName = "Surigaonon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sge", + ReferenceName = "Segai", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgg", + ReferenceName = "Swiss-German Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgh", + ReferenceName = "Shughni", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgi", + ReferenceName = "Suga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgj", + ReferenceName = "Surgujia", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgk", + ReferenceName = "Sangkong", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgm", + ReferenceName = "Singa", + Scope = "I", + Type = "E" + }, + new + { + Id = "sgp", + ReferenceName = "Singpho", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgr", + ReferenceName = "Sangisari", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgs", + ReferenceName = "Samogitian", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgt", + ReferenceName = "Brokpake", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgu", + ReferenceName = "Salas", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgw", + ReferenceName = "Sebat Bet Gurage", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgx", + ReferenceName = "Sierra Leone Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgy", + ReferenceName = "Sanglechi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sgz", + ReferenceName = "Sursurunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sha", + ReferenceName = "Shall-Zwall", + Scope = "I", + Type = "L" + }, + new + { + Id = "shb", + ReferenceName = "Ninam", + Scope = "I", + Type = "L" + }, + new + { + Id = "shc", + ReferenceName = "Sonde", + Scope = "I", + Type = "L" + }, + new + { + Id = "shd", + ReferenceName = "Kundal Shahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "she", + ReferenceName = "Sheko", + Scope = "I", + Type = "L" + }, + new + { + Id = "shg", + ReferenceName = "Shua", + Scope = "I", + Type = "L" + }, + new + { + Id = "shh", + ReferenceName = "Shoshoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "shi", + ReferenceName = "Tachelhit", + Scope = "I", + Type = "L" + }, + new + { + Id = "shj", + ReferenceName = "Shatt", + Scope = "I", + Type = "L" + }, + new + { + Id = "shk", + ReferenceName = "Shilluk", + Scope = "I", + Type = "L" + }, + new + { + Id = "shl", + ReferenceName = "Shendu", + Scope = "I", + Type = "L" + }, + new + { + Id = "shm", + ReferenceName = "Shahrudi", + Scope = "I", + Type = "L" + }, + new + { + Id = "shn", + Part2B = "shn", + Part2T = "shn", + ReferenceName = "Shan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sho", + ReferenceName = "Shanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "shp", + ReferenceName = "Shipibo-Conibo", + Scope = "I", + Type = "L" + }, + new + { + Id = "shq", + ReferenceName = "Sala", + Scope = "I", + Type = "L" + }, + new + { + Id = "shr", + ReferenceName = "Shi", + Scope = "I", + Type = "L" + }, + new + { + Id = "shs", + ReferenceName = "Shuswap", + Scope = "I", + Type = "L" + }, + new + { + Id = "sht", + ReferenceName = "Shasta", + Scope = "I", + Type = "E" + }, + new + { + Id = "shu", + ReferenceName = "Chadian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "shv", + ReferenceName = "Shehri", + Scope = "I", + Type = "L" + }, + new + { + Id = "shw", + ReferenceName = "Shwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "shx", + ReferenceName = "She", + Scope = "I", + Type = "L" + }, + new + { + Id = "shy", + ReferenceName = "Tachawit", + Scope = "I", + Type = "L" + }, + new + { + Id = "shz", + ReferenceName = "Syenara Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sia", + ReferenceName = "Akkala Sami", + Scope = "I", + Type = "E" + }, + new + { + Id = "sib", + ReferenceName = "Sebop", + Scope = "I", + Type = "L" + }, + new + { + Id = "sid", + Part2B = "sid", + Part2T = "sid", + ReferenceName = "Sidamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sie", + ReferenceName = "Simaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sif", + ReferenceName = "Siamou", + Scope = "I", + Type = "L" + }, + new + { + Id = "sig", + ReferenceName = "Paasaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "sih", + ReferenceName = "Zire", + Scope = "I", + Type = "L" + }, + new + { + Id = "sii", + ReferenceName = "Shom Peng", + Scope = "I", + Type = "L" + }, + new + { + Id = "sij", + ReferenceName = "Numbami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sik", + ReferenceName = "Sikiana", + Scope = "I", + Type = "L" + }, + new + { + Id = "sil", + ReferenceName = "Tumulung Sisaala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sim", + ReferenceName = "Mende (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sin", + Part1 = "si", + Part2B = "sin", + Part2T = "sin", + ReferenceName = "Sinhala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sip", + ReferenceName = "Sikkimese", + Scope = "I", + Type = "L" + }, + new + { + Id = "siq", + ReferenceName = "Sonia", + Scope = "I", + Type = "L" + }, + new + { + Id = "sir", + ReferenceName = "Siri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sis", + ReferenceName = "Siuslaw", + Scope = "I", + Type = "E" + }, + new + { + Id = "siu", + ReferenceName = "Sinagen", + Scope = "I", + Type = "L" + }, + new + { + Id = "siv", + ReferenceName = "Sumariup", + Scope = "I", + Type = "L" + }, + new + { + Id = "siw", + ReferenceName = "Siwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "six", + ReferenceName = "Sumau", + Scope = "I", + Type = "L" + }, + new + { + Id = "siy", + ReferenceName = "Sivandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "siz", + ReferenceName = "Siwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sja", + ReferenceName = "Epena", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjb", + ReferenceName = "Sajau Basap", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjd", + ReferenceName = "Kildin Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sje", + ReferenceName = "Pite Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjg", + ReferenceName = "Assangori", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjk", + ReferenceName = "Kemi Sami", + Scope = "I", + Type = "E" + }, + new + { + Id = "sjl", + ReferenceName = "Sajalong", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjm", + ReferenceName = "Mapun", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjn", + ReferenceName = "Sindarin", + Scope = "I", + Type = "C" + }, + new + { + Id = "sjo", + ReferenceName = "Xibe", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjp", + ReferenceName = "Surjapuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjr", + ReferenceName = "Siar-Lak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjs", + ReferenceName = "Senhaja De Srair", + Scope = "I", + Type = "E" + }, + new + { + Id = "sjt", + ReferenceName = "Ter Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sju", + ReferenceName = "Ume Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "sjw", + ReferenceName = "Shawnee", + Scope = "I", + Type = "L" + }, + new + { + Id = "ska", + ReferenceName = "Skagit", + Scope = "I", + Type = "L" + }, + new + { + Id = "skb", + ReferenceName = "Saek", + Scope = "I", + Type = "L" + }, + new + { + Id = "skc", + ReferenceName = "Ma Manda", + Scope = "I", + Type = "L" + }, + new + { + Id = "skd", + ReferenceName = "Southern Sierra Miwok", + Scope = "I", + Type = "L" + }, + new + { + Id = "ske", + ReferenceName = "Seke (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "skf", + ReferenceName = "Sakirabiá", + Scope = "I", + Type = "L" + }, + new + { + Id = "skg", + ReferenceName = "Sakalava Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "skh", + ReferenceName = "Sikule", + Scope = "I", + Type = "L" + }, + new + { + Id = "ski", + ReferenceName = "Sika", + Scope = "I", + Type = "L" + }, + new + { + Id = "skj", + ReferenceName = "Seke (Nepal)", + Scope = "I", + Type = "L" + }, + new + { + Id = "skm", + ReferenceName = "Kutong", + Scope = "I", + Type = "L" + }, + new + { + Id = "skn", + ReferenceName = "Kolibugan Subanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sko", + ReferenceName = "Seko Tengah", + Scope = "I", + Type = "L" + }, + new + { + Id = "skp", + ReferenceName = "Sekapan", + Scope = "I", + Type = "L" + }, + new + { + Id = "skq", + ReferenceName = "Sininkere", + Scope = "I", + Type = "L" + }, + new + { + Id = "skr", + ReferenceName = "Saraiki", + Scope = "I", + Type = "L" + }, + new + { + Id = "sks", + ReferenceName = "Maia", + Scope = "I", + Type = "L" + }, + new + { + Id = "skt", + ReferenceName = "Sakata", + Scope = "I", + Type = "L" + }, + new + { + Id = "sku", + ReferenceName = "Sakao", + Scope = "I", + Type = "L" + }, + new + { + Id = "skv", + ReferenceName = "Skou", + Scope = "I", + Type = "L" + }, + new + { + Id = "skw", + ReferenceName = "Skepi Creole Dutch", + Scope = "I", + Type = "E" + }, + new + { + Id = "skx", + ReferenceName = "Seko Padang", + Scope = "I", + Type = "L" + }, + new + { + Id = "sky", + ReferenceName = "Sikaiana", + Scope = "I", + Type = "L" + }, + new + { + Id = "skz", + ReferenceName = "Sekar", + Scope = "I", + Type = "L" + }, + new + { + Id = "slc", + ReferenceName = "Sáliba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sld", + ReferenceName = "Sissala", + Scope = "I", + Type = "L" + }, + new + { + Id = "sle", + ReferenceName = "Sholaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "slf", + ReferenceName = "Swiss-Italian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "slg", + ReferenceName = "Selungai Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "slh", + ReferenceName = "Southern Puget Sound Salish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sli", + ReferenceName = "Lower Silesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "slj", + ReferenceName = "Salumá", + Scope = "I", + Type = "L" + }, + new + { + Id = "slk", + Part1 = "sk", + Part2B = "slo", + Part2T = "slk", + ReferenceName = "Slovak", + Scope = "I", + Type = "L" + }, + new + { + Id = "sll", + ReferenceName = "Salt-Yui", + Scope = "I", + Type = "L" + }, + new + { + Id = "slm", + ReferenceName = "Pangutaran Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "sln", + ReferenceName = "Salinan", + Scope = "I", + Type = "E" + }, + new + { + Id = "slp", + ReferenceName = "Lamaholot", + Scope = "I", + Type = "L" + }, + new + { + Id = "slq", + ReferenceName = "Salchuq", + Scope = "I", + Type = "E" + }, + new + { + Id = "slr", + ReferenceName = "Salar", + Scope = "I", + Type = "L" + }, + new + { + Id = "sls", + ReferenceName = "Singapore Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "slt", + ReferenceName = "Sila", + Scope = "I", + Type = "L" + }, + new + { + Id = "slu", + ReferenceName = "Selaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "slv", + Part1 = "sl", + Part2B = "slv", + Part2T = "slv", + ReferenceName = "Slovenian", + Scope = "I", + Type = "L" + }, + new + { + Id = "slw", + ReferenceName = "Sialum", + Scope = "I", + Type = "L" + }, + new + { + Id = "slx", + ReferenceName = "Salampasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sly", + ReferenceName = "Selayar", + Scope = "I", + Type = "L" + }, + new + { + Id = "slz", + ReferenceName = "Ma'ya", + Scope = "I", + Type = "L" + }, + new + { + Id = "sma", + Part2B = "sma", + Part2T = "sma", + ReferenceName = "Southern Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smb", + ReferenceName = "Simbari", + Scope = "I", + Type = "L" + }, + new + { + Id = "smc", + ReferenceName = "Som", + Scope = "I", + Type = "E" + }, + new + { + Id = "smd", + ReferenceName = "Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "sme", + Part1 = "se", + Part2B = "sme", + Part2T = "sme", + ReferenceName = "Northern Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smf", + ReferenceName = "Auwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "smg", + ReferenceName = "Simbali", + Scope = "I", + Type = "L" + }, + new + { + Id = "smh", + ReferenceName = "Samei", + Scope = "I", + Type = "L" + }, + new + { + Id = "smj", + Part2B = "smj", + Part2T = "smj", + ReferenceName = "Lule Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smk", + ReferenceName = "Bolinao", + Scope = "I", + Type = "L" + }, + new + { + Id = "sml", + ReferenceName = "Central Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "smm", + ReferenceName = "Musasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "smn", + Part2B = "smn", + Part2T = "smn", + ReferenceName = "Inari Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smo", + Part1 = "sm", + Part2B = "smo", + Part2T = "smo", + ReferenceName = "Samoan", + Scope = "I", + Type = "L" + }, + new + { + Id = "smp", + ReferenceName = "Samaritan", + Scope = "I", + Type = "E" + }, + new + { + Id = "smq", + ReferenceName = "Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "smr", + ReferenceName = "Simeulue", + Scope = "I", + Type = "L" + }, + new + { + Id = "sms", + Part2B = "sms", + Part2T = "sms", + ReferenceName = "Skolt Sami", + Scope = "I", + Type = "L" + }, + new + { + Id = "smt", + ReferenceName = "Simte", + Scope = "I", + Type = "L" + }, + new + { + Id = "smu", + ReferenceName = "Somray", + Scope = "I", + Type = "E" + }, + new + { + Id = "smv", + ReferenceName = "Samvedi", + Scope = "I", + Type = "L" + }, + new + { + Id = "smw", + ReferenceName = "Sumbawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "smx", + ReferenceName = "Samba", + Scope = "I", + Type = "L" + }, + new + { + Id = "smy", + ReferenceName = "Semnani", + Scope = "I", + Type = "L" + }, + new + { + Id = "smz", + ReferenceName = "Simeku", + Scope = "I", + Type = "L" + }, + new + { + Id = "sna", + Part1 = "sn", + Part2B = "sna", + Part2T = "sna", + ReferenceName = "Shona", + Scope = "I", + Type = "L" + }, + new + { + Id = "snb", + ReferenceName = "Sebuyau", + Scope = "I", + Type = "L" + }, + new + { + Id = "snc", + ReferenceName = "Sinaugoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "snd", + Part1 = "sd", + Part2B = "snd", + Part2T = "snd", + ReferenceName = "Sindhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sne", + ReferenceName = "Bau Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "snf", + ReferenceName = "Noon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sng", + ReferenceName = "Sanga (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sni", + ReferenceName = "Sensi", + Scope = "I", + Type = "E" + }, + new + { + Id = "snj", + ReferenceName = "Riverain Sango", + Scope = "I", + Type = "L" + }, + new + { + Id = "snk", + Part2B = "snk", + Part2T = "snk", + ReferenceName = "Soninke", + Scope = "I", + Type = "L" + }, + new + { + Id = "snl", + ReferenceName = "Sangil", + Scope = "I", + Type = "L" + }, + new + { + Id = "snm", + ReferenceName = "Southern Ma'di", + Scope = "I", + Type = "L" + }, + new + { + Id = "snn", + ReferenceName = "Siona", + Scope = "I", + Type = "L" + }, + new + { + Id = "sno", + ReferenceName = "Snohomish", + Scope = "I", + Type = "L" + }, + new + { + Id = "snp", + ReferenceName = "Siane", + Scope = "I", + Type = "L" + }, + new + { + Id = "snq", + ReferenceName = "Sangu (Gabon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "snr", + ReferenceName = "Sihan", + Scope = "I", + Type = "L" + }, + new + { + Id = "sns", + ReferenceName = "South West Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "snu", + ReferenceName = "Senggi", + Scope = "I", + Type = "L" + }, + new + { + Id = "snv", + ReferenceName = "Sa'ban", + Scope = "I", + Type = "L" + }, + new + { + Id = "snw", + ReferenceName = "Selee", + Scope = "I", + Type = "L" + }, + new + { + Id = "snx", + ReferenceName = "Sam", + Scope = "I", + Type = "L" + }, + new + { + Id = "sny", + ReferenceName = "Saniyo-Hiyewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "snz", + ReferenceName = "Kou", + Scope = "I", + Type = "L" + }, + new + { + Id = "soa", + ReferenceName = "Thai Song", + Scope = "I", + Type = "L" + }, + new + { + Id = "sob", + ReferenceName = "Sobei", + Scope = "I", + Type = "L" + }, + new + { + Id = "soc", + ReferenceName = "So (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "sod", + ReferenceName = "Songoora", + Scope = "I", + Type = "L" + }, + new + { + Id = "soe", + ReferenceName = "Songomeno", + Scope = "I", + Type = "L" + }, + new + { + Id = "sog", + Part2B = "sog", + Part2T = "sog", + ReferenceName = "Sogdian", + Scope = "I", + Type = "A" + }, + new + { + Id = "soh", + ReferenceName = "Aka", + Scope = "I", + Type = "L" + }, + new + { + Id = "soi", + ReferenceName = "Sonha", + Scope = "I", + Type = "L" + }, + new + { + Id = "soj", + ReferenceName = "Soi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sok", + ReferenceName = "Sokoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "sol", + ReferenceName = "Solos", + Scope = "I", + Type = "L" + }, + new + { + Id = "som", + Part1 = "so", + Part2B = "som", + Part2T = "som", + ReferenceName = "Somali", + Scope = "I", + Type = "L" + }, + new + { + Id = "soo", + ReferenceName = "Songo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sop", + ReferenceName = "Songe", + Scope = "I", + Type = "L" + }, + new + { + Id = "soq", + ReferenceName = "Kanasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sor", + ReferenceName = "Somrai", + Scope = "I", + Type = "L" + }, + new + { + Id = "sos", + ReferenceName = "Seeku", + Scope = "I", + Type = "L" + }, + new + { + Id = "sot", + Part1 = "st", + Part2B = "sot", + Part2T = "sot", + ReferenceName = "Southern Sotho", + Scope = "I", + Type = "L" + }, + new + { + Id = "sou", + ReferenceName = "Southern Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "sov", + ReferenceName = "Sonsorol", + Scope = "I", + Type = "L" + }, + new + { + Id = "sow", + ReferenceName = "Sowanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "sox", + ReferenceName = "Swo", + Scope = "I", + Type = "L" + }, + new + { + Id = "soy", + ReferenceName = "Miyobe", + Scope = "I", + Type = "L" + }, + new + { + Id = "soz", + ReferenceName = "Temi", + Scope = "I", + Type = "L" + }, + new + { + Id = "spa", + Part1 = "es", + Part2B = "spa", + Part2T = "spa", + ReferenceName = "Spanish", + Scope = "I", + Type = "L" + }, + new + { + Id = "spb", + ReferenceName = "Sepa (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "spc", + ReferenceName = "Sapé", + Scope = "I", + Type = "L" + }, + new + { + Id = "spd", + ReferenceName = "Saep", + Scope = "I", + Type = "L" + }, + new + { + Id = "spe", + ReferenceName = "Sepa (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "spg", + ReferenceName = "Sian", + Scope = "I", + Type = "L" + }, + new + { + Id = "spi", + ReferenceName = "Saponi", + Scope = "I", + Type = "L" + }, + new + { + Id = "spk", + ReferenceName = "Sengo", + Scope = "I", + Type = "L" + }, + new + { + Id = "spl", + ReferenceName = "Selepet", + Scope = "I", + Type = "L" + }, + new + { + Id = "spm", + ReferenceName = "Akukem", + Scope = "I", + Type = "L" + }, + new + { + Id = "spn", + ReferenceName = "Sanapaná", + Scope = "I", + Type = "L" + }, + new + { + Id = "spo", + ReferenceName = "Spokane", + Scope = "I", + Type = "L" + }, + new + { + Id = "spp", + ReferenceName = "Supyire Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "spq", + ReferenceName = "Loreto-Ucayali Spanish", + Scope = "I", + Type = "L" + }, + new + { + Id = "spr", + ReferenceName = "Saparua", + Scope = "I", + Type = "L" + }, + new + { + Id = "sps", + ReferenceName = "Saposa", + Scope = "I", + Type = "L" + }, + new + { + Id = "spt", + ReferenceName = "Spiti Bhoti", + Scope = "I", + Type = "L" + }, + new + { + Id = "spu", + ReferenceName = "Sapuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "spv", + ReferenceName = "Sambalpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "spx", + ReferenceName = "South Picene", + Scope = "I", + Type = "A" + }, + new + { + Id = "spy", + ReferenceName = "Sabaot", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqa", + ReferenceName = "Shama-Sambuga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqh", + ReferenceName = "Shau", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqi", + Part1 = "sq", + Part2B = "alb", + Part2T = "sqi", + ReferenceName = "Albanian", + Scope = "M", + Type = "L" + }, + new + { + Id = "sqk", + ReferenceName = "Albanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqm", + ReferenceName = "Suma", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqn", + ReferenceName = "Susquehannock", + Scope = "I", + Type = "E" + }, + new + { + Id = "sqo", + ReferenceName = "Sorkhei", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqq", + ReferenceName = "Sou", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqr", + ReferenceName = "Siculo Arabic", + Scope = "I", + Type = "H" + }, + new + { + Id = "sqs", + ReferenceName = "Sri Lankan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sqt", + ReferenceName = "Soqotri", + Scope = "I", + Type = "L" + }, + new + { + Id = "squ", + ReferenceName = "Squamish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sra", + ReferenceName = "Saruga", + Scope = "I", + Type = "L" + }, + new + { + Id = "srb", + ReferenceName = "Sora", + Scope = "I", + Type = "L" + }, + new + { + Id = "src", + ReferenceName = "Logudorese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "srd", + Part1 = "sc", + Part2B = "srd", + Part2T = "srd", + ReferenceName = "Sardinian", + Scope = "M", + Type = "L" + }, + new + { + Id = "sre", + ReferenceName = "Sara", + Scope = "I", + Type = "L" + }, + new + { + Id = "srf", + ReferenceName = "Nafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "srg", + ReferenceName = "Sulod", + Scope = "I", + Type = "L" + }, + new + { + Id = "srh", + ReferenceName = "Sarikoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "sri", + ReferenceName = "Siriano", + Scope = "I", + Type = "L" + }, + new + { + Id = "srk", + ReferenceName = "Serudung Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "srl", + ReferenceName = "Isirawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "srm", + ReferenceName = "Saramaccan", + Scope = "I", + Type = "L" + }, + new + { + Id = "srn", + Part2B = "srn", + Part2T = "srn", + ReferenceName = "Sranan Tongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "sro", + ReferenceName = "Campidanese Sardinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "srp", + Part1 = "sr", + Part2B = "srp", + Part2T = "srp", + ReferenceName = "Serbian", + Scope = "I", + Type = "L" + }, + new + { + Id = "srq", + ReferenceName = "Sirionó", + Scope = "I", + Type = "L" + }, + new + { + Id = "srr", + Part2B = "srr", + Part2T = "srr", + ReferenceName = "Serer", + Scope = "I", + Type = "L" + }, + new + { + Id = "srs", + ReferenceName = "Sarsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "srt", + ReferenceName = "Sauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sru", + ReferenceName = "Suruí", + Scope = "I", + Type = "L" + }, + new + { + Id = "srv", + ReferenceName = "Southern Sorsoganon", + Scope = "I", + Type = "L" + }, + new + { + Id = "srw", + ReferenceName = "Serua", + Scope = "I", + Type = "L" + }, + new + { + Id = "srx", + ReferenceName = "Sirmauri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sry", + ReferenceName = "Sera", + Scope = "I", + Type = "L" + }, + new + { + Id = "srz", + ReferenceName = "Shahmirzadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssb", + ReferenceName = "Southern Sama", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssc", + ReferenceName = "Suba-Simbiti", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssd", + ReferenceName = "Siroi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sse", + ReferenceName = "Balangingi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssf", + ReferenceName = "Thao", + Scope = "I", + Type = "E" + }, + new + { + Id = "ssg", + ReferenceName = "Seimat", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssh", + ReferenceName = "Shihhi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssi", + ReferenceName = "Sansi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssj", + ReferenceName = "Sausi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssk", + ReferenceName = "Sunam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssl", + ReferenceName = "Western Sisaala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssm", + ReferenceName = "Semnam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssn", + ReferenceName = "Waata", + Scope = "I", + Type = "L" + }, + new + { + Id = "sso", + ReferenceName = "Sissano", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssp", + ReferenceName = "Spanish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssq", + ReferenceName = "So'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssr", + ReferenceName = "Swiss-French Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sss", + ReferenceName = "Sô", + Scope = "I", + Type = "L" + }, + new + { + Id = "sst", + ReferenceName = "Sinasina", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssu", + ReferenceName = "Susuami", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssv", + ReferenceName = "Shark Bay", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssw", + Part1 = "ss", + Part2B = "ssw", + Part2T = "ssw", + ReferenceName = "Swati", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssx", + ReferenceName = "Samberigi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssy", + ReferenceName = "Saho", + Scope = "I", + Type = "L" + }, + new + { + Id = "ssz", + ReferenceName = "Sengseng", + Scope = "I", + Type = "L" + }, + new + { + Id = "sta", + ReferenceName = "Settla", + Scope = "I", + Type = "L" + }, + new + { + Id = "stb", + ReferenceName = "Northern Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "std", + ReferenceName = "Sentinel", + Scope = "I", + Type = "L" + }, + new + { + Id = "ste", + ReferenceName = "Liana-Seti", + Scope = "I", + Type = "L" + }, + new + { + Id = "stf", + ReferenceName = "Seta", + Scope = "I", + Type = "L" + }, + new + { + Id = "stg", + ReferenceName = "Trieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "sth", + ReferenceName = "Shelta", + Scope = "I", + Type = "L" + }, + new + { + Id = "sti", + ReferenceName = "Bulo Stieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "stj", + ReferenceName = "Matya Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "stk", + ReferenceName = "Arammba", + Scope = "I", + Type = "L" + }, + new + { + Id = "stl", + ReferenceName = "Stellingwerfs", + Scope = "I", + Type = "L" + }, + new + { + Id = "stm", + ReferenceName = "Setaman", + Scope = "I", + Type = "L" + }, + new + { + Id = "stn", + ReferenceName = "Owa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sto", + ReferenceName = "Stoney", + Scope = "I", + Type = "L" + }, + new + { + Id = "stp", + ReferenceName = "Southeastern Tepehuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "stq", + ReferenceName = "Saterfriesisch", + Scope = "I", + Type = "L" + }, + new + { + Id = "str", + ReferenceName = "Straits Salish", + Scope = "I", + Type = "L" + }, + new + { + Id = "sts", + ReferenceName = "Shumashti", + Scope = "I", + Type = "L" + }, + new + { + Id = "stt", + ReferenceName = "Budeh Stieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "stu", + ReferenceName = "Samtao", + Scope = "I", + Type = "L" + }, + new + { + Id = "stv", + ReferenceName = "Silt'e", + Scope = "I", + Type = "L" + }, + new + { + Id = "stw", + ReferenceName = "Satawalese", + Scope = "I", + Type = "L" + }, + new + { + Id = "sty", + ReferenceName = "Siberian Tatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "sua", + ReferenceName = "Sulka", + Scope = "I", + Type = "L" + }, + new + { + Id = "sub", + ReferenceName = "Suku", + Scope = "I", + Type = "L" + }, + new + { + Id = "suc", + ReferenceName = "Western Subanon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sue", + ReferenceName = "Suena", + Scope = "I", + Type = "L" + }, + new + { + Id = "sug", + ReferenceName = "Suganga", + Scope = "I", + Type = "L" + }, + new + { + Id = "sui", + ReferenceName = "Suki", + Scope = "I", + Type = "L" + }, + new + { + Id = "suj", + ReferenceName = "Shubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "suk", + Part2B = "suk", + Part2T = "suk", + ReferenceName = "Sukuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "sun", + Part1 = "su", + Part2B = "sun", + Part2T = "sun", + ReferenceName = "Sundanese", + Scope = "I", + Type = "L" + }, + new + { + Id = "suq", + ReferenceName = "Suri", + Scope = "I", + Type = "L" + }, + new + { + Id = "sur", + ReferenceName = "Mwaghavul", + Scope = "I", + Type = "L" + }, + new + { + Id = "sus", + Part2B = "sus", + Part2T = "sus", + ReferenceName = "Susu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sut", + ReferenceName = "Subtiaba", + Scope = "I", + Type = "E" + }, + new + { + Id = "suv", + ReferenceName = "Puroik", + Scope = "I", + Type = "L" + }, + new + { + Id = "suw", + ReferenceName = "Sumbwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sux", + Part2B = "sux", + Part2T = "sux", + ReferenceName = "Sumerian", + Scope = "I", + Type = "A" + }, + new + { + Id = "suy", + ReferenceName = "Suyá", + Scope = "I", + Type = "L" + }, + new + { + Id = "suz", + ReferenceName = "Sunwar", + Scope = "I", + Type = "L" + }, + new + { + Id = "sva", + ReferenceName = "Svan", + Scope = "I", + Type = "L" + }, + new + { + Id = "svb", + ReferenceName = "Ulau-Suain", + Scope = "I", + Type = "L" + }, + new + { + Id = "svc", + ReferenceName = "Vincentian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "sve", + ReferenceName = "Serili", + Scope = "I", + Type = "L" + }, + new + { + Id = "svk", + ReferenceName = "Slovakian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "svm", + ReferenceName = "Slavomolisano", + Scope = "I", + Type = "L" + }, + new + { + Id = "svs", + ReferenceName = "Savosavo", + Scope = "I", + Type = "L" + }, + new + { + Id = "svx", + ReferenceName = "Skalvian", + Scope = "I", + Type = "H" + }, + new + { + Id = "swa", + Part1 = "sw", + Part2B = "swa", + Part2T = "swa", + ReferenceName = "Swahili (macrolanguage)", + Scope = "M", + Type = "L" + }, + new + { + Id = "swb", + ReferenceName = "Maore Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "swc", + ReferenceName = "Congo Swahili", + Scope = "I", + Type = "L" + }, + new + { + Id = "swe", + Part1 = "sv", + Part2B = "swe", + Part2T = "swe", + ReferenceName = "Swedish", + Scope = "I", + Type = "L" + }, + new + { + Id = "swf", + ReferenceName = "Sere", + Scope = "I", + Type = "L" + }, + new + { + Id = "swg", + ReferenceName = "Swabian", + Scope = "I", + Type = "L" + }, + new + { + Id = "swh", + ReferenceName = "Swahili (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "swi", + ReferenceName = "Sui", + Scope = "I", + Type = "L" + }, + new + { + Id = "swj", + ReferenceName = "Sira", + Scope = "I", + Type = "L" + }, + new + { + Id = "swk", + ReferenceName = "Malawi Sena", + Scope = "I", + Type = "L" + }, + new + { + Id = "swl", + ReferenceName = "Swedish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "swm", + ReferenceName = "Samosa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swn", + ReferenceName = "Sawknah", + Scope = "I", + Type = "L" + }, + new + { + Id = "swo", + ReferenceName = "Shanenawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swp", + ReferenceName = "Suau", + Scope = "I", + Type = "L" + }, + new + { + Id = "swq", + ReferenceName = "Sharwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swr", + ReferenceName = "Saweru", + Scope = "I", + Type = "L" + }, + new + { + Id = "sws", + ReferenceName = "Seluwasan", + Scope = "I", + Type = "L" + }, + new + { + Id = "swt", + ReferenceName = "Sawila", + Scope = "I", + Type = "L" + }, + new + { + Id = "swu", + ReferenceName = "Suwawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "swv", + ReferenceName = "Shekhawati", + Scope = "I", + Type = "L" + }, + new + { + Id = "sww", + ReferenceName = "Sowa", + Scope = "I", + Type = "E" + }, + new + { + Id = "swx", + ReferenceName = "Suruahá", + Scope = "I", + Type = "L" + }, + new + { + Id = "swy", + ReferenceName = "Sarua", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxb", + ReferenceName = "Suba", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxc", + ReferenceName = "Sicanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "sxe", + ReferenceName = "Sighu", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxg", + ReferenceName = "Shuhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxk", + ReferenceName = "Southern Kalapuya", + Scope = "I", + Type = "E" + }, + new + { + Id = "sxl", + ReferenceName = "Selian", + Scope = "I", + Type = "E" + }, + new + { + Id = "sxm", + ReferenceName = "Samre", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxn", + ReferenceName = "Sangir", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxo", + ReferenceName = "Sorothaptic", + Scope = "I", + Type = "A" + }, + new + { + Id = "sxr", + ReferenceName = "Saaroa", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxs", + ReferenceName = "Sasaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxu", + ReferenceName = "Upper Saxon", + Scope = "I", + Type = "L" + }, + new + { + Id = "sxw", + ReferenceName = "Saxwe Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "sya", + ReferenceName = "Siang", + Scope = "I", + Type = "L" + }, + new + { + Id = "syb", + ReferenceName = "Central Subanen", + Scope = "I", + Type = "L" + }, + new + { + Id = "syc", + Part2B = "syc", + Part2T = "syc", + ReferenceName = "Classical Syriac", + Scope = "I", + Type = "H" + }, + new + { + Id = "syi", + ReferenceName = "Seki", + Scope = "I", + Type = "L" + }, + new + { + Id = "syk", + ReferenceName = "Sukur", + Scope = "I", + Type = "L" + }, + new + { + Id = "syl", + ReferenceName = "Sylheti", + Scope = "I", + Type = "L" + }, + new + { + Id = "sym", + ReferenceName = "Maya Samo", + Scope = "I", + Type = "L" + }, + new + { + Id = "syn", + ReferenceName = "Senaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "syo", + ReferenceName = "Suoy", + Scope = "I", + Type = "L" + }, + new + { + Id = "syr", + Part2B = "syr", + Part2T = "syr", + ReferenceName = "Syriac", + Scope = "M", + Type = "L" + }, + new + { + Id = "sys", + ReferenceName = "Sinyar", + Scope = "I", + Type = "L" + }, + new + { + Id = "syw", + ReferenceName = "Kagate", + Scope = "I", + Type = "L" + }, + new + { + Id = "syx", + ReferenceName = "Samay", + Scope = "I", + Type = "L" + }, + new + { + Id = "syy", + ReferenceName = "Al-Sayyid Bedouin Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "sza", + ReferenceName = "Semelai", + Scope = "I", + Type = "L" + }, + new + { + Id = "szb", + ReferenceName = "Ngalum", + Scope = "I", + Type = "L" + }, + new + { + Id = "szc", + ReferenceName = "Semaq Beri", + Scope = "I", + Type = "L" + }, + new + { + Id = "szd", + ReferenceName = "Seru", + Scope = "I", + Type = "E" + }, + new + { + Id = "sze", + ReferenceName = "Seze", + Scope = "I", + Type = "L" + }, + new + { + Id = "szg", + ReferenceName = "Sengele", + Scope = "I", + Type = "L" + }, + new + { + Id = "szl", + ReferenceName = "Silesian", + Scope = "I", + Type = "L" + }, + new + { + Id = "szn", + ReferenceName = "Sula", + Scope = "I", + Type = "L" + }, + new + { + Id = "szp", + ReferenceName = "Suabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "szs", + ReferenceName = "Solomon Islands Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "szv", + ReferenceName = "Isu (Fako Division)", + Scope = "I", + Type = "L" + }, + new + { + Id = "szw", + ReferenceName = "Sawai", + Scope = "I", + Type = "L" + }, + new + { + Id = "szy", + ReferenceName = "Sakizaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "taa", + ReferenceName = "Lower Tanana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tab", + ReferenceName = "Tabassaran", + Scope = "I", + Type = "L" + }, + new + { + Id = "tac", + ReferenceName = "Lowland Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tad", + ReferenceName = "Tause", + Scope = "I", + Type = "L" + }, + new + { + Id = "tae", + ReferenceName = "Tariana", + Scope = "I", + Type = "L" + }, + new + { + Id = "taf", + ReferenceName = "Tapirapé", + Scope = "I", + Type = "L" + }, + new + { + Id = "tag", + ReferenceName = "Tagoi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tah", + Part1 = "ty", + Part2B = "tah", + Part2T = "tah", + ReferenceName = "Tahitian", + Scope = "I", + Type = "L" + }, + new + { + Id = "taj", + ReferenceName = "Eastern Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tak", + ReferenceName = "Tala", + Scope = "I", + Type = "L" + }, + new + { + Id = "tal", + ReferenceName = "Tal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tam", + Part1 = "ta", + Part2B = "tam", + Part2T = "tam", + ReferenceName = "Tamil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tan", + ReferenceName = "Tangale", + Scope = "I", + Type = "L" + }, + new + { + Id = "tao", + ReferenceName = "Yami", + Scope = "I", + Type = "L" + }, + new + { + Id = "tap", + ReferenceName = "Taabwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "taq", + ReferenceName = "Tamasheq", + Scope = "I", + Type = "L" + }, + new + { + Id = "tar", + ReferenceName = "Central Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tas", + ReferenceName = "Tay Boi", + Scope = "I", + Type = "E" + }, + new + { + Id = "tat", + Part1 = "tt", + Part2B = "tat", + Part2T = "tat", + ReferenceName = "Tatar", + Scope = "I", + Type = "L" + }, + new + { + Id = "tau", + ReferenceName = "Upper Tanana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tav", + ReferenceName = "Tatuyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "taw", + ReferenceName = "Tai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tax", + ReferenceName = "Tamki", + Scope = "I", + Type = "L" + }, + new + { + Id = "tay", + ReferenceName = "Atayal", + Scope = "I", + Type = "L" + }, + new + { + Id = "taz", + ReferenceName = "Tocho", + Scope = "I", + Type = "L" + }, + new + { + Id = "tba", + ReferenceName = "Aikanã", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbb", + ReferenceName = "Tapeba", + Scope = "I", + Type = "E" + }, + new + { + Id = "tbc", + ReferenceName = "Takia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbd", + ReferenceName = "Kaki Ae", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbe", + ReferenceName = "Tanimbili", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbf", + ReferenceName = "Mandara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbg", + ReferenceName = "North Tairora", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbh", + ReferenceName = "Dharawal", + Scope = "I", + Type = "E" + }, + new + { + Id = "tbi", + ReferenceName = "Gaam", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbj", + ReferenceName = "Tiang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbk", + ReferenceName = "Calamian Tagbanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbl", + ReferenceName = "Tboli", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbm", + ReferenceName = "Tagbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbn", + ReferenceName = "Barro Negro Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbo", + ReferenceName = "Tawala", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbp", + ReferenceName = "Taworta", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbr", + ReferenceName = "Tumtum", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbs", + ReferenceName = "Tanguat", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbt", + ReferenceName = "Tembo (Kitembo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbu", + ReferenceName = "Tubar", + Scope = "I", + Type = "E" + }, + new + { + Id = "tbv", + ReferenceName = "Tobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbw", + ReferenceName = "Tagbanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbx", + ReferenceName = "Kapin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tby", + ReferenceName = "Tabaru", + Scope = "I", + Type = "L" + }, + new + { + Id = "tbz", + ReferenceName = "Ditammari", + Scope = "I", + Type = "L" + }, + new + { + Id = "tca", + ReferenceName = "Ticuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcb", + ReferenceName = "Tanacross", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcc", + ReferenceName = "Datooga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcd", + ReferenceName = "Tafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tce", + ReferenceName = "Southern Tutchone", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcf", + ReferenceName = "Malinaltepec Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcg", + ReferenceName = "Tamagario", + Scope = "I", + Type = "L" + }, + new + { + Id = "tch", + ReferenceName = "Turks And Caicos Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "tci", + ReferenceName = "Wára", + Scope = "I", + Type = "L" + }, + new + { + Id = "tck", + ReferenceName = "Tchitchege", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcl", + ReferenceName = "Taman (Myanmar)", + Scope = "I", + Type = "E" + }, + new + { + Id = "tcm", + ReferenceName = "Tanahmerah", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcn", + ReferenceName = "Tichurong", + Scope = "I", + Type = "L" + }, + new + { + Id = "tco", + ReferenceName = "Taungyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcp", + ReferenceName = "Tawr Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcq", + ReferenceName = "Kaiy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcs", + ReferenceName = "Torres Strait Creole", + Scope = "I", + Type = "L" + }, + new + { + Id = "tct", + ReferenceName = "T'en", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcu", + ReferenceName = "Southeastern Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcw", + ReferenceName = "Tecpatlán Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcx", + ReferenceName = "Toda", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcy", + ReferenceName = "Tulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tcz", + ReferenceName = "Thado Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tda", + ReferenceName = "Tagdal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdb", + ReferenceName = "Panchpargania", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdc", + ReferenceName = "Emberá-Tadó", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdd", + ReferenceName = "Tai Nüa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tde", + ReferenceName = "Tiranige Diga Dogon", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdf", + ReferenceName = "Talieng", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdg", + ReferenceName = "Western Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdh", + ReferenceName = "Thulung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdi", + ReferenceName = "Tomadino", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdj", + ReferenceName = "Tajio", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdk", + ReferenceName = "Tambas", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdl", + ReferenceName = "Sur", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdm", + ReferenceName = "Taruma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdn", + ReferenceName = "Tondano", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdo", + ReferenceName = "Teme", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdq", + ReferenceName = "Tita", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdr", + ReferenceName = "Todrah", + Scope = "I", + Type = "L" + }, + new + { + Id = "tds", + ReferenceName = "Doutai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdt", + ReferenceName = "Tetun Dili", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdv", + ReferenceName = "Toro", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdx", + ReferenceName = "Tandroy-Mahafaly Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tdy", + ReferenceName = "Tadyawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tea", + ReferenceName = "Temiar", + Scope = "I", + Type = "L" + }, + new + { + Id = "teb", + ReferenceName = "Tetete", + Scope = "I", + Type = "E" + }, + new + { + Id = "tec", + ReferenceName = "Terik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ted", + ReferenceName = "Tepo Krumen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tee", + ReferenceName = "Huehuetla Tepehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tef", + ReferenceName = "Teressa", + Scope = "I", + Type = "L" + }, + new + { + Id = "teg", + ReferenceName = "Teke-Tege", + Scope = "I", + Type = "L" + }, + new + { + Id = "teh", + ReferenceName = "Tehuelche", + Scope = "I", + Type = "L" + }, + new + { + Id = "tei", + ReferenceName = "Torricelli", + Scope = "I", + Type = "L" + }, + new + { + Id = "tek", + ReferenceName = "Ibali Teke", + Scope = "I", + Type = "L" + }, + new + { + Id = "tel", + Part1 = "te", + Part2B = "tel", + Part2T = "tel", + ReferenceName = "Telugu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tem", + Part2B = "tem", + Part2T = "tem", + ReferenceName = "Timne", + Scope = "I", + Type = "L" + }, + new + { + Id = "ten", + ReferenceName = "Tama (Colombia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "teo", + ReferenceName = "Teso", + Scope = "I", + Type = "L" + }, + new + { + Id = "tep", + ReferenceName = "Tepecano", + Scope = "I", + Type = "E" + }, + new + { + Id = "teq", + ReferenceName = "Temein", + Scope = "I", + Type = "L" + }, + new + { + Id = "ter", + Part2B = "ter", + Part2T = "ter", + ReferenceName = "Tereno", + Scope = "I", + Type = "L" + }, + new + { + Id = "tes", + ReferenceName = "Tengger", + Scope = "I", + Type = "L" + }, + new + { + Id = "tet", + Part2B = "tet", + Part2T = "tet", + ReferenceName = "Tetum", + Scope = "I", + Type = "L" + }, + new + { + Id = "teu", + ReferenceName = "Soo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tev", + ReferenceName = "Teor", + Scope = "I", + Type = "L" + }, + new + { + Id = "tew", + ReferenceName = "Tewa (USA)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tex", + ReferenceName = "Tennet", + Scope = "I", + Type = "L" + }, + new + { + Id = "tey", + ReferenceName = "Tulishi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tez", + ReferenceName = "Tetserret", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfi", + ReferenceName = "Tofin Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfn", + ReferenceName = "Tanaina", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfo", + ReferenceName = "Tefaro", + Scope = "I", + Type = "L" + }, + new + { + Id = "tfr", + ReferenceName = "Teribe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tft", + ReferenceName = "Ternate", + Scope = "I", + Type = "L" + }, + new + { + Id = "tga", + ReferenceName = "Sagalla", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgb", + ReferenceName = "Tobilung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgc", + ReferenceName = "Tigak", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgd", + ReferenceName = "Ciwogai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tge", + ReferenceName = "Eastern Gorkha Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgf", + ReferenceName = "Chalikha", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgh", + ReferenceName = "Tobagonian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgi", + ReferenceName = "Lawunuia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgj", + ReferenceName = "Tagin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgk", + Part1 = "tg", + Part2B = "tgk", + Part2T = "tgk", + ReferenceName = "Tajik", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgl", + Part1 = "tl", + Part2B = "tgl", + Part2T = "tgl", + ReferenceName = "Tagalog", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgn", + ReferenceName = "Tandaganon", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgo", + ReferenceName = "Sudest", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgp", + ReferenceName = "Tangoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgq", + ReferenceName = "Tring", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgr", + ReferenceName = "Tareng", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgs", + ReferenceName = "Nume", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgt", + ReferenceName = "Central Tagbanwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgu", + ReferenceName = "Tanggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgv", + ReferenceName = "Tingui-Boto", + Scope = "I", + Type = "E" + }, + new + { + Id = "tgw", + ReferenceName = "Tagwana Senoufo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgx", + ReferenceName = "Tagish", + Scope = "I", + Type = "L" + }, + new + { + Id = "tgy", + ReferenceName = "Togoyo", + Scope = "I", + Type = "E" + }, + new + { + Id = "tgz", + ReferenceName = "Tagalaka", + Scope = "I", + Type = "E" + }, + new + { + Id = "tha", + Part1 = "th", + Part2B = "tha", + Part2T = "tha", + ReferenceName = "Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "thd", + ReferenceName = "Kuuk Thaayorre", + Scope = "I", + Type = "L" + }, + new + { + Id = "the", + ReferenceName = "Chitwania Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thf", + ReferenceName = "Thangmi", + Scope = "I", + Type = "L" + }, + new + { + Id = "thh", + ReferenceName = "Northern Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "thi", + ReferenceName = "Tai Long", + Scope = "I", + Type = "L" + }, + new + { + Id = "thk", + ReferenceName = "Tharaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "thl", + ReferenceName = "Dangaura Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thm", + ReferenceName = "Aheu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thn", + ReferenceName = "Thachanadan", + Scope = "I", + Type = "L" + }, + new + { + Id = "thp", + ReferenceName = "Thompson", + Scope = "I", + Type = "L" + }, + new + { + Id = "thq", + ReferenceName = "Kochila Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "thr", + ReferenceName = "Rana Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ths", + ReferenceName = "Thakali", + Scope = "I", + Type = "L" + }, + new + { + Id = "tht", + ReferenceName = "Tahltan", + Scope = "I", + Type = "L" + }, + new + { + Id = "thu", + ReferenceName = "Thuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "thv", + ReferenceName = "Tahaggart Tamahaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "thw", + ReferenceName = "Thudam", + Scope = "I", + Type = "L" + }, + new + { + Id = "thy", + ReferenceName = "Tha", + Scope = "I", + Type = "L" + }, + new + { + Id = "thz", + ReferenceName = "Tayart Tamajeq", + Scope = "I", + Type = "L" + }, + new + { + Id = "tia", + ReferenceName = "Tidikelt Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "tic", + ReferenceName = "Tira", + Scope = "I", + Type = "L" + }, + new + { + Id = "tif", + ReferenceName = "Tifal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tig", + Part2B = "tig", + Part2T = "tig", + ReferenceName = "Tigre", + Scope = "I", + Type = "L" + }, + new + { + Id = "tih", + ReferenceName = "Timugon Murut", + Scope = "I", + Type = "L" + }, + new + { + Id = "tii", + ReferenceName = "Tiene", + Scope = "I", + Type = "L" + }, + new + { + Id = "tij", + ReferenceName = "Tilung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tik", + ReferenceName = "Tikar", + Scope = "I", + Type = "L" + }, + new + { + Id = "til", + ReferenceName = "Tillamook", + Scope = "I", + Type = "E" + }, + new + { + Id = "tim", + ReferenceName = "Timbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tin", + ReferenceName = "Tindi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tio", + ReferenceName = "Teop", + Scope = "I", + Type = "L" + }, + new + { + Id = "tip", + ReferenceName = "Trimuris", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiq", + ReferenceName = "Tiéfo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tir", + Part1 = "ti", + Part2B = "tir", + Part2T = "tir", + ReferenceName = "Tigrinya", + Scope = "I", + Type = "L" + }, + new + { + Id = "tis", + ReferenceName = "Masadiit Itneg", + Scope = "I", + Type = "L" + }, + new + { + Id = "tit", + ReferenceName = "Tinigua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiu", + ReferenceName = "Adasen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiv", + Part2B = "tiv", + Part2T = "tiv", + ReferenceName = "Tiv", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiw", + ReferenceName = "Tiwi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tix", + ReferenceName = "Southern Tiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiy", + ReferenceName = "Tiruray", + Scope = "I", + Type = "L" + }, + new + { + Id = "tiz", + ReferenceName = "Tai Hongjin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tja", + ReferenceName = "Tajuasohn", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjg", + ReferenceName = "Tunjung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tji", + ReferenceName = "Northern Tujia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjj", + ReferenceName = "Tjungundji", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjl", + ReferenceName = "Tai Laing", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjm", + ReferenceName = "Timucua", + Scope = "I", + Type = "E" + }, + new + { + Id = "tjn", + ReferenceName = "Tonjon", + Scope = "I", + Type = "E" + }, + new + { + Id = "tjo", + ReferenceName = "Temacine Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjp", + ReferenceName = "Tjupany", + Scope = "I", + Type = "L" + }, + new + { + Id = "tjs", + ReferenceName = "Southern Tujia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tju", + ReferenceName = "Tjurruru", + Scope = "I", + Type = "E" + }, + new + { + Id = "tjw", + ReferenceName = "Djabwurrung", + Scope = "I", + Type = "L" + }, + new + { + Id = "tka", + ReferenceName = "Truká", + Scope = "I", + Type = "E" + }, + new + { + Id = "tkb", + ReferenceName = "Buksa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkd", + ReferenceName = "Tukudede", + Scope = "I", + Type = "L" + }, + new + { + Id = "tke", + ReferenceName = "Takwane", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkf", + ReferenceName = "Tukumanféd", + Scope = "I", + Type = "E" + }, + new + { + Id = "tkg", + ReferenceName = "Tesaka Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkl", + Part2B = "tkl", + Part2T = "tkl", + ReferenceName = "Tokelau", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkm", + ReferenceName = "Takelma", + Scope = "I", + Type = "E" + }, + new + { + Id = "tkn", + ReferenceName = "Toku-No-Shima", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkp", + ReferenceName = "Tikopia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkq", + ReferenceName = "Tee", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkr", + ReferenceName = "Tsakhur", + Scope = "I", + Type = "L" + }, + new + { + Id = "tks", + ReferenceName = "Takestani", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkt", + ReferenceName = "Kathoriya Tharu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tku", + ReferenceName = "Upper Necaxa Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkv", + ReferenceName = "Mur Pano", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkw", + ReferenceName = "Teanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkx", + ReferenceName = "Tangko", + Scope = "I", + Type = "L" + }, + new + { + Id = "tkz", + ReferenceName = "Takua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tla", + ReferenceName = "Southwestern Tepehuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlb", + ReferenceName = "Tobelo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlc", + ReferenceName = "Yecuatla Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tld", + ReferenceName = "Talaud", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlf", + ReferenceName = "Telefol", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlg", + ReferenceName = "Tofanma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlh", + Part2B = "tlh", + Part2T = "tlh", + ReferenceName = "Klingon", + Scope = "I", + Type = "C" + }, + new + { + Id = "tli", + Part2B = "tli", + Part2T = "tli", + ReferenceName = "Tlingit", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlj", + ReferenceName = "Talinga-Bwisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlk", + ReferenceName = "Taloki", + Scope = "I", + Type = "L" + }, + new + { + Id = "tll", + ReferenceName = "Tetela", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlm", + ReferenceName = "Tolomako", + Scope = "I", + Type = "L" + }, + new + { + Id = "tln", + ReferenceName = "Talondo'", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlo", + ReferenceName = "Talodi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlp", + ReferenceName = "Filomena Mata-Coahuitlán Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlq", + ReferenceName = "Tai Loi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlr", + ReferenceName = "Talise", + Scope = "I", + Type = "L" + }, + new + { + Id = "tls", + ReferenceName = "Tambotalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlt", + ReferenceName = "Sou Nama", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlu", + ReferenceName = "Tulehu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlv", + ReferenceName = "Taliabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tlx", + ReferenceName = "Khehek", + Scope = "I", + Type = "L" + }, + new + { + Id = "tly", + ReferenceName = "Talysh", + Scope = "I", + Type = "L" + }, + new + { + Id = "tma", + ReferenceName = "Tama (Chad)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmb", + ReferenceName = "Katbol", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmc", + ReferenceName = "Tumak", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmd", + ReferenceName = "Haruai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tme", + ReferenceName = "Tremembé", + Scope = "I", + Type = "E" + }, + new + { + Id = "tmf", + ReferenceName = "Toba-Maskoy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmg", + ReferenceName = "Ternateño", + Scope = "I", + Type = "E" + }, + new + { + Id = "tmh", + Part2B = "tmh", + Part2T = "tmh", + ReferenceName = "Tamashek", + Scope = "M", + Type = "L" + }, + new + { + Id = "tmi", + ReferenceName = "Tutuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmj", + ReferenceName = "Samarokena", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmk", + ReferenceName = "Northwestern Tamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tml", + ReferenceName = "Tamnim Citak", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmm", + ReferenceName = "Tai Thanh", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmn", + ReferenceName = "Taman (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmo", + ReferenceName = "Temoq", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmq", + ReferenceName = "Tumleo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmr", + ReferenceName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)", + Scope = "I", + Type = "E" + }, + new + { + Id = "tms", + ReferenceName = "Tima", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmt", + ReferenceName = "Tasmate", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmu", + ReferenceName = "Iau", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmv", + ReferenceName = "Tembo (Motembo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmw", + ReferenceName = "Temuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmy", + ReferenceName = "Tami", + Scope = "I", + Type = "L" + }, + new + { + Id = "tmz", + ReferenceName = "Tamanaku", + Scope = "I", + Type = "E" + }, + new + { + Id = "tna", + ReferenceName = "Tacana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnb", + ReferenceName = "Western Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnc", + ReferenceName = "Tanimuca-Retuarã", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnd", + ReferenceName = "Angosturas Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tng", + ReferenceName = "Tobanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnh", + ReferenceName = "Maiani", + Scope = "I", + Type = "L" + }, + new + { + Id = "tni", + ReferenceName = "Tandia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnk", + ReferenceName = "Kwamera", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnl", + ReferenceName = "Lenakel", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnm", + ReferenceName = "Tabla", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnn", + ReferenceName = "North Tanna", + Scope = "I", + Type = "L" + }, + new + { + Id = "tno", + ReferenceName = "Toromono", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnp", + ReferenceName = "Whitesands", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnq", + ReferenceName = "Taino", + Scope = "I", + Type = "E" + }, + new + { + Id = "tnr", + ReferenceName = "Ménik", + Scope = "I", + Type = "L" + }, + new + { + Id = "tns", + ReferenceName = "Tenis", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnt", + ReferenceName = "Tontemboan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnu", + ReferenceName = "Tay Khang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnv", + ReferenceName = "Tangchangya", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnw", + ReferenceName = "Tonsawang", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnx", + ReferenceName = "Tanema", + Scope = "I", + Type = "L" + }, + new + { + Id = "tny", + ReferenceName = "Tongwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "tnz", + ReferenceName = "Ten'edn", + Scope = "I", + Type = "L" + }, + new + { + Id = "tob", + ReferenceName = "Toba", + Scope = "I", + Type = "L" + }, + new + { + Id = "toc", + ReferenceName = "Coyutla Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tod", + ReferenceName = "Toma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tof", + ReferenceName = "Gizrra", + Scope = "I", + Type = "L" + }, + new + { + Id = "tog", + Part2B = "tog", + Part2T = "tog", + ReferenceName = "Tonga (Nyasa)", + Scope = "I", + Type = "L" + }, + new + { + Id = "toh", + ReferenceName = "Gitonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "toi", + ReferenceName = "Tonga (Zambia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "toj", + ReferenceName = "Tojolabal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tol", + ReferenceName = "Tolowa", + Scope = "I", + Type = "E" + }, + new + { + Id = "tom", + ReferenceName = "Tombulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ton", + Part1 = "to", + Part2B = "ton", + Part2T = "ton", + ReferenceName = "Tonga (Tonga Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "too", + ReferenceName = "Xicotepec De Juárez Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "top", + ReferenceName = "Papantla Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "toq", + ReferenceName = "Toposa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tor", + ReferenceName = "Togbo-Vara Banda", + Scope = "I", + Type = "L" + }, + new + { + Id = "tos", + ReferenceName = "Highland Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tou", + ReferenceName = "Tho", + Scope = "I", + Type = "L" + }, + new + { + Id = "tov", + ReferenceName = "Upper Taromi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tow", + ReferenceName = "Jemez", + Scope = "I", + Type = "L" + }, + new + { + Id = "tox", + ReferenceName = "Tobian", + Scope = "I", + Type = "L" + }, + new + { + Id = "toy", + ReferenceName = "Topoiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "toz", + ReferenceName = "To", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpa", + ReferenceName = "Taupota", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpc", + ReferenceName = "Azoyú Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpe", + ReferenceName = "Tippera", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpf", + ReferenceName = "Tarpia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpg", + ReferenceName = "Kula", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpi", + Part2B = "tpi", + Part2T = "tpi", + ReferenceName = "Tok Pisin", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpj", + ReferenceName = "Tapieté", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpk", + ReferenceName = "Tupinikin", + Scope = "I", + Type = "E" + }, + new + { + Id = "tpl", + ReferenceName = "Tlacoapa Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpm", + ReferenceName = "Tampulma", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpn", + ReferenceName = "Tupinambá", + Scope = "I", + Type = "E" + }, + new + { + Id = "tpo", + ReferenceName = "Tai Pao", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpp", + ReferenceName = "Pisaflores Tepehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpq", + ReferenceName = "Tukpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpr", + ReferenceName = "Tuparí", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpt", + ReferenceName = "Tlachichilco Tepehua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpu", + ReferenceName = "Tampuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpv", + ReferenceName = "Tanapag", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpw", + ReferenceName = "Tupí", + Scope = "I", + Type = "E" + }, + new + { + Id = "tpx", + ReferenceName = "Acatepec Me'phaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpy", + ReferenceName = "Trumai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tpz", + ReferenceName = "Tinputz", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqb", + ReferenceName = "Tembé", + Scope = "I", + Type = "L" + }, + new + { + Id = "tql", + ReferenceName = "Lehali", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqm", + ReferenceName = "Turumsa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqn", + ReferenceName = "Tenino", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqo", + ReferenceName = "Toaripi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqp", + ReferenceName = "Tomoip", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqq", + ReferenceName = "Tunni", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqr", + ReferenceName = "Torona", + Scope = "I", + Type = "E" + }, + new + { + Id = "tqt", + ReferenceName = "Western Totonac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqu", + ReferenceName = "Touo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tqw", + ReferenceName = "Tonkawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "tra", + ReferenceName = "Tirahi", + Scope = "I", + Type = "L" + }, + new + { + Id = "trb", + ReferenceName = "Terebu", + Scope = "I", + Type = "L" + }, + new + { + Id = "trc", + ReferenceName = "Copala Triqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "trd", + ReferenceName = "Turi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tre", + ReferenceName = "East Tarangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "trf", + ReferenceName = "Trinidadian Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "trg", + ReferenceName = "Lishán Didán", + Scope = "I", + Type = "L" + }, + new + { + Id = "trh", + ReferenceName = "Turaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "tri", + ReferenceName = "Trió", + Scope = "I", + Type = "L" + }, + new + { + Id = "trj", + ReferenceName = "Toram", + Scope = "I", + Type = "L" + }, + new + { + Id = "trl", + ReferenceName = "Traveller Scottish", + Scope = "I", + Type = "L" + }, + new + { + Id = "trm", + ReferenceName = "Tregami", + Scope = "I", + Type = "L" + }, + new + { + Id = "trn", + ReferenceName = "Trinitario", + Scope = "I", + Type = "L" + }, + new + { + Id = "tro", + ReferenceName = "Tarao Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "trp", + ReferenceName = "Kok Borok", + Scope = "I", + Type = "L" + }, + new + { + Id = "trq", + ReferenceName = "San Martín Itunyoso Triqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "trr", + ReferenceName = "Taushiro", + Scope = "I", + Type = "L" + }, + new + { + Id = "trs", + ReferenceName = "Chicahuaxtla Triqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "trt", + ReferenceName = "Tunggare", + Scope = "I", + Type = "L" + }, + new + { + Id = "tru", + ReferenceName = "Turoyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "trv", + ReferenceName = "Taroko", + Scope = "I", + Type = "L" + }, + new + { + Id = "trw", + ReferenceName = "Torwali", + Scope = "I", + Type = "L" + }, + new + { + Id = "trx", + ReferenceName = "Tringgus-Sembaan Bidayuh", + Scope = "I", + Type = "L" + }, + new + { + Id = "try", + ReferenceName = "Turung", + Scope = "I", + Type = "E" + }, + new + { + Id = "trz", + ReferenceName = "Torá", + Scope = "I", + Type = "E" + }, + new + { + Id = "tsa", + ReferenceName = "Tsaangi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsb", + ReferenceName = "Tsamai", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsc", + ReferenceName = "Tswa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsd", + ReferenceName = "Tsakonian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tse", + ReferenceName = "Tunisian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsg", + ReferenceName = "Tausug", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsh", + ReferenceName = "Tsuvan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsi", + Part2B = "tsi", + Part2T = "tsi", + ReferenceName = "Tsimshian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsj", + ReferenceName = "Tshangla", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsk", + ReferenceName = "Tseku", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsl", + ReferenceName = "Ts'ün-Lao", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsm", + ReferenceName = "Turkish Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsn", + Part1 = "tn", + Part2B = "tsn", + Part2T = "tsn", + ReferenceName = "Tswana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tso", + Part1 = "ts", + Part2B = "tso", + Part2T = "tso", + ReferenceName = "Tsonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsp", + ReferenceName = "Northern Toussian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsq", + ReferenceName = "Thai Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsr", + ReferenceName = "Akei", + Scope = "I", + Type = "L" + }, + new + { + Id = "tss", + ReferenceName = "Taiwan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tst", + ReferenceName = "Tondi Songway Kiini", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsu", + ReferenceName = "Tsou", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsv", + ReferenceName = "Tsogo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsw", + ReferenceName = "Tsishingini", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsx", + ReferenceName = "Mubami", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsy", + ReferenceName = "Tebul Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tsz", + ReferenceName = "Purepecha", + Scope = "I", + Type = "L" + }, + new + { + Id = "tta", + ReferenceName = "Tutelo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ttb", + ReferenceName = "Gaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttc", + ReferenceName = "Tektiteko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttd", + ReferenceName = "Tauade", + Scope = "I", + Type = "L" + }, + new + { + Id = "tte", + ReferenceName = "Bwanabwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttf", + ReferenceName = "Tuotomb", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttg", + ReferenceName = "Tutong", + Scope = "I", + Type = "L" + }, + new + { + Id = "tth", + ReferenceName = "Upper Ta'oih", + Scope = "I", + Type = "L" + }, + new + { + Id = "tti", + ReferenceName = "Tobati", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttj", + ReferenceName = "Tooro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttk", + ReferenceName = "Totoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttl", + ReferenceName = "Totela", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttm", + ReferenceName = "Northern Tutchone", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttn", + ReferenceName = "Towei", + Scope = "I", + Type = "L" + }, + new + { + Id = "tto", + ReferenceName = "Lower Ta'oih", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttp", + ReferenceName = "Tombelala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttq", + ReferenceName = "Tawallammat Tamajaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttr", + ReferenceName = "Tera", + Scope = "I", + Type = "L" + }, + new + { + Id = "tts", + ReferenceName = "Northeastern Thai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttt", + ReferenceName = "Muslim Tat", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttu", + ReferenceName = "Torau", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttv", + ReferenceName = "Titan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttw", + ReferenceName = "Long Wat", + Scope = "I", + Type = "L" + }, + new + { + Id = "tty", + ReferenceName = "Sikaritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "ttz", + ReferenceName = "Tsum", + Scope = "I", + Type = "L" + }, + new + { + Id = "tua", + ReferenceName = "Wiarumus", + Scope = "I", + Type = "L" + }, + new + { + Id = "tub", + ReferenceName = "Tübatulabal", + Scope = "I", + Type = "E" + }, + new + { + Id = "tuc", + ReferenceName = "Mutu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tud", + ReferenceName = "Tuxá", + Scope = "I", + Type = "E" + }, + new + { + Id = "tue", + ReferenceName = "Tuyuca", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuf", + ReferenceName = "Central Tunebo", + Scope = "I", + Type = "L" + }, + new + { + Id = "tug", + ReferenceName = "Tunia", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuh", + ReferenceName = "Taulil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tui", + ReferenceName = "Tupuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuj", + ReferenceName = "Tugutil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuk", + Part1 = "tk", + Part2B = "tuk", + Part2T = "tuk", + ReferenceName = "Turkmen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tul", + ReferenceName = "Tula", + Scope = "I", + Type = "L" + }, + new + { + Id = "tum", + Part2B = "tum", + Part2T = "tum", + ReferenceName = "Tumbuka", + Scope = "I", + Type = "L" + }, + new + { + Id = "tun", + ReferenceName = "Tunica", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuo", + ReferenceName = "Tucano", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuq", + ReferenceName = "Tedaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tur", + Part1 = "tr", + Part2B = "tur", + Part2T = "tur", + ReferenceName = "Turkish", + Scope = "I", + Type = "L" + }, + new + { + Id = "tus", + ReferenceName = "Tuscarora", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuu", + ReferenceName = "Tututni", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuv", + ReferenceName = "Turkana", + Scope = "I", + Type = "L" + }, + new + { + Id = "tux", + ReferenceName = "Tuxináwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "tuy", + ReferenceName = "Tugen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tuz", + ReferenceName = "Turka", + Scope = "I", + Type = "L" + }, + new + { + Id = "tva", + ReferenceName = "Vaghua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvd", + ReferenceName = "Tsuvadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tve", + ReferenceName = "Te'un", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvk", + ReferenceName = "Southeast Ambrym", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvl", + Part2B = "tvl", + Part2T = "tvl", + ReferenceName = "Tuvalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvm", + ReferenceName = "Tela-Masbuar", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvn", + ReferenceName = "Tavoyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvo", + ReferenceName = "Tidore", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvs", + ReferenceName = "Taveta", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvt", + ReferenceName = "Tutsa Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvu", + ReferenceName = "Tunen", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvw", + ReferenceName = "Sedoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tvx", + ReferenceName = "Taivoan", + Scope = "I", + Type = "E" + }, + new + { + Id = "tvy", + ReferenceName = "Timor Pidgin", + Scope = "I", + Type = "E" + }, + new + { + Id = "twa", + ReferenceName = "Twana", + Scope = "I", + Type = "E" + }, + new + { + Id = "twb", + ReferenceName = "Western Tawbuid", + Scope = "I", + Type = "L" + }, + new + { + Id = "twc", + ReferenceName = "Teshenawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "twd", + ReferenceName = "Twents", + Scope = "I", + Type = "L" + }, + new + { + Id = "twe", + ReferenceName = "Tewa (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "twf", + ReferenceName = "Northern Tiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "twg", + ReferenceName = "Tereweng", + Scope = "I", + Type = "L" + }, + new + { + Id = "twh", + ReferenceName = "Tai Dón", + Scope = "I", + Type = "L" + }, + new + { + Id = "twi", + Part1 = "tw", + Part2B = "twi", + Part2T = "twi", + ReferenceName = "Twi", + Scope = "I", + Type = "L" + }, + new + { + Id = "twl", + ReferenceName = "Tawara", + Scope = "I", + Type = "L" + }, + new + { + Id = "twm", + ReferenceName = "Tawang Monpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "twn", + ReferenceName = "Twendi", + Scope = "I", + Type = "L" + }, + new + { + Id = "two", + ReferenceName = "Tswapong", + Scope = "I", + Type = "L" + }, + new + { + Id = "twp", + ReferenceName = "Ere", + Scope = "I", + Type = "L" + }, + new + { + Id = "twq", + ReferenceName = "Tasawaq", + Scope = "I", + Type = "L" + }, + new + { + Id = "twr", + ReferenceName = "Southwestern Tarahumara", + Scope = "I", + Type = "L" + }, + new + { + Id = "twt", + ReferenceName = "Turiwára", + Scope = "I", + Type = "E" + }, + new + { + Id = "twu", + ReferenceName = "Termanu", + Scope = "I", + Type = "L" + }, + new + { + Id = "tww", + ReferenceName = "Tuwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "twx", + ReferenceName = "Tewe", + Scope = "I", + Type = "L" + }, + new + { + Id = "twy", + ReferenceName = "Tawoyan", + Scope = "I", + Type = "L" + }, + new + { + Id = "txa", + ReferenceName = "Tombonuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "txb", + ReferenceName = "Tokharian B", + Scope = "I", + Type = "A" + }, + new + { + Id = "txc", + ReferenceName = "Tsetsaut", + Scope = "I", + Type = "E" + }, + new + { + Id = "txe", + ReferenceName = "Totoli", + Scope = "I", + Type = "L" + }, + new + { + Id = "txg", + ReferenceName = "Tangut", + Scope = "I", + Type = "A" + }, + new + { + Id = "txh", + ReferenceName = "Thracian", + Scope = "I", + Type = "A" + }, + new + { + Id = "txi", + ReferenceName = "Ikpeng", + Scope = "I", + Type = "L" + }, + new + { + Id = "txj", + ReferenceName = "Tarjumo", + Scope = "I", + Type = "L" + }, + new + { + Id = "txm", + ReferenceName = "Tomini", + Scope = "I", + Type = "L" + }, + new + { + Id = "txn", + ReferenceName = "West Tarangan", + Scope = "I", + Type = "L" + }, + new + { + Id = "txo", + ReferenceName = "Toto", + Scope = "I", + Type = "L" + }, + new + { + Id = "txq", + ReferenceName = "Tii", + Scope = "I", + Type = "L" + }, + new + { + Id = "txr", + ReferenceName = "Tartessian", + Scope = "I", + Type = "A" + }, + new + { + Id = "txs", + ReferenceName = "Tonsea", + Scope = "I", + Type = "L" + }, + new + { + Id = "txt", + ReferenceName = "Citak", + Scope = "I", + Type = "L" + }, + new + { + Id = "txu", + ReferenceName = "Kayapó", + Scope = "I", + Type = "L" + }, + new + { + Id = "txx", + ReferenceName = "Tatana", + Scope = "I", + Type = "L" + }, + new + { + Id = "txy", + ReferenceName = "Tanosy Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "tya", + ReferenceName = "Tauya", + Scope = "I", + Type = "L" + }, + new + { + Id = "tye", + ReferenceName = "Kyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyh", + ReferenceName = "O'du", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyi", + ReferenceName = "Teke-Tsaayi", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyj", + ReferenceName = "Tai Do", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyl", + ReferenceName = "Thu Lao", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyn", + ReferenceName = "Kombai", + Scope = "I", + Type = "L" + }, + new + { + Id = "typ", + ReferenceName = "Thaypan", + Scope = "I", + Type = "E" + }, + new + { + Id = "tyr", + ReferenceName = "Tai Daeng", + Scope = "I", + Type = "L" + }, + new + { + Id = "tys", + ReferenceName = "Tày Sa Pa", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyt", + ReferenceName = "Tày Tac", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyu", + ReferenceName = "Kua", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyv", + Part2B = "tyv", + Part2T = "tyv", + ReferenceName = "Tuvinian", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyx", + ReferenceName = "Teke-Tyee", + Scope = "I", + Type = "L" + }, + new + { + Id = "tyz", + ReferenceName = "Tày", + Scope = "I", + Type = "L" + }, + new + { + Id = "tza", + ReferenceName = "Tanzanian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzh", + ReferenceName = "Tzeltal", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzj", + ReferenceName = "Tz'utujil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzl", + ReferenceName = "Talossan", + Scope = "I", + Type = "C" + }, + new + { + Id = "tzm", + ReferenceName = "Central Atlas Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzn", + ReferenceName = "Tugun", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzo", + ReferenceName = "Tzotzil", + Scope = "I", + Type = "L" + }, + new + { + Id = "tzx", + ReferenceName = "Tabriak", + Scope = "I", + Type = "L" + }, + new + { + Id = "uam", + ReferenceName = "Uamué", + Scope = "I", + Type = "E" + }, + new + { + Id = "uan", + ReferenceName = "Kuan", + Scope = "I", + Type = "L" + }, + new + { + Id = "uar", + ReferenceName = "Tairuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "uba", + ReferenceName = "Ubang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubi", + ReferenceName = "Ubi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubl", + ReferenceName = "Buhi'non Bikol", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubr", + ReferenceName = "Ubir", + Scope = "I", + Type = "L" + }, + new + { + Id = "ubu", + ReferenceName = "Umbu-Ungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "uby", + ReferenceName = "Ubykh", + Scope = "I", + Type = "E" + }, + new + { + Id = "uda", + ReferenceName = "Uda", + Scope = "I", + Type = "L" + }, + new + { + Id = "ude", + ReferenceName = "Udihe", + Scope = "I", + Type = "L" + }, + new + { + Id = "udg", + ReferenceName = "Muduga", + Scope = "I", + Type = "L" + }, + new + { + Id = "udi", + ReferenceName = "Udi", + Scope = "I", + Type = "L" + }, + new + { + Id = "udj", + ReferenceName = "Ujir", + Scope = "I", + Type = "L" + }, + new + { + Id = "udl", + ReferenceName = "Wuzlam", + Scope = "I", + Type = "L" + }, + new + { + Id = "udm", + Part2B = "udm", + Part2T = "udm", + ReferenceName = "Udmurt", + Scope = "I", + Type = "L" + }, + new + { + Id = "udu", + ReferenceName = "Uduk", + Scope = "I", + Type = "L" + }, + new + { + Id = "ues", + ReferenceName = "Kioko", + Scope = "I", + Type = "L" + }, + new + { + Id = "ufi", + ReferenceName = "Ufim", + Scope = "I", + Type = "L" + }, + new + { + Id = "uga", + Part2B = "uga", + Part2T = "uga", + ReferenceName = "Ugaritic", + Scope = "I", + Type = "A" + }, + new + { + Id = "ugb", + ReferenceName = "Kuku-Ugbanh", + Scope = "I", + Type = "E" + }, + new + { + Id = "uge", + ReferenceName = "Ughele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ugn", + ReferenceName = "Ugandan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ugo", + ReferenceName = "Ugong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ugy", + ReferenceName = "Uruguayan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "uha", + ReferenceName = "Uhami", + Scope = "I", + Type = "L" + }, + new + { + Id = "uhn", + ReferenceName = "Damal", + Scope = "I", + Type = "L" + }, + new + { + Id = "uig", + Part1 = "ug", + Part2B = "uig", + Part2T = "uig", + ReferenceName = "Uighur", + Scope = "I", + Type = "L" + }, + new + { + Id = "uis", + ReferenceName = "Uisai", + Scope = "I", + Type = "L" + }, + new + { + Id = "uiv", + ReferenceName = "Iyive", + Scope = "I", + Type = "L" + }, + new + { + Id = "uji", + ReferenceName = "Tanjijili", + Scope = "I", + Type = "L" + }, + new + { + Id = "uka", + ReferenceName = "Kaburi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukg", + ReferenceName = "Ukuriguma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukh", + ReferenceName = "Ukhwejo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukk", + ReferenceName = "Muak Sa-aak", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukl", + ReferenceName = "Ukrainian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukp", + ReferenceName = "Ukpe-Bayobiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukq", + ReferenceName = "Ukwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukr", + Part1 = "uk", + Part2B = "ukr", + Part2T = "ukr", + ReferenceName = "Ukrainian", + Scope = "I", + Type = "L" + }, + new + { + Id = "uks", + ReferenceName = "Urubú-Kaapor Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "uku", + ReferenceName = "Ukue", + Scope = "I", + Type = "L" + }, + new + { + Id = "ukw", + ReferenceName = "Ukwuani-Aboh-Ndoni", + Scope = "I", + Type = "L" + }, + new + { + Id = "uky", + ReferenceName = "Kuuk-Yak", + Scope = "I", + Type = "E" + }, + new + { + Id = "ula", + ReferenceName = "Fungwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulb", + ReferenceName = "Ulukwumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulc", + ReferenceName = "Ulch", + Scope = "I", + Type = "L" + }, + new + { + Id = "ule", + ReferenceName = "Lule", + Scope = "I", + Type = "E" + }, + new + { + Id = "ulf", + ReferenceName = "Usku", + Scope = "I", + Type = "L" + }, + new + { + Id = "uli", + ReferenceName = "Ulithian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulk", + ReferenceName = "Meriam Mir", + Scope = "I", + Type = "L" + }, + new + { + Id = "ull", + ReferenceName = "Ullatan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulm", + ReferenceName = "Ulumanda'", + Scope = "I", + Type = "L" + }, + new + { + Id = "uln", + ReferenceName = "Unserdeutsch", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulu", + ReferenceName = "Uma' Lung", + Scope = "I", + Type = "L" + }, + new + { + Id = "ulw", + ReferenceName = "Ulwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "uma", + ReferenceName = "Umatilla", + Scope = "I", + Type = "L" + }, + new + { + Id = "umb", + Part2B = "umb", + Part2T = "umb", + ReferenceName = "Umbundu", + Scope = "I", + Type = "L" + }, + new + { + Id = "umc", + ReferenceName = "Marrucinian", + Scope = "I", + Type = "A" + }, + new + { + Id = "umd", + ReferenceName = "Umbindhamu", + Scope = "I", + Type = "E" + }, + new + { + Id = "umg", + ReferenceName = "Morrobalama", + Scope = "I", + Type = "E" + }, + new + { + Id = "umi", + ReferenceName = "Ukit", + Scope = "I", + Type = "L" + }, + new + { + Id = "umm", + ReferenceName = "Umon", + Scope = "I", + Type = "L" + }, + new + { + Id = "umn", + ReferenceName = "Makyan Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "umo", + ReferenceName = "Umotína", + Scope = "I", + Type = "E" + }, + new + { + Id = "ump", + ReferenceName = "Umpila", + Scope = "I", + Type = "L" + }, + new + { + Id = "umr", + ReferenceName = "Umbugarla", + Scope = "I", + Type = "E" + }, + new + { + Id = "ums", + ReferenceName = "Pendau", + Scope = "I", + Type = "L" + }, + new + { + Id = "umu", + ReferenceName = "Munsee", + Scope = "I", + Type = "L" + }, + new + { + Id = "una", + ReferenceName = "North Watut", + Scope = "I", + Type = "L" + }, + new + { + Id = "und", + Part2B = "und", + Part2T = "und", + ReferenceName = "Undetermined", + Scope = "S", + Type = "S" + }, + new + { + Id = "une", + ReferenceName = "Uneme", + Scope = "I", + Type = "L" + }, + new + { + Id = "ung", + ReferenceName = "Ngarinyin", + Scope = "I", + Type = "L" + }, + new + { + Id = "unk", + ReferenceName = "Enawené-Nawé", + Scope = "I", + Type = "L" + }, + new + { + Id = "unm", + ReferenceName = "Unami", + Scope = "I", + Type = "E" + }, + new + { + Id = "unn", + ReferenceName = "Kurnai", + Scope = "I", + Type = "L" + }, + new + { + Id = "unr", + ReferenceName = "Mundari", + Scope = "I", + Type = "L" + }, + new + { + Id = "unu", + ReferenceName = "Unubahe", + Scope = "I", + Type = "L" + }, + new + { + Id = "unx", + ReferenceName = "Munda", + Scope = "I", + Type = "L" + }, + new + { + Id = "unz", + ReferenceName = "Unde Kaili", + Scope = "I", + Type = "L" + }, + new + { + Id = "upi", + ReferenceName = "Umeda", + Scope = "I", + Type = "L" + }, + new + { + Id = "upv", + ReferenceName = "Uripiv-Wala-Rano-Atchin", + Scope = "I", + Type = "L" + }, + new + { + Id = "ura", + ReferenceName = "Urarina", + Scope = "I", + Type = "L" + }, + new + { + Id = "urb", + ReferenceName = "Urubú-Kaapor", + Scope = "I", + Type = "L" + }, + new + { + Id = "urc", + ReferenceName = "Urningangg", + Scope = "I", + Type = "E" + }, + new + { + Id = "urd", + Part1 = "ur", + Part2B = "urd", + Part2T = "urd", + ReferenceName = "Urdu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ure", + ReferenceName = "Uru", + Scope = "I", + Type = "L" + }, + new + { + Id = "urf", + ReferenceName = "Uradhi", + Scope = "I", + Type = "E" + }, + new + { + Id = "urg", + ReferenceName = "Urigina", + Scope = "I", + Type = "L" + }, + new + { + Id = "urh", + ReferenceName = "Urhobo", + Scope = "I", + Type = "L" + }, + new + { + Id = "uri", + ReferenceName = "Urim", + Scope = "I", + Type = "L" + }, + new + { + Id = "urk", + ReferenceName = "Urak Lawoi'", + Scope = "I", + Type = "L" + }, + new + { + Id = "url", + ReferenceName = "Urali", + Scope = "I", + Type = "L" + }, + new + { + Id = "urm", + ReferenceName = "Urapmin", + Scope = "I", + Type = "L" + }, + new + { + Id = "urn", + ReferenceName = "Uruangnirin", + Scope = "I", + Type = "L" + }, + new + { + Id = "uro", + ReferenceName = "Ura (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "urp", + ReferenceName = "Uru-Pa-In", + Scope = "I", + Type = "L" + }, + new + { + Id = "urr", + ReferenceName = "Lehalurup", + Scope = "I", + Type = "L" + }, + new + { + Id = "urt", + ReferenceName = "Urat", + Scope = "I", + Type = "L" + }, + new + { + Id = "uru", + ReferenceName = "Urumi", + Scope = "I", + Type = "E" + }, + new + { + Id = "urv", + ReferenceName = "Uruava", + Scope = "I", + Type = "E" + }, + new + { + Id = "urw", + ReferenceName = "Sop", + Scope = "I", + Type = "L" + }, + new + { + Id = "urx", + ReferenceName = "Urimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ury", + ReferenceName = "Orya", + Scope = "I", + Type = "L" + }, + new + { + Id = "urz", + ReferenceName = "Uru-Eu-Wau-Wau", + Scope = "I", + Type = "L" + }, + new + { + Id = "usa", + ReferenceName = "Usarufa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ush", + ReferenceName = "Ushojo", + Scope = "I", + Type = "L" + }, + new + { + Id = "usi", + ReferenceName = "Usui", + Scope = "I", + Type = "L" + }, + new + { + Id = "usk", + ReferenceName = "Usaghade", + Scope = "I", + Type = "L" + }, + new + { + Id = "usp", + ReferenceName = "Uspanteco", + Scope = "I", + Type = "L" + }, + new + { + Id = "uss", + ReferenceName = "us-Saare", + Scope = "I", + Type = "L" + }, + new + { + Id = "usu", + ReferenceName = "Uya", + Scope = "I", + Type = "L" + }, + new + { + Id = "uta", + ReferenceName = "Otank", + Scope = "I", + Type = "L" + }, + new + { + Id = "ute", + ReferenceName = "Ute-Southern Paiute", + Scope = "I", + Type = "L" + }, + new + { + Id = "uth", + ReferenceName = "ut-Hun", + Scope = "I", + Type = "L" + }, + new + { + Id = "utp", + ReferenceName = "Amba (Solomon Islands)", + Scope = "I", + Type = "L" + }, + new + { + Id = "utr", + ReferenceName = "Etulo", + Scope = "I", + Type = "L" + }, + new + { + Id = "utu", + ReferenceName = "Utu", + Scope = "I", + Type = "L" + }, + new + { + Id = "uum", + ReferenceName = "Urum", + Scope = "I", + Type = "L" + }, + new + { + Id = "uun", + ReferenceName = "Kulon-Pazeh", + Scope = "I", + Type = "L" + }, + new + { + Id = "uur", + ReferenceName = "Ura (Vanuatu)", + Scope = "I", + Type = "L" + }, + new + { + Id = "uuu", + ReferenceName = "U", + Scope = "I", + Type = "L" + }, + new + { + Id = "uve", + ReferenceName = "West Uvean", + Scope = "I", + Type = "L" + }, + new + { + Id = "uvh", + ReferenceName = "Uri", + Scope = "I", + Type = "L" + }, + new + { + Id = "uvl", + ReferenceName = "Lote", + Scope = "I", + Type = "L" + }, + new + { + Id = "uwa", + ReferenceName = "Kuku-Uwanh", + Scope = "I", + Type = "L" + }, + new + { + Id = "uya", + ReferenceName = "Doko-Uyanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "uzb", + Part1 = "uz", + Part2B = "uzb", + Part2T = "uzb", + ReferenceName = "Uzbek", + Scope = "M", + Type = "L" + }, + new + { + Id = "uzn", + ReferenceName = "Northern Uzbek", + Scope = "I", + Type = "L" + }, + new + { + Id = "uzs", + ReferenceName = "Southern Uzbek", + Scope = "I", + Type = "L" + }, + new + { + Id = "vaa", + ReferenceName = "Vaagri Booli", + Scope = "I", + Type = "L" + }, + new + { + Id = "vae", + ReferenceName = "Vale", + Scope = "I", + Type = "L" + }, + new + { + Id = "vaf", + ReferenceName = "Vafsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "vag", + ReferenceName = "Vagla", + Scope = "I", + Type = "L" + }, + new + { + Id = "vah", + ReferenceName = "Varhadi-Nagpuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "vai", + Part2B = "vai", + Part2T = "vai", + ReferenceName = "Vai", + Scope = "I", + Type = "L" + }, + new + { + Id = "vaj", + ReferenceName = "Sekele", + Scope = "I", + Type = "L" + }, + new + { + Id = "val", + ReferenceName = "Vehes", + Scope = "I", + Type = "L" + }, + new + { + Id = "vam", + ReferenceName = "Vanimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "van", + ReferenceName = "Valman", + Scope = "I", + Type = "L" + }, + new + { + Id = "vao", + ReferenceName = "Vao", + Scope = "I", + Type = "L" + }, + new + { + Id = "vap", + ReferenceName = "Vaiphei", + Scope = "I", + Type = "L" + }, + new + { + Id = "var", + ReferenceName = "Huarijio", + Scope = "I", + Type = "L" + }, + new + { + Id = "vas", + ReferenceName = "Vasavi", + Scope = "I", + Type = "L" + }, + new + { + Id = "vau", + ReferenceName = "Vanuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "vav", + ReferenceName = "Varli", + Scope = "I", + Type = "L" + }, + new + { + Id = "vay", + ReferenceName = "Wayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vbb", + ReferenceName = "Southeast Babar", + Scope = "I", + Type = "L" + }, + new + { + Id = "vbk", + ReferenceName = "Southwestern Bontok", + Scope = "I", + Type = "L" + }, + new + { + Id = "vec", + ReferenceName = "Venetian", + Scope = "I", + Type = "L" + }, + new + { + Id = "ved", + ReferenceName = "Veddah", + Scope = "I", + Type = "L" + }, + new + { + Id = "vel", + ReferenceName = "Veluws", + Scope = "I", + Type = "L" + }, + new + { + Id = "vem", + ReferenceName = "Vemgo-Mabas", + Scope = "I", + Type = "L" + }, + new + { + Id = "ven", + Part1 = "ve", + Part2B = "ven", + Part2T = "ven", + ReferenceName = "Venda", + Scope = "I", + Type = "L" + }, + new + { + Id = "veo", + ReferenceName = "Ventureño", + Scope = "I", + Type = "E" + }, + new + { + Id = "vep", + ReferenceName = "Veps", + Scope = "I", + Type = "L" + }, + new + { + Id = "ver", + ReferenceName = "Mom Jango", + Scope = "I", + Type = "L" + }, + new + { + Id = "vgr", + ReferenceName = "Vaghri", + Scope = "I", + Type = "L" + }, + new + { + Id = "vgt", + ReferenceName = "Vlaamse Gebarentaal", + Scope = "I", + Type = "L" + }, + new + { + Id = "vic", + ReferenceName = "Virgin Islands Creole English", + Scope = "I", + Type = "L" + }, + new + { + Id = "vid", + ReferenceName = "Vidunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "vie", + Part1 = "vi", + Part2B = "vie", + Part2T = "vie", + ReferenceName = "Vietnamese", + Scope = "I", + Type = "L" + }, + new + { + Id = "vif", + ReferenceName = "Vili", + Scope = "I", + Type = "L" + }, + new + { + Id = "vig", + ReferenceName = "Viemo", + Scope = "I", + Type = "L" + }, + new + { + Id = "vil", + ReferenceName = "Vilela", + Scope = "I", + Type = "L" + }, + new + { + Id = "vin", + ReferenceName = "Vinza", + Scope = "I", + Type = "L" + }, + new + { + Id = "vis", + ReferenceName = "Vishavan", + Scope = "I", + Type = "L" + }, + new + { + Id = "vit", + ReferenceName = "Viti", + Scope = "I", + Type = "L" + }, + new + { + Id = "viv", + ReferenceName = "Iduna", + Scope = "I", + Type = "L" + }, + new + { + Id = "vka", + ReferenceName = "Kariyarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "vki", + ReferenceName = "Ija-Zuba", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkj", + ReferenceName = "Kujarge", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkk", + ReferenceName = "Kaur", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkl", + ReferenceName = "Kulisusu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkm", + ReferenceName = "Kamakan", + Scope = "I", + Type = "E" + }, + new + { + Id = "vko", + ReferenceName = "Kodeoha", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkp", + ReferenceName = "Korlai Creole Portuguese", + Scope = "I", + Type = "L" + }, + new + { + Id = "vkt", + ReferenceName = "Tenggarong Kutai Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "vku", + ReferenceName = "Kurrama", + Scope = "I", + Type = "L" + }, + new + { + Id = "vlp", + ReferenceName = "Valpei", + Scope = "I", + Type = "L" + }, + new + { + Id = "vls", + ReferenceName = "Vlaams", + Scope = "I", + Type = "L" + }, + new + { + Id = "vma", + ReferenceName = "Martuyhunira", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmb", + ReferenceName = "Barbaram", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmc", + ReferenceName = "Juxtlahuaca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmd", + ReferenceName = "Mudu Koraga", + Scope = "I", + Type = "L" + }, + new + { + Id = "vme", + ReferenceName = "East Masela", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmf", + ReferenceName = "Mainfränkisch", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmg", + ReferenceName = "Lungalunga", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmh", + ReferenceName = "Maraghei", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmi", + ReferenceName = "Miwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmj", + ReferenceName = "Ixtayutla Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmk", + ReferenceName = "Makhuwa-Shirima", + Scope = "I", + Type = "L" + }, + new + { + Id = "vml", + ReferenceName = "Malgana", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmm", + ReferenceName = "Mitlatongo Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmp", + ReferenceName = "Soyaltepec Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmq", + ReferenceName = "Soyaltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmr", + ReferenceName = "Marenje", + Scope = "I", + Type = "L" + }, + new + { + Id = "vms", + ReferenceName = "Moksela", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmu", + ReferenceName = "Muluridyi", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmv", + ReferenceName = "Valley Maidu", + Scope = "I", + Type = "E" + }, + new + { + Id = "vmw", + ReferenceName = "Makhuwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmx", + ReferenceName = "Tamazola Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmy", + ReferenceName = "Ayautla Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vmz", + ReferenceName = "Mazatlán Mazatec", + Scope = "I", + Type = "L" + }, + new + { + Id = "vnk", + ReferenceName = "Vano", + Scope = "I", + Type = "L" + }, + new + { + Id = "vnm", + ReferenceName = "Vinmavis", + Scope = "I", + Type = "L" + }, + new + { + Id = "vnp", + ReferenceName = "Vunapu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vol", + Part1 = "vo", + Part2B = "vol", + Part2T = "vol", + ReferenceName = "Volapük", + Scope = "I", + Type = "C" + }, + new + { + Id = "vor", + ReferenceName = "Voro", + Scope = "I", + Type = "L" + }, + new + { + Id = "vot", + Part2B = "vot", + Part2T = "vot", + ReferenceName = "Votic", + Scope = "I", + Type = "L" + }, + new + { + Id = "vra", + ReferenceName = "Vera'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "vro", + ReferenceName = "Võro", + Scope = "I", + Type = "L" + }, + new + { + Id = "vrs", + ReferenceName = "Varisi", + Scope = "I", + Type = "L" + }, + new + { + Id = "vrt", + ReferenceName = "Burmbar", + Scope = "I", + Type = "L" + }, + new + { + Id = "vsi", + ReferenceName = "Moldova Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "vsl", + ReferenceName = "Venezuelan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "vsv", + ReferenceName = "Valencian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "vto", + ReferenceName = "Vitou", + Scope = "I", + Type = "L" + }, + new + { + Id = "vum", + ReferenceName = "Vumbu", + Scope = "I", + Type = "L" + }, + new + { + Id = "vun", + ReferenceName = "Vunjo", + Scope = "I", + Type = "L" + }, + new + { + Id = "vut", + ReferenceName = "Vute", + Scope = "I", + Type = "L" + }, + new + { + Id = "vwa", + ReferenceName = "Awa (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "waa", + ReferenceName = "Walla Walla", + Scope = "I", + Type = "L" + }, + new + { + Id = "wab", + ReferenceName = "Wab", + Scope = "I", + Type = "L" + }, + new + { + Id = "wac", + ReferenceName = "Wasco-Wishram", + Scope = "I", + Type = "E" + }, + new + { + Id = "wad", + ReferenceName = "Wandamen", + Scope = "I", + Type = "L" + }, + new + { + Id = "wae", + ReferenceName = "Walser", + Scope = "I", + Type = "L" + }, + new + { + Id = "waf", + ReferenceName = "Wakoná", + Scope = "I", + Type = "E" + }, + new + { + Id = "wag", + ReferenceName = "Wa'ema", + Scope = "I", + Type = "L" + }, + new + { + Id = "wah", + ReferenceName = "Watubela", + Scope = "I", + Type = "L" + }, + new + { + Id = "wai", + ReferenceName = "Wares", + Scope = "I", + Type = "L" + }, + new + { + Id = "waj", + ReferenceName = "Waffa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wal", + Part2B = "wal", + Part2T = "wal", + ReferenceName = "Wolaytta", + Scope = "I", + Type = "L" + }, + new + { + Id = "wam", + ReferenceName = "Wampanoag", + Scope = "I", + Type = "E" + }, + new + { + Id = "wan", + ReferenceName = "Wan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wao", + ReferenceName = "Wappo", + Scope = "I", + Type = "E" + }, + new + { + Id = "wap", + ReferenceName = "Wapishana", + Scope = "I", + Type = "L" + }, + new + { + Id = "waq", + ReferenceName = "Wagiman", + Scope = "I", + Type = "L" + }, + new + { + Id = "war", + Part2B = "war", + Part2T = "war", + ReferenceName = "Waray (Philippines)", + Scope = "I", + Type = "L" + }, + new + { + Id = "was", + Part2B = "was", + Part2T = "was", + ReferenceName = "Washo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wat", + ReferenceName = "Kaninuwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wau", + ReferenceName = "Waurá", + Scope = "I", + Type = "L" + }, + new + { + Id = "wav", + ReferenceName = "Waka", + Scope = "I", + Type = "L" + }, + new + { + Id = "waw", + ReferenceName = "Waiwai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wax", + ReferenceName = "Watam", + Scope = "I", + Type = "L" + }, + new + { + Id = "way", + ReferenceName = "Wayana", + Scope = "I", + Type = "L" + }, + new + { + Id = "waz", + ReferenceName = "Wampur", + Scope = "I", + Type = "L" + }, + new + { + Id = "wba", + ReferenceName = "Warao", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbb", + ReferenceName = "Wabo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbe", + ReferenceName = "Waritai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbf", + ReferenceName = "Wara", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbh", + ReferenceName = "Wanda", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbi", + ReferenceName = "Vwanji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbj", + ReferenceName = "Alagwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbk", + ReferenceName = "Waigali", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbl", + ReferenceName = "Wakhi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbm", + ReferenceName = "Wa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbp", + ReferenceName = "Warlpiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbq", + ReferenceName = "Waddar", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbr", + ReferenceName = "Wagdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbs", + ReferenceName = "West Bengal Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbt", + ReferenceName = "Warnman", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbv", + ReferenceName = "Wajarri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wbw", + ReferenceName = "Woi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wca", + ReferenceName = "Yanomámi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wci", + ReferenceName = "Waci Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdd", + ReferenceName = "Wandji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdg", + ReferenceName = "Wadaginam", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdj", + ReferenceName = "Wadjiginy", + Scope = "I", + Type = "L" + }, + new + { + Id = "wdk", + ReferenceName = "Wadikali", + Scope = "I", + Type = "E" + }, + new + { + Id = "wdu", + ReferenceName = "Wadjigu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wdy", + ReferenceName = "Wadjabangayi", + Scope = "I", + Type = "E" + }, + new + { + Id = "wea", + ReferenceName = "Wewaw", + Scope = "I", + Type = "E" + }, + new + { + Id = "wec", + ReferenceName = "Wè Western", + Scope = "I", + Type = "L" + }, + new + { + Id = "wed", + ReferenceName = "Wedau", + Scope = "I", + Type = "L" + }, + new + { + Id = "weg", + ReferenceName = "Wergaia", + Scope = "I", + Type = "L" + }, + new + { + Id = "weh", + ReferenceName = "Weh", + Scope = "I", + Type = "L" + }, + new + { + Id = "wei", + ReferenceName = "Kiunum", + Scope = "I", + Type = "L" + }, + new + { + Id = "wem", + ReferenceName = "Weme Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "weo", + ReferenceName = "Wemale", + Scope = "I", + Type = "L" + }, + new + { + Id = "wep", + ReferenceName = "Westphalien", + Scope = "I", + Type = "L" + }, + new + { + Id = "wer", + ReferenceName = "Weri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wes", + ReferenceName = "Cameroon Pidgin", + Scope = "I", + Type = "L" + }, + new + { + Id = "wet", + ReferenceName = "Perai", + Scope = "I", + Type = "L" + }, + new + { + Id = "weu", + ReferenceName = "Rawngtu Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "wew", + ReferenceName = "Wejewa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wfg", + ReferenceName = "Yafi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wga", + ReferenceName = "Wagaya", + Scope = "I", + Type = "E" + }, + new + { + Id = "wgb", + ReferenceName = "Wagawaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "wgg", + ReferenceName = "Wangkangurru", + Scope = "I", + Type = "E" + }, + new + { + Id = "wgi", + ReferenceName = "Wahgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wgo", + ReferenceName = "Waigeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wgu", + ReferenceName = "Wirangu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wgy", + ReferenceName = "Warrgamay", + Scope = "I", + Type = "L" + }, + new + { + Id = "wha", + ReferenceName = "Sou Upaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "whg", + ReferenceName = "North Wahgi", + Scope = "I", + Type = "L" + }, + new + { + Id = "whk", + ReferenceName = "Wahau Kenyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "whu", + ReferenceName = "Wahau Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wib", + ReferenceName = "Southern Toussian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wic", + ReferenceName = "Wichita", + Scope = "I", + Type = "E" + }, + new + { + Id = "wie", + ReferenceName = "Wik-Epa", + Scope = "I", + Type = "E" + }, + new + { + Id = "wif", + ReferenceName = "Wik-Keyangan", + Scope = "I", + Type = "E" + }, + new + { + Id = "wig", + ReferenceName = "Wik Ngathan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wih", + ReferenceName = "Wik-Me'anha", + Scope = "I", + Type = "L" + }, + new + { + Id = "wii", + ReferenceName = "Minidien", + Scope = "I", + Type = "L" + }, + new + { + Id = "wij", + ReferenceName = "Wik-Iiyanh", + Scope = "I", + Type = "L" + }, + new + { + Id = "wik", + ReferenceName = "Wikalkan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wil", + ReferenceName = "Wilawila", + Scope = "I", + Type = "E" + }, + new + { + Id = "wim", + ReferenceName = "Wik-Mungkan", + Scope = "I", + Type = "L" + }, + new + { + Id = "win", + ReferenceName = "Ho-Chunk", + Scope = "I", + Type = "L" + }, + new + { + Id = "wir", + ReferenceName = "Wiraféd", + Scope = "I", + Type = "E" + }, + new + { + Id = "wiu", + ReferenceName = "Wiru", + Scope = "I", + Type = "L" + }, + new + { + Id = "wiv", + ReferenceName = "Vitu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wiy", + ReferenceName = "Wiyot", + Scope = "I", + Type = "E" + }, + new + { + Id = "wja", + ReferenceName = "Waja", + Scope = "I", + Type = "L" + }, + new + { + Id = "wji", + ReferenceName = "Warji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wka", + ReferenceName = "Kw'adza", + Scope = "I", + Type = "E" + }, + new + { + Id = "wkb", + ReferenceName = "Kumbaran", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkd", + ReferenceName = "Wakde", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkl", + ReferenceName = "Kalanadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkr", + ReferenceName = "Keerray-Woorroong", + Scope = "I", + Type = "L" + }, + new + { + Id = "wku", + ReferenceName = "Kunduvadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wkw", + ReferenceName = "Wakawaka", + Scope = "I", + Type = "E" + }, + new + { + Id = "wky", + ReferenceName = "Wangkayutyuru", + Scope = "I", + Type = "E" + }, + new + { + Id = "wla", + ReferenceName = "Walio", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlc", + ReferenceName = "Mwali Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wle", + ReferenceName = "Wolane", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlg", + ReferenceName = "Kunbarlang", + Scope = "I", + Type = "L" + }, + new + { + Id = "wli", + ReferenceName = "Waioli", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlk", + ReferenceName = "Wailaki", + Scope = "I", + Type = "E" + }, + new + { + Id = "wll", + ReferenceName = "Wali (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlm", + ReferenceName = "Middle Welsh", + Scope = "I", + Type = "H" + }, + new + { + Id = "wln", + Part1 = "wa", + Part2B = "wln", + Part2T = "wln", + ReferenceName = "Walloon", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlo", + ReferenceName = "Wolio", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlr", + ReferenceName = "Wailapa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wls", + ReferenceName = "Wallisian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlu", + ReferenceName = "Wuliwuli", + Scope = "I", + Type = "E" + }, + new + { + Id = "wlv", + ReferenceName = "Wichí Lhamtés Vejoz", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlw", + ReferenceName = "Walak", + Scope = "I", + Type = "L" + }, + new + { + Id = "wlx", + ReferenceName = "Wali (Ghana)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wly", + ReferenceName = "Waling", + Scope = "I", + Type = "E" + }, + new + { + Id = "wma", + ReferenceName = "Mawa (Nigeria)", + Scope = "I", + Type = "E" + }, + new + { + Id = "wmb", + ReferenceName = "Wambaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmc", + ReferenceName = "Wamas", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmd", + ReferenceName = "Mamaindé", + Scope = "I", + Type = "L" + }, + new + { + Id = "wme", + ReferenceName = "Wambule", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmh", + ReferenceName = "Waima'a", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmi", + ReferenceName = "Wamin", + Scope = "I", + Type = "E" + }, + new + { + Id = "wmm", + ReferenceName = "Maiwa (Indonesia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmn", + ReferenceName = "Waamwang", + Scope = "I", + Type = "E" + }, + new + { + Id = "wmo", + ReferenceName = "Wom (Papua New Guinea)", + Scope = "I", + Type = "L" + }, + new + { + Id = "wms", + ReferenceName = "Wambon", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmt", + ReferenceName = "Walmajarri", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmw", + ReferenceName = "Mwani", + Scope = "I", + Type = "L" + }, + new + { + Id = "wmx", + ReferenceName = "Womo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnb", + ReferenceName = "Wanambre", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnc", + ReferenceName = "Wantoat", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnd", + ReferenceName = "Wandarang", + Scope = "I", + Type = "E" + }, + new + { + Id = "wne", + ReferenceName = "Waneci", + Scope = "I", + Type = "L" + }, + new + { + Id = "wng", + ReferenceName = "Wanggom", + Scope = "I", + Type = "L" + }, + new + { + Id = "wni", + ReferenceName = "Ndzwani Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnk", + ReferenceName = "Wanukaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnm", + ReferenceName = "Wanggamala", + Scope = "I", + Type = "E" + }, + new + { + Id = "wnn", + ReferenceName = "Wunumara", + Scope = "I", + Type = "E" + }, + new + { + Id = "wno", + ReferenceName = "Wano", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnp", + ReferenceName = "Wanap", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnu", + ReferenceName = "Usan", + Scope = "I", + Type = "L" + }, + new + { + Id = "wnw", + ReferenceName = "Wintu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wny", + ReferenceName = "Wanyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "woa", + ReferenceName = "Kuwema", + Scope = "I", + Type = "L" + }, + new + { + Id = "wob", + ReferenceName = "Wè Northern", + Scope = "I", + Type = "L" + }, + new + { + Id = "woc", + ReferenceName = "Wogeo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wod", + ReferenceName = "Wolani", + Scope = "I", + Type = "L" + }, + new + { + Id = "woe", + ReferenceName = "Woleaian", + Scope = "I", + Type = "L" + }, + new + { + Id = "wof", + ReferenceName = "Gambian Wolof", + Scope = "I", + Type = "L" + }, + new + { + Id = "wog", + ReferenceName = "Wogamusin", + Scope = "I", + Type = "L" + }, + new + { + Id = "woi", + ReferenceName = "Kamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "wok", + ReferenceName = "Longto", + Scope = "I", + Type = "L" + }, + new + { + Id = "wol", + Part1 = "wo", + Part2B = "wol", + Part2T = "wol", + ReferenceName = "Wolof", + Scope = "I", + Type = "L" + }, + new + { + Id = "wom", + ReferenceName = "Wom (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "won", + ReferenceName = "Wongo", + Scope = "I", + Type = "L" + }, + new + { + Id = "woo", + ReferenceName = "Manombai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wor", + ReferenceName = "Woria", + Scope = "I", + Type = "L" + }, + new + { + Id = "wos", + ReferenceName = "Hanga Hundi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wow", + ReferenceName = "Wawonii", + Scope = "I", + Type = "L" + }, + new + { + Id = "woy", + ReferenceName = "Weyto", + Scope = "I", + Type = "E" + }, + new + { + Id = "wpc", + ReferenceName = "Maco", + Scope = "I", + Type = "L" + }, + new + { + Id = "wra", + ReferenceName = "Warapu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrb", + ReferenceName = "Waluwarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrd", + ReferenceName = "Warduji", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrg", + ReferenceName = "Warungu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrh", + ReferenceName = "Wiradjuri", + Scope = "I", + Type = "E" + }, + new + { + Id = "wri", + ReferenceName = "Wariyangga", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrk", + ReferenceName = "Garrwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrl", + ReferenceName = "Warlmanpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrm", + ReferenceName = "Warumungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrn", + ReferenceName = "Warnang", + Scope = "I", + Type = "L" + }, + new + { + Id = "wro", + ReferenceName = "Worrorra", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrp", + ReferenceName = "Waropen", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrr", + ReferenceName = "Wardaman", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrs", + ReferenceName = "Waris", + Scope = "I", + Type = "L" + }, + new + { + Id = "wru", + ReferenceName = "Waru", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrv", + ReferenceName = "Waruna", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrw", + ReferenceName = "Gugu Warra", + Scope = "I", + Type = "E" + }, + new + { + Id = "wrx", + ReferenceName = "Wae Rana", + Scope = "I", + Type = "L" + }, + new + { + Id = "wry", + ReferenceName = "Merwari", + Scope = "I", + Type = "L" + }, + new + { + Id = "wrz", + ReferenceName = "Waray (Australia)", + Scope = "I", + Type = "E" + }, + new + { + Id = "wsa", + ReferenceName = "Warembori", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsg", + ReferenceName = "Adilabad Gondi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsi", + ReferenceName = "Wusi", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsk", + ReferenceName = "Waskia", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsr", + ReferenceName = "Owenia", + Scope = "I", + Type = "L" + }, + new + { + Id = "wss", + ReferenceName = "Wasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wsu", + ReferenceName = "Wasu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wsv", + ReferenceName = "Wotapuri-Katarqalai", + Scope = "I", + Type = "E" + }, + new + { + Id = "wtf", + ReferenceName = "Watiwa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wth", + ReferenceName = "Wathawurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "wti", + ReferenceName = "Berta", + Scope = "I", + Type = "L" + }, + new + { + Id = "wtk", + ReferenceName = "Watakataui", + Scope = "I", + Type = "L" + }, + new + { + Id = "wtm", + ReferenceName = "Mewati", + Scope = "I", + Type = "L" + }, + new + { + Id = "wtw", + ReferenceName = "Wotu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wua", + ReferenceName = "Wikngenchera", + Scope = "I", + Type = "L" + }, + new + { + Id = "wub", + ReferenceName = "Wunambal", + Scope = "I", + Type = "L" + }, + new + { + Id = "wud", + ReferenceName = "Wudu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuh", + ReferenceName = "Wutunhua", + Scope = "I", + Type = "L" + }, + new + { + Id = "wul", + ReferenceName = "Silimo", + Scope = "I", + Type = "L" + }, + new + { + Id = "wum", + ReferenceName = "Wumbvu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wun", + ReferenceName = "Bungu", + Scope = "I", + Type = "L" + }, + new + { + Id = "wur", + ReferenceName = "Wurrugu", + Scope = "I", + Type = "E" + }, + new + { + Id = "wut", + ReferenceName = "Wutung", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuu", + ReferenceName = "Wu Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuv", + ReferenceName = "Wuvulu-Aua", + Scope = "I", + Type = "L" + }, + new + { + Id = "wux", + ReferenceName = "Wulna", + Scope = "I", + Type = "L" + }, + new + { + Id = "wuy", + ReferenceName = "Wauyai", + Scope = "I", + Type = "L" + }, + new + { + Id = "wwa", + ReferenceName = "Waama", + Scope = "I", + Type = "L" + }, + new + { + Id = "wwb", + ReferenceName = "Wakabunga", + Scope = "I", + Type = "E" + }, + new + { + Id = "wwo", + ReferenceName = "Wetamut", + Scope = "I", + Type = "L" + }, + new + { + Id = "wwr", + ReferenceName = "Warrwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "www", + ReferenceName = "Wawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wxa", + ReferenceName = "Waxianghua", + Scope = "I", + Type = "L" + }, + new + { + Id = "wxw", + ReferenceName = "Wardandi", + Scope = "I", + Type = "E" + }, + new + { + Id = "wya", + ReferenceName = "Wyandot", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyb", + ReferenceName = "Wangaaybuwan-Ngiyambaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyi", + ReferenceName = "Woiwurrung", + Scope = "I", + Type = "E" + }, + new + { + Id = "wym", + ReferenceName = "Wymysorys", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyr", + ReferenceName = "Wayoró", + Scope = "I", + Type = "L" + }, + new + { + Id = "wyy", + ReferenceName = "Western Fijian", + Scope = "I", + Type = "L" + }, + new + { + Id = "xaa", + ReferenceName = "Andalusian Arabic", + Scope = "I", + Type = "H" + }, + new + { + Id = "xab", + ReferenceName = "Sambe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xac", + ReferenceName = "Kachari", + Scope = "I", + Type = "L" + }, + new + { + Id = "xad", + ReferenceName = "Adai", + Scope = "I", + Type = "E" + }, + new + { + Id = "xae", + ReferenceName = "Aequian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xag", + ReferenceName = "Aghwan", + Scope = "I", + Type = "A" + }, + new + { + Id = "xai", + ReferenceName = "Kaimbé", + Scope = "I", + Type = "E" + }, + new + { + Id = "xaj", + ReferenceName = "Ararandewára", + Scope = "I", + Type = "E" + }, + new + { + Id = "xak", + ReferenceName = "Máku", + Scope = "I", + Type = "E" + }, + new + { + Id = "xal", + Part2B = "xal", + Part2T = "xal", + ReferenceName = "Kalmyk", + Scope = "I", + Type = "L" + }, + new + { + Id = "xam", + ReferenceName = "ǀXam", + Scope = "I", + Type = "E" + }, + new + { + Id = "xan", + ReferenceName = "Xamtanga", + Scope = "I", + Type = "L" + }, + new + { + Id = "xao", + ReferenceName = "Khao", + Scope = "I", + Type = "L" + }, + new + { + Id = "xap", + ReferenceName = "Apalachee", + Scope = "I", + Type = "E" + }, + new + { + Id = "xaq", + ReferenceName = "Aquitanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xar", + ReferenceName = "Karami", + Scope = "I", + Type = "E" + }, + new + { + Id = "xas", + ReferenceName = "Kamas", + Scope = "I", + Type = "E" + }, + new + { + Id = "xat", + ReferenceName = "Katawixi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xau", + ReferenceName = "Kauwera", + Scope = "I", + Type = "L" + }, + new + { + Id = "xav", + ReferenceName = "Xavánte", + Scope = "I", + Type = "L" + }, + new + { + Id = "xaw", + ReferenceName = "Kawaiisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xay", + ReferenceName = "Kayan Mahakam", + Scope = "I", + Type = "L" + }, + new + { + Id = "xbb", + ReferenceName = "Lower Burdekin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbc", + ReferenceName = "Bactrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xbd", + ReferenceName = "Bindal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbe", + ReferenceName = "Bigambal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbg", + ReferenceName = "Bunganditj", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbi", + ReferenceName = "Kombio", + Scope = "I", + Type = "L" + }, + new + { + Id = "xbj", + ReferenceName = "Birrpayi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbm", + ReferenceName = "Middle Breton", + Scope = "I", + Type = "H" + }, + new + { + Id = "xbn", + ReferenceName = "Kenaboi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbo", + ReferenceName = "Bolgarian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xbp", + ReferenceName = "Bibbulman", + Scope = "I", + Type = "E" + }, + new + { + Id = "xbr", + ReferenceName = "Kambera", + Scope = "I", + Type = "L" + }, + new + { + Id = "xbw", + ReferenceName = "Kambiwá", + Scope = "I", + Type = "E" + }, + new + { + Id = "xby", + ReferenceName = "Batjala", + Scope = "I", + Type = "L" + }, + new + { + Id = "xcb", + ReferenceName = "Cumbric", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcc", + ReferenceName = "Camunic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xce", + ReferenceName = "Celtiberian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xcg", + ReferenceName = "Cisalpine Gaulish", + Scope = "I", + Type = "A" + }, + new + { + Id = "xch", + ReferenceName = "Chemakum", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcl", + ReferenceName = "Classical Armenian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcm", + ReferenceName = "Comecrudo", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcn", + ReferenceName = "Cotoname", + Scope = "I", + Type = "E" + }, + new + { + Id = "xco", + ReferenceName = "Chorasmian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xcr", + ReferenceName = "Carian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xct", + ReferenceName = "Classical Tibetan", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcu", + ReferenceName = "Curonian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xcv", + ReferenceName = "Chuvantsy", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcw", + ReferenceName = "Coahuilteco", + Scope = "I", + Type = "E" + }, + new + { + Id = "xcy", + ReferenceName = "Cayuse", + Scope = "I", + Type = "E" + }, + new + { + Id = "xda", + ReferenceName = "Darkinyung", + Scope = "I", + Type = "L" + }, + new + { + Id = "xdc", + ReferenceName = "Dacian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xdk", + ReferenceName = "Dharuk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xdm", + ReferenceName = "Edomite", + Scope = "I", + Type = "A" + }, + new + { + Id = "xdo", + ReferenceName = "Kwandu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xdy", + ReferenceName = "Malayic Dayak", + Scope = "I", + Type = "L" + }, + new + { + Id = "xeb", + ReferenceName = "Eblan", + Scope = "I", + Type = "A" + }, + new + { + Id = "xed", + ReferenceName = "Hdi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xeg", + ReferenceName = "ǁXegwi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xel", + ReferenceName = "Kelo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xem", + ReferenceName = "Kembayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xep", + ReferenceName = "Epi-Olmec", + Scope = "I", + Type = "A" + }, + new + { + Id = "xer", + ReferenceName = "Xerénte", + Scope = "I", + Type = "L" + }, + new + { + Id = "xes", + ReferenceName = "Kesawai", + Scope = "I", + Type = "L" + }, + new + { + Id = "xet", + ReferenceName = "Xetá", + Scope = "I", + Type = "L" + }, + new + { + Id = "xeu", + ReferenceName = "Keoru-Ahia", + Scope = "I", + Type = "L" + }, + new + { + Id = "xfa", + ReferenceName = "Faliscan", + Scope = "I", + Type = "A" + }, + new + { + Id = "xga", + ReferenceName = "Galatian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xgb", + ReferenceName = "Gbin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgd", + ReferenceName = "Gudang", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgf", + ReferenceName = "Gabrielino-Fernandeño", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgg", + ReferenceName = "Goreng", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgi", + ReferenceName = "Garingbal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgl", + ReferenceName = "Galindan", + Scope = "I", + Type = "H" + }, + new + { + Id = "xgm", + ReferenceName = "Dharumbal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgr", + ReferenceName = "Garza", + Scope = "I", + Type = "E" + }, + new + { + Id = "xgu", + ReferenceName = "Unggumi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xgw", + ReferenceName = "Guwa", + Scope = "I", + Type = "E" + }, + new + { + Id = "xha", + ReferenceName = "Harami", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhc", + ReferenceName = "Hunnic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhd", + ReferenceName = "Hadrami", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhe", + ReferenceName = "Khetrani", + Scope = "I", + Type = "L" + }, + new + { + Id = "xho", + Part1 = "xh", + Part2B = "xho", + Part2T = "xho", + ReferenceName = "Xhosa", + Scope = "I", + Type = "L" + }, + new + { + Id = "xhr", + ReferenceName = "Hernican", + Scope = "I", + Type = "A" + }, + new + { + Id = "xht", + ReferenceName = "Hattic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhu", + ReferenceName = "Hurrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xhv", + ReferenceName = "Khua", + Scope = "I", + Type = "L" + }, + new + { + Id = "xib", + ReferenceName = "Iberian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xii", + ReferenceName = "Xiri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xil", + ReferenceName = "Illyrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xin", + ReferenceName = "Xinca", + Scope = "I", + Type = "E" + }, + new + { + Id = "xir", + ReferenceName = "Xiriâna", + Scope = "I", + Type = "E" + }, + new + { + Id = "xis", + ReferenceName = "Kisan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xiv", + ReferenceName = "Indus Valley Language", + Scope = "I", + Type = "A" + }, + new + { + Id = "xiy", + ReferenceName = "Xipaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "xjb", + ReferenceName = "Minjungbal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xjt", + ReferenceName = "Jaitmatang", + Scope = "I", + Type = "E" + }, + new + { + Id = "xka", + ReferenceName = "Kalkoti", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkb", + ReferenceName = "Northern Nago", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkc", + ReferenceName = "Kho'ini", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkd", + ReferenceName = "Mendalam Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xke", + ReferenceName = "Kereho", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkf", + ReferenceName = "Khengkha", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkg", + ReferenceName = "Kagoro", + Scope = "I", + Type = "L" + }, + new + { + Id = "xki", + ReferenceName = "Kenyan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkj", + ReferenceName = "Kajali", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkk", + ReferenceName = "Kaco'", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkl", + ReferenceName = "Mainstream Kenyah", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkn", + ReferenceName = "Kayan River Kayan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xko", + ReferenceName = "Kiorr", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkp", + ReferenceName = "Kabatei", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkq", + ReferenceName = "Koroni", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkr", + ReferenceName = "Xakriabá", + Scope = "I", + Type = "E" + }, + new + { + Id = "xks", + ReferenceName = "Kumbewaha", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkt", + ReferenceName = "Kantosi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xku", + ReferenceName = "Kaamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkv", + ReferenceName = "Kgalagadi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkw", + ReferenceName = "Kembra", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkx", + ReferenceName = "Karore", + Scope = "I", + Type = "L" + }, + new + { + Id = "xky", + ReferenceName = "Uma' Lasan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xkz", + ReferenceName = "Kurtokha", + Scope = "I", + Type = "L" + }, + new + { + Id = "xla", + ReferenceName = "Kamula", + Scope = "I", + Type = "L" + }, + new + { + Id = "xlb", + ReferenceName = "Loup B", + Scope = "I", + Type = "E" + }, + new + { + Id = "xlc", + ReferenceName = "Lycian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xld", + ReferenceName = "Lydian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xle", + ReferenceName = "Lemnian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xlg", + ReferenceName = "Ligurian (Ancient)", + Scope = "I", + Type = "A" + }, + new + { + Id = "xli", + ReferenceName = "Liburnian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xln", + ReferenceName = "Alanic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xlo", + ReferenceName = "Loup A", + Scope = "I", + Type = "E" + }, + new + { + Id = "xlp", + ReferenceName = "Lepontic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xls", + ReferenceName = "Lusitanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xlu", + ReferenceName = "Cuneiform Luwian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xly", + ReferenceName = "Elymian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xma", + ReferenceName = "Mushungulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmb", + ReferenceName = "Mbonga", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmc", + ReferenceName = "Makhuwa-Marrevone", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmd", + ReferenceName = "Mbudum", + Scope = "I", + Type = "L" + }, + new + { + Id = "xme", + ReferenceName = "Median", + Scope = "I", + Type = "A" + }, + new + { + Id = "xmf", + ReferenceName = "Mingrelian", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmg", + ReferenceName = "Mengaka", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmh", + ReferenceName = "Kugu-Muminh", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmj", + ReferenceName = "Majera", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmk", + ReferenceName = "Ancient Macedonian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xml", + ReferenceName = "Malaysian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmm", + ReferenceName = "Manado Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmn", + ReferenceName = "Manichaean Middle Persian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xmo", + ReferenceName = "Morerebi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmp", + ReferenceName = "Kuku-Mu'inh", + Scope = "I", + Type = "E" + }, + new + { + Id = "xmq", + ReferenceName = "Kuku-Mangk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xmr", + ReferenceName = "Meroitic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xms", + ReferenceName = "Moroccan Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmt", + ReferenceName = "Matbat", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmu", + ReferenceName = "Kamu", + Scope = "I", + Type = "E" + }, + new + { + Id = "xmv", + ReferenceName = "Antankarana Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmw", + ReferenceName = "Tsimihety Malagasy", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmx", + ReferenceName = "Maden", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmy", + ReferenceName = "Mayaguduna", + Scope = "I", + Type = "L" + }, + new + { + Id = "xmz", + ReferenceName = "Mori Bawah", + Scope = "I", + Type = "L" + }, + new + { + Id = "xna", + ReferenceName = "Ancient North Arabian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xnb", + ReferenceName = "Kanakanabu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xng", + ReferenceName = "Middle Mongolian", + Scope = "I", + Type = "H" + }, + new + { + Id = "xnh", + ReferenceName = "Kuanhua", + Scope = "I", + Type = "L" + }, + new + { + Id = "xni", + ReferenceName = "Ngarigu", + Scope = "I", + Type = "E" + }, + new + { + Id = "xnk", + ReferenceName = "Nganakarti", + Scope = "I", + Type = "E" + }, + new + { + Id = "xnn", + ReferenceName = "Northern Kankanay", + Scope = "I", + Type = "L" + }, + new + { + Id = "xno", + ReferenceName = "Anglo-Norman", + Scope = "I", + Type = "H" + }, + new + { + Id = "xnr", + ReferenceName = "Kangri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xns", + ReferenceName = "Kanashi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xnt", + ReferenceName = "Narragansett", + Scope = "I", + Type = "E" + }, + new + { + Id = "xnu", + ReferenceName = "Nukunul", + Scope = "I", + Type = "E" + }, + new + { + Id = "xny", + ReferenceName = "Nyiyaparli", + Scope = "I", + Type = "L" + }, + new + { + Id = "xnz", + ReferenceName = "Kenzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xoc", + ReferenceName = "O'chi'chi'", + Scope = "I", + Type = "E" + }, + new + { + Id = "xod", + ReferenceName = "Kokoda", + Scope = "I", + Type = "L" + }, + new + { + Id = "xog", + ReferenceName = "Soga", + Scope = "I", + Type = "L" + }, + new + { + Id = "xoi", + ReferenceName = "Kominimung", + Scope = "I", + Type = "L" + }, + new + { + Id = "xok", + ReferenceName = "Xokleng", + Scope = "I", + Type = "L" + }, + new + { + Id = "xom", + ReferenceName = "Komo (Sudan)", + Scope = "I", + Type = "L" + }, + new + { + Id = "xon", + ReferenceName = "Konkomba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xoo", + ReferenceName = "Xukurú", + Scope = "I", + Type = "E" + }, + new + { + Id = "xop", + ReferenceName = "Kopar", + Scope = "I", + Type = "L" + }, + new + { + Id = "xor", + ReferenceName = "Korubo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xow", + ReferenceName = "Kowaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "xpa", + ReferenceName = "Pirriya", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpc", + ReferenceName = "Pecheneg", + Scope = "I", + Type = "H" + }, + new + { + Id = "xpe", + ReferenceName = "Liberia Kpelle", + Scope = "I", + Type = "L" + }, + new + { + Id = "xpg", + ReferenceName = "Phrygian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpi", + ReferenceName = "Pictish", + Scope = "I", + Type = "H" + }, + new + { + Id = "xpj", + ReferenceName = "Mpalitjanh", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpk", + ReferenceName = "Kulina Pano", + Scope = "I", + Type = "L" + }, + new + { + Id = "xpm", + ReferenceName = "Pumpokol", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpn", + ReferenceName = "Kapinawá", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpo", + ReferenceName = "Pochutec", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpp", + ReferenceName = "Puyo-Paekche", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpq", + ReferenceName = "Mohegan-Pequot", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpr", + ReferenceName = "Parthian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xps", + ReferenceName = "Pisidian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpt", + ReferenceName = "Punthamara", + Scope = "I", + Type = "E" + }, + new + { + Id = "xpu", + ReferenceName = "Punic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xpy", + ReferenceName = "Puyo", + Scope = "I", + Type = "A" + }, + new + { + Id = "xqa", + ReferenceName = "Karakhanid", + Scope = "I", + Type = "H" + }, + new + { + Id = "xqt", + ReferenceName = "Qatabanian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xra", + ReferenceName = "Krahô", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrb", + ReferenceName = "Eastern Karaboro", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrd", + ReferenceName = "Gundungurra", + Scope = "I", + Type = "E" + }, + new + { + Id = "xre", + ReferenceName = "Kreye", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrg", + ReferenceName = "Minang", + Scope = "I", + Type = "E" + }, + new + { + Id = "xri", + ReferenceName = "Krikati-Timbira", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrm", + ReferenceName = "Armazic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xrn", + ReferenceName = "Arin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xrq", + ReferenceName = "Karranga", + Scope = "I", + Type = "E" + }, + new + { + Id = "xrr", + ReferenceName = "Raetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xrt", + ReferenceName = "Aranama-Tamique", + Scope = "I", + Type = "E" + }, + new + { + Id = "xru", + ReferenceName = "Marriammu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xrw", + ReferenceName = "Karawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsa", + ReferenceName = "Sabaean", + Scope = "I", + Type = "A" + }, + new + { + Id = "xsb", + ReferenceName = "Sambal", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsc", + ReferenceName = "Scythian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xsd", + ReferenceName = "Sidetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xse", + ReferenceName = "Sempan", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsh", + ReferenceName = "Shamang", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsi", + ReferenceName = "Sio", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsj", + ReferenceName = "Subi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsl", + ReferenceName = "South Slavey", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsm", + ReferenceName = "Kasem", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsn", + ReferenceName = "Sanga (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "xso", + ReferenceName = "Solano", + Scope = "I", + Type = "E" + }, + new + { + Id = "xsp", + ReferenceName = "Silopi", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsq", + ReferenceName = "Makhuwa-Saka", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsr", + ReferenceName = "Sherpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "xss", + ReferenceName = "Assan", + Scope = "I", + Type = "E" + }, + new + { + Id = "xsu", + ReferenceName = "Sanumá", + Scope = "I", + Type = "L" + }, + new + { + Id = "xsv", + ReferenceName = "Sudovian", + Scope = "I", + Type = "E" + }, + new + { + Id = "xsy", + ReferenceName = "Saisiyat", + Scope = "I", + Type = "L" + }, + new + { + Id = "xta", + ReferenceName = "Alcozauca Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtb", + ReferenceName = "Chazumba Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtc", + ReferenceName = "Katcha-Kadugli-Miri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtd", + ReferenceName = "Diuxi-Tilantongo Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xte", + ReferenceName = "Ketengban", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtg", + ReferenceName = "Transalpine Gaulish", + Scope = "I", + Type = "A" + }, + new + { + Id = "xth", + ReferenceName = "Yitha Yitha", + Scope = "I", + Type = "E" + }, + new + { + Id = "xti", + ReferenceName = "Sinicahua Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtj", + ReferenceName = "San Juan Teita Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtl", + ReferenceName = "Tijaltepec Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtm", + ReferenceName = "Magdalena Peñasco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtn", + ReferenceName = "Northern Tlaxiaco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xto", + ReferenceName = "Tokharian A", + Scope = "I", + Type = "A" + }, + new + { + Id = "xtp", + ReferenceName = "San Miguel Piedras Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtq", + ReferenceName = "Tumshuqese", + Scope = "I", + Type = "H" + }, + new + { + Id = "xtr", + ReferenceName = "Early Tripuri", + Scope = "I", + Type = "A" + }, + new + { + Id = "xts", + ReferenceName = "Sindihui Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtt", + ReferenceName = "Tacahua Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtu", + ReferenceName = "Cuyamecalco Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtv", + ReferenceName = "Thawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "xtw", + ReferenceName = "Tawandê", + Scope = "I", + Type = "L" + }, + new + { + Id = "xty", + ReferenceName = "Yoloxochitl Mixtec", + Scope = "I", + Type = "L" + }, + new + { + Id = "xtz", + ReferenceName = "Tasmanian", + Scope = "I", + Type = "E" + }, + new + { + Id = "xua", + ReferenceName = "Alu Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xub", + ReferenceName = "Betta Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xud", + ReferenceName = "Umiida", + Scope = "I", + Type = "E" + }, + new + { + Id = "xug", + ReferenceName = "Kunigami", + Scope = "I", + Type = "L" + }, + new + { + Id = "xuj", + ReferenceName = "Jennu Kurumba", + Scope = "I", + Type = "L" + }, + new + { + Id = "xul", + ReferenceName = "Ngunawal", + Scope = "I", + Type = "E" + }, + new + { + Id = "xum", + ReferenceName = "Umbrian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xun", + ReferenceName = "Unggaranggu", + Scope = "I", + Type = "E" + }, + new + { + Id = "xuo", + ReferenceName = "Kuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xup", + ReferenceName = "Upper Umpqua", + Scope = "I", + Type = "E" + }, + new + { + Id = "xur", + ReferenceName = "Urartian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xut", + ReferenceName = "Kuthant", + Scope = "I", + Type = "E" + }, + new + { + Id = "xuu", + ReferenceName = "Kxoe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xve", + ReferenceName = "Venetic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xvi", + ReferenceName = "Kamviri", + Scope = "I", + Type = "L" + }, + new + { + Id = "xvn", + ReferenceName = "Vandalic", + Scope = "I", + Type = "A" + }, + new + { + Id = "xvo", + ReferenceName = "Volscian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xvs", + ReferenceName = "Vestinian", + Scope = "I", + Type = "A" + }, + new + { + Id = "xwa", + ReferenceName = "Kwaza", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwc", + ReferenceName = "Woccon", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwd", + ReferenceName = "Wadi Wadi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwe", + ReferenceName = "Xwela Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwg", + ReferenceName = "Kwegu", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwj", + ReferenceName = "Wajuk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwk", + ReferenceName = "Wangkumara", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwl", + ReferenceName = "Western Xwla Gbe", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwo", + ReferenceName = "Written Oirat", + Scope = "I", + Type = "E" + }, + new + { + Id = "xwr", + ReferenceName = "Kwerba Mamberamo", + Scope = "I", + Type = "L" + }, + new + { + Id = "xwt", + ReferenceName = "Wotjobaluk", + Scope = "I", + Type = "E" + }, + new + { + Id = "xww", + ReferenceName = "Wemba Wemba", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxb", + ReferenceName = "Boro (Ghana)", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxk", + ReferenceName = "Ke'o", + Scope = "I", + Type = "L" + }, + new + { + Id = "xxm", + ReferenceName = "Minkin", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxr", + ReferenceName = "Koropó", + Scope = "I", + Type = "E" + }, + new + { + Id = "xxt", + ReferenceName = "Tambora", + Scope = "I", + Type = "E" + }, + new + { + Id = "xya", + ReferenceName = "Yaygir", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyb", + ReferenceName = "Yandjibara", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyj", + ReferenceName = "Mayi-Yapi", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyk", + ReferenceName = "Mayi-Kulan", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyl", + ReferenceName = "Yalakalore", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyt", + ReferenceName = "Mayi-Thakurti", + Scope = "I", + Type = "E" + }, + new + { + Id = "xyy", + ReferenceName = "Yorta Yorta", + Scope = "I", + Type = "L" + }, + new + { + Id = "xzh", + ReferenceName = "Zhang-Zhung", + Scope = "I", + Type = "A" + }, + new + { + Id = "xzm", + ReferenceName = "Zemgalian", + Scope = "I", + Type = "E" + }, + new + { + Id = "xzp", + ReferenceName = "Ancient Zapotec", + Scope = "I", + Type = "H" + }, + new + { + Id = "yaa", + ReferenceName = "Yaminahua", + Scope = "I", + Type = "L" + }, + new + { + Id = "yab", + ReferenceName = "Yuhup", + Scope = "I", + Type = "L" + }, + new + { + Id = "yac", + ReferenceName = "Pass Valley Yali", + Scope = "I", + Type = "L" + }, + new + { + Id = "yad", + ReferenceName = "Yagua", + Scope = "I", + Type = "L" + }, + new + { + Id = "yae", + ReferenceName = "Pumé", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaf", + ReferenceName = "Yaka (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yag", + ReferenceName = "Yámana", + Scope = "I", + Type = "L" + }, + new + { + Id = "yah", + ReferenceName = "Yazgulyam", + Scope = "I", + Type = "L" + }, + new + { + Id = "yai", + ReferenceName = "Yagnobi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaj", + ReferenceName = "Banda-Yangere", + Scope = "I", + Type = "L" + }, + new + { + Id = "yak", + ReferenceName = "Yakama", + Scope = "I", + Type = "L" + }, + new + { + Id = "yal", + ReferenceName = "Yalunka", + Scope = "I", + Type = "L" + }, + new + { + Id = "yam", + ReferenceName = "Yamba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yan", + ReferenceName = "Mayangna", + Scope = "I", + Type = "L" + }, + new + { + Id = "yao", + Part2B = "yao", + Part2T = "yao", + ReferenceName = "Yao", + Scope = "I", + Type = "L" + }, + new + { + Id = "yap", + Part2B = "yap", + Part2T = "yap", + ReferenceName = "Yapese", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaq", + ReferenceName = "Yaqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "yar", + ReferenceName = "Yabarana", + Scope = "I", + Type = "L" + }, + new + { + Id = "yas", + ReferenceName = "Nugunu (Cameroon)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yat", + ReferenceName = "Yambeta", + Scope = "I", + Type = "L" + }, + new + { + Id = "yau", + ReferenceName = "Yuwana", + Scope = "I", + Type = "L" + }, + new + { + Id = "yav", + ReferenceName = "Yangben", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaw", + ReferenceName = "Yawalapití", + Scope = "I", + Type = "L" + }, + new + { + Id = "yax", + ReferenceName = "Yauma", + Scope = "I", + Type = "L" + }, + new + { + Id = "yay", + ReferenceName = "Agwagwune", + Scope = "I", + Type = "L" + }, + new + { + Id = "yaz", + ReferenceName = "Lokaa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yba", + ReferenceName = "Yala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybb", + ReferenceName = "Yemba", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybe", + ReferenceName = "West Yugur", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybh", + ReferenceName = "Yakha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybi", + ReferenceName = "Yamphu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybj", + ReferenceName = "Hasha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybk", + ReferenceName = "Bokha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybl", + ReferenceName = "Yukuben", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybm", + ReferenceName = "Yaben", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybn", + ReferenceName = "Yabaâna", + Scope = "I", + Type = "E" + }, + new + { + Id = "ybo", + ReferenceName = "Yabong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ybx", + ReferenceName = "Yawiyo", + Scope = "I", + Type = "L" + }, + new + { + Id = "yby", + ReferenceName = "Yaweyuha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ych", + ReferenceName = "Chesu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ycl", + ReferenceName = "Lolopo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ycn", + ReferenceName = "Yucuna", + Scope = "I", + Type = "L" + }, + new + { + Id = "ycp", + ReferenceName = "Chepya", + Scope = "I", + Type = "L" + }, + new + { + Id = "yda", + ReferenceName = "Yanda", + Scope = "I", + Type = "E" + }, + new + { + Id = "ydd", + ReferenceName = "Eastern Yiddish", + Scope = "I", + Type = "L" + }, + new + { + Id = "yde", + ReferenceName = "Yangum Dey", + Scope = "I", + Type = "L" + }, + new + { + Id = "ydg", + ReferenceName = "Yidgha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ydk", + ReferenceName = "Yoidik", + Scope = "I", + Type = "L" + }, + new + { + Id = "yea", + ReferenceName = "Ravula", + Scope = "I", + Type = "L" + }, + new + { + Id = "yec", + ReferenceName = "Yeniche", + Scope = "I", + Type = "L" + }, + new + { + Id = "yee", + ReferenceName = "Yimas", + Scope = "I", + Type = "L" + }, + new + { + Id = "yei", + ReferenceName = "Yeni", + Scope = "I", + Type = "E" + }, + new + { + Id = "yej", + ReferenceName = "Yevanic", + Scope = "I", + Type = "L" + }, + new + { + Id = "yel", + ReferenceName = "Yela", + Scope = "I", + Type = "L" + }, + new + { + Id = "yer", + ReferenceName = "Tarok", + Scope = "I", + Type = "L" + }, + new + { + Id = "yes", + ReferenceName = "Nyankpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yet", + ReferenceName = "Yetfa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yeu", + ReferenceName = "Yerukula", + Scope = "I", + Type = "L" + }, + new + { + Id = "yev", + ReferenceName = "Yapunda", + Scope = "I", + Type = "L" + }, + new + { + Id = "yey", + ReferenceName = "Yeyi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yga", + ReferenceName = "Malyangapa", + Scope = "I", + Type = "E" + }, + new + { + Id = "ygi", + ReferenceName = "Yiningayi", + Scope = "I", + Type = "E" + }, + new + { + Id = "ygl", + ReferenceName = "Yangum Gel", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygm", + ReferenceName = "Yagomi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygp", + ReferenceName = "Gepo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygr", + ReferenceName = "Yagaria", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygs", + ReferenceName = "Yolŋu Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygu", + ReferenceName = "Yugul", + Scope = "I", + Type = "L" + }, + new + { + Id = "ygw", + ReferenceName = "Yagwoia", + Scope = "I", + Type = "L" + }, + new + { + Id = "yha", + ReferenceName = "Baha Buyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "yhd", + ReferenceName = "Judeo-Iraqi Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "yhl", + ReferenceName = "Hlepho Phowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yhs", + ReferenceName = "Yan-nhaŋu Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "yia", + ReferenceName = "Yinggarda", + Scope = "I", + Type = "L" + }, + new + { + Id = "yid", + Part1 = "yi", + Part2B = "yid", + Part2T = "yid", + ReferenceName = "Yiddish", + Scope = "M", + Type = "L" + }, + new + { + Id = "yif", + ReferenceName = "Ache", + Scope = "I", + Type = "L" + }, + new + { + Id = "yig", + ReferenceName = "Wusa Nasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yih", + ReferenceName = "Western Yiddish", + Scope = "I", + Type = "L" + }, + new + { + Id = "yii", + ReferenceName = "Yidiny", + Scope = "I", + Type = "L" + }, + new + { + Id = "yij", + ReferenceName = "Yindjibarndi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yik", + ReferenceName = "Dongshanba Lalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "yil", + ReferenceName = "Yindjilandji", + Scope = "I", + Type = "E" + }, + new + { + Id = "yim", + ReferenceName = "Yimchungru Naga", + Scope = "I", + Type = "L" + }, + new + { + Id = "yin", + ReferenceName = "Riang Lai", + Scope = "I", + Type = "L" + }, + new + { + Id = "yip", + ReferenceName = "Pholo", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiq", + ReferenceName = "Miqie", + Scope = "I", + Type = "L" + }, + new + { + Id = "yir", + ReferenceName = "North Awyu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yis", + ReferenceName = "Yis", + Scope = "I", + Type = "L" + }, + new + { + Id = "yit", + ReferenceName = "Eastern Lalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiu", + ReferenceName = "Awu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiv", + ReferenceName = "Northern Nisu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yix", + ReferenceName = "Axi Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yiz", + ReferenceName = "Azhe", + Scope = "I", + Type = "L" + }, + new + { + Id = "yka", + ReferenceName = "Yakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykg", + ReferenceName = "Northern Yukaghir", + Scope = "I", + Type = "L" + }, + new + { + Id = "yki", + ReferenceName = "Yoke", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykk", + ReferenceName = "Yakaikeke", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykl", + ReferenceName = "Khlula", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykm", + ReferenceName = "Kap", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykn", + ReferenceName = "Kua-nsi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yko", + ReferenceName = "Yasa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykr", + ReferenceName = "Yekora", + Scope = "I", + Type = "L" + }, + new + { + Id = "ykt", + ReferenceName = "Kathu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yku", + ReferenceName = "Kuamasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yky", + ReferenceName = "Yakoma", + Scope = "I", + Type = "L" + }, + new + { + Id = "yla", + ReferenceName = "Yaul", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylb", + ReferenceName = "Yaleba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yle", + ReferenceName = "Yele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylg", + ReferenceName = "Yelogu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yli", + ReferenceName = "Angguruk Yali", + Scope = "I", + Type = "L" + }, + new + { + Id = "yll", + ReferenceName = "Yil", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylm", + ReferenceName = "Limi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yln", + ReferenceName = "Langnian Buyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylo", + ReferenceName = "Naluo Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ylr", + ReferenceName = "Yalarnnga", + Scope = "I", + Type = "E" + }, + new + { + Id = "ylu", + ReferenceName = "Aribwaung", + Scope = "I", + Type = "L" + }, + new + { + Id = "yly", + ReferenceName = "Nyâlayu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymb", + ReferenceName = "Yambes", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymc", + ReferenceName = "Southern Muji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymd", + ReferenceName = "Muda", + Scope = "I", + Type = "L" + }, + new + { + Id = "yme", + ReferenceName = "Yameo", + Scope = "I", + Type = "E" + }, + new + { + Id = "ymg", + ReferenceName = "Yamongeri", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymh", + ReferenceName = "Mili", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymi", + ReferenceName = "Moji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymk", + ReferenceName = "Makwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "yml", + ReferenceName = "Iamalele", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymm", + ReferenceName = "Maay", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymn", + ReferenceName = "Yamna", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymo", + ReferenceName = "Yangum Mon", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymp", + ReferenceName = "Yamap", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymq", + ReferenceName = "Qila Muji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymr", + ReferenceName = "Malasar", + Scope = "I", + Type = "L" + }, + new + { + Id = "yms", + ReferenceName = "Mysian", + Scope = "I", + Type = "A" + }, + new + { + Id = "ymx", + ReferenceName = "Northern Muji", + Scope = "I", + Type = "L" + }, + new + { + Id = "ymz", + ReferenceName = "Muzi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yna", + ReferenceName = "Aluo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynd", + ReferenceName = "Yandruwandha", + Scope = "I", + Type = "E" + }, + new + { + Id = "yne", + ReferenceName = "Lang'e", + Scope = "I", + Type = "L" + }, + new + { + Id = "yng", + ReferenceName = "Yango", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynk", + ReferenceName = "Naukan Yupik", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynl", + ReferenceName = "Yangulam", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynn", + ReferenceName = "Yana", + Scope = "I", + Type = "E" + }, + new + { + Id = "yno", + ReferenceName = "Yong", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynq", + ReferenceName = "Yendang", + Scope = "I", + Type = "L" + }, + new + { + Id = "yns", + ReferenceName = "Yansi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ynu", + ReferenceName = "Yahuna", + Scope = "I", + Type = "E" + }, + new + { + Id = "yob", + ReferenceName = "Yoba", + Scope = "I", + Type = "E" + }, + new + { + Id = "yog", + ReferenceName = "Yogad", + Scope = "I", + Type = "L" + }, + new + { + Id = "yoi", + ReferenceName = "Yonaguni", + Scope = "I", + Type = "L" + }, + new + { + Id = "yok", + ReferenceName = "Yokuts", + Scope = "I", + Type = "L" + }, + new + { + Id = "yol", + ReferenceName = "Yola", + Scope = "I", + Type = "E" + }, + new + { + Id = "yom", + ReferenceName = "Yombe", + Scope = "I", + Type = "L" + }, + new + { + Id = "yon", + ReferenceName = "Yongkom", + Scope = "I", + Type = "L" + }, + new + { + Id = "yor", + Part1 = "yo", + Part2B = "yor", + Part2T = "yor", + ReferenceName = "Yoruba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yot", + ReferenceName = "Yotti", + Scope = "I", + Type = "L" + }, + new + { + Id = "yox", + ReferenceName = "Yoron", + Scope = "I", + Type = "L" + }, + new + { + Id = "yoy", + ReferenceName = "Yoy", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypa", + ReferenceName = "Phala", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypb", + ReferenceName = "Labo Phowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypg", + ReferenceName = "Phola", + Scope = "I", + Type = "L" + }, + new + { + Id = "yph", + ReferenceName = "Phupha", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypm", + ReferenceName = "Phuma", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypn", + ReferenceName = "Ani Phowa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypo", + ReferenceName = "Alo Phola", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypp", + ReferenceName = "Phupa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ypz", + ReferenceName = "Phuza", + Scope = "I", + Type = "L" + }, + new + { + Id = "yra", + ReferenceName = "Yerakai", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrb", + ReferenceName = "Yareba", + Scope = "I", + Type = "L" + }, + new + { + Id = "yre", + ReferenceName = "Yaouré", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrk", + ReferenceName = "Nenets", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrl", + ReferenceName = "Nhengatu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrm", + ReferenceName = "Yirrk-Mel", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrn", + ReferenceName = "Yerong", + Scope = "I", + Type = "L" + }, + new + { + Id = "yro", + ReferenceName = "Yaroamë", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrs", + ReferenceName = "Yarsun", + Scope = "I", + Type = "L" + }, + new + { + Id = "yrw", + ReferenceName = "Yarawata", + Scope = "I", + Type = "L" + }, + new + { + Id = "yry", + ReferenceName = "Yarluyandi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysc", + ReferenceName = "Yassic", + Scope = "I", + Type = "E" + }, + new + { + Id = "ysd", + ReferenceName = "Samatao", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysg", + ReferenceName = "Sonaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysl", + ReferenceName = "Yugoslavian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysn", + ReferenceName = "Sani", + Scope = "I", + Type = "L" + }, + new + { + Id = "yso", + ReferenceName = "Nisi (China)", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysp", + ReferenceName = "Southern Lolopo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysr", + ReferenceName = "Sirenik Yupik", + Scope = "I", + Type = "E" + }, + new + { + Id = "yss", + ReferenceName = "Yessan-Mayo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ysy", + ReferenceName = "Sanie", + Scope = "I", + Type = "L" + }, + new + { + Id = "yta", + ReferenceName = "Talu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ytl", + ReferenceName = "Tanglang", + Scope = "I", + Type = "L" + }, + new + { + Id = "ytp", + ReferenceName = "Thopho", + Scope = "I", + Type = "L" + }, + new + { + Id = "ytw", + ReferenceName = "Yout Wam", + Scope = "I", + Type = "L" + }, + new + { + Id = "yty", + ReferenceName = "Yatay", + Scope = "I", + Type = "E" + }, + new + { + Id = "yua", + ReferenceName = "Yucateco", + Scope = "I", + Type = "L" + }, + new + { + Id = "yub", + ReferenceName = "Yugambal", + Scope = "I", + Type = "E" + }, + new + { + Id = "yuc", + ReferenceName = "Yuchi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yud", + ReferenceName = "Judeo-Tripolitanian Arabic", + Scope = "I", + Type = "L" + }, + new + { + Id = "yue", + ReferenceName = "Yue Chinese", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuf", + ReferenceName = "Havasupai-Walapai-Yavapai", + Scope = "I", + Type = "L" + }, + new + { + Id = "yug", + ReferenceName = "Yug", + Scope = "I", + Type = "E" + }, + new + { + Id = "yui", + ReferenceName = "Yurutí", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuj", + ReferenceName = "Karkar-Yuri", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuk", + ReferenceName = "Yuki", + Scope = "I", + Type = "E" + }, + new + { + Id = "yul", + ReferenceName = "Yulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yum", + ReferenceName = "Quechan", + Scope = "I", + Type = "L" + }, + new + { + Id = "yun", + ReferenceName = "Bena (Nigeria)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yup", + ReferenceName = "Yukpa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuq", + ReferenceName = "Yuqui", + Scope = "I", + Type = "L" + }, + new + { + Id = "yur", + ReferenceName = "Yurok", + Scope = "I", + Type = "E" + }, + new + { + Id = "yut", + ReferenceName = "Yopno", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuw", + ReferenceName = "Yau (Morobe Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yux", + ReferenceName = "Southern Yukaghir", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuy", + ReferenceName = "East Yugur", + Scope = "I", + Type = "L" + }, + new + { + Id = "yuz", + ReferenceName = "Yuracare", + Scope = "I", + Type = "L" + }, + new + { + Id = "yva", + ReferenceName = "Yawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "yvt", + ReferenceName = "Yavitero", + Scope = "I", + Type = "E" + }, + new + { + Id = "ywa", + ReferenceName = "Kalou", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywg", + ReferenceName = "Yinhawangka", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywl", + ReferenceName = "Western Lalu", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywn", + ReferenceName = "Yawanawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywq", + ReferenceName = "Wuding-Luquan Yi", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywr", + ReferenceName = "Yawuru", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywt", + ReferenceName = "Xishanba Lalo", + Scope = "I", + Type = "L" + }, + new + { + Id = "ywu", + ReferenceName = "Wumeng Nasu", + Scope = "I", + Type = "L" + }, + new + { + Id = "yww", + ReferenceName = "Yawarawarga", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxa", + ReferenceName = "Mayawali", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxg", + ReferenceName = "Yagara", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxl", + ReferenceName = "Yardliyawarra", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxm", + ReferenceName = "Yinwum", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxu", + ReferenceName = "Yuyu", + Scope = "I", + Type = "E" + }, + new + { + Id = "yxy", + ReferenceName = "Yabula Yabula", + Scope = "I", + Type = "E" + }, + new + { + Id = "yyr", + ReferenceName = "Yir Yoront", + Scope = "I", + Type = "E" + }, + new + { + Id = "yyu", + ReferenceName = "Yau (Sandaun Province)", + Scope = "I", + Type = "L" + }, + new + { + Id = "yyz", + ReferenceName = "Ayizi", + Scope = "I", + Type = "L" + }, + new + { + Id = "yzg", + ReferenceName = "E'ma Buyang", + Scope = "I", + Type = "L" + }, + new + { + Id = "yzk", + ReferenceName = "Zokhuo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaa", + ReferenceName = "Sierra de Juárez Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zab", + ReferenceName = "Western Tlacolula Valley Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zac", + ReferenceName = "Ocotlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zad", + ReferenceName = "Cajonos Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zae", + ReferenceName = "Yareni Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaf", + ReferenceName = "Ayoquesco Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zag", + ReferenceName = "Zaghawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zah", + ReferenceName = "Zangwal", + Scope = "I", + Type = "L" + }, + new + { + Id = "zai", + ReferenceName = "Isthmus Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaj", + ReferenceName = "Zaramo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zak", + ReferenceName = "Zanaki", + Scope = "I", + Type = "L" + }, + new + { + Id = "zal", + ReferenceName = "Zauzou", + Scope = "I", + Type = "L" + }, + new + { + Id = "zam", + ReferenceName = "Miahuatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zao", + ReferenceName = "Ozolotepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zap", + Part2B = "zap", + Part2T = "zap", + ReferenceName = "Zapotec", + Scope = "M", + Type = "L" + }, + new + { + Id = "zaq", + ReferenceName = "Aloápam Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zar", + ReferenceName = "Rincón Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zas", + ReferenceName = "Santo Domingo Albarradas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zat", + ReferenceName = "Tabaa Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zau", + ReferenceName = "Zangskari", + Scope = "I", + Type = "L" + }, + new + { + Id = "zav", + ReferenceName = "Yatzachi Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaw", + ReferenceName = "Mitla Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zax", + ReferenceName = "Xadani Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zay", + ReferenceName = "Zayse-Zergulla", + Scope = "I", + Type = "L" + }, + new + { + Id = "zaz", + ReferenceName = "Zari", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbc", + ReferenceName = "Central Berawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbe", + ReferenceName = "East Berawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbl", + Part2B = "zbl", + Part2T = "zbl", + ReferenceName = "Blissymbols", + Scope = "I", + Type = "C" + }, + new + { + Id = "zbt", + ReferenceName = "Batui", + Scope = "I", + Type = "L" + }, + new + { + Id = "zbw", + ReferenceName = "West Berawan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zca", + ReferenceName = "Coatecas Altas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zch", + ReferenceName = "Central Hongshuihe Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zdj", + ReferenceName = "Ngazidja Comorian", + Scope = "I", + Type = "L" + }, + new + { + Id = "zea", + ReferenceName = "Zeeuws", + Scope = "I", + Type = "L" + }, + new + { + Id = "zeg", + ReferenceName = "Zenag", + Scope = "I", + Type = "L" + }, + new + { + Id = "zeh", + ReferenceName = "Eastern Hongshuihe Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zen", + Part2B = "zen", + Part2T = "zen", + ReferenceName = "Zenaga", + Scope = "I", + Type = "L" + }, + new + { + Id = "zga", + ReferenceName = "Kinga", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgb", + ReferenceName = "Guibei Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgh", + Part2B = "zgh", + Part2T = "zgh", + ReferenceName = "Standard Moroccan Tamazight", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgm", + ReferenceName = "Minz Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgn", + ReferenceName = "Guibian Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zgr", + ReferenceName = "Magori", + Scope = "I", + Type = "L" + }, + new + { + Id = "zha", + Part1 = "za", + Part2B = "zha", + Part2T = "zha", + ReferenceName = "Zhuang", + Scope = "M", + Type = "L" + }, + new + { + Id = "zhb", + ReferenceName = "Zhaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "zhd", + ReferenceName = "Dai Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zhi", + ReferenceName = "Zhire", + Scope = "I", + Type = "L" + }, + new + { + Id = "zhn", + ReferenceName = "Nong Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zho", + Part1 = "zh", + Part2B = "chi", + Part2T = "zho", + ReferenceName = "Chinese", + Scope = "M", + Type = "L" + }, + new + { + Id = "zhw", + ReferenceName = "Zhoa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zia", + ReferenceName = "Zia", + Scope = "I", + Type = "L" + }, + new + { + Id = "zib", + ReferenceName = "Zimbabwe Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "zik", + ReferenceName = "Zimakani", + Scope = "I", + Type = "L" + }, + new + { + Id = "zil", + ReferenceName = "Zialo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zim", + ReferenceName = "Mesme", + Scope = "I", + Type = "L" + }, + new + { + Id = "zin", + ReferenceName = "Zinza", + Scope = "I", + Type = "L" + }, + new + { + Id = "zir", + ReferenceName = "Ziriya", + Scope = "I", + Type = "E" + }, + new + { + Id = "ziw", + ReferenceName = "Zigula", + Scope = "I", + Type = "L" + }, + new + { + Id = "ziz", + ReferenceName = "Zizilivakan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zka", + ReferenceName = "Kaimbulawa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkb", + ReferenceName = "Koibal", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkd", + ReferenceName = "Kadu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkg", + ReferenceName = "Koguryo", + Scope = "I", + Type = "A" + }, + new + { + Id = "zkh", + ReferenceName = "Khorezmian", + Scope = "I", + Type = "H" + }, + new + { + Id = "zkk", + ReferenceName = "Karankawa", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkn", + ReferenceName = "Kanan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zko", + ReferenceName = "Kott", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkp", + ReferenceName = "São Paulo Kaingáng", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkr", + ReferenceName = "Zakhring", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkt", + ReferenceName = "Kitan", + Scope = "I", + Type = "H" + }, + new + { + Id = "zku", + ReferenceName = "Kaurna", + Scope = "I", + Type = "L" + }, + new + { + Id = "zkv", + ReferenceName = "Krevinian", + Scope = "I", + Type = "E" + }, + new + { + Id = "zkz", + ReferenceName = "Khazar", + Scope = "I", + Type = "H" + }, + new + { + Id = "zlj", + ReferenceName = "Liujiang Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zlm", + ReferenceName = "Malay (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zln", + ReferenceName = "Lianshan Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zlq", + ReferenceName = "Liuqian Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zma", + ReferenceName = "Manda (Australia)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmb", + ReferenceName = "Zimba", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmc", + ReferenceName = "Margany", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmd", + ReferenceName = "Maridan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zme", + ReferenceName = "Mangerr", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmf", + ReferenceName = "Mfinu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmg", + ReferenceName = "Marti Ke", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmh", + ReferenceName = "Makolkol", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmi", + ReferenceName = "Negeri Sembilan Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmj", + ReferenceName = "Maridjabin", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmk", + ReferenceName = "Mandandanyi", + Scope = "I", + Type = "E" + }, + new + { + Id = "zml", + ReferenceName = "Matngala", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmm", + ReferenceName = "Marimanindji", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmn", + ReferenceName = "Mbangwe", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmo", + ReferenceName = "Molo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmp", + ReferenceName = "Mpuono", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmq", + ReferenceName = "Mituku", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmr", + ReferenceName = "Maranunggu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zms", + ReferenceName = "Mbesa", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmt", + ReferenceName = "Maringarr", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmu", + ReferenceName = "Muruwari", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmv", + ReferenceName = "Mbariman-Gudhinma", + Scope = "I", + Type = "E" + }, + new + { + Id = "zmw", + ReferenceName = "Mbo (Democratic Republic of Congo)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmx", + ReferenceName = "Bomitaba", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmy", + ReferenceName = "Mariyedi", + Scope = "I", + Type = "L" + }, + new + { + Id = "zmz", + ReferenceName = "Mbandja", + Scope = "I", + Type = "L" + }, + new + { + Id = "zna", + ReferenceName = "Zan Gula", + Scope = "I", + Type = "L" + }, + new + { + Id = "zne", + ReferenceName = "Zande (individual language)", + Scope = "I", + Type = "L" + }, + new + { + Id = "zng", + ReferenceName = "Mang", + Scope = "I", + Type = "L" + }, + new + { + Id = "znk", + ReferenceName = "Manangkari", + Scope = "I", + Type = "E" + }, + new + { + Id = "zns", + ReferenceName = "Mangas", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoc", + ReferenceName = "Copainalá Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoh", + ReferenceName = "Chimalapa Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zom", + ReferenceName = "Zou", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoo", + ReferenceName = "Asunción Mixtepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zoq", + ReferenceName = "Tabasco Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zor", + ReferenceName = "Rayón Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zos", + ReferenceName = "Francisco León Zoque", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpa", + ReferenceName = "Lachiguiri Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpb", + ReferenceName = "Yautepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpc", + ReferenceName = "Choapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpd", + ReferenceName = "Southeastern Ixtlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpe", + ReferenceName = "Petapa Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpf", + ReferenceName = "San Pedro Quiatoni Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpg", + ReferenceName = "Guevea De Humboldt Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zph", + ReferenceName = "Totomachapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpi", + ReferenceName = "Santa María Quiegolani Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpj", + ReferenceName = "Quiavicuzas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpk", + ReferenceName = "Tlacolulita Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpl", + ReferenceName = "Lachixío Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpm", + ReferenceName = "Mixtepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpn", + ReferenceName = "Santa Inés Yatzechi Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpo", + ReferenceName = "Amatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpp", + ReferenceName = "El Alto Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpq", + ReferenceName = "Zoogocho Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpr", + ReferenceName = "Santiago Xanica Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zps", + ReferenceName = "Coatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpt", + ReferenceName = "San Vicente Coatlán Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpu", + ReferenceName = "Yalálag Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpv", + ReferenceName = "Chichicapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpw", + ReferenceName = "Zaniza Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpx", + ReferenceName = "San Baltazar Loxicha Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpy", + ReferenceName = "Mazaltepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zpz", + ReferenceName = "Texmelucan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zqe", + ReferenceName = "Qiubei Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zra", + ReferenceName = "Kara (Korea)", + Scope = "I", + Type = "A" + }, + new + { + Id = "zrg", + ReferenceName = "Mirgan", + Scope = "I", + Type = "L" + }, + new + { + Id = "zrn", + ReferenceName = "Zerenkel", + Scope = "I", + Type = "L" + }, + new + { + Id = "zro", + ReferenceName = "Záparo", + Scope = "I", + Type = "L" + }, + new + { + Id = "zrp", + ReferenceName = "Zarphatic", + Scope = "I", + Type = "E" + }, + new + { + Id = "zrs", + ReferenceName = "Mairasi", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsa", + ReferenceName = "Sarasira", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsk", + ReferenceName = "Kaskean", + Scope = "I", + Type = "A" + }, + new + { + Id = "zsl", + ReferenceName = "Zambian Sign Language", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsm", + ReferenceName = "Standard Malay", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsr", + ReferenceName = "Southern Rincon Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zsu", + ReferenceName = "Sukurum", + Scope = "I", + Type = "L" + }, + new + { + Id = "zte", + ReferenceName = "Elotepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztg", + ReferenceName = "Xanaguía Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztl", + ReferenceName = "Lapaguía-Guivini Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztm", + ReferenceName = "San Agustín Mixtepec Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztn", + ReferenceName = "Santa Catarina Albarradas Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztp", + ReferenceName = "Loxicha Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztq", + ReferenceName = "Quioquitani-Quierí Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zts", + ReferenceName = "Tilquiapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztt", + ReferenceName = "Tejalapan Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztu", + ReferenceName = "Güilá Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "ztx", + ReferenceName = "Zaachila Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zty", + ReferenceName = "Yatee Zapotec", + Scope = "I", + Type = "L" + }, + new + { + Id = "zua", + ReferenceName = "Zeem", + Scope = "I", + Type = "L" + }, + new + { + Id = "zuh", + ReferenceName = "Tokano", + Scope = "I", + Type = "L" + }, + new + { + Id = "zul", + Part1 = "zu", + Part2B = "zul", + Part2T = "zul", + ReferenceName = "Zulu", + Scope = "I", + Type = "L" + }, + new + { + Id = "zum", + ReferenceName = "Kumzari", + Scope = "I", + Type = "L" + }, + new + { + Id = "zun", + Part2B = "zun", + Part2T = "zun", + ReferenceName = "Zuni", + Scope = "I", + Type = "L" + }, + new + { + Id = "zuy", + ReferenceName = "Zumaya", + Scope = "I", + Type = "L" + }, + new + { + Id = "zwa", + ReferenceName = "Zay", + Scope = "I", + Type = "L" + }, + new + { + Id = "zxx", + Part2B = "zxx", + Part2T = "zxx", + ReferenceName = "No linguistic content", + Scope = "S", + Type = "S" + }, + new + { + Id = "zyb", + ReferenceName = "Yongbei Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyg", + ReferenceName = "Yang Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyj", + ReferenceName = "Youjiang Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyn", + ReferenceName = "Yongnan Zhuang", + Scope = "I", + Type = "L" + }, + new + { + Id = "zyp", + ReferenceName = "Zyphe Chin", + Scope = "I", + Type = "L" + }, + new + { + Id = "zza", + Part2B = "zza", + Part2T = "zza", + ReferenceName = "Zaza", + Scope = "M", + Type = "L" + }, + new + { + Id = "zzj", + ReferenceName = "Zuojiang Zhuang", + Scope = "I", + Type = "L" + }); + }); modelBuilder.Entity("Cicm.Database.Models.License", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("FsfApproved"); + b.Property("FsfApproved"); - b.Property("Link").HasMaxLength(512); + b.Property("Link") + .HasMaxLength(512); - b.Property("Name").IsRequired(); + b.Property("Name") + .IsRequired(); - b.Property("OsiApproved"); + b.Property("OsiApproved"); - b.Property("SPDX"); + b.Property("SPDX"); - b.Property("Text").HasColumnType("longtext").HasMaxLength(131072); + b.Property("Text") + .HasColumnType("longtext") + .HasMaxLength(131072); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("FsfApproved"); + b.HasIndex("FsfApproved"); - b.HasIndex("Name"); + b.HasIndex("Name"); - b.HasIndex("OsiApproved"); + b.HasIndex("OsiApproved"); - b.HasIndex("SPDX"); + b.HasIndex("SPDX"); - b.ToTable("Licenses"); + b.ToTable("Licenses"); - b.HasData(new {Id = 1, FsfApproved = false, Name = "Fair use", OsiApproved = false}, - new {Id = 2, FsfApproved = false, Name = "Advertisement use", OsiApproved = false}, - new {Id = 3, FsfApproved = false, Name = "All rights reserved", OsiApproved = false}, - new - { - Id = 4, - FsfApproved = false, - Link = "https://spdx.org/licenses/0BSD.html#licenseText", - Name = "BSD Zero Clause License", - OsiApproved = true, - SPDX = "0BSD" - }, - new - { - Id = 5, - FsfApproved = false, - Link = "https://spdx.org/licenses/AAL.html#licenseText", - Name = "Attribution Assurance License", - OsiApproved = true, - SPDX = "AAL" - }, - new - { - Id = 6, - FsfApproved = false, - Link = "https://spdx.org/licenses/Abstyles.html#licenseText", - Name = "Abstyles License", - OsiApproved = false, - SPDX = "Abstyles" - }, - new - { - Id = 7, - FsfApproved = false, - Link = "https://spdx.org/licenses/Adobe-2006.html#licenseText", - Name = "Adobe Systems Incorporated Source Code License Agreement", - OsiApproved = false, - SPDX = "Adobe-2006" - }, - new - { - Id = 8, - FsfApproved = false, - Link = "https://spdx.org/licenses/Adobe-Glyph.html#licenseText", - Name = "Adobe Glyph List License", - OsiApproved = false, - SPDX = "Adobe-Glyph" - }, - new - { - Id = 9, - FsfApproved = false, - Link = "https://spdx.org/licenses/ADSL.html#licenseText", - Name = "Amazon Digital Services License", - OsiApproved = false, - SPDX = "ADSL" - }, - new - { - Id = 10, - FsfApproved = true, - Link = "https://spdx.org/licenses/AFL-1.1.html#licenseText", - Name = "Academic Free License v1.1", - OsiApproved = true, - SPDX = "AFL-1.1" - }, - new - { - Id = 11, - FsfApproved = true, - Link = "https://spdx.org/licenses/AFL-1.2.html#licenseText", - Name = "Academic Free License v1.2", - OsiApproved = true, - SPDX = "AFL-1.2" - }, - new - { - Id = 12, - FsfApproved = true, - Link = "https://spdx.org/licenses/AFL-2.0.html#licenseText", - Name = "Academic Free License v2.0", - OsiApproved = true, - SPDX = "AFL-2.0" - }, - new - { - Id = 13, - FsfApproved = true, - Link = "https://spdx.org/licenses/AFL-2.1.html#licenseText", - Name = "Academic Free License v2.1", - OsiApproved = true, - SPDX = "AFL-2.1" - }, - new - { - Id = 14, - FsfApproved = true, - Link = "https://spdx.org/licenses/AFL-3.0.html#licenseText", - Name = "Academic Free License v3.0", - OsiApproved = true, - SPDX = "AFL-3.0" - }, - new - { - Id = 15, - FsfApproved = false, - Link = "https://spdx.org/licenses/Afmparse.html#licenseText", - Name = "Afmparse License", - OsiApproved = false, - SPDX = "Afmparse" - }, - new - { - Id = 16, - FsfApproved = false, - Link = "https://spdx.org/licenses/AGPL-1.0-only.html#licenseText", - Name = "Affero General Public License v1.0 only", - OsiApproved = false, - SPDX = "AGPL-1.0-only" - }, - new - { - Id = 17, - FsfApproved = false, - Link = "https://spdx.org/licenses/AGPL-1.0-or-later.html#licenseText", - Name = "Affero General Public License v1.0 or later", - OsiApproved = false, - SPDX = "AGPL-1.0-or-later" - }, - new - { - Id = 18, - FsfApproved = true, - Link = "https://spdx.org/licenses/AGPL-3.0-only.html#licenseText", - Name = "GNU Affero General Public License v3.0 only", - OsiApproved = true, - SPDX = "AGPL-3.0-only" - }, - new - { - Id = 19, - FsfApproved = true, - Link = "https://spdx.org/licenses/AGPL-3.0-or-later.html#licenseText", - Name = "GNU Affero General Public License v3.0 or later", - OsiApproved = true, - SPDX = "AGPL-3.0-or-later" - }, - new - { - Id = 20, - FsfApproved = false, - Link = "https://spdx.org/licenses/Aladdin.html#licenseText", - Name = "Aladdin Free Public License", - OsiApproved = false, - SPDX = "Aladdin" - }, - new - { - Id = 21, - FsfApproved = false, - Link = "https://spdx.org/licenses/AMDPLPA.html#licenseText", - Name = "AMD's plpa_map.c License", - OsiApproved = false, - SPDX = "AMDPLPA" - }, - new - { - Id = 22, - FsfApproved = false, - Link = "https://spdx.org/licenses/AML.html#licenseText", - Name = "Apple MIT License", - OsiApproved = false, - SPDX = "AML" - }, - new - { - Id = 23, - FsfApproved = false, - Link = "https://spdx.org/licenses/AMPAS.html#licenseText", - Name = "Academy of Motion Picture Arts and Sciences BSD", - OsiApproved = false, - SPDX = "AMPAS" - }, - new - { - Id = 24, - FsfApproved = false, - Link = "https://spdx.org/licenses/ANTLR-PD.html#licenseText", - Name = "ANTLR Software Rights Notice", - OsiApproved = false, - SPDX = "ANTLR-PD" - }, - new - { - Id = 25, - FsfApproved = true, - Link = "https://spdx.org/licenses/Apache-1.0.html#licenseText", - Name = "Apache License 1.0", - OsiApproved = false, - SPDX = "Apache-1.0" - }, - new - { - Id = 26, - FsfApproved = true, - Link = "https://spdx.org/licenses/Apache-1.1.html#licenseText", - Name = "Apache License 1.1", - OsiApproved = true, - SPDX = "Apache-1.1" - }, - new - { - Id = 27, - FsfApproved = true, - Link = "https://spdx.org/licenses/Apache-2.0.html#licenseText", - Name = "Apache License 2.0", - OsiApproved = true, - SPDX = "Apache-2.0" - }, - new - { - Id = 28, - FsfApproved = false, - Link = "https://spdx.org/licenses/APAFML.html#licenseText", - Name = "Adobe Postscript AFM License", - OsiApproved = false, - SPDX = "APAFML" - }, - new - { - Id = 29, - FsfApproved = false, - Link = "https://spdx.org/licenses/APL-1.0.html#licenseText", - Name = "Adaptive Public License 1.0", - OsiApproved = true, - SPDX = "APL-1.0" - }, - new - { - Id = 30, - FsfApproved = false, - Link = "https://spdx.org/licenses/APSL-1.0.html#licenseText", - Name = "Apple Public Source License 1.0", - OsiApproved = true, - SPDX = "APSL-1.0" - }, - new - { - Id = 31, - FsfApproved = false, - Link = "https://spdx.org/licenses/APSL-1.1.html#licenseText", - Name = "Apple Public Source License 1.1", - OsiApproved = true, - SPDX = "APSL-1.1" - }, - new - { - Id = 32, - FsfApproved = false, - Link = "https://spdx.org/licenses/APSL-1.2.html#licenseText", - Name = "Apple Public Source License 1.2", - OsiApproved = true, - SPDX = "APSL-1.2" - }, - new - { - Id = 33, - FsfApproved = true, - Link = "https://spdx.org/licenses/APSL-2.0.html#licenseText", - Name = "Apple Public Source License 2.0", - OsiApproved = true, - SPDX = "APSL-2.0" - }, - new - { - Id = 34, - FsfApproved = false, - Link = "https://spdx.org/licenses/Artistic-1.0.html#licenseText", - Name = "Artistic License 1.0", - OsiApproved = true, - SPDX = "Artistic-1.0" - }, - new - { - Id = 35, - FsfApproved = false, - Link = "https://spdx.org/licenses/Artistic-1.0-cl8.html#licenseText", - Name = "Artistic License 1.0 w/clause 8", - OsiApproved = true, - SPDX = "Artistic-1.0-cl8" - }, - new - { - Id = 36, - FsfApproved = false, - Link = "https://spdx.org/licenses/Artistic-1.0-Perl.html#licenseText", - Name = "Artistic License 1.0 (Perl)", - OsiApproved = true, - SPDX = "Artistic-1.0-Perl" - }, - new - { - Id = 37, - FsfApproved = true, - Link = "https://spdx.org/licenses/Artistic-2.0.html#licenseText", - Name = "Artistic License 2.0", - OsiApproved = true, - SPDX = "Artistic-2.0" - }, - new - { - Id = 38, - FsfApproved = false, - Link = "https://spdx.org/licenses/Bahyph.html#licenseText", - Name = "Bahyph License", - OsiApproved = false, - SPDX = "Bahyph" - }, - new - { - Id = 39, - FsfApproved = false, - Link = "https://spdx.org/licenses/Barr.html#licenseText", - Name = "Barr License", - OsiApproved = false, - SPDX = "Barr" - }, - new - { - Id = 40, - FsfApproved = false, - Link = "https://spdx.org/licenses/Beerware.html#licenseText", - Name = "Beerware License", - OsiApproved = false, - SPDX = "Beerware" - }, - new - { - Id = 41, - FsfApproved = false, - Link = "https://spdx.org/licenses/BitTorrent-1.0.html#licenseText", - Name = "BitTorrent Open Source License v1.0", - OsiApproved = false, - SPDX = "BitTorrent-1.0" - }, - new - { - Id = 42, - FsfApproved = true, - Link = "https://spdx.org/licenses/BitTorrent-1.1.html#licenseText", - Name = "BitTorrent Open Source License v1.1", - OsiApproved = false, - SPDX = "BitTorrent-1.1" - }, - new - { - Id = 43, - FsfApproved = false, - Link = "https://spdx.org/licenses/Borceux.html#licenseText", - Name = "Borceux license", - OsiApproved = false, - SPDX = "Borceux" - }, - new - { - Id = 44, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-1-Clause.html#licenseText", - Name = "BSD 1-Clause License", - OsiApproved = false, - SPDX = "BSD-1-Clause" - }, - new - { - Id = 45, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-2-Clause.html#licenseText", - Name = "BSD 2-Clause \"Simplified\" License", - OsiApproved = true, - SPDX = "BSD-2-Clause" - }, - new - { - Id = 46, - FsfApproved = true, - Link = "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html#licenseText", - Name = "BSD 2-Clause FreeBSD License", - OsiApproved = false, - SPDX = "BSD-2-Clause-FreeBSD" - }, - new - { - Id = 47, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html#licenseText", - Name = "BSD 2-Clause NetBSD License", - OsiApproved = false, - SPDX = "BSD-2-Clause-NetBSD" - }, - new - { - Id = 48, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-2-Clause-Patent.html#licenseText", - Name = "BSD-2-Clause Plus Patent License", - OsiApproved = true, - SPDX = "BSD-2-Clause-Patent" - }, - new - { - Id = 49, - FsfApproved = true, - Link = "https://spdx.org/licenses/BSD-3-Clause.html#licenseText", - Name = "BSD 3-Clause \"New\" or \"Revised\" License", - OsiApproved = true, - SPDX = "BSD-3-Clause" - }, - new - { - Id = 50, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-3-Clause-Attribution.html#licenseText", - Name = "BSD with attribution", - OsiApproved = false, - SPDX = "BSD-3-Clause-Attribution" - }, - new - { - Id = 51, - FsfApproved = true, - Link = "https://spdx.org/licenses/BSD-3-Clause-Clear.html#licenseText", - Name = "BSD 3-Clause Clear License", - OsiApproved = false, - SPDX = "BSD-3-Clause-Clear" - }, - new - { - Id = 52, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-3-Clause-LBNL.html#licenseText", - Name = "Lawrence Berkeley National Labs BSD variant license", - OsiApproved = false, - SPDX = "BSD-3-Clause-LBNL" - }, - new - { - Id = 53, - FsfApproved = false, - Link = - "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html#licenseText", - Name = "BSD 3-Clause No Nuclear License", - OsiApproved = false, - SPDX = "BSD-3-Clause-No-Nuclear-License" - }, - new - { - Id = 54, - FsfApproved = false, - Link = - "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html#licenseText", - Name = "BSD 3-Clause No Nuclear License 2014", - OsiApproved = false, - SPDX = "BSD-3-Clause-No-Nuclear-License-2014" - }, - new - { - Id = 55, - FsfApproved = false, - Link = - "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html#licenseText", - Name = "BSD 3-Clause No Nuclear Warranty", - OsiApproved = false, - SPDX = "BSD-3-Clause-No-Nuclear-Warranty" - }, - new - { - Id = 56, - FsfApproved = true, - Link = "https://spdx.org/licenses/BSD-4-Clause.html#licenseText", - Name = "BSD 4-Clause \"Original\" or \"Old\" License", - OsiApproved = false, - SPDX = "BSD-4-Clause" - }, - new - { - Id = 57, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-4-Clause-UC.html#licenseText", - Name = "BSD-4-Clause (University of California-Specific)", - OsiApproved = false, - SPDX = "BSD-4-Clause-UC" - }, - new - { - Id = 58, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-Protection.html#licenseText", - Name = "BSD Protection License", - OsiApproved = false, - SPDX = "BSD-Protection" - }, - new - { - Id = 59, - FsfApproved = false, - Link = "https://spdx.org/licenses/BSD-Source-Code.html#licenseText", - Name = "BSD Source Code Attribution", - OsiApproved = false, - SPDX = "BSD-Source-Code" - }, - new - { - Id = 60, - FsfApproved = true, - Link = "https://spdx.org/licenses/BSL-1.0.html#licenseText", - Name = "Boost Software License 1.0", - OsiApproved = true, - SPDX = "BSL-1.0" - }, - new - { - Id = 61, - FsfApproved = false, - Link = "https://spdx.org/licenses/bzip2-1.0.5.html#licenseText", - Name = "bzip2 and libbzip2 License v1.0.5", - OsiApproved = false, - SPDX = "bzip2-1.0.5" - }, - new - { - Id = 62, - FsfApproved = false, - Link = "https://spdx.org/licenses/bzip2-1.0.6.html#licenseText", - Name = "bzip2 and libbzip2 License v1.0.6", - OsiApproved = false, - SPDX = "bzip2-1.0.6" - }, - new - { - Id = 63, - FsfApproved = false, - Link = "https://spdx.org/licenses/Caldera.html#licenseText", - Name = "Caldera License", - OsiApproved = false, - SPDX = "Caldera" - }, - new - { - Id = 64, - FsfApproved = false, - Link = "https://spdx.org/licenses/CATOSL-1.1.html#licenseText", - Name = "Computer Associates Trusted Open Source License 1.1", - OsiApproved = true, - SPDX = "CATOSL-1.1" - }, - new - { - Id = 65, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-1.0.html#licenseText", - Name = "Creative Commons Attribution 1.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-1.0" - }, - new - { - Id = 66, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-2.0.html#licenseText", - Name = "Creative Commons Attribution 2.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-2.0" - }, - new - { - Id = 67, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-2.5.html#licenseText", - Name = "Creative Commons Attribution 2.5 Generic", - OsiApproved = false, - SPDX = "CC-BY-2.5" - }, - new - { - Id = 68, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-3.0.html#licenseText", - Name = "Creative Commons Attribution 3.0 Unported", - OsiApproved = false, - SPDX = "CC-BY-3.0" - }, - new - { - Id = 69, - FsfApproved = true, - Link = "https://spdx.org/licenses/CC-BY-4.0.html#licenseText", - Name = "Creative Commons Attribution 4.0 International", - OsiApproved = false, - SPDX = "CC-BY-4.0" - }, - new - { - Id = 70, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-1.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial 1.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-1.0" - }, - new - { - Id = 71, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-2.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial 2.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-2.0" - }, - new - { - Id = 72, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-2.5.html#licenseText", - Name = "Creative Commons Attribution Non Commercial 2.5 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-2.5" - }, - new - { - Id = 73, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-3.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial 3.0 Unported", - OsiApproved = false, - SPDX = "CC-BY-NC-3.0" - }, - new - { - Id = 74, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-4.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial 4.0 International", - OsiApproved = false, - SPDX = "CC-BY-NC-4.0" - }, - new - { - Id = 75, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-ND-1.0" - }, - new - { - Id = 76, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-ND-2.0" - }, - new - { - Id = 77, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html#licenseText", - Name = "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-ND-2.5" - }, - new - { - Id = 78, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", - OsiApproved = false, - SPDX = "CC-BY-NC-ND-3.0" - }, - new - { - Id = 79, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html#licenseText", - Name = - "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", - OsiApproved = false, - SPDX = "CC-BY-NC-ND-4.0" - }, - new - { - Id = 80, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-SA-1.0" - }, - new - { - Id = 81, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-SA-2.0" - }, - new - { - Id = 82, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html#licenseText", - Name = "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", - OsiApproved = false, - SPDX = "CC-BY-NC-SA-2.5" - }, - new - { - Id = 83, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", - OsiApproved = false, - SPDX = "CC-BY-NC-SA-3.0" - }, - new - { - Id = 84, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html#licenseText", - Name = "Creative Commons Attribution Non Commercial Share Alike 4.0 International", - OsiApproved = false, - SPDX = "CC-BY-NC-SA-4.0" - }, - new - { - Id = 85, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-ND-1.0.html#licenseText", - Name = "Creative Commons Attribution No Derivatives 1.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-ND-1.0" - }, - new - { - Id = 86, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-ND-2.0.html#licenseText", - Name = "Creative Commons Attribution No Derivatives 2.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-ND-2.0" - }, - new - { - Id = 87, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-ND-2.5.html#licenseText", - Name = "Creative Commons Attribution No Derivatives 2.5 Generic", - OsiApproved = false, - SPDX = "CC-BY-ND-2.5" - }, - new - { - Id = 88, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-ND-3.0.html#licenseText", - Name = "Creative Commons Attribution No Derivatives 3.0 Unported", - OsiApproved = false, - SPDX = "CC-BY-ND-3.0" - }, - new - { - Id = 89, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-ND-4.0.html#licenseText", - Name = "Creative Commons Attribution No Derivatives 4.0 International", - OsiApproved = false, - SPDX = "CC-BY-ND-4.0" - }, - new - { - Id = 90, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-SA-1.0.html#licenseText", - Name = "Creative Commons Attribution Share Alike 1.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-SA-1.0" - }, - new - { - Id = 91, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-SA-2.0.html#licenseText", - Name = "Creative Commons Attribution Share Alike 2.0 Generic", - OsiApproved = false, - SPDX = "CC-BY-SA-2.0" - }, - new - { - Id = 92, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-SA-2.5.html#licenseText", - Name = "Creative Commons Attribution Share Alike 2.5 Generic", - OsiApproved = false, - SPDX = "CC-BY-SA-2.5" - }, - new - { - Id = 93, - FsfApproved = false, - Link = "https://spdx.org/licenses/CC-BY-SA-3.0.html#licenseText", - Name = "Creative Commons Attribution Share Alike 3.0 Unported", - OsiApproved = false, - SPDX = "CC-BY-SA-3.0" - }, - new - { - Id = 94, - FsfApproved = true, - Link = "https://spdx.org/licenses/CC-BY-SA-4.0.html#licenseText", - Name = "Creative Commons Attribution Share Alike 4.0 International", - OsiApproved = false, - SPDX = "CC-BY-SA-4.0" - }, - new - { - Id = 95, - FsfApproved = true, - Link = "https://spdx.org/licenses/CC0-1.0.html#licenseText", - Name = "Creative Commons Zero v1.0 Universal", - OsiApproved = false, - SPDX = "CC0-1.0" - }, - new - { - Id = 96, - FsfApproved = true, - Link = "https://spdx.org/licenses/CDDL-1.0.html#licenseText", - Name = "Common Development and Distribution License 1.0", - OsiApproved = true, - SPDX = "CDDL-1.0" - }, - new - { - Id = 97, - FsfApproved = false, - Link = "https://spdx.org/licenses/CDDL-1.1.html#licenseText", - Name = "Common Development and Distribution License 1.1", - OsiApproved = false, - SPDX = "CDDL-1.1" - }, - new - { - Id = 98, - FsfApproved = false, - Link = "https://spdx.org/licenses/CDLA-Permissive-1.0.html#licenseText", - Name = "Community Data License Agreement Permissive 1.0", - OsiApproved = false, - SPDX = "CDLA-Permissive-1.0" - }, - new - { - Id = 99, - FsfApproved = false, - Link = "https://spdx.org/licenses/CDLA-Sharing-1.0.html#licenseText", - Name = "Community Data License Agreement Sharing 1.0", - OsiApproved = false, - SPDX = "CDLA-Sharing-1.0" - }, - new - { - Id = 100, - FsfApproved = false, - Link = "https://spdx.org/licenses/CECILL-1.0.html#licenseText", - Name = "CeCILL Free Software License Agreement v1.0", - OsiApproved = false, - SPDX = "CECILL-1.0" - }, - new - { - Id = 101, - FsfApproved = false, - Link = "https://spdx.org/licenses/CECILL-1.1.html#licenseText", - Name = "CeCILL Free Software License Agreement v1.1", - OsiApproved = false, - SPDX = "CECILL-1.1" - }, - new - { - Id = 102, - FsfApproved = true, - Link = "https://spdx.org/licenses/CECILL-2.0.html#licenseText", - Name = "CeCILL Free Software License Agreement v2.0", - OsiApproved = false, - SPDX = "CECILL-2.0" - }, - new - { - Id = 103, - FsfApproved = false, - Link = "https://spdx.org/licenses/CECILL-2.1.html#licenseText", - Name = "CeCILL Free Software License Agreement v2.1", - OsiApproved = true, - SPDX = "CECILL-2.1" - }, - new - { - Id = 104, - FsfApproved = true, - Link = "https://spdx.org/licenses/CECILL-B.html#licenseText", - Name = "CeCILL-B Free Software License Agreement", - OsiApproved = false, - SPDX = "CECILL-B" - }, - new - { - Id = 105, - FsfApproved = true, - Link = "https://spdx.org/licenses/CECILL-C.html#licenseText", - Name = "CeCILL-C Free Software License Agreement", - OsiApproved = false, - SPDX = "CECILL-C" - }, - new - { - Id = 106, - FsfApproved = false, - Link = "https://spdx.org/licenses/CERN-OHL-1.1.html#licenseText", - Name = "CERN Open Hardware License v1.1", - OsiApproved = false, - SPDX = "CERN-OHL-1.1" - }, - new - { - Id = 107, - FsfApproved = false, - Link = "https://spdx.org/licenses/CERN-OHL-1.2.html#licenseText", - Name = "CERN Open Hardware Licence v1.2", - OsiApproved = false, - SPDX = "CERN-OHL-1.2" - }, - new - { - Id = 108, - FsfApproved = true, - Link = "https://spdx.org/licenses/ClArtistic.html#licenseText", - Name = "Clarified Artistic License", - OsiApproved = false, - SPDX = "ClArtistic" - }, - new - { - Id = 109, - FsfApproved = false, - Link = "https://spdx.org/licenses/CNRI-Jython.html#licenseText", - Name = "CNRI Jython License", - OsiApproved = false, - SPDX = "CNRI-Jython" - }, - new - { - Id = 110, - FsfApproved = false, - Link = "https://spdx.org/licenses/CNRI-Python.html#licenseText", - Name = "CNRI Python License", - OsiApproved = true, - SPDX = "CNRI-Python" - }, - new - { - Id = 111, - FsfApproved = false, - Link = "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html#licenseText", - Name = "CNRI Python Open Source GPL Compatible License Agreement", - OsiApproved = false, - SPDX = "CNRI-Python-GPL-Compatible" - }, - new - { - Id = 112, - FsfApproved = true, - Link = "https://spdx.org/licenses/Condor-1.1.html#licenseText", - Name = "Condor Public License v1.1", - OsiApproved = false, - SPDX = "Condor-1.1" - }, - new - { - Id = 113, - FsfApproved = false, - Link = "https://spdx.org/licenses/copyleft-next-0.3.0.html#licenseText", - Name = "copyleft-next 0.3.0", - OsiApproved = false, - SPDX = "copyleft-next-0.3.0" - }, - new - { - Id = 114, - FsfApproved = false, - Link = "https://spdx.org/licenses/copyleft-next-0.3.1.html#licenseText", - Name = "copyleft-next 0.3.1", - OsiApproved = false, - SPDX = "copyleft-next-0.3.1" - }, - new - { - Id = 115, - FsfApproved = true, - Link = "https://spdx.org/licenses/CPAL-1.0.html#licenseText", - Name = "Common Public Attribution License 1.0", - OsiApproved = true, - SPDX = "CPAL-1.0" - }, - new - { - Id = 116, - FsfApproved = true, - Link = "https://spdx.org/licenses/CPL-1.0.html#licenseText", - Name = "Common Public License 1.0", - OsiApproved = true, - SPDX = "CPL-1.0" - }, - new - { - Id = 117, - FsfApproved = false, - Link = "https://spdx.org/licenses/CPOL-1.02.html#licenseText", - Name = "Code Project Open License 1.02", - OsiApproved = false, - SPDX = "CPOL-1.02" - }, - new - { - Id = 118, - FsfApproved = false, - Link = "https://spdx.org/licenses/Crossword.html#licenseText", - Name = "Crossword License", - OsiApproved = false, - SPDX = "Crossword" - }, - new - { - Id = 119, - FsfApproved = false, - Link = "https://spdx.org/licenses/CrystalStacker.html#licenseText", - Name = "CrystalStacker License", - OsiApproved = false, - SPDX = "CrystalStacker" - }, - new - { - Id = 120, - FsfApproved = false, - Link = "https://spdx.org/licenses/CUA-OPL-1.0.html#licenseText", - Name = "CUA Office Public License v1.0", - OsiApproved = true, - SPDX = "CUA-OPL-1.0" - }, - new - { - Id = 121, - FsfApproved = false, - Link = "https://spdx.org/licenses/Cube.html#licenseText", - Name = "Cube License", - OsiApproved = false, - SPDX = "Cube" - }, - new - { - Id = 122, - FsfApproved = false, - Link = "https://spdx.org/licenses/curl.html#licenseText", - Name = "curl License", - OsiApproved = false, - SPDX = "curl" - }, - new - { - Id = 123, - FsfApproved = false, - Link = "https://spdx.org/licenses/D-FSL-1.0.html#licenseText", - Name = "Deutsche Freie Software Lizenz", - OsiApproved = false, - SPDX = "D-FSL-1.0" - }, - new - { - Id = 124, - FsfApproved = false, - Link = "https://spdx.org/licenses/diffmark.html#licenseText", - Name = "diffmark license", - OsiApproved = false, - SPDX = "diffmark" - }, - new - { - Id = 125, - FsfApproved = false, - Link = "https://spdx.org/licenses/DOC.html#licenseText", - Name = "DOC License", - OsiApproved = false, - SPDX = "DOC" - }, - new - { - Id = 126, - FsfApproved = false, - Link = "https://spdx.org/licenses/Dotseqn.html#licenseText", - Name = "Dotseqn License", - OsiApproved = false, - SPDX = "Dotseqn" - }, - new - { - Id = 127, - FsfApproved = false, - Link = "https://spdx.org/licenses/DSDP.html#licenseText", - Name = "DSDP License", - OsiApproved = false, - SPDX = "DSDP" - }, - new - { - Id = 128, - FsfApproved = false, - Link = "https://spdx.org/licenses/dvipdfm.html#licenseText", - Name = "dvipdfm License", - OsiApproved = false, - SPDX = "dvipdfm" - }, - new - { - Id = 129, - FsfApproved = false, - Link = "https://spdx.org/licenses/ECL-1.0.html#licenseText", - Name = "Educational Community License v1.0", - OsiApproved = true, - SPDX = "ECL-1.0" - }, - new - { - Id = 130, - FsfApproved = true, - Link = "https://spdx.org/licenses/ECL-2.0.html#licenseText", - Name = "Educational Community License v2.0", - OsiApproved = true, - SPDX = "ECL-2.0" - }, - new - { - Id = 131, - FsfApproved = false, - Link = "https://spdx.org/licenses/EFL-1.0.html#licenseText", - Name = "Eiffel Forum License v1.0", - OsiApproved = true, - SPDX = "EFL-1.0" - }, - new - { - Id = 132, - FsfApproved = true, - Link = "https://spdx.org/licenses/EFL-2.0.html#licenseText", - Name = "Eiffel Forum License v2.0", - OsiApproved = true, - SPDX = "EFL-2.0" - }, - new - { - Id = 133, - FsfApproved = false, - Link = "https://spdx.org/licenses/eGenix.html#licenseText", - Name = "eGenix.com Public License 1.1.0", - OsiApproved = false, - SPDX = "eGenix" - }, - new - { - Id = 134, - FsfApproved = false, - Link = "https://spdx.org/licenses/Entessa.html#licenseText", - Name = "Entessa Public License v1.0", - OsiApproved = true, - SPDX = "Entessa" - }, - new - { - Id = 135, - FsfApproved = true, - Link = "https://spdx.org/licenses/EPL-1.0.html#licenseText", - Name = "Eclipse Public License 1.0", - OsiApproved = true, - SPDX = "EPL-1.0" - }, - new - { - Id = 136, - FsfApproved = true, - Link = "https://spdx.org/licenses/EPL-2.0.html#licenseText", - Name = "Eclipse Public License 2.0", - OsiApproved = true, - SPDX = "EPL-2.0" - }, - new - { - Id = 137, - FsfApproved = false, - Link = "https://spdx.org/licenses/ErlPL-1.1.html#licenseText", - Name = "Erlang Public License v1.1", - OsiApproved = false, - SPDX = "ErlPL-1.1" - }, - new - { - Id = 138, - FsfApproved = true, - Link = "https://spdx.org/licenses/EUDatagrid.html#licenseText", - Name = "EU DataGrid Software License", - OsiApproved = true, - SPDX = "EUDatagrid" - }, - new - { - Id = 139, - FsfApproved = false, - Link = "https://spdx.org/licenses/EUPL-1.0.html#licenseText", - Name = "European Union Public License 1.0", - OsiApproved = false, - SPDX = "EUPL-1.0" - }, - new - { - Id = 140, - FsfApproved = true, - Link = "https://spdx.org/licenses/EUPL-1.1.html#licenseText", - Name = "European Union Public License 1.1", - OsiApproved = true, - SPDX = "EUPL-1.1" - }, - new - { - Id = 141, - FsfApproved = true, - Link = "https://spdx.org/licenses/EUPL-1.2.html#licenseText", - Name = "European Union Public License 1.2", - OsiApproved = true, - SPDX = "EUPL-1.2" - }, - new - { - Id = 142, - FsfApproved = false, - Link = "https://spdx.org/licenses/Eurosym.html#licenseText", - Name = "Eurosym License", - OsiApproved = false, - SPDX = "Eurosym" - }, - new - { - Id = 143, - FsfApproved = false, - Link = "https://spdx.org/licenses/Fair.html#licenseText", - Name = "Fair License", - OsiApproved = true, - SPDX = "Fair" - }, - new - { - Id = 144, - FsfApproved = false, - Link = "https://spdx.org/licenses/Frameworx-1.0.html#licenseText", - Name = "Frameworx Open License 1.0", - OsiApproved = true, - SPDX = "Frameworx-1.0" - }, - new - { - Id = 145, - FsfApproved = false, - Link = "https://spdx.org/licenses/FreeImage.html#licenseText", - Name = "FreeImage Public License v1.0", - OsiApproved = false, - SPDX = "FreeImage" - }, - new - { - Id = 146, - FsfApproved = true, - Link = "https://spdx.org/licenses/FSFAP.html#licenseText", - Name = "FSF All Permissive License", - OsiApproved = false, - SPDX = "FSFAP" - }, - new - { - Id = 147, - FsfApproved = false, - Link = "https://spdx.org/licenses/FSFUL.html#licenseText", - Name = "FSF Unlimited License", - OsiApproved = false, - SPDX = "FSFUL" - }, - new - { - Id = 148, - FsfApproved = false, - Link = "https://spdx.org/licenses/FSFULLR.html#licenseText", - Name = "FSF Unlimited License (with License Retention)", - OsiApproved = false, - SPDX = "FSFULLR" - }, - new - { - Id = 149, - FsfApproved = true, - Link = "https://spdx.org/licenses/FTL.html#licenseText", - Name = "Freetype Project License", - OsiApproved = false, - SPDX = "FTL" - }, - new - { - Id = 150, - FsfApproved = true, - Link = "https://spdx.org/licenses/GFDL-1.1-only.html#licenseText", - Name = "GNU Free Documentation License v1.1 only", - OsiApproved = false, - SPDX = "GFDL-1.1-only" - }, - new - { - Id = 151, - FsfApproved = true, - Link = "https://spdx.org/licenses/GFDL-1.1-or-later.html#licenseText", - Name = "GNU Free Documentation License v1.1 or later", - OsiApproved = false, - SPDX = "GFDL-1.1-or-later" - }, - new - { - Id = 152, - FsfApproved = true, - Link = "https://spdx.org/licenses/GFDL-1.2-only.html#licenseText", - Name = "GNU Free Documentation License v1.2 only", - OsiApproved = false, - SPDX = "GFDL-1.2-only" - }, - new - { - Id = 153, - FsfApproved = true, - Link = "https://spdx.org/licenses/GFDL-1.2-or-later.html#licenseText", - Name = "GNU Free Documentation License v1.2 or later", - OsiApproved = false, - SPDX = "GFDL-1.2-or-later" - }, - new - { - Id = 154, - FsfApproved = true, - Link = "https://spdx.org/licenses/GFDL-1.3-only.html#licenseText", - Name = "GNU Free Documentation License v1.3 only", - OsiApproved = false, - SPDX = "GFDL-1.3-only" - }, - new - { - Id = 155, - FsfApproved = true, - Link = "https://spdx.org/licenses/GFDL-1.3-or-later.html#licenseText", - Name = "GNU Free Documentation License v1.3 or later", - OsiApproved = false, - SPDX = "GFDL-1.3-or-later" - }, - new - { - Id = 156, - FsfApproved = false, - Link = "https://spdx.org/licenses/Giftware.html#licenseText", - Name = "Giftware License", - OsiApproved = false, - SPDX = "Giftware" - }, - new - { - Id = 157, - FsfApproved = false, - Link = "https://spdx.org/licenses/GL2PS.html#licenseText", - Name = "GL2PS License", - OsiApproved = false, - SPDX = "GL2PS" - }, - new - { - Id = 158, - FsfApproved = false, - Link = "https://spdx.org/licenses/Glide.html#licenseText", - Name = "3dfx Glide License", - OsiApproved = false, - SPDX = "Glide" - }, - new - { - Id = 159, - FsfApproved = false, - Link = "https://spdx.org/licenses/Glulxe.html#licenseText", - Name = "Glulxe License", - OsiApproved = false, - SPDX = "Glulxe" - }, - new - { - Id = 160, - FsfApproved = true, - Link = "https://spdx.org/licenses/gnuplot.html#licenseText", - Name = "gnuplot License", - OsiApproved = false, - SPDX = "gnuplot" - }, - new - { - Id = 161, - FsfApproved = false, - Link = "https://spdx.org/licenses/GPL-1.0-only.html#licenseText", - Name = "GNU General Public License v1.0 only", - OsiApproved = false, - SPDX = "GPL-1.0-only" - }, - new - { - Id = 162, - FsfApproved = false, - Link = "https://spdx.org/licenses/GPL-1.0-or-later.html#licenseText", - Name = "GNU General Public License v1.0 or later", - OsiApproved = false, - SPDX = "GPL-1.0-or-later" - }, - new - { - Id = 163, - FsfApproved = true, - Link = "https://spdx.org/licenses/GPL-2.0-only.html#licenseText", - Name = "GNU General Public License v2.0 only", - OsiApproved = true, - SPDX = "GPL-2.0-only" - }, - new - { - Id = 164, - FsfApproved = true, - Link = "https://spdx.org/licenses/GPL-2.0-or-later.html#licenseText", - Name = "GNU General Public License v2.0 or later", - OsiApproved = true, - SPDX = "GPL-2.0-or-later" - }, - new - { - Id = 165, - FsfApproved = true, - Link = "https://spdx.org/licenses/GPL-3.0-only.html#licenseText", - Name = "GNU General Public License v3.0 only", - OsiApproved = true, - SPDX = "GPL-3.0-only" - }, - new - { - Id = 166, - FsfApproved = true, - Link = "https://spdx.org/licenses/GPL-3.0-or-later.html#licenseText", - Name = "GNU General Public License v3.0 or later", - OsiApproved = true, - SPDX = "GPL-3.0-or-later" - }, - new - { - Id = 167, - FsfApproved = false, - Link = "https://spdx.org/licenses/gSOAP-1.3b.html#licenseText", - Name = "gSOAP Public License v1.3b", - OsiApproved = false, - SPDX = "gSOAP-1.3b" - }, - new - { - Id = 168, - FsfApproved = false, - Link = "https://spdx.org/licenses/HaskellReport.html#licenseText", - Name = "Haskell Language Report License", - OsiApproved = false, - SPDX = "HaskellReport" - }, - new - { - Id = 169, - FsfApproved = true, - Link = "https://spdx.org/licenses/HPND.html#licenseText", - Name = "Historical Permission Notice and Disclaimer", - OsiApproved = true, - SPDX = "HPND" - }, - new - { - Id = 170, - FsfApproved = false, - Link = "https://spdx.org/licenses/HPND-sell-variant.html#licenseText", - Name = "Historical Permission Notice and Disclaimer - sell variant", - OsiApproved = false, - SPDX = "HPND-sell-variant" - }, - new - { - Id = 171, - FsfApproved = false, - Link = "https://spdx.org/licenses/IBM-pibs.html#licenseText", - Name = "IBM PowerPC Initialization and Boot Software", - OsiApproved = false, - SPDX = "IBM-pibs" - }, - new - { - Id = 172, - FsfApproved = false, - Link = "https://spdx.org/licenses/ICU.html#licenseText", - Name = "ICU License", - OsiApproved = false, - SPDX = "ICU" - }, - new - { - Id = 173, - FsfApproved = true, - Link = "https://spdx.org/licenses/IJG.html#licenseText", - Name = "Independent JPEG Group License", - OsiApproved = false, - SPDX = "IJG" - }, - new - { - Id = 174, - FsfApproved = false, - Link = "https://spdx.org/licenses/ImageMagick.html#licenseText", - Name = "ImageMagick License", - OsiApproved = false, - SPDX = "ImageMagick" - }, - new - { - Id = 175, - FsfApproved = true, - Link = "https://spdx.org/licenses/iMatix.html#licenseText", - Name = "iMatix Standard Function Library Agreement", - OsiApproved = false, - SPDX = "iMatix" - }, - new - { - Id = 176, - FsfApproved = true, - Link = "https://spdx.org/licenses/Imlib2.html#licenseText", - Name = "Imlib2 License", - OsiApproved = false, - SPDX = "Imlib2" - }, - new - { - Id = 177, - FsfApproved = false, - Link = "https://spdx.org/licenses/Info-ZIP.html#licenseText", - Name = "Info-ZIP License", - OsiApproved = false, - SPDX = "Info-ZIP" - }, - new - { - Id = 178, - FsfApproved = true, - Link = "https://spdx.org/licenses/Intel.html#licenseText", - Name = "Intel Open Source License", - OsiApproved = true, - SPDX = "Intel" - }, - new - { - Id = 179, - FsfApproved = false, - Link = "https://spdx.org/licenses/Intel-ACPI.html#licenseText", - Name = "Intel ACPI Software License Agreement", - OsiApproved = false, - SPDX = "Intel-ACPI" - }, - new - { - Id = 180, - FsfApproved = false, - Link = "https://spdx.org/licenses/Interbase-1.0.html#licenseText", - Name = "Interbase Public License v1.0", - OsiApproved = false, - SPDX = "Interbase-1.0" - }, - new - { - Id = 181, - FsfApproved = true, - Link = "https://spdx.org/licenses/IPA.html#licenseText", - Name = "IPA Font License", - OsiApproved = true, - SPDX = "IPA" - }, - new - { - Id = 182, - FsfApproved = true, - Link = "https://spdx.org/licenses/IPL-1.0.html#licenseText", - Name = "IBM Public License v1.0", - OsiApproved = true, - SPDX = "IPL-1.0" - }, - new - { - Id = 183, - FsfApproved = true, - Link = "https://spdx.org/licenses/ISC.html#licenseText", - Name = "ISC License", - OsiApproved = true, - SPDX = "ISC" - }, - new - { - Id = 184, - FsfApproved = false, - Link = "https://spdx.org/licenses/JasPer-2.0.html#licenseText", - Name = "JasPer License", - OsiApproved = false, - SPDX = "JasPer-2.0" - }, - new - { - Id = 185, - FsfApproved = false, - Link = "https://spdx.org/licenses/JPNIC.html#licenseText", - Name = "Japan Network Information Center License", - OsiApproved = false, - SPDX = "JPNIC" - }, - new - { - Id = 186, - FsfApproved = false, - Link = "https://spdx.org/licenses/JSON.html#licenseText", - Name = "JSON License", - OsiApproved = false, - SPDX = "JSON" - }, - new - { - Id = 187, - FsfApproved = false, - Link = "https://spdx.org/licenses/LAL-1.2.html#licenseText", - Name = "Licence Art Libre 1.2", - OsiApproved = false, - SPDX = "LAL-1.2" - }, - new - { - Id = 188, - FsfApproved = false, - Link = "https://spdx.org/licenses/LAL-1.3.html#licenseText", - Name = "Licence Art Libre 1.3", - OsiApproved = false, - SPDX = "LAL-1.3" - }, - new - { - Id = 189, - FsfApproved = false, - Link = "https://spdx.org/licenses/Latex2e.html#licenseText", - Name = "Latex2e License", - OsiApproved = false, - SPDX = "Latex2e" - }, - new - { - Id = 190, - FsfApproved = false, - Link = "https://spdx.org/licenses/Leptonica.html#licenseText", - Name = "Leptonica License", - OsiApproved = false, - SPDX = "Leptonica" - }, - new - { - Id = 191, - FsfApproved = false, - Link = "https://spdx.org/licenses/LGPL-2.0-only.html#licenseText", - Name = "GNU Library General Public License v2 only", - OsiApproved = true, - SPDX = "LGPL-2.0-only" - }, - new - { - Id = 192, - FsfApproved = false, - Link = "https://spdx.org/licenses/LGPL-2.0-or-later.html#licenseText", - Name = "GNU Library General Public License v2 or later", - OsiApproved = true, - SPDX = "LGPL-2.0-or-later" - }, - new - { - Id = 193, - FsfApproved = true, - Link = "https://spdx.org/licenses/LGPL-2.1-only.html#licenseText", - Name = "GNU Lesser General Public License v2.1 only", - OsiApproved = true, - SPDX = "LGPL-2.1-only" - }, - new - { - Id = 194, - FsfApproved = true, - Link = "https://spdx.org/licenses/LGPL-2.1-or-later.html#licenseText", - Name = "GNU Lesser General Public License v2.1 or later", - OsiApproved = true, - SPDX = "LGPL-2.1-or-later" - }, - new - { - Id = 195, - FsfApproved = true, - Link = "https://spdx.org/licenses/LGPL-3.0-only.html#licenseText", - Name = "GNU Lesser General Public License v3.0 only", - OsiApproved = true, - SPDX = "LGPL-3.0-only" - }, - new - { - Id = 196, - FsfApproved = true, - Link = "https://spdx.org/licenses/LGPL-3.0-or-later.html#licenseText", - Name = "GNU Lesser General Public License v3.0 or later", - OsiApproved = true, - SPDX = "LGPL-3.0-or-later" - }, - new - { - Id = 197, - FsfApproved = false, - Link = "https://spdx.org/licenses/LGPLLR.html#licenseText", - Name = "Lesser General Public License For Linguistic Resources", - OsiApproved = false, - SPDX = "LGPLLR" - }, - new - { - Id = 198, - FsfApproved = false, - Link = "https://spdx.org/licenses/Libpng.html#licenseText", - Name = "libpng License", - OsiApproved = false, - SPDX = "Libpng" - }, - new - { - Id = 199, - FsfApproved = false, - Link = "https://spdx.org/licenses/libpng-2.0.html#licenseText", - Name = "PNG Reference Library version 2", - OsiApproved = false, - SPDX = "libpng-2.0" - }, - new - { - Id = 200, - FsfApproved = false, - Link = "https://spdx.org/licenses/libtiff.html#licenseText", - Name = "libtiff License", - OsiApproved = false, - SPDX = "libtiff" - }, - new - { - Id = 201, - FsfApproved = false, - Link = "https://spdx.org/licenses/LiLiQ-P-1.1.html#licenseText", - Name = "Licence Libre du Québec – Permissive version 1.1", - OsiApproved = true, - SPDX = "LiLiQ-P-1.1" - }, - new - { - Id = 202, - FsfApproved = false, - Link = "https://spdx.org/licenses/LiLiQ-R-1.1.html#licenseText", - Name = "Licence Libre du Québec – Réciprocité version 1.1", - OsiApproved = true, - SPDX = "LiLiQ-R-1.1" - }, - new - { - Id = 203, - FsfApproved = false, - Link = "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html#licenseText", - Name = "Licence Libre du Québec – Réciprocité forte version 1.1", - OsiApproved = true, - SPDX = "LiLiQ-Rplus-1.1" - }, - new - { - Id = 204, - FsfApproved = false, - Link = "https://spdx.org/licenses/Linux-OpenIB.html#licenseText", - Name = "Linux Kernel Variant of OpenIB.org license", - OsiApproved = false, - SPDX = "Linux-OpenIB" - }, - new - { - Id = 205, - FsfApproved = false, - Link = "https://spdx.org/licenses/LPL-1.0.html#licenseText", - Name = "Lucent Public License Version 1.0", - OsiApproved = true, - SPDX = "LPL-1.0" - }, - new - { - Id = 206, - FsfApproved = true, - Link = "https://spdx.org/licenses/LPL-1.02.html#licenseText", - Name = "Lucent Public License v1.02", - OsiApproved = true, - SPDX = "LPL-1.02" - }, - new - { - Id = 207, - FsfApproved = false, - Link = "https://spdx.org/licenses/LPPL-1.0.html#licenseText", - Name = "LaTeX Project Public License v1.0", - OsiApproved = false, - SPDX = "LPPL-1.0" - }, - new - { - Id = 208, - FsfApproved = false, - Link = "https://spdx.org/licenses/LPPL-1.1.html#licenseText", - Name = "LaTeX Project Public License v1.1", - OsiApproved = false, - SPDX = "LPPL-1.1" - }, - new - { - Id = 209, - FsfApproved = true, - Link = "https://spdx.org/licenses/LPPL-1.2.html#licenseText", - Name = "LaTeX Project Public License v1.2", - OsiApproved = false, - SPDX = "LPPL-1.2" - }, - new - { - Id = 210, - FsfApproved = true, - Link = "https://spdx.org/licenses/LPPL-1.3a.html#licenseText", - Name = "LaTeX Project Public License v1.3a", - OsiApproved = false, - SPDX = "LPPL-1.3a" - }, - new - { - Id = 211, - FsfApproved = false, - Link = "https://spdx.org/licenses/LPPL-1.3c.html#licenseText", - Name = "LaTeX Project Public License v1.3c", - OsiApproved = true, - SPDX = "LPPL-1.3c" - }, - new - { - Id = 212, - FsfApproved = false, - Link = "https://spdx.org/licenses/MakeIndex.html#licenseText", - Name = "MakeIndex License", - OsiApproved = false, - SPDX = "MakeIndex" - }, - new - { - Id = 213, - FsfApproved = false, - Link = "https://spdx.org/licenses/MirOS.html#licenseText", - Name = "MirOS License", - OsiApproved = true, - SPDX = "MirOS" - }, - new - { - Id = 214, - FsfApproved = true, - Link = "https://spdx.org/licenses/MIT.html#licenseText", - Name = "MIT License", - OsiApproved = true, - SPDX = "MIT" - }, - new - { - Id = 215, - FsfApproved = false, - Link = "https://spdx.org/licenses/MIT-0.html#licenseText", - Name = "MIT No Attribution", - OsiApproved = true, - SPDX = "MIT-0" - }, - new - { - Id = 216, - FsfApproved = false, - Link = "https://spdx.org/licenses/MIT-advertising.html#licenseText", - Name = "Enlightenment License (e16)", - OsiApproved = false, - SPDX = "MIT-advertising" - }, - new - { - Id = 217, - FsfApproved = false, - Link = "https://spdx.org/licenses/MIT-CMU.html#licenseText", - Name = "CMU License", - OsiApproved = false, - SPDX = "MIT-CMU" - }, - new - { - Id = 218, - FsfApproved = false, - Link = "https://spdx.org/licenses/MIT-enna.html#licenseText", - Name = "enna License", - OsiApproved = false, - SPDX = "MIT-enna" - }, - new - { - Id = 219, - FsfApproved = false, - Link = "https://spdx.org/licenses/MIT-feh.html#licenseText", - Name = "feh License", - OsiApproved = false, - SPDX = "MIT-feh" - }, - new - { - Id = 220, - FsfApproved = false, - Link = "https://spdx.org/licenses/MITNFA.html#licenseText", - Name = "MIT +no-false-attribs license", - OsiApproved = false, - SPDX = "MITNFA" - }, - new - { - Id = 221, - FsfApproved = false, - Link = "https://spdx.org/licenses/Motosoto.html#licenseText", - Name = "Motosoto License", - OsiApproved = true, - SPDX = "Motosoto" - }, - new - { - Id = 222, - FsfApproved = false, - Link = "https://spdx.org/licenses/mpich2.html#licenseText", - Name = "mpich2 License", - OsiApproved = false, - SPDX = "mpich2" - }, - new - { - Id = 223, - FsfApproved = false, - Link = "https://spdx.org/licenses/MPL-1.0.html#licenseText", - Name = "Mozilla Public License 1.0", - OsiApproved = true, - SPDX = "MPL-1.0" - }, - new - { - Id = 224, - FsfApproved = true, - Link = "https://spdx.org/licenses/MPL-1.1.html#licenseText", - Name = "Mozilla Public License 1.1", - OsiApproved = true, - SPDX = "MPL-1.1" - }, - new - { - Id = 225, - FsfApproved = true, - Link = "https://spdx.org/licenses/MPL-2.0.html#licenseText", - Name = "Mozilla Public License 2.0", - OsiApproved = true, - SPDX = "MPL-2.0" - }, - new - { - Id = 226, - FsfApproved = false, - Link = "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html#licenseText", - Name = "Mozilla Public License 2.0 (no copyleft exception)", - OsiApproved = true, - SPDX = "MPL-2.0-no-copyleft-exception" - }, - new - { - Id = 227, - FsfApproved = true, - Link = "https://spdx.org/licenses/MS-PL.html#licenseText", - Name = "Microsoft Public License", - OsiApproved = true, - SPDX = "MS-PL" - }, - new - { - Id = 228, - FsfApproved = true, - Link = "https://spdx.org/licenses/MS-RL.html#licenseText", - Name = "Microsoft Reciprocal License", - OsiApproved = true, - SPDX = "MS-RL" - }, - new - { - Id = 229, - FsfApproved = false, - Link = "https://spdx.org/licenses/MTLL.html#licenseText", - Name = "Matrix Template Library License", - OsiApproved = false, - SPDX = "MTLL" - }, - new - { - Id = 230, - FsfApproved = false, - Link = "https://spdx.org/licenses/Multics.html#licenseText", - Name = "Multics License", - OsiApproved = true, - SPDX = "Multics" - }, - new - { - Id = 231, - FsfApproved = false, - Link = "https://spdx.org/licenses/Mup.html#licenseText", - Name = "Mup License", - OsiApproved = false, - SPDX = "Mup" - }, - new - { - Id = 232, - FsfApproved = false, - Link = "https://spdx.org/licenses/NASA-1.3.html#licenseText", - Name = "NASA Open Source Agreement 1.3", - OsiApproved = true, - SPDX = "NASA-1.3" - }, - new - { - Id = 233, - FsfApproved = false, - Link = "https://spdx.org/licenses/Naumen.html#licenseText", - Name = "Naumen Public License", - OsiApproved = true, - SPDX = "Naumen" - }, - new - { - Id = 234, - FsfApproved = false, - Link = "https://spdx.org/licenses/NBPL-1.0.html#licenseText", - Name = "Net Boolean Public License v1", - OsiApproved = false, - SPDX = "NBPL-1.0" - }, - new - { - Id = 235, - FsfApproved = true, - Link = "https://spdx.org/licenses/NCSA.html#licenseText", - Name = "University of Illinois/NCSA Open Source License", - OsiApproved = true, - SPDX = "NCSA" - }, - new - { - Id = 236, - FsfApproved = false, - Link = "https://spdx.org/licenses/Net-SNMP.html#licenseText", - Name = "Net-SNMP License", - OsiApproved = false, - SPDX = "Net-SNMP" - }, - new - { - Id = 237, - FsfApproved = false, - Link = "https://spdx.org/licenses/NetCDF.html#licenseText", - Name = "NetCDF license", - OsiApproved = false, - SPDX = "NetCDF" - }, - new - { - Id = 238, - FsfApproved = false, - Link = "https://spdx.org/licenses/Newsletr.html#licenseText", - Name = "Newsletr License", - OsiApproved = false, - SPDX = "Newsletr" - }, - new - { - Id = 239, - FsfApproved = false, - Link = "https://spdx.org/licenses/NGPL.html#licenseText", - Name = "Nethack General Public License", - OsiApproved = true, - SPDX = "NGPL" - }, - new - { - Id = 240, - FsfApproved = false, - Link = "https://spdx.org/licenses/NLOD-1.0.html#licenseText", - Name = "Norwegian Licence for Open Government Data", - OsiApproved = false, - SPDX = "NLOD-1.0" - }, - new - { - Id = 241, - FsfApproved = false, - Link = "https://spdx.org/licenses/NLPL.html#licenseText", - Name = "No Limit Public License", - OsiApproved = false, - SPDX = "NLPL" - }, - new - { - Id = 242, - FsfApproved = true, - Link = "https://spdx.org/licenses/Nokia.html#licenseText", - Name = "Nokia Open Source License", - OsiApproved = true, - SPDX = "Nokia" - }, - new - { - Id = 243, - FsfApproved = true, - Link = "https://spdx.org/licenses/NOSL.html#licenseText", - Name = "Netizen Open Source License", - OsiApproved = false, - SPDX = "NOSL" - }, - new - { - Id = 244, - FsfApproved = false, - Link = "https://spdx.org/licenses/Noweb.html#licenseText", - Name = "Noweb License", - OsiApproved = false, - SPDX = "Noweb" - }, - new - { - Id = 245, - FsfApproved = true, - Link = "https://spdx.org/licenses/NPL-1.0.html#licenseText", - Name = "Netscape Public License v1.0", - OsiApproved = false, - SPDX = "NPL-1.0" - }, - new - { - Id = 246, - FsfApproved = true, - Link = "https://spdx.org/licenses/NPL-1.1.html#licenseText", - Name = "Netscape Public License v1.1", - OsiApproved = false, - SPDX = "NPL-1.1" - }, - new - { - Id = 247, - FsfApproved = false, - Link = "https://spdx.org/licenses/NPOSL-3.0.html#licenseText", - Name = "Non-Profit Open Software License 3.0", - OsiApproved = true, - SPDX = "NPOSL-3.0" - }, - new - { - Id = 248, - FsfApproved = false, - Link = "https://spdx.org/licenses/NRL.html#licenseText", - Name = "NRL License", - OsiApproved = false, - SPDX = "NRL" - }, - new - { - Id = 249, - FsfApproved = false, - Link = "https://spdx.org/licenses/NTP.html#licenseText", - Name = "NTP License", - OsiApproved = true, - SPDX = "NTP" - }, - new - { - Id = 250, - FsfApproved = false, - Link = "https://spdx.org/licenses/OCCT-PL.html#licenseText", - Name = "Open CASCADE Technology Public License", - OsiApproved = false, - SPDX = "OCCT-PL" - }, - new - { - Id = 251, - FsfApproved = false, - Link = "https://spdx.org/licenses/OCLC-2.0.html#licenseText", - Name = "OCLC Research Public License 2.0", - OsiApproved = true, - SPDX = "OCLC-2.0" - }, - new - { - Id = 252, - FsfApproved = true, - Link = "https://spdx.org/licenses/ODbL-1.0.html#licenseText", - Name = "ODC Open Database License v1.0", - OsiApproved = false, - SPDX = "ODbL-1.0" - }, - new - { - Id = 253, - FsfApproved = false, - Link = "https://spdx.org/licenses/ODC-By-1.0.html#licenseText", - Name = "Open Data Commons Attribution License v1.0", - OsiApproved = false, - SPDX = "ODC-By-1.0" - }, - new - { - Id = 254, - FsfApproved = true, - Link = "https://spdx.org/licenses/OFL-1.0.html#licenseText", - Name = "SIL Open Font License 1.0", - OsiApproved = false, - SPDX = "OFL-1.0" - }, - new - { - Id = 255, - FsfApproved = true, - Link = "https://spdx.org/licenses/OFL-1.1.html#licenseText", - Name = "SIL Open Font License 1.1", - OsiApproved = true, - SPDX = "OFL-1.1" - }, - new - { - Id = 256, - FsfApproved = false, - Link = "https://spdx.org/licenses/OGL-UK-1.0.html#licenseText", - Name = "Open Government Licence v1.0", - OsiApproved = false, - SPDX = "OGL-UK-1.0" - }, - new - { - Id = 257, - FsfApproved = false, - Link = "https://spdx.org/licenses/OGL-UK-2.0.html#licenseText", - Name = "Open Government Licence v2.0", - OsiApproved = false, - SPDX = "OGL-UK-2.0" - }, - new - { - Id = 258, - FsfApproved = false, - Link = "https://spdx.org/licenses/OGL-UK-3.0.html#licenseText", - Name = "Open Government Licence v3.0", - OsiApproved = false, - SPDX = "OGL-UK-3.0" - }, - new - { - Id = 259, - FsfApproved = false, - Link = "https://spdx.org/licenses/OGTSL.html#licenseText", - Name = "Open Group Test Suite License", - OsiApproved = true, - SPDX = "OGTSL" - }, - new - { - Id = 260, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-1.1.html#licenseText", - Name = "Open LDAP Public License v1.1", - OsiApproved = false, - SPDX = "OLDAP-1.1" - }, - new - { - Id = 261, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-1.2.html#licenseText", - Name = "Open LDAP Public License v1.2", - OsiApproved = false, - SPDX = "OLDAP-1.2" - }, - new - { - Id = 262, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-1.3.html#licenseText", - Name = "Open LDAP Public License v1.3", - OsiApproved = false, - SPDX = "OLDAP-1.3" - }, - new - { - Id = 263, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-1.4.html#licenseText", - Name = "Open LDAP Public License v1.4", - OsiApproved = false, - SPDX = "OLDAP-1.4" - }, - new - { - Id = 264, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.0.html#licenseText", - Name = "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", - OsiApproved = false, - SPDX = "OLDAP-2.0" - }, - new - { - Id = 265, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.0.1.html#licenseText", - Name = "Open LDAP Public License v2.0.1", - OsiApproved = false, - SPDX = "OLDAP-2.0.1" - }, - new - { - Id = 266, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.1.html#licenseText", - Name = "Open LDAP Public License v2.1", - OsiApproved = false, - SPDX = "OLDAP-2.1" - }, - new - { - Id = 267, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.2.html#licenseText", - Name = "Open LDAP Public License v2.2", - OsiApproved = false, - SPDX = "OLDAP-2.2" - }, - new - { - Id = 268, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.2.1.html#licenseText", - Name = "Open LDAP Public License v2.2.1", - OsiApproved = false, - SPDX = "OLDAP-2.2.1" - }, - new - { - Id = 269, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.2.2.html#licenseText", - Name = "Open LDAP Public License 2.2.2", - OsiApproved = false, - SPDX = "OLDAP-2.2.2" - }, - new - { - Id = 270, - FsfApproved = true, - Link = "https://spdx.org/licenses/OLDAP-2.3.html#licenseText", - Name = "Open LDAP Public License v2.3", - OsiApproved = false, - SPDX = "OLDAP-2.3" - }, - new - { - Id = 271, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.4.html#licenseText", - Name = "Open LDAP Public License v2.4", - OsiApproved = false, - SPDX = "OLDAP-2.4" - }, - new - { - Id = 272, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.5.html#licenseText", - Name = "Open LDAP Public License v2.5", - OsiApproved = false, - SPDX = "OLDAP-2.5" - }, - new - { - Id = 273, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.6.html#licenseText", - Name = "Open LDAP Public License v2.6", - OsiApproved = false, - SPDX = "OLDAP-2.6" - }, - new - { - Id = 274, - FsfApproved = true, - Link = "https://spdx.org/licenses/OLDAP-2.7.html#licenseText", - Name = "Open LDAP Public License v2.7", - OsiApproved = false, - SPDX = "OLDAP-2.7" - }, - new - { - Id = 275, - FsfApproved = false, - Link = "https://spdx.org/licenses/OLDAP-2.8.html#licenseText", - Name = "Open LDAP Public License v2.8", - OsiApproved = false, - SPDX = "OLDAP-2.8" - }, - new - { - Id = 276, - FsfApproved = false, - Link = "https://spdx.org/licenses/OML.html#licenseText", - Name = "Open Market License", - OsiApproved = false, - SPDX = "OML" - }, - new - { - Id = 277, - FsfApproved = true, - Link = "https://spdx.org/licenses/OpenSSL.html#licenseText", - Name = "OpenSSL License", - OsiApproved = false, - SPDX = "OpenSSL" - }, - new - { - Id = 278, - FsfApproved = false, - Link = "https://spdx.org/licenses/OPL-1.0.html#licenseText", - Name = "Open Public License v1.0", - OsiApproved = false, - SPDX = "OPL-1.0" - }, - new - { - Id = 279, - FsfApproved = false, - Link = "https://spdx.org/licenses/OSET-PL-2.1.html#licenseText", - Name = "OSET Public License version 2.1", - OsiApproved = true, - SPDX = "OSET-PL-2.1" - }, - new - { - Id = 280, - FsfApproved = true, - Link = "https://spdx.org/licenses/OSL-1.0.html#licenseText", - Name = "Open Software License 1.0", - OsiApproved = true, - SPDX = "OSL-1.0" - }, - new - { - Id = 281, - FsfApproved = true, - Link = "https://spdx.org/licenses/OSL-1.1.html#licenseText", - Name = "Open Software License 1.1", - OsiApproved = false, - SPDX = "OSL-1.1" - }, - new - { - Id = 282, - FsfApproved = true, - Link = "https://spdx.org/licenses/OSL-2.0.html#licenseText", - Name = "Open Software License 2.0", - OsiApproved = true, - SPDX = "OSL-2.0" - }, - new - { - Id = 283, - FsfApproved = true, - Link = "https://spdx.org/licenses/OSL-2.1.html#licenseText", - Name = "Open Software License 2.1", - OsiApproved = true, - SPDX = "OSL-2.1" - }, - new - { - Id = 284, - FsfApproved = true, - Link = "https://spdx.org/licenses/OSL-3.0.html#licenseText", - Name = "Open Software License 3.0", - OsiApproved = true, - SPDX = "OSL-3.0" - }, - new - { - Id = 285, - FsfApproved = false, - Link = "https://spdx.org/licenses/PDDL-1.0.html#licenseText", - Name = "ODC Public Domain Dedication & License 1.0", - OsiApproved = false, - SPDX = "PDDL-1.0" - }, - new - { - Id = 286, - FsfApproved = false, - Link = "https://spdx.org/licenses/PHP-3.0.html#licenseText", - Name = "PHP License v3.0", - OsiApproved = true, - SPDX = "PHP-3.0" - }, - new - { - Id = 287, - FsfApproved = true, - Link = "https://spdx.org/licenses/PHP-3.01.html#licenseText", - Name = "PHP License v3.01", - OsiApproved = false, - SPDX = "PHP-3.01" - }, - new - { - Id = 288, - FsfApproved = false, - Link = "https://spdx.org/licenses/Plexus.html#licenseText", - Name = "Plexus Classworlds License", - OsiApproved = false, - SPDX = "Plexus" - }, - new - { - Id = 289, - FsfApproved = false, - Link = "https://spdx.org/licenses/PostgreSQL.html#licenseText", - Name = "PostgreSQL License", - OsiApproved = true, - SPDX = "PostgreSQL" - }, - new - { - Id = 290, - FsfApproved = false, - Link = "https://spdx.org/licenses/psfrag.html#licenseText", - Name = "psfrag License", - OsiApproved = false, - SPDX = "psfrag" - }, - new - { - Id = 291, - FsfApproved = false, - Link = "https://spdx.org/licenses/psutils.html#licenseText", - Name = "psutils License", - OsiApproved = false, - SPDX = "psutils" - }, - new - { - Id = 292, - FsfApproved = true, - Link = "https://spdx.org/licenses/Python-2.0.html#licenseText", - Name = "Python License 2.0", - OsiApproved = true, - SPDX = "Python-2.0" - }, - new - { - Id = 293, - FsfApproved = false, - Link = "https://spdx.org/licenses/Qhull.html#licenseText", - Name = "Qhull License", - OsiApproved = false, - SPDX = "Qhull" - }, - new - { - Id = 294, - FsfApproved = true, - Link = "https://spdx.org/licenses/QPL-1.0.html#licenseText", - Name = "Q Public License 1.0", - OsiApproved = true, - SPDX = "QPL-1.0" - }, - new - { - Id = 295, - FsfApproved = false, - Link = "https://spdx.org/licenses/Rdisc.html#licenseText", - Name = "Rdisc License", - OsiApproved = false, - SPDX = "Rdisc" - }, - new - { - Id = 296, - FsfApproved = false, - Link = "https://spdx.org/licenses/RHeCos-1.1.html#licenseText", - Name = "Red Hat eCos Public License v1.1", - OsiApproved = false, - SPDX = "RHeCos-1.1" - }, - new - { - Id = 297, - FsfApproved = false, - Link = "https://spdx.org/licenses/RPL-1.1.html#licenseText", - Name = "Reciprocal Public License 1.1", - OsiApproved = true, - SPDX = "RPL-1.1" - }, - new - { - Id = 298, - FsfApproved = false, - Link = "https://spdx.org/licenses/RPL-1.5.html#licenseText", - Name = "Reciprocal Public License 1.5", - OsiApproved = true, - SPDX = "RPL-1.5" - }, - new - { - Id = 299, - FsfApproved = true, - Link = "https://spdx.org/licenses/RPSL-1.0.html#licenseText", - Name = "RealNetworks Public Source License v1.0", - OsiApproved = true, - SPDX = "RPSL-1.0" - }, - new - { - Id = 300, - FsfApproved = false, - Link = "https://spdx.org/licenses/RSA-MD.html#licenseText", - Name = "RSA Message-Digest License", - OsiApproved = false, - SPDX = "RSA-MD" - }, - new - { - Id = 301, - FsfApproved = false, - Link = "https://spdx.org/licenses/RSCPL.html#licenseText", - Name = "Ricoh Source Code Public License", - OsiApproved = true, - SPDX = "RSCPL" - }, - new - { - Id = 302, - FsfApproved = true, - Link = "https://spdx.org/licenses/Ruby.html#licenseText", - Name = "Ruby License", - OsiApproved = false, - SPDX = "Ruby" - }, - new - { - Id = 303, - FsfApproved = false, - Link = "https://spdx.org/licenses/SAX-PD.html#licenseText", - Name = "Sax Public Domain Notice", - OsiApproved = false, - SPDX = "SAX-PD" - }, - new - { - Id = 304, - FsfApproved = false, - Link = "https://spdx.org/licenses/Saxpath.html#licenseText", - Name = "Saxpath License", - OsiApproved = false, - SPDX = "Saxpath" - }, - new - { - Id = 305, - FsfApproved = false, - Link = "https://spdx.org/licenses/SCEA.html#licenseText", - Name = "SCEA Shared Source License", - OsiApproved = false, - SPDX = "SCEA" - }, - new - { - Id = 306, - FsfApproved = false, - Link = "https://spdx.org/licenses/Sendmail.html#licenseText", - Name = "Sendmail License", - OsiApproved = false, - SPDX = "Sendmail" - }, - new - { - Id = 307, - FsfApproved = false, - Link = "https://spdx.org/licenses/Sendmail-8.23.html#licenseText", - Name = "Sendmail License 8.23", - OsiApproved = false, - SPDX = "Sendmail-8.23" - }, - new - { - Id = 308, - FsfApproved = false, - Link = "https://spdx.org/licenses/SGI-B-1.0.html#licenseText", - Name = "SGI Free Software License B v1.0", - OsiApproved = false, - SPDX = "SGI-B-1.0" - }, - new - { - Id = 309, - FsfApproved = false, - Link = "https://spdx.org/licenses/SGI-B-1.1.html#licenseText", - Name = "SGI Free Software License B v1.1", - OsiApproved = false, - SPDX = "SGI-B-1.1" - }, - new - { - Id = 310, - FsfApproved = true, - Link = "https://spdx.org/licenses/SGI-B-2.0.html#licenseText", - Name = "SGI Free Software License B v2.0", - OsiApproved = false, - SPDX = "SGI-B-2.0" - }, - new - { - Id = 311, - FsfApproved = false, - Link = "https://spdx.org/licenses/SimPL-2.0.html#licenseText", - Name = "Simple Public License 2.0", - OsiApproved = true, - SPDX = "SimPL-2.0" - }, - new - { - Id = 312, - FsfApproved = true, - Link = "https://spdx.org/licenses/SISSL.html#licenseText", - Name = "Sun Industry Standards Source License v1.1", - OsiApproved = true, - SPDX = "SISSL" - }, - new - { - Id = 313, - FsfApproved = false, - Link = "https://spdx.org/licenses/SISSL-1.2.html#licenseText", - Name = "Sun Industry Standards Source License v1.2", - OsiApproved = false, - SPDX = "SISSL-1.2" - }, - new - { - Id = 314, - FsfApproved = true, - Link = "https://spdx.org/licenses/Sleepycat.html#licenseText", - Name = "Sleepycat License", - OsiApproved = true, - SPDX = "Sleepycat" - }, - new - { - Id = 315, - FsfApproved = true, - Link = "https://spdx.org/licenses/SMLNJ.html#licenseText", - Name = "Standard ML of New Jersey License", - OsiApproved = false, - SPDX = "SMLNJ" - }, - new - { - Id = 316, - FsfApproved = false, - Link = "https://spdx.org/licenses/SMPPL.html#licenseText", - Name = "Secure Messaging Protocol Public License", - OsiApproved = false, - SPDX = "SMPPL" - }, - new - { - Id = 317, - FsfApproved = false, - Link = "https://spdx.org/licenses/SNIA.html#licenseText", - Name = "SNIA Public License 1.1", - OsiApproved = false, - SPDX = "SNIA" - }, - new - { - Id = 318, - FsfApproved = false, - Link = "https://spdx.org/licenses/Spencer-86.html#licenseText", - Name = "Spencer License 86", - OsiApproved = false, - SPDX = "Spencer-86" - }, - new - { - Id = 319, - FsfApproved = false, - Link = "https://spdx.org/licenses/Spencer-94.html#licenseText", - Name = "Spencer License 94", - OsiApproved = false, - SPDX = "Spencer-94" - }, - new - { - Id = 320, - FsfApproved = false, - Link = "https://spdx.org/licenses/Spencer-99.html#licenseText", - Name = "Spencer License 99", - OsiApproved = false, - SPDX = "Spencer-99" - }, - new - { - Id = 321, - FsfApproved = true, - Link = "https://spdx.org/licenses/SPL-1.0.html#licenseText", - Name = "Sun Public License v1.0", - OsiApproved = true, - SPDX = "SPL-1.0" - }, - new - { - Id = 322, - FsfApproved = false, - Link = "https://spdx.org/licenses/SugarCRM-1.1.3.html#licenseText", - Name = "SugarCRM Public License v1.1.3", - OsiApproved = false, - SPDX = "SugarCRM-1.1.3" - }, - new - { - Id = 323, - FsfApproved = false, - Link = "https://spdx.org/licenses/SWL.html#licenseText", - Name = "Scheme Widget Library (SWL) Software License Agreement", - OsiApproved = false, - SPDX = "SWL" - }, - new - { - Id = 324, - FsfApproved = false, - Link = "https://spdx.org/licenses/TAPR-OHL-1.0.html#licenseText", - Name = "TAPR Open Hardware License v1.0", - OsiApproved = false, - SPDX = "TAPR-OHL-1.0" - }, - new - { - Id = 325, - FsfApproved = false, - Link = "https://spdx.org/licenses/TCL.html#licenseText", - Name = "TCL/TK License", - OsiApproved = false, - SPDX = "TCL" - }, - new - { - Id = 326, - FsfApproved = false, - Link = "https://spdx.org/licenses/TCP-wrappers.html#licenseText", - Name = "TCP Wrappers License", - OsiApproved = false, - SPDX = "TCP-wrappers" - }, - new - { - Id = 327, - FsfApproved = false, - Link = "https://spdx.org/licenses/TMate.html#licenseText", - Name = "TMate Open Source License", - OsiApproved = false, - SPDX = "TMate" - }, - new - { - Id = 328, - FsfApproved = false, - Link = "https://spdx.org/licenses/TORQUE-1.1.html#licenseText", - Name = "TORQUE v2.5+ Software License v1.1", - OsiApproved = false, - SPDX = "TORQUE-1.1" - }, - new - { - Id = 329, - FsfApproved = false, - Link = "https://spdx.org/licenses/TOSL.html#licenseText", - Name = "Trusster Open Source License", - OsiApproved = false, - SPDX = "TOSL" - }, - new - { - Id = 330, - FsfApproved = false, - Link = "https://spdx.org/licenses/TU-Berlin-1.0.html#licenseText", - Name = "Technische Universitaet Berlin License 1.0", - OsiApproved = false, - SPDX = "TU-Berlin-1.0" - }, - new - { - Id = 331, - FsfApproved = false, - Link = "https://spdx.org/licenses/TU-Berlin-2.0.html#licenseText", - Name = "Technische Universitaet Berlin License 2.0", - OsiApproved = false, - SPDX = "TU-Berlin-2.0" - }, - new - { - Id = 332, - FsfApproved = false, - Link = "https://spdx.org/licenses/Unicode-DFS-2015.html#licenseText", - Name = "Unicode License Agreement - Data Files and Software (2015)", - OsiApproved = false, - SPDX = "Unicode-DFS-2015" - }, - new - { - Id = 333, - FsfApproved = false, - Link = "https://spdx.org/licenses/Unicode-DFS-2016.html#licenseText", - Name = "Unicode License Agreement - Data Files and Software (2016)", - OsiApproved = false, - SPDX = "Unicode-DFS-2016" - }, - new - { - Id = 334, - FsfApproved = false, - Link = "https://spdx.org/licenses/Unicode-TOU.html#licenseText", - Name = "Unicode Terms of Use", - OsiApproved = false, - SPDX = "Unicode-TOU" - }, - new - { - Id = 335, - FsfApproved = true, - Link = "https://spdx.org/licenses/Unlicense.html#licenseText", - Name = "The Unlicense", - OsiApproved = false, - SPDX = "Unlicense" - }, - new - { - Id = 336, - FsfApproved = true, - Link = "https://spdx.org/licenses/UPL-1.0.html#licenseText", - Name = "Universal Permissive License v1.0", - OsiApproved = true, - SPDX = "UPL-1.0" - }, - new - { - Id = 337, - FsfApproved = true, - Link = "https://spdx.org/licenses/Vim.html#licenseText", - Name = "Vim License", - OsiApproved = false, - SPDX = "Vim" - }, - new - { - Id = 338, - FsfApproved = false, - Link = "https://spdx.org/licenses/VOSTROM.html#licenseText", - Name = "VOSTROM Public License for Open Source", - OsiApproved = false, - SPDX = "VOSTROM" - }, - new - { - Id = 339, - FsfApproved = false, - Link = "https://spdx.org/licenses/VSL-1.0.html#licenseText", - Name = "Vovida Software License v1.0", - OsiApproved = true, - SPDX = "VSL-1.0" - }, - new - { - Id = 340, - FsfApproved = true, - Link = "https://spdx.org/licenses/W3C.html#licenseText", - Name = "W3C Software Notice and License (2002-12-31)", - OsiApproved = true, - SPDX = "W3C" - }, - new - { - Id = 341, - FsfApproved = false, - Link = "https://spdx.org/licenses/W3C-19980720.html#licenseText", - Name = "W3C Software Notice and License (1998-07-20)", - OsiApproved = false, - SPDX = "W3C-19980720" - }, - new - { - Id = 342, - FsfApproved = false, - Link = "https://spdx.org/licenses/W3C-20150513.html#licenseText", - Name = "W3C Software Notice and Document License (2015-05-13)", - OsiApproved = false, - SPDX = "W3C-20150513" - }, - new - { - Id = 343, - FsfApproved = false, - Link = "https://spdx.org/licenses/Watcom-1.0.html#licenseText", - Name = "Sybase Open Watcom Public License 1.0", - OsiApproved = true, - SPDX = "Watcom-1.0" - }, - new - { - Id = 344, - FsfApproved = false, - Link = "https://spdx.org/licenses/Wsuipa.html#licenseText", - Name = "Wsuipa License", - OsiApproved = false, - SPDX = "Wsuipa" - }, - new - { - Id = 345, - FsfApproved = true, - Link = "https://spdx.org/licenses/WTFPL.html#licenseText", - Name = "Do What The F*ck You Want To Public License", - OsiApproved = false, - SPDX = "WTFPL" - }, - new - { - Id = 346, - FsfApproved = true, - Link = "https://spdx.org/licenses/X11.html#licenseText", - Name = "X11 License", - OsiApproved = false, - SPDX = "X11" - }, - new - { - Id = 347, - FsfApproved = false, - Link = "https://spdx.org/licenses/Xerox.html#licenseText", - Name = "Xerox License", - OsiApproved = false, - SPDX = "Xerox" - }, - new - { - Id = 348, - FsfApproved = true, - Link = "https://spdx.org/licenses/XFree86-1.1.html#licenseText", - Name = "XFree86 License 1.1", - OsiApproved = false, - SPDX = "XFree86-1.1" - }, - new - { - Id = 349, - FsfApproved = true, - Link = "https://spdx.org/licenses/xinetd.html#licenseText", - Name = "xinetd License", - OsiApproved = false, - SPDX = "xinetd" - }, - new - { - Id = 350, - FsfApproved = false, - Link = "https://spdx.org/licenses/Xnet.html#licenseText", - Name = "X.Net License", - OsiApproved = true, - SPDX = "Xnet" - }, - new - { - Id = 351, - FsfApproved = false, - Link = "https://spdx.org/licenses/xpp.html#licenseText", - Name = "XPP License", - OsiApproved = false, - SPDX = "xpp" - }, - new - { - Id = 352, - FsfApproved = false, - Link = "https://spdx.org/licenses/XSkat.html#licenseText", - Name = "XSkat License", - OsiApproved = false, - SPDX = "XSkat" - }, - new - { - Id = 353, - FsfApproved = false, - Link = "https://spdx.org/licenses/YPL-1.0.html#licenseText", - Name = "Yahoo! Public License v1.0", - OsiApproved = false, - SPDX = "YPL-1.0" - }, - new - { - Id = 354, - FsfApproved = true, - Link = "https://spdx.org/licenses/YPL-1.1.html#licenseText", - Name = "Yahoo! Public License v1.1", - OsiApproved = false, - SPDX = "YPL-1.1" - }, - new - { - Id = 355, - FsfApproved = false, - Link = "https://spdx.org/licenses/Zed.html#licenseText", - Name = "Zed License", - OsiApproved = false, - SPDX = "Zed" - }, - new - { - Id = 356, - FsfApproved = true, - Link = "https://spdx.org/licenses/Zend-2.0.html#licenseText", - Name = "Zend License v2.0", - OsiApproved = false, - SPDX = "Zend-2.0" - }, - new - { - Id = 357, - FsfApproved = true, - Link = "https://spdx.org/licenses/Zimbra-1.3.html#licenseText", - Name = "Zimbra Public License v1.3", - OsiApproved = false, - SPDX = "Zimbra-1.3" - }, - new - { - Id = 358, - FsfApproved = false, - Link = "https://spdx.org/licenses/Zimbra-1.4.html#licenseText", - Name = "Zimbra Public License v1.4", - OsiApproved = false, - SPDX = "Zimbra-1.4" - }, - new - { - Id = 359, - FsfApproved = true, - Link = "https://spdx.org/licenses/Zlib.html#licenseText", - Name = "zlib License", - OsiApproved = true, - SPDX = "Zlib" - }, - new - { - Id = 360, - FsfApproved = false, - Link = "https://spdx.org/licenses/zlib-acknowledgement.html#licenseText", - Name = "zlib/libpng License with Acknowledgement", - OsiApproved = false, - SPDX = "zlib-acknowledgement" - }, - new - { - Id = 361, - FsfApproved = false, - Link = "https://spdx.org/licenses/ZPL-1.1.html#licenseText", - Name = "Zope Public License 1.1", - OsiApproved = false, - SPDX = "ZPL-1.1" - }, - new - { - Id = 362, - FsfApproved = true, - Link = "https://spdx.org/licenses/ZPL-2.0.html#licenseText", - Name = "Zope Public License 2.0", - OsiApproved = true, - SPDX = "ZPL-2.0" - }, - new - { - Id = 363, - FsfApproved = true, - Link = "https://spdx.org/licenses/ZPL-2.1.html#licenseText", - Name = "Zope Public License 2.1", - OsiApproved = false, - SPDX = "ZPL-2.1" - }); - }); + b.HasData( + new + { + Id = 1, + FsfApproved = false, + Name = "Fair use", + OsiApproved = false + }, + new + { + Id = 2, + FsfApproved = false, + Name = "Advertisement use", + OsiApproved = false + }, + new + { + Id = 3, + FsfApproved = false, + Name = "All rights reserved", + OsiApproved = false + }, + new + { + Id = 4, + FsfApproved = false, + Link = "https://spdx.org/licenses/0BSD.html#licenseText", + Name = "BSD Zero Clause License", + OsiApproved = true, + SPDX = "0BSD" + }, + new + { + Id = 5, + FsfApproved = false, + Link = "https://spdx.org/licenses/AAL.html#licenseText", + Name = "Attribution Assurance License", + OsiApproved = true, + SPDX = "AAL" + }, + new + { + Id = 6, + FsfApproved = false, + Link = "https://spdx.org/licenses/Abstyles.html#licenseText", + Name = "Abstyles License", + OsiApproved = false, + SPDX = "Abstyles" + }, + new + { + Id = 7, + FsfApproved = false, + Link = "https://spdx.org/licenses/Adobe-2006.html#licenseText", + Name = "Adobe Systems Incorporated Source Code License Agreement", + OsiApproved = false, + SPDX = "Adobe-2006" + }, + new + { + Id = 8, + FsfApproved = false, + Link = "https://spdx.org/licenses/Adobe-Glyph.html#licenseText", + Name = "Adobe Glyph List License", + OsiApproved = false, + SPDX = "Adobe-Glyph" + }, + new + { + Id = 9, + FsfApproved = false, + Link = "https://spdx.org/licenses/ADSL.html#licenseText", + Name = "Amazon Digital Services License", + OsiApproved = false, + SPDX = "ADSL" + }, + new + { + Id = 10, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-1.1.html#licenseText", + Name = "Academic Free License v1.1", + OsiApproved = true, + SPDX = "AFL-1.1" + }, + new + { + Id = 11, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-1.2.html#licenseText", + Name = "Academic Free License v1.2", + OsiApproved = true, + SPDX = "AFL-1.2" + }, + new + { + Id = 12, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-2.0.html#licenseText", + Name = "Academic Free License v2.0", + OsiApproved = true, + SPDX = "AFL-2.0" + }, + new + { + Id = 13, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-2.1.html#licenseText", + Name = "Academic Free License v2.1", + OsiApproved = true, + SPDX = "AFL-2.1" + }, + new + { + Id = 14, + FsfApproved = true, + Link = "https://spdx.org/licenses/AFL-3.0.html#licenseText", + Name = "Academic Free License v3.0", + OsiApproved = true, + SPDX = "AFL-3.0" + }, + new + { + Id = 15, + FsfApproved = false, + Link = "https://spdx.org/licenses/Afmparse.html#licenseText", + Name = "Afmparse License", + OsiApproved = false, + SPDX = "Afmparse" + }, + new + { + Id = 16, + FsfApproved = false, + Link = "https://spdx.org/licenses/AGPL-1.0-only.html#licenseText", + Name = "Affero General Public License v1.0 only", + OsiApproved = false, + SPDX = "AGPL-1.0-only" + }, + new + { + Id = 17, + FsfApproved = false, + Link = "https://spdx.org/licenses/AGPL-1.0-or-later.html#licenseText", + Name = "Affero General Public License v1.0 or later", + OsiApproved = false, + SPDX = "AGPL-1.0-or-later" + }, + new + { + Id = 18, + FsfApproved = true, + Link = "https://spdx.org/licenses/AGPL-3.0-only.html#licenseText", + Name = "GNU Affero General Public License v3.0 only", + OsiApproved = true, + SPDX = "AGPL-3.0-only" + }, + new + { + Id = 19, + FsfApproved = true, + Link = "https://spdx.org/licenses/AGPL-3.0-or-later.html#licenseText", + Name = "GNU Affero General Public License v3.0 or later", + OsiApproved = true, + SPDX = "AGPL-3.0-or-later" + }, + new + { + Id = 20, + FsfApproved = false, + Link = "https://spdx.org/licenses/Aladdin.html#licenseText", + Name = "Aladdin Free Public License", + OsiApproved = false, + SPDX = "Aladdin" + }, + new + { + Id = 21, + FsfApproved = false, + Link = "https://spdx.org/licenses/AMDPLPA.html#licenseText", + Name = "AMD's plpa_map.c License", + OsiApproved = false, + SPDX = "AMDPLPA" + }, + new + { + Id = 22, + FsfApproved = false, + Link = "https://spdx.org/licenses/AML.html#licenseText", + Name = "Apple MIT License", + OsiApproved = false, + SPDX = "AML" + }, + new + { + Id = 23, + FsfApproved = false, + Link = "https://spdx.org/licenses/AMPAS.html#licenseText", + Name = "Academy of Motion Picture Arts and Sciences BSD", + OsiApproved = false, + SPDX = "AMPAS" + }, + new + { + Id = 24, + FsfApproved = false, + Link = "https://spdx.org/licenses/ANTLR-PD.html#licenseText", + Name = "ANTLR Software Rights Notice", + OsiApproved = false, + SPDX = "ANTLR-PD" + }, + new + { + Id = 25, + FsfApproved = true, + Link = "https://spdx.org/licenses/Apache-1.0.html#licenseText", + Name = "Apache License 1.0", + OsiApproved = false, + SPDX = "Apache-1.0" + }, + new + { + Id = 26, + FsfApproved = true, + Link = "https://spdx.org/licenses/Apache-1.1.html#licenseText", + Name = "Apache License 1.1", + OsiApproved = true, + SPDX = "Apache-1.1" + }, + new + { + Id = 27, + FsfApproved = true, + Link = "https://spdx.org/licenses/Apache-2.0.html#licenseText", + Name = "Apache License 2.0", + OsiApproved = true, + SPDX = "Apache-2.0" + }, + new + { + Id = 28, + FsfApproved = false, + Link = "https://spdx.org/licenses/APAFML.html#licenseText", + Name = "Adobe Postscript AFM License", + OsiApproved = false, + SPDX = "APAFML" + }, + new + { + Id = 29, + FsfApproved = false, + Link = "https://spdx.org/licenses/APL-1.0.html#licenseText", + Name = "Adaptive Public License 1.0", + OsiApproved = true, + SPDX = "APL-1.0" + }, + new + { + Id = 30, + FsfApproved = false, + Link = "https://spdx.org/licenses/APSL-1.0.html#licenseText", + Name = "Apple Public Source License 1.0", + OsiApproved = true, + SPDX = "APSL-1.0" + }, + new + { + Id = 31, + FsfApproved = false, + Link = "https://spdx.org/licenses/APSL-1.1.html#licenseText", + Name = "Apple Public Source License 1.1", + OsiApproved = true, + SPDX = "APSL-1.1" + }, + new + { + Id = 32, + FsfApproved = false, + Link = "https://spdx.org/licenses/APSL-1.2.html#licenseText", + Name = "Apple Public Source License 1.2", + OsiApproved = true, + SPDX = "APSL-1.2" + }, + new + { + Id = 33, + FsfApproved = true, + Link = "https://spdx.org/licenses/APSL-2.0.html#licenseText", + Name = "Apple Public Source License 2.0", + OsiApproved = true, + SPDX = "APSL-2.0" + }, + new + { + Id = 34, + FsfApproved = false, + Link = "https://spdx.org/licenses/Artistic-1.0.html#licenseText", + Name = "Artistic License 1.0", + OsiApproved = true, + SPDX = "Artistic-1.0" + }, + new + { + Id = 35, + FsfApproved = false, + Link = "https://spdx.org/licenses/Artistic-1.0-cl8.html#licenseText", + Name = "Artistic License 1.0 w/clause 8", + OsiApproved = true, + SPDX = "Artistic-1.0-cl8" + }, + new + { + Id = 36, + FsfApproved = false, + Link = "https://spdx.org/licenses/Artistic-1.0-Perl.html#licenseText", + Name = "Artistic License 1.0 (Perl)", + OsiApproved = true, + SPDX = "Artistic-1.0-Perl" + }, + new + { + Id = 37, + FsfApproved = true, + Link = "https://spdx.org/licenses/Artistic-2.0.html#licenseText", + Name = "Artistic License 2.0", + OsiApproved = true, + SPDX = "Artistic-2.0" + }, + new + { + Id = 38, + FsfApproved = false, + Link = "https://spdx.org/licenses/Bahyph.html#licenseText", + Name = "Bahyph License", + OsiApproved = false, + SPDX = "Bahyph" + }, + new + { + Id = 39, + FsfApproved = false, + Link = "https://spdx.org/licenses/Barr.html#licenseText", + Name = "Barr License", + OsiApproved = false, + SPDX = "Barr" + }, + new + { + Id = 40, + FsfApproved = false, + Link = "https://spdx.org/licenses/Beerware.html#licenseText", + Name = "Beerware License", + OsiApproved = false, + SPDX = "Beerware" + }, + new + { + Id = 41, + FsfApproved = false, + Link = "https://spdx.org/licenses/BitTorrent-1.0.html#licenseText", + Name = "BitTorrent Open Source License v1.0", + OsiApproved = false, + SPDX = "BitTorrent-1.0" + }, + new + { + Id = 42, + FsfApproved = true, + Link = "https://spdx.org/licenses/BitTorrent-1.1.html#licenseText", + Name = "BitTorrent Open Source License v1.1", + OsiApproved = false, + SPDX = "BitTorrent-1.1" + }, + new + { + Id = 43, + FsfApproved = false, + Link = "https://spdx.org/licenses/Borceux.html#licenseText", + Name = "Borceux license", + OsiApproved = false, + SPDX = "Borceux" + }, + new + { + Id = 44, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-1-Clause.html#licenseText", + Name = "BSD 1-Clause License", + OsiApproved = false, + SPDX = "BSD-1-Clause" + }, + new + { + Id = 45, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-2-Clause.html#licenseText", + Name = "BSD 2-Clause \"Simplified\" License", + OsiApproved = true, + SPDX = "BSD-2-Clause" + }, + new + { + Id = 46, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html#licenseText", + Name = "BSD 2-Clause FreeBSD License", + OsiApproved = false, + SPDX = "BSD-2-Clause-FreeBSD" + }, + new + { + Id = 47, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html#licenseText", + Name = "BSD 2-Clause NetBSD License", + OsiApproved = false, + SPDX = "BSD-2-Clause-NetBSD" + }, + new + { + Id = 48, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-2-Clause-Patent.html#licenseText", + Name = "BSD-2-Clause Plus Patent License", + OsiApproved = true, + SPDX = "BSD-2-Clause-Patent" + }, + new + { + Id = 49, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-3-Clause.html#licenseText", + Name = "BSD 3-Clause \"New\" or \"Revised\" License", + OsiApproved = true, + SPDX = "BSD-3-Clause" + }, + new + { + Id = 50, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-Attribution.html#licenseText", + Name = "BSD with attribution", + OsiApproved = false, + SPDX = "BSD-3-Clause-Attribution" + }, + new + { + Id = 51, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-3-Clause-Clear.html#licenseText", + Name = "BSD 3-Clause Clear License", + OsiApproved = false, + SPDX = "BSD-3-Clause-Clear" + }, + new + { + Id = 52, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-LBNL.html#licenseText", + Name = "Lawrence Berkeley National Labs BSD variant license", + OsiApproved = false, + SPDX = "BSD-3-Clause-LBNL" + }, + new + { + Id = 53, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html#licenseText", + Name = "BSD 3-Clause No Nuclear License", + OsiApproved = false, + SPDX = "BSD-3-Clause-No-Nuclear-License" + }, + new + { + Id = 54, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html#licenseText", + Name = "BSD 3-Clause No Nuclear License 2014", + OsiApproved = false, + SPDX = "BSD-3-Clause-No-Nuclear-License-2014" + }, + new + { + Id = 55, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html#licenseText", + Name = "BSD 3-Clause No Nuclear Warranty", + OsiApproved = false, + SPDX = "BSD-3-Clause-No-Nuclear-Warranty" + }, + new + { + Id = 56, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSD-4-Clause.html#licenseText", + Name = "BSD 4-Clause \"Original\" or \"Old\" License", + OsiApproved = false, + SPDX = "BSD-4-Clause" + }, + new + { + Id = 57, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-4-Clause-UC.html#licenseText", + Name = "BSD-4-Clause (University of California-Specific)", + OsiApproved = false, + SPDX = "BSD-4-Clause-UC" + }, + new + { + Id = 58, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-Protection.html#licenseText", + Name = "BSD Protection License", + OsiApproved = false, + SPDX = "BSD-Protection" + }, + new + { + Id = 59, + FsfApproved = false, + Link = "https://spdx.org/licenses/BSD-Source-Code.html#licenseText", + Name = "BSD Source Code Attribution", + OsiApproved = false, + SPDX = "BSD-Source-Code" + }, + new + { + Id = 60, + FsfApproved = true, + Link = "https://spdx.org/licenses/BSL-1.0.html#licenseText", + Name = "Boost Software License 1.0", + OsiApproved = true, + SPDX = "BSL-1.0" + }, + new + { + Id = 61, + FsfApproved = false, + Link = "https://spdx.org/licenses/bzip2-1.0.5.html#licenseText", + Name = "bzip2 and libbzip2 License v1.0.5", + OsiApproved = false, + SPDX = "bzip2-1.0.5" + }, + new + { + Id = 62, + FsfApproved = false, + Link = "https://spdx.org/licenses/bzip2-1.0.6.html#licenseText", + Name = "bzip2 and libbzip2 License v1.0.6", + OsiApproved = false, + SPDX = "bzip2-1.0.6" + }, + new + { + Id = 63, + FsfApproved = false, + Link = "https://spdx.org/licenses/Caldera.html#licenseText", + Name = "Caldera License", + OsiApproved = false, + SPDX = "Caldera" + }, + new + { + Id = 64, + FsfApproved = false, + Link = "https://spdx.org/licenses/CATOSL-1.1.html#licenseText", + Name = "Computer Associates Trusted Open Source License 1.1", + OsiApproved = true, + SPDX = "CATOSL-1.1" + }, + new + { + Id = 65, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-1.0.html#licenseText", + Name = "Creative Commons Attribution 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-1.0" + }, + new + { + Id = 66, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-2.0.html#licenseText", + Name = "Creative Commons Attribution 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-2.0" + }, + new + { + Id = 67, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-2.5.html#licenseText", + Name = "Creative Commons Attribution 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-2.5" + }, + new + { + Id = 68, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-3.0.html#licenseText", + Name = "Creative Commons Attribution 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-3.0" + }, + new + { + Id = 69, + FsfApproved = true, + Link = "https://spdx.org/licenses/CC-BY-4.0.html#licenseText", + Name = "Creative Commons Attribution 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-4.0" + }, + new + { + Id = 70, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-1.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-1.0" + }, + new + { + Id = 71, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-2.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-2.0" + }, + new + { + Id = 72, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-2.5.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-2.5" + }, + new + { + Id = 73, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-3.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-NC-3.0" + }, + new + { + Id = 74, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-4.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-NC-4.0" + }, + new + { + Id = 75, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-1.0" + }, + new + { + Id = 76, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-2.0" + }, + new + { + Id = 77, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-2.5" + }, + new + { + Id = 78, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-3.0" + }, + new + { + Id = 79, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-NC-ND-4.0" + }, + new + { + Id = 80, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-1.0" + }, + new + { + Id = 81, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-2.0" + }, + new + { + Id = 82, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-2.5" + }, + new + { + Id = 83, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-3.0" + }, + new + { + Id = 84, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html#licenseText", + Name = "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-NC-SA-4.0" + }, + new + { + Id = 85, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-1.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-ND-1.0" + }, + new + { + Id = 86, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-2.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-ND-2.0" + }, + new + { + Id = 87, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-2.5.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-ND-2.5" + }, + new + { + Id = 88, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-3.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-ND-3.0" + }, + new + { + Id = 89, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-ND-4.0.html#licenseText", + Name = "Creative Commons Attribution No Derivatives 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-ND-4.0" + }, + new + { + Id = 90, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-1.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 1.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-SA-1.0" + }, + new + { + Id = 91, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-2.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 2.0 Generic", + OsiApproved = false, + SPDX = "CC-BY-SA-2.0" + }, + new + { + Id = 92, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-2.5.html#licenseText", + Name = "Creative Commons Attribution Share Alike 2.5 Generic", + OsiApproved = false, + SPDX = "CC-BY-SA-2.5" + }, + new + { + Id = 93, + FsfApproved = false, + Link = "https://spdx.org/licenses/CC-BY-SA-3.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 3.0 Unported", + OsiApproved = false, + SPDX = "CC-BY-SA-3.0" + }, + new + { + Id = 94, + FsfApproved = true, + Link = "https://spdx.org/licenses/CC-BY-SA-4.0.html#licenseText", + Name = "Creative Commons Attribution Share Alike 4.0 International", + OsiApproved = false, + SPDX = "CC-BY-SA-4.0" + }, + new + { + Id = 95, + FsfApproved = true, + Link = "https://spdx.org/licenses/CC0-1.0.html#licenseText", + Name = "Creative Commons Zero v1.0 Universal", + OsiApproved = false, + SPDX = "CC0-1.0" + }, + new + { + Id = 96, + FsfApproved = true, + Link = "https://spdx.org/licenses/CDDL-1.0.html#licenseText", + Name = "Common Development and Distribution License 1.0", + OsiApproved = true, + SPDX = "CDDL-1.0" + }, + new + { + Id = 97, + FsfApproved = false, + Link = "https://spdx.org/licenses/CDDL-1.1.html#licenseText", + Name = "Common Development and Distribution License 1.1", + OsiApproved = false, + SPDX = "CDDL-1.1" + }, + new + { + Id = 98, + FsfApproved = false, + Link = "https://spdx.org/licenses/CDLA-Permissive-1.0.html#licenseText", + Name = "Community Data License Agreement Permissive 1.0", + OsiApproved = false, + SPDX = "CDLA-Permissive-1.0" + }, + new + { + Id = 99, + FsfApproved = false, + Link = "https://spdx.org/licenses/CDLA-Sharing-1.0.html#licenseText", + Name = "Community Data License Agreement Sharing 1.0", + OsiApproved = false, + SPDX = "CDLA-Sharing-1.0" + }, + new + { + Id = 100, + FsfApproved = false, + Link = "https://spdx.org/licenses/CECILL-1.0.html#licenseText", + Name = "CeCILL Free Software License Agreement v1.0", + OsiApproved = false, + SPDX = "CECILL-1.0" + }, + new + { + Id = 101, + FsfApproved = false, + Link = "https://spdx.org/licenses/CECILL-1.1.html#licenseText", + Name = "CeCILL Free Software License Agreement v1.1", + OsiApproved = false, + SPDX = "CECILL-1.1" + }, + new + { + Id = 102, + FsfApproved = true, + Link = "https://spdx.org/licenses/CECILL-2.0.html#licenseText", + Name = "CeCILL Free Software License Agreement v2.0", + OsiApproved = false, + SPDX = "CECILL-2.0" + }, + new + { + Id = 103, + FsfApproved = false, + Link = "https://spdx.org/licenses/CECILL-2.1.html#licenseText", + Name = "CeCILL Free Software License Agreement v2.1", + OsiApproved = true, + SPDX = "CECILL-2.1" + }, + new + { + Id = 104, + FsfApproved = true, + Link = "https://spdx.org/licenses/CECILL-B.html#licenseText", + Name = "CeCILL-B Free Software License Agreement", + OsiApproved = false, + SPDX = "CECILL-B" + }, + new + { + Id = 105, + FsfApproved = true, + Link = "https://spdx.org/licenses/CECILL-C.html#licenseText", + Name = "CeCILL-C Free Software License Agreement", + OsiApproved = false, + SPDX = "CECILL-C" + }, + new + { + Id = 106, + FsfApproved = false, + Link = "https://spdx.org/licenses/CERN-OHL-1.1.html#licenseText", + Name = "CERN Open Hardware License v1.1", + OsiApproved = false, + SPDX = "CERN-OHL-1.1" + }, + new + { + Id = 107, + FsfApproved = false, + Link = "https://spdx.org/licenses/CERN-OHL-1.2.html#licenseText", + Name = "CERN Open Hardware Licence v1.2", + OsiApproved = false, + SPDX = "CERN-OHL-1.2" + }, + new + { + Id = 108, + FsfApproved = true, + Link = "https://spdx.org/licenses/ClArtistic.html#licenseText", + Name = "Clarified Artistic License", + OsiApproved = false, + SPDX = "ClArtistic" + }, + new + { + Id = 109, + FsfApproved = false, + Link = "https://spdx.org/licenses/CNRI-Jython.html#licenseText", + Name = "CNRI Jython License", + OsiApproved = false, + SPDX = "CNRI-Jython" + }, + new + { + Id = 110, + FsfApproved = false, + Link = "https://spdx.org/licenses/CNRI-Python.html#licenseText", + Name = "CNRI Python License", + OsiApproved = true, + SPDX = "CNRI-Python" + }, + new + { + Id = 111, + FsfApproved = false, + Link = "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html#licenseText", + Name = "CNRI Python Open Source GPL Compatible License Agreement", + OsiApproved = false, + SPDX = "CNRI-Python-GPL-Compatible" + }, + new + { + Id = 112, + FsfApproved = true, + Link = "https://spdx.org/licenses/Condor-1.1.html#licenseText", + Name = "Condor Public License v1.1", + OsiApproved = false, + SPDX = "Condor-1.1" + }, + new + { + Id = 113, + FsfApproved = false, + Link = "https://spdx.org/licenses/copyleft-next-0.3.0.html#licenseText", + Name = "copyleft-next 0.3.0", + OsiApproved = false, + SPDX = "copyleft-next-0.3.0" + }, + new + { + Id = 114, + FsfApproved = false, + Link = "https://spdx.org/licenses/copyleft-next-0.3.1.html#licenseText", + Name = "copyleft-next 0.3.1", + OsiApproved = false, + SPDX = "copyleft-next-0.3.1" + }, + new + { + Id = 115, + FsfApproved = true, + Link = "https://spdx.org/licenses/CPAL-1.0.html#licenseText", + Name = "Common Public Attribution License 1.0", + OsiApproved = true, + SPDX = "CPAL-1.0" + }, + new + { + Id = 116, + FsfApproved = true, + Link = "https://spdx.org/licenses/CPL-1.0.html#licenseText", + Name = "Common Public License 1.0", + OsiApproved = true, + SPDX = "CPL-1.0" + }, + new + { + Id = 117, + FsfApproved = false, + Link = "https://spdx.org/licenses/CPOL-1.02.html#licenseText", + Name = "Code Project Open License 1.02", + OsiApproved = false, + SPDX = "CPOL-1.02" + }, + new + { + Id = 118, + FsfApproved = false, + Link = "https://spdx.org/licenses/Crossword.html#licenseText", + Name = "Crossword License", + OsiApproved = false, + SPDX = "Crossword" + }, + new + { + Id = 119, + FsfApproved = false, + Link = "https://spdx.org/licenses/CrystalStacker.html#licenseText", + Name = "CrystalStacker License", + OsiApproved = false, + SPDX = "CrystalStacker" + }, + new + { + Id = 120, + FsfApproved = false, + Link = "https://spdx.org/licenses/CUA-OPL-1.0.html#licenseText", + Name = "CUA Office Public License v1.0", + OsiApproved = true, + SPDX = "CUA-OPL-1.0" + }, + new + { + Id = 121, + FsfApproved = false, + Link = "https://spdx.org/licenses/Cube.html#licenseText", + Name = "Cube License", + OsiApproved = false, + SPDX = "Cube" + }, + new + { + Id = 122, + FsfApproved = false, + Link = "https://spdx.org/licenses/curl.html#licenseText", + Name = "curl License", + OsiApproved = false, + SPDX = "curl" + }, + new + { + Id = 123, + FsfApproved = false, + Link = "https://spdx.org/licenses/D-FSL-1.0.html#licenseText", + Name = "Deutsche Freie Software Lizenz", + OsiApproved = false, + SPDX = "D-FSL-1.0" + }, + new + { + Id = 124, + FsfApproved = false, + Link = "https://spdx.org/licenses/diffmark.html#licenseText", + Name = "diffmark license", + OsiApproved = false, + SPDX = "diffmark" + }, + new + { + Id = 125, + FsfApproved = false, + Link = "https://spdx.org/licenses/DOC.html#licenseText", + Name = "DOC License", + OsiApproved = false, + SPDX = "DOC" + }, + new + { + Id = 126, + FsfApproved = false, + Link = "https://spdx.org/licenses/Dotseqn.html#licenseText", + Name = "Dotseqn License", + OsiApproved = false, + SPDX = "Dotseqn" + }, + new + { + Id = 127, + FsfApproved = false, + Link = "https://spdx.org/licenses/DSDP.html#licenseText", + Name = "DSDP License", + OsiApproved = false, + SPDX = "DSDP" + }, + new + { + Id = 128, + FsfApproved = false, + Link = "https://spdx.org/licenses/dvipdfm.html#licenseText", + Name = "dvipdfm License", + OsiApproved = false, + SPDX = "dvipdfm" + }, + new + { + Id = 129, + FsfApproved = false, + Link = "https://spdx.org/licenses/ECL-1.0.html#licenseText", + Name = "Educational Community License v1.0", + OsiApproved = true, + SPDX = "ECL-1.0" + }, + new + { + Id = 130, + FsfApproved = true, + Link = "https://spdx.org/licenses/ECL-2.0.html#licenseText", + Name = "Educational Community License v2.0", + OsiApproved = true, + SPDX = "ECL-2.0" + }, + new + { + Id = 131, + FsfApproved = false, + Link = "https://spdx.org/licenses/EFL-1.0.html#licenseText", + Name = "Eiffel Forum License v1.0", + OsiApproved = true, + SPDX = "EFL-1.0" + }, + new + { + Id = 132, + FsfApproved = true, + Link = "https://spdx.org/licenses/EFL-2.0.html#licenseText", + Name = "Eiffel Forum License v2.0", + OsiApproved = true, + SPDX = "EFL-2.0" + }, + new + { + Id = 133, + FsfApproved = false, + Link = "https://spdx.org/licenses/eGenix.html#licenseText", + Name = "eGenix.com Public License 1.1.0", + OsiApproved = false, + SPDX = "eGenix" + }, + new + { + Id = 134, + FsfApproved = false, + Link = "https://spdx.org/licenses/Entessa.html#licenseText", + Name = "Entessa Public License v1.0", + OsiApproved = true, + SPDX = "Entessa" + }, + new + { + Id = 135, + FsfApproved = true, + Link = "https://spdx.org/licenses/EPL-1.0.html#licenseText", + Name = "Eclipse Public License 1.0", + OsiApproved = true, + SPDX = "EPL-1.0" + }, + new + { + Id = 136, + FsfApproved = true, + Link = "https://spdx.org/licenses/EPL-2.0.html#licenseText", + Name = "Eclipse Public License 2.0", + OsiApproved = true, + SPDX = "EPL-2.0" + }, + new + { + Id = 137, + FsfApproved = false, + Link = "https://spdx.org/licenses/ErlPL-1.1.html#licenseText", + Name = "Erlang Public License v1.1", + OsiApproved = false, + SPDX = "ErlPL-1.1" + }, + new + { + Id = 138, + FsfApproved = true, + Link = "https://spdx.org/licenses/EUDatagrid.html#licenseText", + Name = "EU DataGrid Software License", + OsiApproved = true, + SPDX = "EUDatagrid" + }, + new + { + Id = 139, + FsfApproved = false, + Link = "https://spdx.org/licenses/EUPL-1.0.html#licenseText", + Name = "European Union Public License 1.0", + OsiApproved = false, + SPDX = "EUPL-1.0" + }, + new + { + Id = 140, + FsfApproved = true, + Link = "https://spdx.org/licenses/EUPL-1.1.html#licenseText", + Name = "European Union Public License 1.1", + OsiApproved = true, + SPDX = "EUPL-1.1" + }, + new + { + Id = 141, + FsfApproved = true, + Link = "https://spdx.org/licenses/EUPL-1.2.html#licenseText", + Name = "European Union Public License 1.2", + OsiApproved = true, + SPDX = "EUPL-1.2" + }, + new + { + Id = 142, + FsfApproved = false, + Link = "https://spdx.org/licenses/Eurosym.html#licenseText", + Name = "Eurosym License", + OsiApproved = false, + SPDX = "Eurosym" + }, + new + { + Id = 143, + FsfApproved = false, + Link = "https://spdx.org/licenses/Fair.html#licenseText", + Name = "Fair License", + OsiApproved = true, + SPDX = "Fair" + }, + new + { + Id = 144, + FsfApproved = false, + Link = "https://spdx.org/licenses/Frameworx-1.0.html#licenseText", + Name = "Frameworx Open License 1.0", + OsiApproved = true, + SPDX = "Frameworx-1.0" + }, + new + { + Id = 145, + FsfApproved = false, + Link = "https://spdx.org/licenses/FreeImage.html#licenseText", + Name = "FreeImage Public License v1.0", + OsiApproved = false, + SPDX = "FreeImage" + }, + new + { + Id = 146, + FsfApproved = true, + Link = "https://spdx.org/licenses/FSFAP.html#licenseText", + Name = "FSF All Permissive License", + OsiApproved = false, + SPDX = "FSFAP" + }, + new + { + Id = 147, + FsfApproved = false, + Link = "https://spdx.org/licenses/FSFUL.html#licenseText", + Name = "FSF Unlimited License", + OsiApproved = false, + SPDX = "FSFUL" + }, + new + { + Id = 148, + FsfApproved = false, + Link = "https://spdx.org/licenses/FSFULLR.html#licenseText", + Name = "FSF Unlimited License (with License Retention)", + OsiApproved = false, + SPDX = "FSFULLR" + }, + new + { + Id = 149, + FsfApproved = true, + Link = "https://spdx.org/licenses/FTL.html#licenseText", + Name = "Freetype Project License", + OsiApproved = false, + SPDX = "FTL" + }, + new + { + Id = 150, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.1-only.html#licenseText", + Name = "GNU Free Documentation License v1.1 only", + OsiApproved = false, + SPDX = "GFDL-1.1-only" + }, + new + { + Id = 151, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.1-or-later.html#licenseText", + Name = "GNU Free Documentation License v1.1 or later", + OsiApproved = false, + SPDX = "GFDL-1.1-or-later" + }, + new + { + Id = 152, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.2-only.html#licenseText", + Name = "GNU Free Documentation License v1.2 only", + OsiApproved = false, + SPDX = "GFDL-1.2-only" + }, + new + { + Id = 153, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.2-or-later.html#licenseText", + Name = "GNU Free Documentation License v1.2 or later", + OsiApproved = false, + SPDX = "GFDL-1.2-or-later" + }, + new + { + Id = 154, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.3-only.html#licenseText", + Name = "GNU Free Documentation License v1.3 only", + OsiApproved = false, + SPDX = "GFDL-1.3-only" + }, + new + { + Id = 155, + FsfApproved = true, + Link = "https://spdx.org/licenses/GFDL-1.3-or-later.html#licenseText", + Name = "GNU Free Documentation License v1.3 or later", + OsiApproved = false, + SPDX = "GFDL-1.3-or-later" + }, + new + { + Id = 156, + FsfApproved = false, + Link = "https://spdx.org/licenses/Giftware.html#licenseText", + Name = "Giftware License", + OsiApproved = false, + SPDX = "Giftware" + }, + new + { + Id = 157, + FsfApproved = false, + Link = "https://spdx.org/licenses/GL2PS.html#licenseText", + Name = "GL2PS License", + OsiApproved = false, + SPDX = "GL2PS" + }, + new + { + Id = 158, + FsfApproved = false, + Link = "https://spdx.org/licenses/Glide.html#licenseText", + Name = "3dfx Glide License", + OsiApproved = false, + SPDX = "Glide" + }, + new + { + Id = 159, + FsfApproved = false, + Link = "https://spdx.org/licenses/Glulxe.html#licenseText", + Name = "Glulxe License", + OsiApproved = false, + SPDX = "Glulxe" + }, + new + { + Id = 160, + FsfApproved = true, + Link = "https://spdx.org/licenses/gnuplot.html#licenseText", + Name = "gnuplot License", + OsiApproved = false, + SPDX = "gnuplot" + }, + new + { + Id = 161, + FsfApproved = false, + Link = "https://spdx.org/licenses/GPL-1.0-only.html#licenseText", + Name = "GNU General Public License v1.0 only", + OsiApproved = false, + SPDX = "GPL-1.0-only" + }, + new + { + Id = 162, + FsfApproved = false, + Link = "https://spdx.org/licenses/GPL-1.0-or-later.html#licenseText", + Name = "GNU General Public License v1.0 or later", + OsiApproved = false, + SPDX = "GPL-1.0-or-later" + }, + new + { + Id = 163, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-2.0-only.html#licenseText", + Name = "GNU General Public License v2.0 only", + OsiApproved = true, + SPDX = "GPL-2.0-only" + }, + new + { + Id = 164, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-2.0-or-later.html#licenseText", + Name = "GNU General Public License v2.0 or later", + OsiApproved = true, + SPDX = "GPL-2.0-or-later" + }, + new + { + Id = 165, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-3.0-only.html#licenseText", + Name = "GNU General Public License v3.0 only", + OsiApproved = true, + SPDX = "GPL-3.0-only" + }, + new + { + Id = 166, + FsfApproved = true, + Link = "https://spdx.org/licenses/GPL-3.0-or-later.html#licenseText", + Name = "GNU General Public License v3.0 or later", + OsiApproved = true, + SPDX = "GPL-3.0-or-later" + }, + new + { + Id = 167, + FsfApproved = false, + Link = "https://spdx.org/licenses/gSOAP-1.3b.html#licenseText", + Name = "gSOAP Public License v1.3b", + OsiApproved = false, + SPDX = "gSOAP-1.3b" + }, + new + { + Id = 168, + FsfApproved = false, + Link = "https://spdx.org/licenses/HaskellReport.html#licenseText", + Name = "Haskell Language Report License", + OsiApproved = false, + SPDX = "HaskellReport" + }, + new + { + Id = 169, + FsfApproved = true, + Link = "https://spdx.org/licenses/HPND.html#licenseText", + Name = "Historical Permission Notice and Disclaimer", + OsiApproved = true, + SPDX = "HPND" + }, + new + { + Id = 170, + FsfApproved = false, + Link = "https://spdx.org/licenses/HPND-sell-variant.html#licenseText", + Name = "Historical Permission Notice and Disclaimer - sell variant", + OsiApproved = false, + SPDX = "HPND-sell-variant" + }, + new + { + Id = 171, + FsfApproved = false, + Link = "https://spdx.org/licenses/IBM-pibs.html#licenseText", + Name = "IBM PowerPC Initialization and Boot Software", + OsiApproved = false, + SPDX = "IBM-pibs" + }, + new + { + Id = 172, + FsfApproved = false, + Link = "https://spdx.org/licenses/ICU.html#licenseText", + Name = "ICU License", + OsiApproved = false, + SPDX = "ICU" + }, + new + { + Id = 173, + FsfApproved = true, + Link = "https://spdx.org/licenses/IJG.html#licenseText", + Name = "Independent JPEG Group License", + OsiApproved = false, + SPDX = "IJG" + }, + new + { + Id = 174, + FsfApproved = false, + Link = "https://spdx.org/licenses/ImageMagick.html#licenseText", + Name = "ImageMagick License", + OsiApproved = false, + SPDX = "ImageMagick" + }, + new + { + Id = 175, + FsfApproved = true, + Link = "https://spdx.org/licenses/iMatix.html#licenseText", + Name = "iMatix Standard Function Library Agreement", + OsiApproved = false, + SPDX = "iMatix" + }, + new + { + Id = 176, + FsfApproved = true, + Link = "https://spdx.org/licenses/Imlib2.html#licenseText", + Name = "Imlib2 License", + OsiApproved = false, + SPDX = "Imlib2" + }, + new + { + Id = 177, + FsfApproved = false, + Link = "https://spdx.org/licenses/Info-ZIP.html#licenseText", + Name = "Info-ZIP License", + OsiApproved = false, + SPDX = "Info-ZIP" + }, + new + { + Id = 178, + FsfApproved = true, + Link = "https://spdx.org/licenses/Intel.html#licenseText", + Name = "Intel Open Source License", + OsiApproved = true, + SPDX = "Intel" + }, + new + { + Id = 179, + FsfApproved = false, + Link = "https://spdx.org/licenses/Intel-ACPI.html#licenseText", + Name = "Intel ACPI Software License Agreement", + OsiApproved = false, + SPDX = "Intel-ACPI" + }, + new + { + Id = 180, + FsfApproved = false, + Link = "https://spdx.org/licenses/Interbase-1.0.html#licenseText", + Name = "Interbase Public License v1.0", + OsiApproved = false, + SPDX = "Interbase-1.0" + }, + new + { + Id = 181, + FsfApproved = true, + Link = "https://spdx.org/licenses/IPA.html#licenseText", + Name = "IPA Font License", + OsiApproved = true, + SPDX = "IPA" + }, + new + { + Id = 182, + FsfApproved = true, + Link = "https://spdx.org/licenses/IPL-1.0.html#licenseText", + Name = "IBM Public License v1.0", + OsiApproved = true, + SPDX = "IPL-1.0" + }, + new + { + Id = 183, + FsfApproved = true, + Link = "https://spdx.org/licenses/ISC.html#licenseText", + Name = "ISC License", + OsiApproved = true, + SPDX = "ISC" + }, + new + { + Id = 184, + FsfApproved = false, + Link = "https://spdx.org/licenses/JasPer-2.0.html#licenseText", + Name = "JasPer License", + OsiApproved = false, + SPDX = "JasPer-2.0" + }, + new + { + Id = 185, + FsfApproved = false, + Link = "https://spdx.org/licenses/JPNIC.html#licenseText", + Name = "Japan Network Information Center License", + OsiApproved = false, + SPDX = "JPNIC" + }, + new + { + Id = 186, + FsfApproved = false, + Link = "https://spdx.org/licenses/JSON.html#licenseText", + Name = "JSON License", + OsiApproved = false, + SPDX = "JSON" + }, + new + { + Id = 187, + FsfApproved = false, + Link = "https://spdx.org/licenses/LAL-1.2.html#licenseText", + Name = "Licence Art Libre 1.2", + OsiApproved = false, + SPDX = "LAL-1.2" + }, + new + { + Id = 188, + FsfApproved = false, + Link = "https://spdx.org/licenses/LAL-1.3.html#licenseText", + Name = "Licence Art Libre 1.3", + OsiApproved = false, + SPDX = "LAL-1.3" + }, + new + { + Id = 189, + FsfApproved = false, + Link = "https://spdx.org/licenses/Latex2e.html#licenseText", + Name = "Latex2e License", + OsiApproved = false, + SPDX = "Latex2e" + }, + new + { + Id = 190, + FsfApproved = false, + Link = "https://spdx.org/licenses/Leptonica.html#licenseText", + Name = "Leptonica License", + OsiApproved = false, + SPDX = "Leptonica" + }, + new + { + Id = 191, + FsfApproved = false, + Link = "https://spdx.org/licenses/LGPL-2.0-only.html#licenseText", + Name = "GNU Library General Public License v2 only", + OsiApproved = true, + SPDX = "LGPL-2.0-only" + }, + new + { + Id = 192, + FsfApproved = false, + Link = "https://spdx.org/licenses/LGPL-2.0-or-later.html#licenseText", + Name = "GNU Library General Public License v2 or later", + OsiApproved = true, + SPDX = "LGPL-2.0-or-later" + }, + new + { + Id = 193, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-2.1-only.html#licenseText", + Name = "GNU Lesser General Public License v2.1 only", + OsiApproved = true, + SPDX = "LGPL-2.1-only" + }, + new + { + Id = 194, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-2.1-or-later.html#licenseText", + Name = "GNU Lesser General Public License v2.1 or later", + OsiApproved = true, + SPDX = "LGPL-2.1-or-later" + }, + new + { + Id = 195, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-3.0-only.html#licenseText", + Name = "GNU Lesser General Public License v3.0 only", + OsiApproved = true, + SPDX = "LGPL-3.0-only" + }, + new + { + Id = 196, + FsfApproved = true, + Link = "https://spdx.org/licenses/LGPL-3.0-or-later.html#licenseText", + Name = "GNU Lesser General Public License v3.0 or later", + OsiApproved = true, + SPDX = "LGPL-3.0-or-later" + }, + new + { + Id = 197, + FsfApproved = false, + Link = "https://spdx.org/licenses/LGPLLR.html#licenseText", + Name = "Lesser General Public License For Linguistic Resources", + OsiApproved = false, + SPDX = "LGPLLR" + }, + new + { + Id = 198, + FsfApproved = false, + Link = "https://spdx.org/licenses/Libpng.html#licenseText", + Name = "libpng License", + OsiApproved = false, + SPDX = "Libpng" + }, + new + { + Id = 199, + FsfApproved = false, + Link = "https://spdx.org/licenses/libpng-2.0.html#licenseText", + Name = "PNG Reference Library version 2", + OsiApproved = false, + SPDX = "libpng-2.0" + }, + new + { + Id = 200, + FsfApproved = false, + Link = "https://spdx.org/licenses/libtiff.html#licenseText", + Name = "libtiff License", + OsiApproved = false, + SPDX = "libtiff" + }, + new + { + Id = 201, + FsfApproved = false, + Link = "https://spdx.org/licenses/LiLiQ-P-1.1.html#licenseText", + Name = "Licence Libre du Québec – Permissive version 1.1", + OsiApproved = true, + SPDX = "LiLiQ-P-1.1" + }, + new + { + Id = 202, + FsfApproved = false, + Link = "https://spdx.org/licenses/LiLiQ-R-1.1.html#licenseText", + Name = "Licence Libre du Québec – Réciprocité version 1.1", + OsiApproved = true, + SPDX = "LiLiQ-R-1.1" + }, + new + { + Id = 203, + FsfApproved = false, + Link = "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html#licenseText", + Name = "Licence Libre du Québec – Réciprocité forte version 1.1", + OsiApproved = true, + SPDX = "LiLiQ-Rplus-1.1" + }, + new + { + Id = 204, + FsfApproved = false, + Link = "https://spdx.org/licenses/Linux-OpenIB.html#licenseText", + Name = "Linux Kernel Variant of OpenIB.org license", + OsiApproved = false, + SPDX = "Linux-OpenIB" + }, + new + { + Id = 205, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPL-1.0.html#licenseText", + Name = "Lucent Public License Version 1.0", + OsiApproved = true, + SPDX = "LPL-1.0" + }, + new + { + Id = 206, + FsfApproved = true, + Link = "https://spdx.org/licenses/LPL-1.02.html#licenseText", + Name = "Lucent Public License v1.02", + OsiApproved = true, + SPDX = "LPL-1.02" + }, + new + { + Id = 207, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPPL-1.0.html#licenseText", + Name = "LaTeX Project Public License v1.0", + OsiApproved = false, + SPDX = "LPPL-1.0" + }, + new + { + Id = 208, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPPL-1.1.html#licenseText", + Name = "LaTeX Project Public License v1.1", + OsiApproved = false, + SPDX = "LPPL-1.1" + }, + new + { + Id = 209, + FsfApproved = true, + Link = "https://spdx.org/licenses/LPPL-1.2.html#licenseText", + Name = "LaTeX Project Public License v1.2", + OsiApproved = false, + SPDX = "LPPL-1.2" + }, + new + { + Id = 210, + FsfApproved = true, + Link = "https://spdx.org/licenses/LPPL-1.3a.html#licenseText", + Name = "LaTeX Project Public License v1.3a", + OsiApproved = false, + SPDX = "LPPL-1.3a" + }, + new + { + Id = 211, + FsfApproved = false, + Link = "https://spdx.org/licenses/LPPL-1.3c.html#licenseText", + Name = "LaTeX Project Public License v1.3c", + OsiApproved = true, + SPDX = "LPPL-1.3c" + }, + new + { + Id = 212, + FsfApproved = false, + Link = "https://spdx.org/licenses/MakeIndex.html#licenseText", + Name = "MakeIndex License", + OsiApproved = false, + SPDX = "MakeIndex" + }, + new + { + Id = 213, + FsfApproved = false, + Link = "https://spdx.org/licenses/MirOS.html#licenseText", + Name = "MirOS License", + OsiApproved = true, + SPDX = "MirOS" + }, + new + { + Id = 214, + FsfApproved = true, + Link = "https://spdx.org/licenses/MIT.html#licenseText", + Name = "MIT License", + OsiApproved = true, + SPDX = "MIT" + }, + new + { + Id = 215, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-0.html#licenseText", + Name = "MIT No Attribution", + OsiApproved = true, + SPDX = "MIT-0" + }, + new + { + Id = 216, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-advertising.html#licenseText", + Name = "Enlightenment License (e16)", + OsiApproved = false, + SPDX = "MIT-advertising" + }, + new + { + Id = 217, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-CMU.html#licenseText", + Name = "CMU License", + OsiApproved = false, + SPDX = "MIT-CMU" + }, + new + { + Id = 218, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-enna.html#licenseText", + Name = "enna License", + OsiApproved = false, + SPDX = "MIT-enna" + }, + new + { + Id = 219, + FsfApproved = false, + Link = "https://spdx.org/licenses/MIT-feh.html#licenseText", + Name = "feh License", + OsiApproved = false, + SPDX = "MIT-feh" + }, + new + { + Id = 220, + FsfApproved = false, + Link = "https://spdx.org/licenses/MITNFA.html#licenseText", + Name = "MIT +no-false-attribs license", + OsiApproved = false, + SPDX = "MITNFA" + }, + new + { + Id = 221, + FsfApproved = false, + Link = "https://spdx.org/licenses/Motosoto.html#licenseText", + Name = "Motosoto License", + OsiApproved = true, + SPDX = "Motosoto" + }, + new + { + Id = 222, + FsfApproved = false, + Link = "https://spdx.org/licenses/mpich2.html#licenseText", + Name = "mpich2 License", + OsiApproved = false, + SPDX = "mpich2" + }, + new + { + Id = 223, + FsfApproved = false, + Link = "https://spdx.org/licenses/MPL-1.0.html#licenseText", + Name = "Mozilla Public License 1.0", + OsiApproved = true, + SPDX = "MPL-1.0" + }, + new + { + Id = 224, + FsfApproved = true, + Link = "https://spdx.org/licenses/MPL-1.1.html#licenseText", + Name = "Mozilla Public License 1.1", + OsiApproved = true, + SPDX = "MPL-1.1" + }, + new + { + Id = 225, + FsfApproved = true, + Link = "https://spdx.org/licenses/MPL-2.0.html#licenseText", + Name = "Mozilla Public License 2.0", + OsiApproved = true, + SPDX = "MPL-2.0" + }, + new + { + Id = 226, + FsfApproved = false, + Link = "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html#licenseText", + Name = "Mozilla Public License 2.0 (no copyleft exception)", + OsiApproved = true, + SPDX = "MPL-2.0-no-copyleft-exception" + }, + new + { + Id = 227, + FsfApproved = true, + Link = "https://spdx.org/licenses/MS-PL.html#licenseText", + Name = "Microsoft Public License", + OsiApproved = true, + SPDX = "MS-PL" + }, + new + { + Id = 228, + FsfApproved = true, + Link = "https://spdx.org/licenses/MS-RL.html#licenseText", + Name = "Microsoft Reciprocal License", + OsiApproved = true, + SPDX = "MS-RL" + }, + new + { + Id = 229, + FsfApproved = false, + Link = "https://spdx.org/licenses/MTLL.html#licenseText", + Name = "Matrix Template Library License", + OsiApproved = false, + SPDX = "MTLL" + }, + new + { + Id = 230, + FsfApproved = false, + Link = "https://spdx.org/licenses/Multics.html#licenseText", + Name = "Multics License", + OsiApproved = true, + SPDX = "Multics" + }, + new + { + Id = 231, + FsfApproved = false, + Link = "https://spdx.org/licenses/Mup.html#licenseText", + Name = "Mup License", + OsiApproved = false, + SPDX = "Mup" + }, + new + { + Id = 232, + FsfApproved = false, + Link = "https://spdx.org/licenses/NASA-1.3.html#licenseText", + Name = "NASA Open Source Agreement 1.3", + OsiApproved = true, + SPDX = "NASA-1.3" + }, + new + { + Id = 233, + FsfApproved = false, + Link = "https://spdx.org/licenses/Naumen.html#licenseText", + Name = "Naumen Public License", + OsiApproved = true, + SPDX = "Naumen" + }, + new + { + Id = 234, + FsfApproved = false, + Link = "https://spdx.org/licenses/NBPL-1.0.html#licenseText", + Name = "Net Boolean Public License v1", + OsiApproved = false, + SPDX = "NBPL-1.0" + }, + new + { + Id = 235, + FsfApproved = true, + Link = "https://spdx.org/licenses/NCSA.html#licenseText", + Name = "University of Illinois/NCSA Open Source License", + OsiApproved = true, + SPDX = "NCSA" + }, + new + { + Id = 236, + FsfApproved = false, + Link = "https://spdx.org/licenses/Net-SNMP.html#licenseText", + Name = "Net-SNMP License", + OsiApproved = false, + SPDX = "Net-SNMP" + }, + new + { + Id = 237, + FsfApproved = false, + Link = "https://spdx.org/licenses/NetCDF.html#licenseText", + Name = "NetCDF license", + OsiApproved = false, + SPDX = "NetCDF" + }, + new + { + Id = 238, + FsfApproved = false, + Link = "https://spdx.org/licenses/Newsletr.html#licenseText", + Name = "Newsletr License", + OsiApproved = false, + SPDX = "Newsletr" + }, + new + { + Id = 239, + FsfApproved = false, + Link = "https://spdx.org/licenses/NGPL.html#licenseText", + Name = "Nethack General Public License", + OsiApproved = true, + SPDX = "NGPL" + }, + new + { + Id = 240, + FsfApproved = false, + Link = "https://spdx.org/licenses/NLOD-1.0.html#licenseText", + Name = "Norwegian Licence for Open Government Data", + OsiApproved = false, + SPDX = "NLOD-1.0" + }, + new + { + Id = 241, + FsfApproved = false, + Link = "https://spdx.org/licenses/NLPL.html#licenseText", + Name = "No Limit Public License", + OsiApproved = false, + SPDX = "NLPL" + }, + new + { + Id = 242, + FsfApproved = true, + Link = "https://spdx.org/licenses/Nokia.html#licenseText", + Name = "Nokia Open Source License", + OsiApproved = true, + SPDX = "Nokia" + }, + new + { + Id = 243, + FsfApproved = true, + Link = "https://spdx.org/licenses/NOSL.html#licenseText", + Name = "Netizen Open Source License", + OsiApproved = false, + SPDX = "NOSL" + }, + new + { + Id = 244, + FsfApproved = false, + Link = "https://spdx.org/licenses/Noweb.html#licenseText", + Name = "Noweb License", + OsiApproved = false, + SPDX = "Noweb" + }, + new + { + Id = 245, + FsfApproved = true, + Link = "https://spdx.org/licenses/NPL-1.0.html#licenseText", + Name = "Netscape Public License v1.0", + OsiApproved = false, + SPDX = "NPL-1.0" + }, + new + { + Id = 246, + FsfApproved = true, + Link = "https://spdx.org/licenses/NPL-1.1.html#licenseText", + Name = "Netscape Public License v1.1", + OsiApproved = false, + SPDX = "NPL-1.1" + }, + new + { + Id = 247, + FsfApproved = false, + Link = "https://spdx.org/licenses/NPOSL-3.0.html#licenseText", + Name = "Non-Profit Open Software License 3.0", + OsiApproved = true, + SPDX = "NPOSL-3.0" + }, + new + { + Id = 248, + FsfApproved = false, + Link = "https://spdx.org/licenses/NRL.html#licenseText", + Name = "NRL License", + OsiApproved = false, + SPDX = "NRL" + }, + new + { + Id = 249, + FsfApproved = false, + Link = "https://spdx.org/licenses/NTP.html#licenseText", + Name = "NTP License", + OsiApproved = true, + SPDX = "NTP" + }, + new + { + Id = 250, + FsfApproved = false, + Link = "https://spdx.org/licenses/OCCT-PL.html#licenseText", + Name = "Open CASCADE Technology Public License", + OsiApproved = false, + SPDX = "OCCT-PL" + }, + new + { + Id = 251, + FsfApproved = false, + Link = "https://spdx.org/licenses/OCLC-2.0.html#licenseText", + Name = "OCLC Research Public License 2.0", + OsiApproved = true, + SPDX = "OCLC-2.0" + }, + new + { + Id = 252, + FsfApproved = true, + Link = "https://spdx.org/licenses/ODbL-1.0.html#licenseText", + Name = "ODC Open Database License v1.0", + OsiApproved = false, + SPDX = "ODbL-1.0" + }, + new + { + Id = 253, + FsfApproved = false, + Link = "https://spdx.org/licenses/ODC-By-1.0.html#licenseText", + Name = "Open Data Commons Attribution License v1.0", + OsiApproved = false, + SPDX = "ODC-By-1.0" + }, + new + { + Id = 254, + FsfApproved = true, + Link = "https://spdx.org/licenses/OFL-1.0.html#licenseText", + Name = "SIL Open Font License 1.0", + OsiApproved = false, + SPDX = "OFL-1.0" + }, + new + { + Id = 255, + FsfApproved = true, + Link = "https://spdx.org/licenses/OFL-1.1.html#licenseText", + Name = "SIL Open Font License 1.1", + OsiApproved = true, + SPDX = "OFL-1.1" + }, + new + { + Id = 256, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGL-UK-1.0.html#licenseText", + Name = "Open Government Licence v1.0", + OsiApproved = false, + SPDX = "OGL-UK-1.0" + }, + new + { + Id = 257, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGL-UK-2.0.html#licenseText", + Name = "Open Government Licence v2.0", + OsiApproved = false, + SPDX = "OGL-UK-2.0" + }, + new + { + Id = 258, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGL-UK-3.0.html#licenseText", + Name = "Open Government Licence v3.0", + OsiApproved = false, + SPDX = "OGL-UK-3.0" + }, + new + { + Id = 259, + FsfApproved = false, + Link = "https://spdx.org/licenses/OGTSL.html#licenseText", + Name = "Open Group Test Suite License", + OsiApproved = true, + SPDX = "OGTSL" + }, + new + { + Id = 260, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.1.html#licenseText", + Name = "Open LDAP Public License v1.1", + OsiApproved = false, + SPDX = "OLDAP-1.1" + }, + new + { + Id = 261, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.2.html#licenseText", + Name = "Open LDAP Public License v1.2", + OsiApproved = false, + SPDX = "OLDAP-1.2" + }, + new + { + Id = 262, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.3.html#licenseText", + Name = "Open LDAP Public License v1.3", + OsiApproved = false, + SPDX = "OLDAP-1.3" + }, + new + { + Id = 263, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-1.4.html#licenseText", + Name = "Open LDAP Public License v1.4", + OsiApproved = false, + SPDX = "OLDAP-1.4" + }, + new + { + Id = 264, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.0.html#licenseText", + Name = "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", + OsiApproved = false, + SPDX = "OLDAP-2.0" + }, + new + { + Id = 265, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.0.1.html#licenseText", + Name = "Open LDAP Public License v2.0.1", + OsiApproved = false, + SPDX = "OLDAP-2.0.1" + }, + new + { + Id = 266, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.1.html#licenseText", + Name = "Open LDAP Public License v2.1", + OsiApproved = false, + SPDX = "OLDAP-2.1" + }, + new + { + Id = 267, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.2.html#licenseText", + Name = "Open LDAP Public License v2.2", + OsiApproved = false, + SPDX = "OLDAP-2.2" + }, + new + { + Id = 268, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.2.1.html#licenseText", + Name = "Open LDAP Public License v2.2.1", + OsiApproved = false, + SPDX = "OLDAP-2.2.1" + }, + new + { + Id = 269, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.2.2.html#licenseText", + Name = "Open LDAP Public License 2.2.2", + OsiApproved = false, + SPDX = "OLDAP-2.2.2" + }, + new + { + Id = 270, + FsfApproved = true, + Link = "https://spdx.org/licenses/OLDAP-2.3.html#licenseText", + Name = "Open LDAP Public License v2.3", + OsiApproved = false, + SPDX = "OLDAP-2.3" + }, + new + { + Id = 271, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.4.html#licenseText", + Name = "Open LDAP Public License v2.4", + OsiApproved = false, + SPDX = "OLDAP-2.4" + }, + new + { + Id = 272, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.5.html#licenseText", + Name = "Open LDAP Public License v2.5", + OsiApproved = false, + SPDX = "OLDAP-2.5" + }, + new + { + Id = 273, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.6.html#licenseText", + Name = "Open LDAP Public License v2.6", + OsiApproved = false, + SPDX = "OLDAP-2.6" + }, + new + { + Id = 274, + FsfApproved = true, + Link = "https://spdx.org/licenses/OLDAP-2.7.html#licenseText", + Name = "Open LDAP Public License v2.7", + OsiApproved = false, + SPDX = "OLDAP-2.7" + }, + new + { + Id = 275, + FsfApproved = false, + Link = "https://spdx.org/licenses/OLDAP-2.8.html#licenseText", + Name = "Open LDAP Public License v2.8", + OsiApproved = false, + SPDX = "OLDAP-2.8" + }, + new + { + Id = 276, + FsfApproved = false, + Link = "https://spdx.org/licenses/OML.html#licenseText", + Name = "Open Market License", + OsiApproved = false, + SPDX = "OML" + }, + new + { + Id = 277, + FsfApproved = true, + Link = "https://spdx.org/licenses/OpenSSL.html#licenseText", + Name = "OpenSSL License", + OsiApproved = false, + SPDX = "OpenSSL" + }, + new + { + Id = 278, + FsfApproved = false, + Link = "https://spdx.org/licenses/OPL-1.0.html#licenseText", + Name = "Open Public License v1.0", + OsiApproved = false, + SPDX = "OPL-1.0" + }, + new + { + Id = 279, + FsfApproved = false, + Link = "https://spdx.org/licenses/OSET-PL-2.1.html#licenseText", + Name = "OSET Public License version 2.1", + OsiApproved = true, + SPDX = "OSET-PL-2.1" + }, + new + { + Id = 280, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-1.0.html#licenseText", + Name = "Open Software License 1.0", + OsiApproved = true, + SPDX = "OSL-1.0" + }, + new + { + Id = 281, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-1.1.html#licenseText", + Name = "Open Software License 1.1", + OsiApproved = false, + SPDX = "OSL-1.1" + }, + new + { + Id = 282, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-2.0.html#licenseText", + Name = "Open Software License 2.0", + OsiApproved = true, + SPDX = "OSL-2.0" + }, + new + { + Id = 283, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-2.1.html#licenseText", + Name = "Open Software License 2.1", + OsiApproved = true, + SPDX = "OSL-2.1" + }, + new + { + Id = 284, + FsfApproved = true, + Link = "https://spdx.org/licenses/OSL-3.0.html#licenseText", + Name = "Open Software License 3.0", + OsiApproved = true, + SPDX = "OSL-3.0" + }, + new + { + Id = 285, + FsfApproved = false, + Link = "https://spdx.org/licenses/PDDL-1.0.html#licenseText", + Name = "ODC Public Domain Dedication & License 1.0", + OsiApproved = false, + SPDX = "PDDL-1.0" + }, + new + { + Id = 286, + FsfApproved = false, + Link = "https://spdx.org/licenses/PHP-3.0.html#licenseText", + Name = "PHP License v3.0", + OsiApproved = true, + SPDX = "PHP-3.0" + }, + new + { + Id = 287, + FsfApproved = true, + Link = "https://spdx.org/licenses/PHP-3.01.html#licenseText", + Name = "PHP License v3.01", + OsiApproved = false, + SPDX = "PHP-3.01" + }, + new + { + Id = 288, + FsfApproved = false, + Link = "https://spdx.org/licenses/Plexus.html#licenseText", + Name = "Plexus Classworlds License", + OsiApproved = false, + SPDX = "Plexus" + }, + new + { + Id = 289, + FsfApproved = false, + Link = "https://spdx.org/licenses/PostgreSQL.html#licenseText", + Name = "PostgreSQL License", + OsiApproved = true, + SPDX = "PostgreSQL" + }, + new + { + Id = 290, + FsfApproved = false, + Link = "https://spdx.org/licenses/psfrag.html#licenseText", + Name = "psfrag License", + OsiApproved = false, + SPDX = "psfrag" + }, + new + { + Id = 291, + FsfApproved = false, + Link = "https://spdx.org/licenses/psutils.html#licenseText", + Name = "psutils License", + OsiApproved = false, + SPDX = "psutils" + }, + new + { + Id = 292, + FsfApproved = true, + Link = "https://spdx.org/licenses/Python-2.0.html#licenseText", + Name = "Python License 2.0", + OsiApproved = true, + SPDX = "Python-2.0" + }, + new + { + Id = 293, + FsfApproved = false, + Link = "https://spdx.org/licenses/Qhull.html#licenseText", + Name = "Qhull License", + OsiApproved = false, + SPDX = "Qhull" + }, + new + { + Id = 294, + FsfApproved = true, + Link = "https://spdx.org/licenses/QPL-1.0.html#licenseText", + Name = "Q Public License 1.0", + OsiApproved = true, + SPDX = "QPL-1.0" + }, + new + { + Id = 295, + FsfApproved = false, + Link = "https://spdx.org/licenses/Rdisc.html#licenseText", + Name = "Rdisc License", + OsiApproved = false, + SPDX = "Rdisc" + }, + new + { + Id = 296, + FsfApproved = false, + Link = "https://spdx.org/licenses/RHeCos-1.1.html#licenseText", + Name = "Red Hat eCos Public License v1.1", + OsiApproved = false, + SPDX = "RHeCos-1.1" + }, + new + { + Id = 297, + FsfApproved = false, + Link = "https://spdx.org/licenses/RPL-1.1.html#licenseText", + Name = "Reciprocal Public License 1.1", + OsiApproved = true, + SPDX = "RPL-1.1" + }, + new + { + Id = 298, + FsfApproved = false, + Link = "https://spdx.org/licenses/RPL-1.5.html#licenseText", + Name = "Reciprocal Public License 1.5", + OsiApproved = true, + SPDX = "RPL-1.5" + }, + new + { + Id = 299, + FsfApproved = true, + Link = "https://spdx.org/licenses/RPSL-1.0.html#licenseText", + Name = "RealNetworks Public Source License v1.0", + OsiApproved = true, + SPDX = "RPSL-1.0" + }, + new + { + Id = 300, + FsfApproved = false, + Link = "https://spdx.org/licenses/RSA-MD.html#licenseText", + Name = "RSA Message-Digest License", + OsiApproved = false, + SPDX = "RSA-MD" + }, + new + { + Id = 301, + FsfApproved = false, + Link = "https://spdx.org/licenses/RSCPL.html#licenseText", + Name = "Ricoh Source Code Public License", + OsiApproved = true, + SPDX = "RSCPL" + }, + new + { + Id = 302, + FsfApproved = true, + Link = "https://spdx.org/licenses/Ruby.html#licenseText", + Name = "Ruby License", + OsiApproved = false, + SPDX = "Ruby" + }, + new + { + Id = 303, + FsfApproved = false, + Link = "https://spdx.org/licenses/SAX-PD.html#licenseText", + Name = "Sax Public Domain Notice", + OsiApproved = false, + SPDX = "SAX-PD" + }, + new + { + Id = 304, + FsfApproved = false, + Link = "https://spdx.org/licenses/Saxpath.html#licenseText", + Name = "Saxpath License", + OsiApproved = false, + SPDX = "Saxpath" + }, + new + { + Id = 305, + FsfApproved = false, + Link = "https://spdx.org/licenses/SCEA.html#licenseText", + Name = "SCEA Shared Source License", + OsiApproved = false, + SPDX = "SCEA" + }, + new + { + Id = 306, + FsfApproved = false, + Link = "https://spdx.org/licenses/Sendmail.html#licenseText", + Name = "Sendmail License", + OsiApproved = false, + SPDX = "Sendmail" + }, + new + { + Id = 307, + FsfApproved = false, + Link = "https://spdx.org/licenses/Sendmail-8.23.html#licenseText", + Name = "Sendmail License 8.23", + OsiApproved = false, + SPDX = "Sendmail-8.23" + }, + new + { + Id = 308, + FsfApproved = false, + Link = "https://spdx.org/licenses/SGI-B-1.0.html#licenseText", + Name = "SGI Free Software License B v1.0", + OsiApproved = false, + SPDX = "SGI-B-1.0" + }, + new + { + Id = 309, + FsfApproved = false, + Link = "https://spdx.org/licenses/SGI-B-1.1.html#licenseText", + Name = "SGI Free Software License B v1.1", + OsiApproved = false, + SPDX = "SGI-B-1.1" + }, + new + { + Id = 310, + FsfApproved = true, + Link = "https://spdx.org/licenses/SGI-B-2.0.html#licenseText", + Name = "SGI Free Software License B v2.0", + OsiApproved = false, + SPDX = "SGI-B-2.0" + }, + new + { + Id = 311, + FsfApproved = false, + Link = "https://spdx.org/licenses/SimPL-2.0.html#licenseText", + Name = "Simple Public License 2.0", + OsiApproved = true, + SPDX = "SimPL-2.0" + }, + new + { + Id = 312, + FsfApproved = true, + Link = "https://spdx.org/licenses/SISSL.html#licenseText", + Name = "Sun Industry Standards Source License v1.1", + OsiApproved = true, + SPDX = "SISSL" + }, + new + { + Id = 313, + FsfApproved = false, + Link = "https://spdx.org/licenses/SISSL-1.2.html#licenseText", + Name = "Sun Industry Standards Source License v1.2", + OsiApproved = false, + SPDX = "SISSL-1.2" + }, + new + { + Id = 314, + FsfApproved = true, + Link = "https://spdx.org/licenses/Sleepycat.html#licenseText", + Name = "Sleepycat License", + OsiApproved = true, + SPDX = "Sleepycat" + }, + new + { + Id = 315, + FsfApproved = true, + Link = "https://spdx.org/licenses/SMLNJ.html#licenseText", + Name = "Standard ML of New Jersey License", + OsiApproved = false, + SPDX = "SMLNJ" + }, + new + { + Id = 316, + FsfApproved = false, + Link = "https://spdx.org/licenses/SMPPL.html#licenseText", + Name = "Secure Messaging Protocol Public License", + OsiApproved = false, + SPDX = "SMPPL" + }, + new + { + Id = 317, + FsfApproved = false, + Link = "https://spdx.org/licenses/SNIA.html#licenseText", + Name = "SNIA Public License 1.1", + OsiApproved = false, + SPDX = "SNIA" + }, + new + { + Id = 318, + FsfApproved = false, + Link = "https://spdx.org/licenses/Spencer-86.html#licenseText", + Name = "Spencer License 86", + OsiApproved = false, + SPDX = "Spencer-86" + }, + new + { + Id = 319, + FsfApproved = false, + Link = "https://spdx.org/licenses/Spencer-94.html#licenseText", + Name = "Spencer License 94", + OsiApproved = false, + SPDX = "Spencer-94" + }, + new + { + Id = 320, + FsfApproved = false, + Link = "https://spdx.org/licenses/Spencer-99.html#licenseText", + Name = "Spencer License 99", + OsiApproved = false, + SPDX = "Spencer-99" + }, + new + { + Id = 321, + FsfApproved = true, + Link = "https://spdx.org/licenses/SPL-1.0.html#licenseText", + Name = "Sun Public License v1.0", + OsiApproved = true, + SPDX = "SPL-1.0" + }, + new + { + Id = 322, + FsfApproved = false, + Link = "https://spdx.org/licenses/SugarCRM-1.1.3.html#licenseText", + Name = "SugarCRM Public License v1.1.3", + OsiApproved = false, + SPDX = "SugarCRM-1.1.3" + }, + new + { + Id = 323, + FsfApproved = false, + Link = "https://spdx.org/licenses/SWL.html#licenseText", + Name = "Scheme Widget Library (SWL) Software License Agreement", + OsiApproved = false, + SPDX = "SWL" + }, + new + { + Id = 324, + FsfApproved = false, + Link = "https://spdx.org/licenses/TAPR-OHL-1.0.html#licenseText", + Name = "TAPR Open Hardware License v1.0", + OsiApproved = false, + SPDX = "TAPR-OHL-1.0" + }, + new + { + Id = 325, + FsfApproved = false, + Link = "https://spdx.org/licenses/TCL.html#licenseText", + Name = "TCL/TK License", + OsiApproved = false, + SPDX = "TCL" + }, + new + { + Id = 326, + FsfApproved = false, + Link = "https://spdx.org/licenses/TCP-wrappers.html#licenseText", + Name = "TCP Wrappers License", + OsiApproved = false, + SPDX = "TCP-wrappers" + }, + new + { + Id = 327, + FsfApproved = false, + Link = "https://spdx.org/licenses/TMate.html#licenseText", + Name = "TMate Open Source License", + OsiApproved = false, + SPDX = "TMate" + }, + new + { + Id = 328, + FsfApproved = false, + Link = "https://spdx.org/licenses/TORQUE-1.1.html#licenseText", + Name = "TORQUE v2.5+ Software License v1.1", + OsiApproved = false, + SPDX = "TORQUE-1.1" + }, + new + { + Id = 329, + FsfApproved = false, + Link = "https://spdx.org/licenses/TOSL.html#licenseText", + Name = "Trusster Open Source License", + OsiApproved = false, + SPDX = "TOSL" + }, + new + { + Id = 330, + FsfApproved = false, + Link = "https://spdx.org/licenses/TU-Berlin-1.0.html#licenseText", + Name = "Technische Universitaet Berlin License 1.0", + OsiApproved = false, + SPDX = "TU-Berlin-1.0" + }, + new + { + Id = 331, + FsfApproved = false, + Link = "https://spdx.org/licenses/TU-Berlin-2.0.html#licenseText", + Name = "Technische Universitaet Berlin License 2.0", + OsiApproved = false, + SPDX = "TU-Berlin-2.0" + }, + new + { + Id = 332, + FsfApproved = false, + Link = "https://spdx.org/licenses/Unicode-DFS-2015.html#licenseText", + Name = "Unicode License Agreement - Data Files and Software (2015)", + OsiApproved = false, + SPDX = "Unicode-DFS-2015" + }, + new + { + Id = 333, + FsfApproved = false, + Link = "https://spdx.org/licenses/Unicode-DFS-2016.html#licenseText", + Name = "Unicode License Agreement - Data Files and Software (2016)", + OsiApproved = false, + SPDX = "Unicode-DFS-2016" + }, + new + { + Id = 334, + FsfApproved = false, + Link = "https://spdx.org/licenses/Unicode-TOU.html#licenseText", + Name = "Unicode Terms of Use", + OsiApproved = false, + SPDX = "Unicode-TOU" + }, + new + { + Id = 335, + FsfApproved = true, + Link = "https://spdx.org/licenses/Unlicense.html#licenseText", + Name = "The Unlicense", + OsiApproved = false, + SPDX = "Unlicense" + }, + new + { + Id = 336, + FsfApproved = true, + Link = "https://spdx.org/licenses/UPL-1.0.html#licenseText", + Name = "Universal Permissive License v1.0", + OsiApproved = true, + SPDX = "UPL-1.0" + }, + new + { + Id = 337, + FsfApproved = true, + Link = "https://spdx.org/licenses/Vim.html#licenseText", + Name = "Vim License", + OsiApproved = false, + SPDX = "Vim" + }, + new + { + Id = 338, + FsfApproved = false, + Link = "https://spdx.org/licenses/VOSTROM.html#licenseText", + Name = "VOSTROM Public License for Open Source", + OsiApproved = false, + SPDX = "VOSTROM" + }, + new + { + Id = 339, + FsfApproved = false, + Link = "https://spdx.org/licenses/VSL-1.0.html#licenseText", + Name = "Vovida Software License v1.0", + OsiApproved = true, + SPDX = "VSL-1.0" + }, + new + { + Id = 340, + FsfApproved = true, + Link = "https://spdx.org/licenses/W3C.html#licenseText", + Name = "W3C Software Notice and License (2002-12-31)", + OsiApproved = true, + SPDX = "W3C" + }, + new + { + Id = 341, + FsfApproved = false, + Link = "https://spdx.org/licenses/W3C-19980720.html#licenseText", + Name = "W3C Software Notice and License (1998-07-20)", + OsiApproved = false, + SPDX = "W3C-19980720" + }, + new + { + Id = 342, + FsfApproved = false, + Link = "https://spdx.org/licenses/W3C-20150513.html#licenseText", + Name = "W3C Software Notice and Document License (2015-05-13)", + OsiApproved = false, + SPDX = "W3C-20150513" + }, + new + { + Id = 343, + FsfApproved = false, + Link = "https://spdx.org/licenses/Watcom-1.0.html#licenseText", + Name = "Sybase Open Watcom Public License 1.0", + OsiApproved = true, + SPDX = "Watcom-1.0" + }, + new + { + Id = 344, + FsfApproved = false, + Link = "https://spdx.org/licenses/Wsuipa.html#licenseText", + Name = "Wsuipa License", + OsiApproved = false, + SPDX = "Wsuipa" + }, + new + { + Id = 345, + FsfApproved = true, + Link = "https://spdx.org/licenses/WTFPL.html#licenseText", + Name = "Do What The F*ck You Want To Public License", + OsiApproved = false, + SPDX = "WTFPL" + }, + new + { + Id = 346, + FsfApproved = true, + Link = "https://spdx.org/licenses/X11.html#licenseText", + Name = "X11 License", + OsiApproved = false, + SPDX = "X11" + }, + new + { + Id = 347, + FsfApproved = false, + Link = "https://spdx.org/licenses/Xerox.html#licenseText", + Name = "Xerox License", + OsiApproved = false, + SPDX = "Xerox" + }, + new + { + Id = 348, + FsfApproved = true, + Link = "https://spdx.org/licenses/XFree86-1.1.html#licenseText", + Name = "XFree86 License 1.1", + OsiApproved = false, + SPDX = "XFree86-1.1" + }, + new + { + Id = 349, + FsfApproved = true, + Link = "https://spdx.org/licenses/xinetd.html#licenseText", + Name = "xinetd License", + OsiApproved = false, + SPDX = "xinetd" + }, + new + { + Id = 350, + FsfApproved = false, + Link = "https://spdx.org/licenses/Xnet.html#licenseText", + Name = "X.Net License", + OsiApproved = true, + SPDX = "Xnet" + }, + new + { + Id = 351, + FsfApproved = false, + Link = "https://spdx.org/licenses/xpp.html#licenseText", + Name = "XPP License", + OsiApproved = false, + SPDX = "xpp" + }, + new + { + Id = 352, + FsfApproved = false, + Link = "https://spdx.org/licenses/XSkat.html#licenseText", + Name = "XSkat License", + OsiApproved = false, + SPDX = "XSkat" + }, + new + { + Id = 353, + FsfApproved = false, + Link = "https://spdx.org/licenses/YPL-1.0.html#licenseText", + Name = "Yahoo! Public License v1.0", + OsiApproved = false, + SPDX = "YPL-1.0" + }, + new + { + Id = 354, + FsfApproved = true, + Link = "https://spdx.org/licenses/YPL-1.1.html#licenseText", + Name = "Yahoo! Public License v1.1", + OsiApproved = false, + SPDX = "YPL-1.1" + }, + new + { + Id = 355, + FsfApproved = false, + Link = "https://spdx.org/licenses/Zed.html#licenseText", + Name = "Zed License", + OsiApproved = false, + SPDX = "Zed" + }, + new + { + Id = 356, + FsfApproved = true, + Link = "https://spdx.org/licenses/Zend-2.0.html#licenseText", + Name = "Zend License v2.0", + OsiApproved = false, + SPDX = "Zend-2.0" + }, + new + { + Id = 357, + FsfApproved = true, + Link = "https://spdx.org/licenses/Zimbra-1.3.html#licenseText", + Name = "Zimbra Public License v1.3", + OsiApproved = false, + SPDX = "Zimbra-1.3" + }, + new + { + Id = 358, + FsfApproved = false, + Link = "https://spdx.org/licenses/Zimbra-1.4.html#licenseText", + Name = "Zimbra Public License v1.4", + OsiApproved = false, + SPDX = "Zimbra-1.4" + }, + new + { + Id = 359, + FsfApproved = true, + Link = "https://spdx.org/licenses/Zlib.html#licenseText", + Name = "zlib License", + OsiApproved = true, + SPDX = "Zlib" + }, + new + { + Id = 360, + FsfApproved = false, + Link = "https://spdx.org/licenses/zlib-acknowledgement.html#licenseText", + Name = "zlib/libpng License with Acknowledgement", + OsiApproved = false, + SPDX = "zlib-acknowledgement" + }, + new + { + Id = 361, + FsfApproved = false, + Link = "https://spdx.org/licenses/ZPL-1.1.html#licenseText", + Name = "Zope Public License 1.1", + OsiApproved = false, + SPDX = "ZPL-1.1" + }, + new + { + Id = 362, + FsfApproved = true, + Link = "https://spdx.org/licenses/ZPL-2.0.html#licenseText", + Name = "Zope Public License 2.0", + OsiApproved = true, + SPDX = "ZPL-2.0" + }, + new + { + Id = 363, + FsfApproved = true, + Link = "https://spdx.org/licenses/ZPL-2.1.html#licenseText", + Name = "Zope Public License 2.1", + OsiApproved = false, + SPDX = "ZPL-2.1" + }); + }); modelBuilder.Entity("Cicm.Database.Models.Log", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Browser").IsRequired().ValueGeneratedOnAdd().HasColumnName("browser") - .HasColumnType("char(128)").HasDefaultValueSql("''"); + b.Property("Browser") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("browser") + .HasColumnType("char(128)") + .HasDefaultValueSql("''"); - b.Property("Date").IsRequired().ValueGeneratedOnAdd().HasColumnName("date") - .HasColumnType("char(20)").HasDefaultValueSql("''"); + b.Property("Date") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("date") + .HasColumnType("char(20)") + .HasDefaultValueSql("''"); - b.Property("Ip").IsRequired().ValueGeneratedOnAdd().HasColumnName("ip") - .HasColumnType("char(16)").HasDefaultValueSql("''"); + b.Property("Ip") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("ip") + .HasColumnType("char(16)") + .HasDefaultValueSql("''"); - b.Property("Referer").IsRequired().ValueGeneratedOnAdd().HasColumnName("referer") - .HasColumnType("char(255)").HasDefaultValueSql("''"); + b.Property("Referer") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("referer") + .HasColumnType("char(255)") + .HasDefaultValueSql("''"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Browser").HasName("idx_log_browser"); + b.HasIndex("Browser") + .HasName("idx_log_browser"); - b.HasIndex("Date").HasName("idx_log_date"); + b.HasIndex("Date") + .HasName("idx_log_date"); - b.HasIndex("Ip").HasName("idx_log_ip"); + b.HasIndex("Ip") + .HasName("idx_log_ip"); - b.HasIndex("Referer").HasName("idx_log_referer"); + b.HasIndex("Referer") + .HasName("idx_log_referer"); - b.ToTable("log"); - }); + b.ToTable("log"); + }); modelBuilder.Entity("Cicm.Database.Models.Machine", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("CompanyId").ValueGeneratedOnAdd().HasColumnName("company").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("CompanyId") + .ValueGeneratedOnAdd() + .HasColumnName("company") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.Property("FamilyId").HasColumnName("family").HasColumnType("int(11)"); + b.Property("FamilyId") + .HasColumnName("family") + .HasColumnType("int(11)"); - b.Property("Introduced").HasColumnName("introduced").HasColumnType("datetime"); + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); - b.Property("Model").HasColumnName("model").HasColumnType("varchar(50)").HasMaxLength(50); + b.Property("Model") + .HasColumnName("model") + .HasColumnType("varchar(50)") + .HasMaxLength(50); - b.Property("Name").IsRequired().HasColumnName("name").HasColumnType("varchar(255)") - .HasMaxLength(255); + b.Property("Name") + .IsRequired() + .HasColumnName("name") + .HasColumnType("varchar(255)") + .HasMaxLength(255); - b.Property("Type").ValueGeneratedOnAdd().HasColumnName("type").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("CompanyId").HasName("idx_machines_company"); + b.HasIndex("CompanyId") + .HasName("idx_machines_company"); - b.HasIndex("FamilyId").HasName("idx_machines_family"); + b.HasIndex("FamilyId") + .HasName("idx_machines_family"); - b.HasIndex("Introduced").HasName("idx_machines_introduced"); + b.HasIndex("Introduced") + .HasName("idx_machines_introduced"); - b.HasIndex("Model").HasName("idx_machines_model"); + b.HasIndex("Model") + .HasName("idx_machines_model"); - b.HasIndex("Name").HasName("idx_machines_name"); + b.HasIndex("Name") + .HasName("idx_machines_name"); - b.HasIndex("Type").HasName("idx_machines_type"); + b.HasIndex("Type") + .HasName("idx_machines_type"); - b.ToTable("machines"); - }); + b.ToTable("machines"); + }); modelBuilder.Entity("Cicm.Database.Models.MachineFamily", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("CompanyId").HasColumnName("company").HasColumnType("int(11)"); + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); - b.Property("Name").IsRequired().HasColumnName("name").HasColumnType("varchar(255)") - .HasMaxLength(255); + b.Property("Name") + .IsRequired() + .HasColumnName("name") + .HasColumnType("varchar(255)") + .HasMaxLength(255); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("CompanyId").HasName("idx_machine_families_company"); + b.HasIndex("CompanyId") + .HasName("idx_machine_families_company"); - b.HasIndex("Name").HasName("idx_machine_families_name"); + b.HasIndex("Name") + .HasName("idx_machine_families_name"); - b.ToTable("machine_families"); - }); + b.ToTable("machine_families"); + }); modelBuilder.Entity("Cicm.Database.Models.MachinePhoto", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("Author"); + b.Property("Author"); - b.Property("CameraManufacturer"); + b.Property("CameraManufacturer"); - b.Property("CameraModel"); + b.Property("CameraModel"); - b.Property("ColorSpace"); + b.Property("ColorSpace"); - b.Property("Comments"); + b.Property("Comments"); - b.Property("Contrast"); + b.Property("Contrast"); - b.Property("CreationDate"); + b.Property("CreationDate"); - b.Property("DigitalZoomRatio"); + b.Property("DigitalZoomRatio"); - b.Property("ExifVersion"); + b.Property("ExifVersion"); - b.Property("Exposure"); + b.Property("Exposure"); - b.Property("ExposureMethod"); + b.Property("ExposureMethod"); - b.Property("ExposureProgram"); + b.Property("ExposureProgram"); - b.Property("Flash"); + b.Property("Flash"); - b.Property("Focal"); + b.Property("Focal"); - b.Property("FocalLength"); + b.Property("FocalLength"); - b.Property("FocalLengthEquivalent"); + b.Property("FocalLengthEquivalent"); - b.Property("HorizontalResolution"); + b.Property("HorizontalResolution"); - b.Property("IsoRating"); + b.Property("IsoRating"); - b.Property("Lens"); + b.Property("Lens"); - b.Property("LicenseId"); + b.Property("LicenseId"); - b.Property("LightSource"); + b.Property("LightSource"); - b.Property("MachineId"); + b.Property("MachineId"); - b.Property("MeteringMode"); + b.Property("MeteringMode"); - b.Property("Orientation"); + b.Property("Orientation"); - b.Property("ResolutionUnit"); + b.Property("ResolutionUnit"); - b.Property("Saturation"); + b.Property("Saturation"); - b.Property("SceneCaptureType"); + b.Property("SceneCaptureType"); - b.Property("SensingMethod"); + b.Property("SensingMethod"); - b.Property("Sharpness"); + b.Property("Sharpness"); - b.Property("SoftwareUsed"); + b.Property("SoftwareUsed"); - b.Property("Source"); + b.Property("Source"); - b.Property("SubjectDistanceRange"); + b.Property("SubjectDistanceRange"); - b.Property("UploadDate").IsConcurrencyToken().ValueGeneratedOnAddOrUpdate(); + b.Property("UploadDate") + .IsConcurrencyToken() + .ValueGeneratedOnAddOrUpdate(); - b.Property("UserId"); + b.Property("UserId"); - b.Property("VerticalResolution"); + b.Property("VerticalResolution"); - b.Property("WhiteBalance"); + b.Property("WhiteBalance"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Author"); + b.HasIndex("Author"); - b.HasIndex("CameraManufacturer"); + b.HasIndex("CameraManufacturer"); - b.HasIndex("CameraModel"); + b.HasIndex("CameraModel"); - b.HasIndex("ColorSpace"); + b.HasIndex("ColorSpace"); - b.HasIndex("Comments"); + b.HasIndex("Comments"); - b.HasIndex("Contrast"); + b.HasIndex("Contrast"); - b.HasIndex("CreationDate"); + b.HasIndex("CreationDate"); - b.HasIndex("DigitalZoomRatio"); + b.HasIndex("DigitalZoomRatio"); - b.HasIndex("ExifVersion"); + b.HasIndex("ExifVersion"); - b.HasIndex("Exposure"); + b.HasIndex("Exposure"); - b.HasIndex("ExposureMethod"); + b.HasIndex("ExposureMethod"); - b.HasIndex("ExposureProgram"); + b.HasIndex("ExposureProgram"); - b.HasIndex("Flash"); + b.HasIndex("Flash"); - b.HasIndex("Focal"); + b.HasIndex("Focal"); - b.HasIndex("FocalLength"); + b.HasIndex("FocalLength"); - b.HasIndex("FocalLengthEquivalent"); + b.HasIndex("FocalLengthEquivalent"); - b.HasIndex("HorizontalResolution"); + b.HasIndex("HorizontalResolution"); - b.HasIndex("IsoRating"); + b.HasIndex("IsoRating"); - b.HasIndex("Lens"); + b.HasIndex("Lens"); - b.HasIndex("LicenseId"); + b.HasIndex("LicenseId"); - b.HasIndex("LightSource"); + b.HasIndex("LightSource"); - b.HasIndex("MachineId"); + b.HasIndex("MachineId"); - b.HasIndex("MeteringMode"); + b.HasIndex("MeteringMode"); - b.HasIndex("Orientation"); + b.HasIndex("Orientation"); - b.HasIndex("ResolutionUnit"); + b.HasIndex("ResolutionUnit"); - b.HasIndex("Saturation"); + b.HasIndex("Saturation"); - b.HasIndex("SceneCaptureType"); + b.HasIndex("SceneCaptureType"); - b.HasIndex("SensingMethod"); + b.HasIndex("SensingMethod"); - b.HasIndex("Sharpness"); + b.HasIndex("Sharpness"); - b.HasIndex("SoftwareUsed"); + b.HasIndex("SoftwareUsed"); - b.HasIndex("SubjectDistanceRange"); + b.HasIndex("SubjectDistanceRange"); - b.HasIndex("UploadDate"); + b.HasIndex("UploadDate"); - b.HasIndex("UserId"); + b.HasIndex("UserId"); - b.HasIndex("VerticalResolution"); + b.HasIndex("VerticalResolution"); - b.HasIndex("WhiteBalance"); + b.HasIndex("WhiteBalance"); - b.ToTable("MachinePhotos"); - }); + b.ToTable("MachinePhotos"); + }); modelBuilder.Entity("Cicm.Database.Models.MemoryByMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("bigint(20)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); - b.Property("MachineId").HasColumnName("machine").HasColumnType("int(11)"); + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); - b.Property("Size").HasColumnName("size").HasColumnType("bigint(20)"); + b.Property("Size") + .HasColumnName("size") + .HasColumnType("bigint(20)"); - b.Property("Speed").HasColumnName("speed"); + b.Property("Speed") + .HasColumnName("speed"); - b.Property("Type").ValueGeneratedOnAdd().HasColumnName("type").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.Property("Usage").ValueGeneratedOnAdd().HasColumnName("usage").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Usage") + .ValueGeneratedOnAdd() + .HasColumnName("usage") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("MachineId").HasName("idx_memory_by_machine_machine"); + b.HasIndex("MachineId") + .HasName("idx_memory_by_machine_machine"); - b.HasIndex("Size").HasName("idx_memory_by_machine_size"); + b.HasIndex("Size") + .HasName("idx_memory_by_machine_size"); - b.HasIndex("Speed").HasName("idx_memory_by_machine_speed"); + b.HasIndex("Speed") + .HasName("idx_memory_by_machine_speed"); - b.HasIndex("Type").HasName("idx_memory_by_machine_type"); + b.HasIndex("Type") + .HasName("idx_memory_by_machine_type"); - b.HasIndex("Usage").HasName("idx_memory_by_machine_usage"); + b.HasIndex("Usage") + .HasName("idx_memory_by_machine_usage"); - b.ToTable("memory_by_machine"); - }); + b.ToTable("memory_by_machine"); + }); modelBuilder.Entity("Cicm.Database.Models.MemoryByOwnedMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("OwnedMachineId"); + b.Property("OwnedMachineId"); - b.Property("Size"); + b.Property("Size"); - b.Property("Speed"); + b.Property("Speed"); - b.Property("Type"); + b.Property("Type"); - b.Property("Usage"); + b.Property("Usage"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("OwnedMachineId"); + b.HasIndex("OwnedMachineId"); - b.HasIndex("Size"); + b.HasIndex("Size"); - b.HasIndex("Speed"); + b.HasIndex("Speed"); - b.HasIndex("Type"); + b.HasIndex("Type"); - b.HasIndex("Usage"); + b.HasIndex("Usage"); - b.ToTable("MemoryByOwnedMachine"); - }); + b.ToTable("MemoryByOwnedMachine"); + }); modelBuilder.Entity("Cicm.Database.Models.MoneyDonation", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Donator").IsRequired().ValueGeneratedOnAdd().HasColumnName("donator") - .HasColumnType("char(128)").HasDefaultValueSql("''"); + b.Property("Donator") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("donator") + .HasColumnType("char(128)") + .HasDefaultValueSql("''"); - b.Property("Quantity").ValueGeneratedOnAdd().HasColumnName("quantity") - .HasColumnType("decimal(11,2)").HasDefaultValueSql("'0.00'"); + b.Property("Quantity") + .ValueGeneratedOnAdd() + .HasColumnName("quantity") + .HasColumnType("decimal(11,2)") + .HasDefaultValueSql("'0.00'"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Donator").HasName("idx_money_donations_donator"); + b.HasIndex("Donator") + .HasName("idx_money_donations_donator"); - b.HasIndex("Quantity").HasName("idx_money_donations_quantity"); + b.HasIndex("Quantity") + .HasName("idx_money_donations_quantity"); - b.ToTable("money_donations"); - }); + b.ToTable("money_donations"); + }); modelBuilder.Entity("Cicm.Database.Models.News", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("AddedId").ValueGeneratedOnAdd().HasColumnName("added_id").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("AddedId") + .ValueGeneratedOnAdd() + .HasColumnName("added_id") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.Property("Date").HasColumnName("date").HasColumnType("datetime"); + b.Property("Date") + .HasColumnName("date") + .HasColumnType("datetime"); - b.Property("Type").ValueGeneratedOnAdd().HasColumnName("type").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("AddedId").HasName("idx_news_ip"); + b.HasIndex("AddedId") + .HasName("idx_news_ip"); - b.HasIndex("Date").HasName("idx_news_date"); + b.HasIndex("Date") + .HasName("idx_news_date"); - b.HasIndex("Type").HasName("idx_news_type"); + b.HasIndex("Type") + .HasName("idx_news_type"); - b.ToTable("news"); - }); + b.ToTable("news"); + }); modelBuilder.Entity("Cicm.Database.Models.OwnedMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("AcquisitionDate"); + b.Property("AcquisitionDate"); - b.Property("Boxed"); + b.Property("Boxed"); - b.Property("LastStatusDate"); + b.Property("LastStatusDate"); - b.Property("LostDate"); + b.Property("LostDate"); - b.Property("MachineId"); + b.Property("MachineId"); - b.Property("Manuals"); + b.Property("Manuals"); - b.Property("SerialNumber"); + b.Property("SerialNumber"); - b.Property("SerialNumberVisible").ValueGeneratedOnAdd().HasDefaultValue(true); + b.Property("SerialNumberVisible") + .ValueGeneratedOnAdd() + .HasDefaultValue(true); - b.Property("Status"); + b.Property("Status"); - b.Property("Trade"); + b.Property("Trade"); - b.Property("UserId"); + b.Property("UserId"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("AcquisitionDate"); + b.HasIndex("AcquisitionDate"); - b.HasIndex("Boxed"); + b.HasIndex("Boxed"); - b.HasIndex("LastStatusDate"); + b.HasIndex("LastStatusDate"); - b.HasIndex("LostDate"); + b.HasIndex("LostDate"); - b.HasIndex("MachineId"); + b.HasIndex("MachineId"); - b.HasIndex("Manuals"); + b.HasIndex("Manuals"); - b.HasIndex("SerialNumber"); + b.HasIndex("SerialNumber"); - b.HasIndex("SerialNumberVisible"); + b.HasIndex("SerialNumberVisible"); - b.HasIndex("Status"); + b.HasIndex("Status"); - b.HasIndex("Trade"); + b.HasIndex("Trade"); - b.HasIndex("UserId"); + b.HasIndex("UserId"); - b.ToTable("OwnedMachines"); - }); + b.ToTable("OwnedMachines"); + }); modelBuilder.Entity("Cicm.Database.Models.OwnedMachinePhoto", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("Author"); + b.Property("Author"); - b.Property("CameraManufacturer"); + b.Property("CameraManufacturer"); - b.Property("CameraModel"); + b.Property("CameraModel"); - b.Property("ColorSpace"); + b.Property("ColorSpace"); - b.Property("Comments"); + b.Property("Comments"); - b.Property("Contrast"); + b.Property("Contrast"); - b.Property("CreationDate"); + b.Property("CreationDate"); - b.Property("DigitalZoomRatio"); + b.Property("DigitalZoomRatio"); - b.Property("ExifVersion"); + b.Property("ExifVersion"); - b.Property("Exposure"); + b.Property("Exposure"); - b.Property("ExposureMethod"); + b.Property("ExposureMethod"); - b.Property("ExposureProgram"); + b.Property("ExposureProgram"); - b.Property("Flash"); + b.Property("Flash"); - b.Property("Focal"); + b.Property("Focal"); - b.Property("FocalLength"); + b.Property("FocalLength"); - b.Property("FocalLengthEquivalent"); + b.Property("FocalLengthEquivalent"); - b.Property("HorizontalResolution"); + b.Property("HorizontalResolution"); - b.Property("IsoRating"); + b.Property("IsoRating"); - b.Property("Lens"); + b.Property("Lens"); - b.Property("LicenseId"); + b.Property("LicenseId"); - b.Property("LightSource"); + b.Property("LightSource"); - b.Property("MeteringMode"); + b.Property("MeteringMode"); - b.Property("Orientation"); + b.Property("Orientation"); - b.Property("OwnedMachineId"); + b.Property("OwnedMachineId"); - b.Property("ResolutionUnit"); + b.Property("ResolutionUnit"); - b.Property("Saturation"); + b.Property("Saturation"); - b.Property("SceneCaptureType"); + b.Property("SceneCaptureType"); - b.Property("SensingMethod"); + b.Property("SensingMethod"); - b.Property("Sharpness"); + b.Property("Sharpness"); - b.Property("SoftwareUsed"); + b.Property("SoftwareUsed"); - b.Property("SubjectDistanceRange"); + b.Property("SubjectDistanceRange"); - b.Property("UploadDate").IsConcurrencyToken().ValueGeneratedOnAddOrUpdate(); + b.Property("UploadDate") + .IsConcurrencyToken() + .ValueGeneratedOnAddOrUpdate(); - b.Property("UserId"); + b.Property("UserId"); - b.Property("VerticalResolution"); + b.Property("VerticalResolution"); - b.Property("WhiteBalance"); + b.Property("WhiteBalance"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Author"); + b.HasIndex("Author"); - b.HasIndex("CameraManufacturer"); + b.HasIndex("CameraManufacturer"); - b.HasIndex("CameraModel"); + b.HasIndex("CameraModel"); - b.HasIndex("ColorSpace"); + b.HasIndex("ColorSpace"); - b.HasIndex("Comments"); + b.HasIndex("Comments"); - b.HasIndex("Contrast"); + b.HasIndex("Contrast"); - b.HasIndex("CreationDate"); + b.HasIndex("CreationDate"); - b.HasIndex("DigitalZoomRatio"); + b.HasIndex("DigitalZoomRatio"); - b.HasIndex("ExifVersion"); + b.HasIndex("ExifVersion"); - b.HasIndex("Exposure"); + b.HasIndex("Exposure"); - b.HasIndex("ExposureMethod"); + b.HasIndex("ExposureMethod"); - b.HasIndex("ExposureProgram"); + b.HasIndex("ExposureProgram"); - b.HasIndex("Flash"); + b.HasIndex("Flash"); - b.HasIndex("Focal"); + b.HasIndex("Focal"); - b.HasIndex("FocalLength"); + b.HasIndex("FocalLength"); - b.HasIndex("FocalLengthEquivalent"); + b.HasIndex("FocalLengthEquivalent"); - b.HasIndex("HorizontalResolution"); + b.HasIndex("HorizontalResolution"); - b.HasIndex("IsoRating"); + b.HasIndex("IsoRating"); - b.HasIndex("Lens"); + b.HasIndex("Lens"); - b.HasIndex("LicenseId"); + b.HasIndex("LicenseId"); - b.HasIndex("LightSource"); + b.HasIndex("LightSource"); - b.HasIndex("MeteringMode"); + b.HasIndex("MeteringMode"); - b.HasIndex("Orientation"); + b.HasIndex("Orientation"); - b.HasIndex("OwnedMachineId"); + b.HasIndex("OwnedMachineId"); - b.HasIndex("ResolutionUnit"); + b.HasIndex("ResolutionUnit"); - b.HasIndex("Saturation"); + b.HasIndex("Saturation"); - b.HasIndex("SceneCaptureType"); + b.HasIndex("SceneCaptureType"); - b.HasIndex("SensingMethod"); + b.HasIndex("SensingMethod"); - b.HasIndex("Sharpness"); + b.HasIndex("Sharpness"); - b.HasIndex("SoftwareUsed"); + b.HasIndex("SoftwareUsed"); - b.HasIndex("SubjectDistanceRange"); + b.HasIndex("SubjectDistanceRange"); - b.HasIndex("UploadDate"); + b.HasIndex("UploadDate"); - b.HasIndex("UserId"); + b.HasIndex("UserId"); - b.HasIndex("VerticalResolution"); + b.HasIndex("VerticalResolution"); - b.HasIndex("WhiteBalance"); + b.HasIndex("WhiteBalance"); - b.ToTable("OwnedMachinePhotos"); - }); + b.ToTable("OwnedMachinePhotos"); + }); modelBuilder.Entity("Cicm.Database.Models.Person", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("BirthDate"); + b.Property("BirthDate"); - b.Property("CountryOfBirthId"); + b.Property("CountryOfBirthId"); - b.Property("DeathDate"); + b.Property("DeathDate"); - b.Property("Facebook"); + b.Property("Facebook"); - b.Property("Name").IsRequired(); + b.Property("Name") + .IsRequired(); - b.Property("Photo"); + b.Property("Photo"); - b.Property("Surname").IsRequired(); + b.Property("Surname") + .IsRequired(); - b.Property("Twitter"); + b.Property("Twitter"); - b.Property("Webpage"); + b.Property("Webpage"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("BirthDate"); + b.HasIndex("BirthDate"); - b.HasIndex("CountryOfBirthId"); + b.HasIndex("CountryOfBirthId"); - b.HasIndex("DeathDate"); + b.HasIndex("DeathDate"); - b.HasIndex("Facebook"); + b.HasIndex("Facebook"); - b.HasIndex("Name"); + b.HasIndex("Name"); - b.HasIndex("Photo"); + b.HasIndex("Photo"); - b.HasIndex("Surname"); + b.HasIndex("Surname"); - b.HasIndex("Twitter"); + b.HasIndex("Twitter"); - b.HasIndex("Webpage"); + b.HasIndex("Webpage"); - b.ToTable("People"); - }); + b.ToTable("People"); + }); modelBuilder.Entity("Cicm.Database.Models.Processor", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("AddrBus").HasColumnName("addr_bus").HasColumnType("int(11)"); + b.Property("AddrBus") + .HasColumnName("addr_bus") + .HasColumnType("int(11)"); - b.Property("CompanyId").HasColumnName("company").HasColumnType("int(11)"); + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); - b.Property("Cores").HasColumnName("cores").HasColumnType("int(11)"); + b.Property("Cores") + .HasColumnName("cores") + .HasColumnType("int(11)"); - b.Property("DataBus").HasColumnName("data_bus").HasColumnType("int(11)"); + b.Property("DataBus") + .HasColumnName("data_bus") + .HasColumnType("int(11)"); - b.Property("DieSize").HasColumnName("die_size"); + b.Property("DieSize") + .HasColumnName("die_size"); - b.Property("FprSize").HasColumnName("FPR_size").HasColumnType("int(11)"); + b.Property("FprSize") + .HasColumnName("FPR_size") + .HasColumnType("int(11)"); - b.Property("Fprs").HasColumnName("FPRs").HasColumnType("int(11)"); + b.Property("Fprs") + .HasColumnName("FPRs") + .HasColumnType("int(11)"); - b.Property("GprSize").HasColumnName("GPR_size").HasColumnType("int(11)"); + b.Property("GprSize") + .HasColumnName("GPR_size") + .HasColumnType("int(11)"); - b.Property("Gprs").HasColumnName("GPRs").HasColumnType("int(11)"); + b.Property("Gprs") + .HasColumnName("GPRs") + .HasColumnType("int(11)"); - b.Property("InstructionSetId").HasColumnName("instruction_set").HasColumnType("int(11)"); + b.Property("InstructionSetId") + .HasColumnName("instruction_set") + .HasColumnType("int(11)"); - b.Property("Introduced").HasColumnName("introduced").HasColumnType("datetime"); + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); - b.Property("L1Data").HasColumnName("L1_data"); + b.Property("L1Data") + .HasColumnName("L1_data"); - b.Property("L1Instruction").HasColumnName("L1_instruction"); + b.Property("L1Instruction") + .HasColumnName("L1_instruction"); - b.Property("L2"); + b.Property("L2"); - b.Property("L3"); + b.Property("L3"); - b.Property("ModelCode").HasColumnName("model_code").HasColumnType("varchar(45)") - .HasMaxLength(45); + b.Property("ModelCode") + .HasColumnName("model_code") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("Name").IsRequired().ValueGeneratedOnAdd().HasColumnName("name") - .HasColumnType("char(50)").HasDefaultValueSql("''").HasMaxLength(50); + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("char(50)") + .HasDefaultValueSql("''") + .HasMaxLength(50); - b.Property("Package").HasColumnName("package").HasColumnType("varchar(45)").HasMaxLength(45); + b.Property("Package") + .HasColumnName("package") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("Process").HasColumnName("process").HasColumnType("varchar(45)").HasMaxLength(45); + b.Property("Process") + .HasColumnName("process") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("ProcessNm").HasColumnName("process_nm"); + b.Property("ProcessNm") + .HasColumnName("process_nm"); - b.Property("SimdRegisters").HasColumnName("SIMD_registers").HasColumnType("int(11)"); + b.Property("SimdRegisters") + .HasColumnName("SIMD_registers") + .HasColumnType("int(11)"); - b.Property("SimdSize").HasColumnName("SIMD_size").HasColumnType("int(11)"); + b.Property("SimdSize") + .HasColumnName("SIMD_size") + .HasColumnType("int(11)"); - b.Property("Speed").HasColumnName("speed"); + b.Property("Speed") + .HasColumnName("speed"); - b.Property("ThreadsPerCore").HasColumnName("threads_per_core").HasColumnType("int(11)"); + b.Property("ThreadsPerCore") + .HasColumnName("threads_per_core") + .HasColumnType("int(11)"); - b.Property("Transistors").HasColumnName("transistors").HasColumnType("bigint(20)"); + b.Property("Transistors") + .HasColumnName("transistors") + .HasColumnType("bigint(20)"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("AddrBus").HasName("idx_processors_addr_bus"); + b.HasIndex("AddrBus") + .HasName("idx_processors_addr_bus"); - b.HasIndex("CompanyId").HasName("idx_processors_company"); + b.HasIndex("CompanyId") + .HasName("idx_processors_company"); - b.HasIndex("Cores").HasName("idx_processors_cores"); + b.HasIndex("Cores") + .HasName("idx_processors_cores"); - b.HasIndex("DataBus").HasName("idx_processors_data_bus"); + b.HasIndex("DataBus") + .HasName("idx_processors_data_bus"); - b.HasIndex("DieSize").HasName("idx_processors_die_size"); + b.HasIndex("DieSize") + .HasName("idx_processors_die_size"); - b.HasIndex("FprSize").HasName("idx_processors_FPR_size"); + b.HasIndex("FprSize") + .HasName("idx_processors_FPR_size"); - b.HasIndex("Fprs").HasName("idx_processors_FPRs"); + b.HasIndex("Fprs") + .HasName("idx_processors_FPRs"); - b.HasIndex("GprSize").HasName("idx_processors_GPR_size"); + b.HasIndex("GprSize") + .HasName("idx_processors_GPR_size"); - b.HasIndex("Gprs").HasName("idx_processors_GPRs"); + b.HasIndex("Gprs") + .HasName("idx_processors_GPRs"); - b.HasIndex("InstructionSetId").HasName("idx_processors_instruction_set"); + b.HasIndex("InstructionSetId") + .HasName("idx_processors_instruction_set"); - b.HasIndex("Introduced").HasName("idx_processors_introduced"); + b.HasIndex("Introduced") + .HasName("idx_processors_introduced"); - b.HasIndex("L1Data").HasName("idx_processors_L1_data"); + b.HasIndex("L1Data") + .HasName("idx_processors_L1_data"); - b.HasIndex("L1Instruction").HasName("idx_processors_L1_instruction"); + b.HasIndex("L1Instruction") + .HasName("idx_processors_L1_instruction"); - b.HasIndex("L2").HasName("idx_processors_L2"); + b.HasIndex("L2") + .HasName("idx_processors_L2"); - b.HasIndex("L3").HasName("idx_processors_L3"); + b.HasIndex("L3") + .HasName("idx_processors_L3"); - b.HasIndex("ModelCode").HasName("idx_processors_model_code"); + b.HasIndex("ModelCode") + .HasName("idx_processors_model_code"); - b.HasIndex("Name").HasName("idx_processors_name"); + b.HasIndex("Name") + .HasName("idx_processors_name"); - b.HasIndex("Package").HasName("idx_processors_package"); + b.HasIndex("Package") + .HasName("idx_processors_package"); - b.HasIndex("Process").HasName("idx_processors_process"); + b.HasIndex("Process") + .HasName("idx_processors_process"); - b.HasIndex("ProcessNm").HasName("idx_processors_process_nm"); + b.HasIndex("ProcessNm") + .HasName("idx_processors_process_nm"); - b.HasIndex("SimdRegisters").HasName("idx_processors_SIMD_registers"); + b.HasIndex("SimdRegisters") + .HasName("idx_processors_SIMD_registers"); - b.HasIndex("SimdSize").HasName("idx_processors_SIMD_size"); + b.HasIndex("SimdSize") + .HasName("idx_processors_SIMD_size"); - b.HasIndex("Speed").HasName("idx_processors_speed"); + b.HasIndex("Speed") + .HasName("idx_processors_speed"); - b.HasIndex("ThreadsPerCore").HasName("idx_processors_threads_per_core"); + b.HasIndex("ThreadsPerCore") + .HasName("idx_processors_threads_per_core"); - b.HasIndex("Transistors").HasName("idx_processors_transistors"); + b.HasIndex("Transistors") + .HasName("idx_processors_transistors"); - b.ToTable("processors"); - }); + b.ToTable("processors"); + }); modelBuilder.Entity("Cicm.Database.Models.ProcessorsByMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("bigint(20)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); - b.Property("MachineId").HasColumnName("machine").HasColumnType("int(11)"); + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); - b.Property("ProcessorId").HasColumnName("processor").HasColumnType("int(11)"); + b.Property("ProcessorId") + .HasColumnName("processor") + .HasColumnType("int(11)"); - b.Property("Speed").HasColumnName("speed"); + b.Property("Speed") + .HasColumnName("speed"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("MachineId").HasName("idx_processors_by_machine_machine"); + b.HasIndex("MachineId") + .HasName("idx_processors_by_machine_machine"); - b.HasIndex("ProcessorId").HasName("idx_processors_by_machine_processor"); + b.HasIndex("ProcessorId") + .HasName("idx_processors_by_machine_processor"); - b.HasIndex("Speed").HasName("idx_processors_by_machine_speed"); + b.HasIndex("Speed") + .HasName("idx_processors_by_machine_speed"); - b.ToTable("processors_by_machine"); - }); + b.ToTable("processors_by_machine"); + }); modelBuilder.Entity("Cicm.Database.Models.ProcessorsByOwnedMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("OwnedMachineId"); + b.Property("OwnedMachineId"); - b.Property("ProcessorId"); + b.Property("ProcessorId"); - b.Property("Speed"); + b.Property("Speed"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("OwnedMachineId"); + b.HasIndex("OwnedMachineId"); - b.HasIndex("ProcessorId"); + b.HasIndex("ProcessorId"); - b.HasIndex("Speed"); + b.HasIndex("Speed"); - b.ToTable("ProcessorsByOwnedMachine"); - }); + b.ToTable("ProcessorsByOwnedMachine"); + }); modelBuilder.Entity("Cicm.Database.Models.Resolution", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("Chars").ValueGeneratedOnAdd().HasColumnName("chars").HasColumnType("tinyint(1)") - .HasDefaultValueSql("'0'"); + b.Property("Chars") + .ValueGeneratedOnAdd() + .HasColumnName("chars") + .HasColumnType("tinyint(1)") + .HasDefaultValueSql("'0'"); - b.Property("Colors").HasColumnName("colors").HasColumnType("bigint(20)"); + b.Property("Colors") + .HasColumnName("colors") + .HasColumnType("bigint(20)"); - b.Property("Grayscale"); + b.Property("Grayscale"); - b.Property("Height").ValueGeneratedOnAdd().HasColumnName("height").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Height") + .ValueGeneratedOnAdd() + .HasColumnName("height") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.Property("Palette").HasColumnName("palette").HasColumnType("bigint(20)"); + b.Property("Palette") + .HasColumnName("palette") + .HasColumnType("bigint(20)"); - b.Property("Width").ValueGeneratedOnAdd().HasColumnName("width").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Width") + .ValueGeneratedOnAdd() + .HasColumnName("width") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Colors").HasName("idx_resolutions_colors"); + b.HasIndex("Colors") + .HasName("idx_resolutions_colors"); - b.HasIndex("Height").HasName("idx_resolutions_height"); + b.HasIndex("Height") + .HasName("idx_resolutions_height"); - b.HasIndex("Palette").HasName("idx_resolutions_palette"); + b.HasIndex("Palette") + .HasName("idx_resolutions_palette"); - b.HasIndex("Width").HasName("idx_resolutions_width"); + b.HasIndex("Width") + .HasName("idx_resolutions_width"); - b.HasIndex("Width", "Height").HasName("idx_resolutions_resolution"); + b.HasIndex("Width", "Height") + .HasName("idx_resolutions_resolution"); - b.HasIndex("Width", "Height", "Colors").HasName("idx_resolutions_resolution_with_color"); + b.HasIndex("Width", "Height", "Colors") + .HasName("idx_resolutions_resolution_with_color"); - b.HasIndex("Width", "Height", "Colors", "Palette") - .HasName("idx_resolutions_resolution_with_color_and_palette"); + b.HasIndex("Width", "Height", "Colors", "Palette") + .HasName("idx_resolutions_resolution_with_color_and_palette"); - b.ToTable("resolutions"); - }); + b.ToTable("resolutions"); + }); modelBuilder.Entity("Cicm.Database.Models.ResolutionsByGpu", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("bigint(20)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); - b.Property("GpuId").HasColumnName("gpu").HasColumnType("int(11)"); + b.Property("GpuId") + .HasColumnName("gpu") + .HasColumnType("int(11)"); - b.Property("ResolutionId").HasColumnName("resolution").HasColumnType("int(11)"); + b.Property("ResolutionId") + .HasColumnName("resolution") + .HasColumnType("int(11)"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("GpuId").HasName("idx_resolutions_by_gpu_gpu"); + b.HasIndex("GpuId") + .HasName("idx_resolutions_by_gpu_gpu"); - b.HasIndex("ResolutionId").HasName("idx_resolutions_by_gpu_resolution"); + b.HasIndex("ResolutionId") + .HasName("idx_resolutions_by_gpu_resolution"); - b.ToTable("resolutions_by_gpu"); - }); + b.ToTable("resolutions_by_gpu"); + }); modelBuilder.Entity("Cicm.Database.Models.ResolutionsByScreen", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("ResolutionId"); + b.Property("ResolutionId"); - b.Property("ScreenId"); + b.Property("ScreenId"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("ResolutionId"); + b.HasIndex("ResolutionId"); - b.HasIndex("ScreenId"); + b.HasIndex("ScreenId"); - b.ToTable("ResolutionsByScreen"); - }); + b.ToTable("ResolutionsByScreen"); + }); modelBuilder.Entity("Cicm.Database.Models.Screen", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("Diagonal"); + b.Property("Diagonal"); - b.Property("EffectiveColors"); + b.Property("EffectiveColors"); - b.Property("Height"); + b.Property("Height"); - b.Property("NativeResolutionId"); + b.Property("NativeResolutionId"); - b.Property("Type").IsRequired(); + b.Property("Type") + .IsRequired(); - b.Property("Width"); + b.Property("Width"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Diagonal"); + b.HasIndex("Diagonal"); - b.HasIndex("EffectiveColors"); + b.HasIndex("EffectiveColors"); - b.HasIndex("Height"); + b.HasIndex("Height"); - b.HasIndex("NativeResolutionId"); + b.HasIndex("NativeResolutionId"); - b.HasIndex("Type"); + b.HasIndex("Type"); - b.HasIndex("Width"); + b.HasIndex("Width"); - b.ToTable("Screens"); - }); + b.ToTable("Screens"); + }); modelBuilder.Entity("Cicm.Database.Models.ScreensByMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("MachineId"); + b.Property("MachineId"); - b.Property("ScreenId"); + b.Property("ScreenId"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("MachineId"); + b.HasIndex("MachineId"); - b.HasIndex("ScreenId"); + b.HasIndex("ScreenId"); - b.ToTable("ScreensByMachine"); - }); + b.ToTable("ScreensByMachine"); + }); modelBuilder.Entity("Cicm.Database.Models.SoundByMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("bigint(20)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); - b.Property("MachineId").HasColumnName("machine").HasColumnType("int(11)"); + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); - b.Property("SoundSynthId").HasColumnName("sound_synth").HasColumnType("int(11)"); + b.Property("SoundSynthId") + .HasColumnName("sound_synth") + .HasColumnType("int(11)"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("MachineId").HasName("idx_sound_by_machine_machine"); + b.HasIndex("MachineId") + .HasName("idx_sound_by_machine_machine"); - b.HasIndex("SoundSynthId").HasName("idx_sound_by_machine_sound_synth"); + b.HasIndex("SoundSynthId") + .HasName("idx_sound_by_machine_sound_synth"); - b.ToTable("sound_by_machine"); - }); + b.ToTable("sound_by_machine"); + }); modelBuilder.Entity("Cicm.Database.Models.SoundByOwnedMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("OwnedMachineId"); + b.Property("OwnedMachineId"); - b.Property("SoundSynthId"); + b.Property("SoundSynthId"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("OwnedMachineId"); + b.HasIndex("OwnedMachineId"); - b.HasIndex("SoundSynthId"); + b.HasIndex("SoundSynthId"); - b.ToTable("SoundByOwnedMachine"); - }); + b.ToTable("SoundByOwnedMachine"); + }); modelBuilder.Entity("Cicm.Database.Models.SoundSynth", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("int(11)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("int(11)"); - b.Property("CompanyId").HasColumnName("company").HasColumnType("int(11)"); + b.Property("CompanyId") + .HasColumnName("company") + .HasColumnType("int(11)"); - b.Property("Depth").HasColumnName("depth").HasColumnType("int(11)"); + b.Property("Depth") + .HasColumnName("depth") + .HasColumnType("int(11)"); - b.Property("Frequency").HasColumnName("frequency"); + b.Property("Frequency") + .HasColumnName("frequency"); - b.Property("Introduced").HasColumnName("introduced").HasColumnType("datetime"); + b.Property("Introduced") + .HasColumnName("introduced") + .HasColumnType("datetime"); - b.Property("ModelCode").HasColumnName("model_code").HasColumnType("varchar(45)") - .HasMaxLength(45); + b.Property("ModelCode") + .HasColumnName("model_code") + .HasColumnType("varchar(45)") + .HasMaxLength(45); - b.Property("Name").IsRequired().ValueGeneratedOnAdd().HasColumnName("name") - .HasColumnType("char(50)").HasDefaultValueSql("''").HasMaxLength(50); + b.Property("Name") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnName("name") + .HasColumnType("char(50)") + .HasDefaultValueSql("''") + .HasMaxLength(50); - b.Property("SquareWave").HasColumnName("square_wave").HasColumnType("int(11)"); + b.Property("SquareWave") + .HasColumnName("square_wave") + .HasColumnType("int(11)"); - b.Property("Type").HasColumnName("type").HasColumnType("int(11)"); + b.Property("Type") + .HasColumnName("type") + .HasColumnType("int(11)"); - b.Property("Voices").HasColumnName("voices").HasColumnType("int(11)"); + b.Property("Voices") + .HasColumnName("voices") + .HasColumnType("int(11)"); - b.Property("WhiteNoise").HasColumnName("white_noise").HasColumnType("int(11)"); + b.Property("WhiteNoise") + .HasColumnName("white_noise") + .HasColumnType("int(11)"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("CompanyId").HasName("idx_sound_synths_company"); + b.HasIndex("CompanyId") + .HasName("idx_sound_synths_company"); - b.HasIndex("Depth").HasName("idx_sound_synths_depth"); + b.HasIndex("Depth") + .HasName("idx_sound_synths_depth"); - b.HasIndex("Frequency").HasName("idx_sound_synths_frequency"); + b.HasIndex("Frequency") + .HasName("idx_sound_synths_frequency"); - b.HasIndex("Introduced").HasName("idx_sound_synths_introduced"); + b.HasIndex("Introduced") + .HasName("idx_sound_synths_introduced"); - b.HasIndex("ModelCode").HasName("idx_sound_synths_model_code"); + b.HasIndex("ModelCode") + .HasName("idx_sound_synths_model_code"); - b.HasIndex("Name").HasName("idx_sound_synths_name"); + b.HasIndex("Name") + .HasName("idx_sound_synths_name"); - b.HasIndex("SquareWave").HasName("idx_sound_synths_square_wave"); + b.HasIndex("SquareWave") + .HasName("idx_sound_synths_square_wave"); - b.HasIndex("Type").HasName("idx_sound_synths_type"); + b.HasIndex("Type") + .HasName("idx_sound_synths_type"); - b.HasIndex("Voices").HasName("idx_sound_synths_voices"); + b.HasIndex("Voices") + .HasName("idx_sound_synths_voices"); - b.HasIndex("WhiteNoise").HasName("idx_sound_synths_white_noise"); + b.HasIndex("WhiteNoise") + .HasName("idx_sound_synths_white_noise"); - b.ToTable("sound_synths"); - }); + b.ToTable("sound_synths"); + }); modelBuilder.Entity("Cicm.Database.Models.StorageByMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd().HasColumnName("id").HasColumnType("bigint(20)"); + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnName("id") + .HasColumnType("bigint(20)"); - b.Property("Capacity").HasColumnName("capacity").HasColumnType("bigint(20)"); + b.Property("Capacity") + .HasColumnName("capacity") + .HasColumnType("bigint(20)"); - b.Property("Interface").ValueGeneratedOnAdd().HasColumnName("interface").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Interface") + .ValueGeneratedOnAdd() + .HasColumnName("interface") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.Property("MachineId").HasColumnName("machine").HasColumnType("int(11)"); + b.Property("MachineId") + .HasColumnName("machine") + .HasColumnType("int(11)"); - b.Property("Type").ValueGeneratedOnAdd().HasColumnName("type").HasColumnType("int(11)") - .HasDefaultValueSql("'0'"); + b.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnName("type") + .HasColumnType("int(11)") + .HasDefaultValueSql("'0'"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Capacity").HasName("idx_storage_capacity"); + b.HasIndex("Capacity") + .HasName("idx_storage_capacity"); - b.HasIndex("Interface").HasName("idx_storage_interface"); + b.HasIndex("Interface") + .HasName("idx_storage_interface"); - b.HasIndex("MachineId").HasName("idx_storage_machine"); + b.HasIndex("MachineId") + .HasName("idx_storage_machine"); - b.HasIndex("Type").HasName("idx_storage_type"); + b.HasIndex("Type") + .HasName("idx_storage_type"); - b.ToTable("storage_by_machine"); - }); + b.ToTable("storage_by_machine"); + }); modelBuilder.Entity("Cicm.Database.Models.StorageByOwnedMachine", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("Capacity"); + b.Property("Capacity"); - b.Property("Interface"); + b.Property("Interface"); - b.Property("OwnedMachineId"); + b.Property("OwnedMachineId"); - b.Property("Type"); + b.Property("Type"); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("Capacity"); + b.HasIndex("Capacity"); - b.HasIndex("Interface"); + b.HasIndex("Interface"); - b.HasIndex("OwnedMachineId"); + b.HasIndex("OwnedMachineId"); - b.HasIndex("Type"); + b.HasIndex("Type"); - b.ToTable("StorageByOwnedMachine"); - }); + b.ToTable("StorageByOwnedMachine"); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("ConcurrencyStamp").IsConcurrencyToken(); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken(); - b.Property("Name").HasMaxLength(256); + b.Property("Name") + .HasMaxLength(256); - b.Property("NormalizedName").HasMaxLength(256); + b.Property("NormalizedName") + .HasMaxLength(256); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("NormalizedName").IsUnique().HasName("RoleNameIndex"); + b.HasIndex("NormalizedName") + .IsUnique() + .HasName("RoleNameIndex"); - b.ToTable("AspNetRoles"); - }); + b.ToTable("AspNetRoles"); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("ClaimType"); + b.Property("ClaimType"); - b.Property("ClaimValue"); + b.Property("ClaimValue"); - b.Property("RoleId").IsRequired(); + b.Property("RoleId") + .IsRequired(); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("RoleId"); + b.HasIndex("RoleId"); - b.ToTable("AspNetRoleClaims"); - }); + b.ToTable("AspNetRoleClaims"); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("AccessFailedCount"); + b.Property("AccessFailedCount"); - b.Property("ConcurrencyStamp").IsConcurrencyToken(); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken(); - b.Property("Discriminator").IsRequired(); + b.Property("Discriminator") + .IsRequired(); - b.Property("Email").HasMaxLength(256); + b.Property("Email") + .HasMaxLength(256); - b.Property("EmailConfirmed"); + b.Property("EmailConfirmed"); - b.Property("LockoutEnabled"); + b.Property("LockoutEnabled"); - b.Property("LockoutEnd"); + b.Property("LockoutEnd"); - b.Property("NormalizedEmail").HasMaxLength(256); + b.Property("NormalizedEmail") + .HasMaxLength(256); - b.Property("NormalizedUserName").HasMaxLength(256); + b.Property("NormalizedUserName") + .HasMaxLength(256); - b.Property("PasswordHash"); + b.Property("PasswordHash"); - b.Property("PhoneNumber"); + b.Property("PhoneNumber"); - b.Property("PhoneNumberConfirmed"); + b.Property("PhoneNumberConfirmed"); - b.Property("SecurityStamp"); + b.Property("SecurityStamp"); - b.Property("TwoFactorEnabled"); + b.Property("TwoFactorEnabled"); - b.Property("UserName").HasMaxLength(256); + b.Property("UserName") + .HasMaxLength(256); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("NormalizedEmail").HasName("EmailIndex"); + b.HasIndex("NormalizedEmail") + .HasName("EmailIndex"); - b.HasIndex("NormalizedUserName").IsUnique().HasName("UserNameIndex"); + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasName("UserNameIndex"); - b.ToTable("AspNetUsers"); + b.ToTable("AspNetUsers"); - b.HasDiscriminator("Discriminator").HasValue("IdentityUser"); - }); + b.HasDiscriminator("Discriminator").HasValue("IdentityUser"); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => - { - b.Property("Id").ValueGeneratedOnAdd(); + { + b.Property("Id") + .ValueGeneratedOnAdd(); - b.Property("ClaimType"); + b.Property("ClaimType"); - b.Property("ClaimValue"); + b.Property("ClaimValue"); - b.Property("UserId").IsRequired(); + b.Property("UserId") + .IsRequired(); - b.HasKey("Id"); + b.HasKey("Id"); - b.HasIndex("UserId"); + b.HasIndex("UserId"); - b.ToTable("AspNetUserClaims"); - }); + b.ToTable("AspNetUserClaims"); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => - { - b.Property("LoginProvider").HasMaxLength(128); + { + b.Property("LoginProvider") + .HasMaxLength(128); - b.Property("ProviderKey").HasMaxLength(128); + b.Property("ProviderKey") + .HasMaxLength(128); - b.Property("ProviderDisplayName"); + b.Property("ProviderDisplayName"); - b.Property("UserId").IsRequired(); + b.Property("UserId") + .IsRequired(); - b.HasKey("LoginProvider", "ProviderKey"); + b.HasKey("LoginProvider", "ProviderKey"); - b.HasIndex("UserId"); + b.HasIndex("UserId"); - b.ToTable("AspNetUserLogins"); - }); + b.ToTable("AspNetUserLogins"); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => - { - b.Property("UserId"); + { + b.Property("UserId"); - b.Property("RoleId"); + b.Property("RoleId"); - b.HasKey("UserId", "RoleId"); + b.HasKey("UserId", "RoleId"); - b.HasIndex("RoleId"); + b.HasIndex("RoleId"); - b.ToTable("AspNetUserRoles"); - }); + b.ToTable("AspNetUserRoles"); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => - { - b.Property("UserId"); + { + b.Property("UserId"); - b.Property("LoginProvider").HasMaxLength(128); + b.Property("LoginProvider") + .HasMaxLength(128); - b.Property("Name").HasMaxLength(128); + b.Property("Name") + .HasMaxLength(128); - b.Property("Value"); + b.Property("Value"); - b.HasKey("UserId", "LoginProvider", "Name"); + b.HasKey("UserId", "LoginProvider", "Name"); - b.ToTable("AspNetUserTokens"); - }); + b.ToTable("AspNetUserTokens"); + }); modelBuilder.Entity("Cicm.Database.Models.ApplicationUser", b => - { - b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser"); + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser"); - b.HasDiscriminator().HasValue("ApplicationUser"); - }); + b.HasDiscriminator().HasValue("ApplicationUser"); + }); modelBuilder.Entity("Cicm.Database.Models.Company", b => - { - b.HasOne("Cicm.Database.Models.Iso31661Numeric", "Country").WithMany("Companies") - .HasForeignKey("CountryId").HasConstraintName("fk_companies_country"); + { + b.HasOne("Cicm.Database.Models.Iso31661Numeric", "Country") + .WithMany("Companies") + .HasForeignKey("CountryId") + .HasConstraintName("fk_companies_country"); - b.HasOne("Cicm.Database.Models.Company", "SoldTo").WithMany("InverseSoldToNavigation") - .HasForeignKey("SoldToId").HasConstraintName("fk_companies_sold_to"); - }); + b.HasOne("Cicm.Database.Models.Company", "SoldTo") + .WithMany("InverseSoldToNavigation") + .HasForeignKey("SoldToId") + .HasConstraintName("fk_companies_sold_to"); + }); - modelBuilder.Entity("Cicm.Database.Models.CompanyDescription", - b => - { - b.HasOne("Cicm.Database.Models.Company", "Company").WithMany("Descriptions") - .HasForeignKey("CompanyId").OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Cicm.Database.Models.CompanyDescription", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Descriptions") + .HasForeignKey("CompanyId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Cicm.Database.Models.CompanyLogo", - b => - { - b.HasOne("Cicm.Database.Models.Company", "Company").WithMany("Logos") - .HasForeignKey("CompanyId").HasConstraintName("fk_company_logos_company1"); - }); + modelBuilder.Entity("Cicm.Database.Models.CompanyLogo", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Logos") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_company_logos_company1"); + }); - modelBuilder.Entity("Cicm.Database.Models.Gpu", - b => - { - b.HasOne("Cicm.Database.Models.Company", "Company").WithMany("Gpus") - .HasForeignKey("CompanyId").HasConstraintName("fk_gpus_company"); - }); + modelBuilder.Entity("Cicm.Database.Models.Gpu", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Gpus") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_gpus_company"); + }); modelBuilder.Entity("Cicm.Database.Models.GpusByMachine", b => - { - b.HasOne("Cicm.Database.Models.Gpu", "Gpu").WithMany("GpusByMachine").HasForeignKey("GpuId") - .HasConstraintName("fk_gpus_by_machine_gpu").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Gpu", "Gpu") + .WithMany("GpusByMachine") + .HasForeignKey("GpuId") + .HasConstraintName("fk_gpus_by_machine_gpu") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany("Gpus").HasForeignKey("MachineId") - .HasConstraintName("fk_gpus_by_machine_machine").OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Gpus") + .HasForeignKey("MachineId") + .HasConstraintName("fk_gpus_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.GpusByOwnedMachine", b => - { - b.HasOne("Cicm.Database.Models.Gpu", "Gpu").WithMany().HasForeignKey("GpuId") - .OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Gpu", "Gpu") + .WithMany() + .HasForeignKey("GpuId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine").WithMany("Gpus") - .HasForeignKey("OwnedMachineId").OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Gpus") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.InstructionSetExtensionsByProcessor", b => - { - b.HasOne("Cicm.Database.Models.InstructionSetExtension", "Extension") - .WithMany("InstructionSetExtensionsByProcessor").HasForeignKey("ExtensionId") - .HasConstraintName("fk_extension_extension_id"); + { + b.HasOne("Cicm.Database.Models.InstructionSetExtension", "Extension") + .WithMany("InstructionSetExtensionsByProcessor") + .HasForeignKey("ExtensionId") + .HasConstraintName("fk_extension_extension_id"); - b.HasOne("Cicm.Database.Models.Processor", "Processor").WithMany("InstructionSetExtensions") - .HasForeignKey("ProcessorId").HasConstraintName("fk_extension_processor_id"); - }); + b.HasOne("Cicm.Database.Models.Processor", "Processor") + .WithMany("InstructionSetExtensions") + .HasForeignKey("ProcessorId") + .HasConstraintName("fk_extension_processor_id"); + }); modelBuilder.Entity("Cicm.Database.Models.Machine", b => - { - b.HasOne("Cicm.Database.Models.Company", "Company").WithMany("Machines").HasForeignKey("CompanyId") - .HasConstraintName("fk_machines_company"); + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Machines") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_machines_company"); - b.HasOne("Cicm.Database.Models.MachineFamily", "Family").WithMany("Machines").HasForeignKey("FamilyId") - .HasConstraintName("fk_machines_family"); - }); + b.HasOne("Cicm.Database.Models.MachineFamily", "Family") + .WithMany("Machines") + .HasForeignKey("FamilyId") + .HasConstraintName("fk_machines_family"); + }); - modelBuilder.Entity("Cicm.Database.Models.MachineFamily", - b => - { - b.HasOne("Cicm.Database.Models.Company", "Company").WithMany("MachineFamilies") - .HasForeignKey("CompanyId").HasConstraintName("fk_machine_families_company") - .OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Cicm.Database.Models.MachineFamily", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("MachineFamilies") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_machine_families_company") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.MachinePhoto", b => - { - b.HasOne("Cicm.Database.Models.License", "License").WithMany("Photos").HasForeignKey("LicenseId") - .OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.License", "License") + .WithMany("Photos") + .HasForeignKey("LicenseId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany("Photos").HasForeignKey("MachineId") - .OnDelete(DeleteBehavior.Cascade); + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Photos") + .HasForeignKey("MachineId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.ApplicationUser", "User").WithMany("Photos").HasForeignKey("UserId") - .OnDelete(DeleteBehavior.SetNull); - }); + b.HasOne("Cicm.Database.Models.ApplicationUser", "User") + .WithMany("Photos") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.SetNull); + }); - modelBuilder.Entity("Cicm.Database.Models.MemoryByMachine", - b => - { - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany("Memory") - .HasForeignKey("MachineId").HasConstraintName("fk_memory_by_machine_machine") - .OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Cicm.Database.Models.MemoryByMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Memory") + .HasForeignKey("MachineId") + .HasConstraintName("fk_memory_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Cicm.Database.Models.MemoryByOwnedMachine", - b => - { - b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine").WithMany("Memory") - .HasForeignKey("OwnedMachineId").OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Cicm.Database.Models.MemoryByOwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Memory") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.OwnedMachine", b => - { - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany().HasForeignKey("MachineId") - .OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany() + .HasForeignKey("MachineId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.ApplicationUser", "User").WithMany("OwnedMachines") - .HasForeignKey("UserId").OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.ApplicationUser", "User") + .WithMany("OwnedMachines") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.OwnedMachinePhoto", b => - { - b.HasOne("Cicm.Database.Models.License", "License").WithMany("OwnedMachinePhotos") - .HasForeignKey("LicenseId").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.License", "License") + .WithMany("OwnedMachinePhotos") + .HasForeignKey("LicenseId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine").WithMany("Photos") - .HasForeignKey("OwnedMachineId").OnDelete(DeleteBehavior.Cascade); + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Photos") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.ApplicationUser", "User").WithMany("OwnedMachinePhotos") - .HasForeignKey("UserId").OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.ApplicationUser", "User") + .WithMany("OwnedMachinePhotos") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Cicm.Database.Models.Person", - b => - { - b.HasOne("Cicm.Database.Models.Iso31661Numeric", "CountryOfBirth") - .WithMany("People").HasForeignKey("CountryOfBirthId"); - }); + modelBuilder.Entity("Cicm.Database.Models.Person", b => + { + b.HasOne("Cicm.Database.Models.Iso31661Numeric", "CountryOfBirth") + .WithMany("People") + .HasForeignKey("CountryOfBirthId"); + }); modelBuilder.Entity("Cicm.Database.Models.Processor", b => - { - b.HasOne("Cicm.Database.Models.Company", "Company").WithMany("Processors").HasForeignKey("CompanyId") - .HasConstraintName("fk_processors_company"); + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("Processors") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_processors_company"); - b.HasOne("Cicm.Database.Models.InstructionSet", "InstructionSet").WithMany("Processors") - .HasForeignKey("InstructionSetId").HasConstraintName("fk_processors_instruction_set"); - }); + b.HasOne("Cicm.Database.Models.InstructionSet", "InstructionSet") + .WithMany("Processors") + .HasForeignKey("InstructionSetId") + .HasConstraintName("fk_processors_instruction_set"); + }); modelBuilder.Entity("Cicm.Database.Models.ProcessorsByMachine", b => - { - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany("Processors").HasForeignKey("MachineId") - .HasConstraintName("fk_processors_by_machine_machine").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Processors") + .HasForeignKey("MachineId") + .HasConstraintName("fk_processors_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.Processor", "Processor").WithMany("ProcessorsByMachine") - .HasForeignKey("ProcessorId").HasConstraintName("fk_processors_by_machine_processor") - .OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.Processor", "Processor") + .WithMany("ProcessorsByMachine") + .HasForeignKey("ProcessorId") + .HasConstraintName("fk_processors_by_machine_processor") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.ProcessorsByOwnedMachine", b => - { - b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine").WithMany("Processors") - .HasForeignKey("OwnedMachineId").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Processors") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.Processor", "Processor").WithMany().HasForeignKey("ProcessorId") - .OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.Processor", "Processor") + .WithMany() + .HasForeignKey("ProcessorId") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.ResolutionsByGpu", b => - { - b.HasOne("Cicm.Database.Models.Gpu", "Gpu").WithMany("ResolutionsByGpu").HasForeignKey("GpuId") - .HasConstraintName("fk_resolutions_by_gpu_gpu").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Gpu", "Gpu") + .WithMany("ResolutionsByGpu") + .HasForeignKey("GpuId") + .HasConstraintName("fk_resolutions_by_gpu_gpu") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.Resolution", "Resolution").WithMany("ResolutionsByGpu") - .HasForeignKey("ResolutionId").HasConstraintName("fk_resolutions_by_gpu_resolution") - .OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.Resolution", "Resolution") + .WithMany("ResolutionsByGpu") + .HasForeignKey("ResolutionId") + .HasConstraintName("fk_resolutions_by_gpu_resolution") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.ResolutionsByScreen", b => - { - b.HasOne("Cicm.Database.Models.Resolution", "Resolution").WithMany("ResolutionsByScreen") - .HasForeignKey("ResolutionId").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Resolution", "Resolution") + .WithMany("ResolutionsByScreen") + .HasForeignKey("ResolutionId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.Screen", "Screen").WithMany("Resolutions").HasForeignKey("ScreenId") - .OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.Screen", "Screen") + .WithMany("Resolutions") + .HasForeignKey("ScreenId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Cicm.Database.Models.Screen", - b => - { - b.HasOne("Cicm.Database.Models.Resolution", "NativeResolution").WithMany("Screens") - .HasForeignKey("NativeResolutionId").OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Cicm.Database.Models.Screen", b => + { + b.HasOne("Cicm.Database.Models.Resolution", "NativeResolution") + .WithMany("Screens") + .HasForeignKey("NativeResolutionId") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.ScreensByMachine", b => - { - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany("Screens").HasForeignKey("MachineId") - .OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Screens") + .HasForeignKey("MachineId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.Screen", "Screen").WithMany("ScreensByMachines") - .HasForeignKey("ScreenId").OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.Screen", "Screen") + .WithMany("ScreensByMachines") + .HasForeignKey("ScreenId") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.SoundByMachine", b => - { - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany("Sound").HasForeignKey("MachineId") - .HasConstraintName("fk_sound_by_machine_machine").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Sound") + .HasForeignKey("MachineId") + .HasConstraintName("fk_sound_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.SoundSynth", "SoundSynth").WithMany("SoundByMachine") - .HasForeignKey("SoundSynthId").HasConstraintName("fk_sound_by_machine_sound_synth") - .OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.SoundSynth", "SoundSynth") + .WithMany("SoundByMachine") + .HasForeignKey("SoundSynthId") + .HasConstraintName("fk_sound_by_machine_sound_synth") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Cicm.Database.Models.SoundByOwnedMachine", b => - { - b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine").WithMany("Sound") - .HasForeignKey("OwnedMachineId").OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Sound") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Cicm.Database.Models.SoundSynth", "SoundSynth").WithMany().HasForeignKey("SoundSynthId") - .OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Cicm.Database.Models.SoundSynth", "SoundSynth") + .WithMany() + .HasForeignKey("SoundSynthId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Cicm.Database.Models.SoundSynth", - b => - { - b.HasOne("Cicm.Database.Models.Company", "Company").WithMany("SoundSynths") - .HasForeignKey("CompanyId").HasConstraintName("fk_sound_synths_company"); - }); + modelBuilder.Entity("Cicm.Database.Models.SoundSynth", b => + { + b.HasOne("Cicm.Database.Models.Company", "Company") + .WithMany("SoundSynths") + .HasForeignKey("CompanyId") + .HasConstraintName("fk_sound_synths_company"); + }); - modelBuilder.Entity("Cicm.Database.Models.StorageByMachine", - b => - { - b.HasOne("Cicm.Database.Models.Machine", "Machine").WithMany("Storage") - .HasForeignKey("MachineId").HasConstraintName("fk_storage_by_machine_machine") - .OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Cicm.Database.Models.StorageByMachine", b => + { + b.HasOne("Cicm.Database.Models.Machine", "Machine") + .WithMany("Storage") + .HasForeignKey("MachineId") + .HasConstraintName("fk_storage_by_machine_machine") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Cicm.Database.Models.StorageByOwnedMachine", - b => - { - b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine").WithMany("Storage") - .HasForeignKey("OwnedMachineId").OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Cicm.Database.Models.StorageByOwnedMachine", b => + { + b.HasOne("Cicm.Database.Models.OwnedMachine", "OwnedMachine") + .WithMany("Storage") + .HasForeignKey("OwnedMachineId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", - b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole").WithMany() - .HasForeignKey("RoleId").OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", - b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser").WithMany() - .HasForeignKey("UserId").OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", - b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser").WithMany() - .HasForeignKey("UserId").OnDelete(DeleteBehavior.Cascade); - }); + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole").WithMany().HasForeignKey("RoleId") - .OnDelete(DeleteBehavior.Cascade); + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser").WithMany().HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade); - }); + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", - b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser").WithMany() - .HasForeignKey("UserId").OnDelete(DeleteBehavior.Cascade); - }); - #pragma warning restore 612, 618 + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser") + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 } } -} \ No newline at end of file +} diff --git a/Cicm.Database/Models/Iso639.cs b/Cicm.Database/Models/Iso639.cs new file mode 100644 index 00000000..d121d1e4 --- /dev/null +++ b/Cicm.Database/Models/Iso639.cs @@ -0,0 +1,33 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace Cicm.Database.Models +{ + /// + /// ISO-639 codes + /// + public class Iso639 + { + [Column(TypeName = "char(3)")] + [Key] + [Required] + public string Id { get; set; } + [Column(TypeName = "char(3)")] + public string Part2B { get; set; } + [Column(TypeName = "char(3)")] + public string Part2T { get; set; } + [Column(TypeName = "char(2)")] + public string Part1 { get; set; } + [Column(TypeName = "char(1)")] + [Required] + public string Scope { get; set; } + [Column(TypeName = "char(1)")] + [Required] + public string Type { get; set; } + [Column(TypeName = "varchar(150)")] + [Required] + public string ReferenceName { get; set; } + [Column(TypeName = "varchar(150)")] + public string Comment { get; set; } + } +} \ No newline at end of file diff --git a/Cicm.Database/Models/cicmContext.cs b/Cicm.Database/Models/cicmContext.cs index 672817a3..690e2d54 100644 --- a/Cicm.Database/Models/cicmContext.cs +++ b/Cicm.Database/Models/cicmContext.cs @@ -77,6 +77,7 @@ namespace Cicm.Database.Models public virtual DbSet ScreensByMachine { get; set; } public virtual DbSet ResolutionsByScreen { get; set; } public virtual DbSet People { get; set; } + public virtual DbSet Iso639 { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { @@ -416,6 +417,29 @@ namespace Cicm.Database.Models entity.Property(e => e.Name).IsRequired().HasColumnName("name").HasColumnType("varchar(64)"); }); + modelBuilder.Entity(entity => + { + entity.ToTable("ISO_639-3"); + + entity.HasKey(e => e.Id); + + entity.HasIndex(e => e.Part2B); + + entity.HasIndex(e => e.Part2T); + + entity.HasIndex(e => e.Part1); + + entity.HasIndex(e => e.Scope); + + entity.HasIndex(e => e.Type); + + entity.HasIndex(e => e.ReferenceName); + + entity.HasIndex(e => e.Comment); + + entity.Property(e => e.ReferenceName).HasColumnName("Ref_Name"); + }); + modelBuilder.Entity(entity => { entity.ToTable("log"); @@ -1136,6 +1160,7 @@ namespace Cicm.Database.Models }); Seeders.License.Seed(modelBuilder); + Seeders.Iso639.Seed(modelBuilder); } } } \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639.cs b/Cicm.Database/Seeders/Iso639.cs new file mode 100644 index 00000000..1911f4da --- /dev/null +++ b/Cicm.Database/Seeders/Iso639.cs @@ -0,0 +1,40 @@ +using Cicm.Database.Seeders.Iso639Split; +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders +{ + // Taken from https://iso639-3.sil.org/code_tables/download_tables + // Last update 20190408 + public class Iso639 + { + public static void Seed(ModelBuilder modelBuilder) + { + A.Seed(modelBuilder); + B.Seed(modelBuilder); + C.Seed(modelBuilder); + D.Seed(modelBuilder); + E.Seed(modelBuilder); + F.Seed(modelBuilder); + G.Seed(modelBuilder); + H.Seed(modelBuilder); + I.Seed(modelBuilder); + J.Seed(modelBuilder); + K.Seed(modelBuilder); + L.Seed(modelBuilder); + M.Seed(modelBuilder); + N.Seed(modelBuilder); + O.Seed(modelBuilder); + P.Seed(modelBuilder); + Q.Seed(modelBuilder); + R.Seed(modelBuilder); + S.Seed(modelBuilder); + T.Seed(modelBuilder); + U.Seed(modelBuilder); + V.Seed(modelBuilder); + W.Seed(modelBuilder); + X.Seed(modelBuilder); + Y.Seed(modelBuilder); + Z.Seed(modelBuilder); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/A.cs b/Cicm.Database/Seeders/Iso639Split/A.cs new file mode 100644 index 00000000..80e9c7a1 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/A.cs @@ -0,0 +1,807 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class A + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "aaa", Scope = "I", Type = "L", ReferenceName = "Ghotuo"}, + new {Id = "aab", Scope = "I", Type = "L", ReferenceName = "Alumu-Tesu"}, + new {Id = "aac", Scope = "I", Type = "L", ReferenceName = "Ari"}, + new {Id = "aad", Scope = "I", Type = "L", ReferenceName = "Amal"}, + new {Id = "aae", Scope = "I", Type = "L", ReferenceName = "Arbëreshë Albanian"}, + new {Id = "aaf", Scope = "I", Type = "L", ReferenceName = "Aranadan"}, + new {Id = "aag", Scope = "I", Type = "L", ReferenceName = "Ambrak"}, + new {Id = "aah", Scope = "I", Type = "L", ReferenceName = "Abu' Arapesh"}, + new {Id = "aai", Scope = "I", Type = "L", ReferenceName = "Arifama-Miniafia"}, + new {Id = "aak", Scope = "I", Type = "L", ReferenceName = "Ankave"}, + new {Id = "aal", Scope = "I", Type = "L", ReferenceName = "Afade"}, + new {Id = "aan", Scope = "I", Type = "L", ReferenceName = "Anambé"}, + new {Id = "aao", Scope = "I", Type = "L", ReferenceName = "Algerian Saharan Arabic"}, + new {Id = "aap", Scope = "I", Type = "L", ReferenceName = "Pará Arára"}, + new {Id = "aaq", Scope = "I", Type = "E", ReferenceName = "Eastern Abnaki"}, + new + { + Id = "aar", + Part2B = "aar", + Part2T = "aar", + Part1 = "aa", + Scope = "I", + Type = "L", + ReferenceName = "Afar" + }, new {Id = "aas", Scope = "I", Type = "L", ReferenceName = "Aasáx"}, + new {Id = "aat", Scope = "I", Type = "L", ReferenceName = "Arvanitika Albanian"}, + new {Id = "aau", Scope = "I", Type = "L", ReferenceName = "Abau"}, + new {Id = "aaw", Scope = "I", Type = "L", ReferenceName = "Solong"}, + new {Id = "aax", Scope = "I", Type = "L", ReferenceName = "Mandobo Atas"}, + new {Id = "aaz", Scope = "I", Type = "L", ReferenceName = "Amarasi"}, + new {Id = "aba", Scope = "I", Type = "L", ReferenceName = "Abé"}, + new {Id = "abb", Scope = "I", Type = "L", ReferenceName = "Bankon"}, + new {Id = "abc", Scope = "I", Type = "L", ReferenceName = "Ambala Ayta"}, + new {Id = "abd", Scope = "I", Type = "L", ReferenceName = "Manide"}, + new {Id = "abe", Scope = "I", Type = "L", ReferenceName = "Western Abnaki"}, + new {Id = "abf", Scope = "I", Type = "L", ReferenceName = "Abai Sungai"}, + new {Id = "abg", Scope = "I", Type = "L", ReferenceName = "Abaga"}, + new {Id = "abh", Scope = "I", Type = "L", ReferenceName = "Tajiki Arabic"}, + new {Id = "abi", Scope = "I", Type = "L", ReferenceName = "Abidji"}, + new {Id = "abj", Scope = "I", Type = "E", ReferenceName = "Aka-Bea"}, + new + { + Id = "abk", + Part2B = "abk", + Part2T = "abk", + Part1 = "ab", + Scope = "I", + Type = "L", + ReferenceName = "Abkhazian" + }, new {Id = "abl", Scope = "I", Type = "L", ReferenceName = "Lampung Nyo"}, + new {Id = "abm", Scope = "I", Type = "L", ReferenceName = "Abanyom"}, + new {Id = "abn", Scope = "I", Type = "L", ReferenceName = "Abua"}, + new {Id = "abo", Scope = "I", Type = "L", ReferenceName = "Abon"}, + new {Id = "abp", Scope = "I", Type = "L", ReferenceName = "Abellen Ayta"}, + new {Id = "abq", Scope = "I", Type = "L", ReferenceName = "Abaza"}, + new {Id = "abr", Scope = "I", Type = "L", ReferenceName = "Abron"}, + new {Id = "abs", Scope = "I", Type = "L", ReferenceName = "Ambonese Malay"}, + new {Id = "abt", Scope = "I", Type = "L", ReferenceName = "Ambulas"}, + new {Id = "abu", Scope = "I", Type = "L", ReferenceName = "Abure"}, + new {Id = "abv", Scope = "I", Type = "L", ReferenceName = "Baharna Arabic"}, + new {Id = "abw", Scope = "I", Type = "L", ReferenceName = "Pal"}, + new {Id = "abx", Scope = "I", Type = "L", ReferenceName = "Inabaknon"}, + new {Id = "aby", Scope = "I", Type = "L", ReferenceName = "Aneme Wake"}, + new {Id = "abz", Scope = "I", Type = "L", ReferenceName = "Abui"}, + new {Id = "aca", Scope = "I", Type = "L", ReferenceName = "Achagua"}, + new {Id = "acb", Scope = "I", Type = "L", ReferenceName = "Áncá"}, + new {Id = "acd", Scope = "I", Type = "L", ReferenceName = "Gikyode"}, + new + { + Id = "ace", + Part2B = "ace", + Part2T = "ace", + Scope = "I", + Type = "L", + ReferenceName = "Achinese" + }, + new + { + Id = "acf", + Scope = "I", + Type = "L", + ReferenceName = "Saint Lucian Creole French" + }, new + { + Id = "ach", + Part2B = "ach", + Part2T = "ach", + Scope = "I", + Type = "L", + ReferenceName = "Acoli" + }, new {Id = "aci", Scope = "I", Type = "E", ReferenceName = "Aka-Cari"}, + new {Id = "ack", Scope = "I", Type = "E", ReferenceName = "Aka-Kora"}, + new {Id = "acl", Scope = "I", Type = "E", ReferenceName = "Akar-Bale"}, + new {Id = "acm", Scope = "I", Type = "L", ReferenceName = "Mesopotamian Arabic"}, + new {Id = "acn", Scope = "I", Type = "L", ReferenceName = "Achang"}, + new {Id = "acp", Scope = "I", Type = "L", ReferenceName = "Eastern Acipa"}, + new {Id = "acq", Scope = "I", Type = "L", ReferenceName = "Ta'izzi-Adeni Arabic"}, + new {Id = "acr", Scope = "I", Type = "L", ReferenceName = "Achi"}, + new {Id = "acs", Scope = "I", Type = "E", ReferenceName = "Acroá"}, + new {Id = "act", Scope = "I", Type = "L", ReferenceName = "Achterhoeks"}, + new {Id = "acu", Scope = "I", Type = "L", ReferenceName = "Achuar-Shiwiar"}, + new {Id = "acv", Scope = "I", Type = "L", ReferenceName = "Achumawi"}, + new {Id = "acw", Scope = "I", Type = "L", ReferenceName = "Hijazi Arabic"}, + new {Id = "acx", Scope = "I", Type = "L", ReferenceName = "Omani Arabic"}, + new {Id = "acy", Scope = "I", Type = "L", ReferenceName = "Cypriot Arabic"}, + new {Id = "acz", Scope = "I", Type = "L", ReferenceName = "Acheron"}, + new + { + Id = "ada", + Part2B = "ada", + Part2T = "ada", + Scope = "I", + Type = "L", + ReferenceName = "Adangme" + }, new {Id = "adb", Scope = "I", Type = "L", ReferenceName = "Adabe"}, + new {Id = "add", Scope = "I", Type = "L", ReferenceName = "Lidzonka"}, + new {Id = "ade", Scope = "I", Type = "L", ReferenceName = "Adele"}, + new {Id = "adf", Scope = "I", Type = "L", ReferenceName = "Dhofari Arabic"}, + new {Id = "adg", Scope = "I", Type = "L", ReferenceName = "Andegerebinha"}, + new {Id = "adh", Scope = "I", Type = "L", ReferenceName = "Adhola"}, + new {Id = "adi", Scope = "I", Type = "L", ReferenceName = "Adi"}, + new {Id = "adj", Scope = "I", Type = "L", ReferenceName = "Adioukrou"}, + new {Id = "adl", Scope = "I", Type = "L", ReferenceName = "Galo"}, + new {Id = "adn", Scope = "I", Type = "L", ReferenceName = "Adang"}, + new {Id = "ado", Scope = "I", Type = "L", ReferenceName = "Abu"}, + new {Id = "adq", Scope = "I", Type = "L", ReferenceName = "Adangbe"}, + new {Id = "adr", Scope = "I", Type = "L", ReferenceName = "Adonara"}, + new + { + Id = "ads", + Scope = "I", + Type = "L", + ReferenceName = "Adamorobe Sign Language" + }, + new {Id = "adt", Scope = "I", Type = "L", ReferenceName = "Adnyamathanha"}, + new {Id = "adu", Scope = "I", Type = "L", ReferenceName = "Aduge"}, + new {Id = "adw", Scope = "I", Type = "L", ReferenceName = "Amundava"}, + new {Id = "adx", Scope = "I", Type = "L", ReferenceName = "Amdo Tibetan"}, + new + { + Id = "ady", + Part2B = "ady", + Part2T = "ady", + Scope = "I", + Type = "L", + ReferenceName = "Adyghe" + }, new {Id = "adz", Scope = "I", Type = "L", ReferenceName = "Adzera"}, + new {Id = "aea", Scope = "I", Type = "E", ReferenceName = "Areba"}, + new {Id = "aeb", Scope = "I", Type = "L", ReferenceName = "Tunisian Arabic"}, + new {Id = "aec", Scope = "I", Type = "L", ReferenceName = "Saidi Arabic"}, + new + { + Id = "aed", + Scope = "I", + Type = "L", + ReferenceName = "Argentine Sign Language" + }, + new {Id = "aee", Scope = "I", Type = "L", ReferenceName = "Northeast Pashai"}, + new {Id = "aek", Scope = "I", Type = "L", ReferenceName = "Haeke"}, + new {Id = "ael", Scope = "I", Type = "L", ReferenceName = "Ambele"}, + new {Id = "aem", Scope = "I", Type = "L", ReferenceName = "Arem"}, + new {Id = "aen", Scope = "I", Type = "L", ReferenceName = "Armenian Sign Language"}, + new {Id = "aeq", Scope = "I", Type = "L", ReferenceName = "Aer"}, + new {Id = "aer", Scope = "I", Type = "L", ReferenceName = "Eastern Arrernte"}, + new {Id = "aes", Scope = "I", Type = "E", ReferenceName = "Alsea"}, + new {Id = "aeu", Scope = "I", Type = "L", ReferenceName = "Akeu"}, + new {Id = "aew", Scope = "I", Type = "L", ReferenceName = "Ambakich"}, + new {Id = "aey", Scope = "I", Type = "L", ReferenceName = "Amele"}, + new {Id = "aez", Scope = "I", Type = "L", ReferenceName = "Aeka"}, + new {Id = "afb", Scope = "I", Type = "L", ReferenceName = "Gulf Arabic"}, + new {Id = "afd", Scope = "I", Type = "L", ReferenceName = "Andai"}, + new {Id = "afe", Scope = "I", Type = "L", ReferenceName = "Putukwam"}, + new {Id = "afg", Scope = "I", Type = "L", ReferenceName = "Afghan Sign Language"}, + new + { + Id = "afh", + Part2B = "afh", + Part2T = "afh", + Scope = "I", + Type = "C", + ReferenceName = "Afrihili" + }, new {Id = "afi", Scope = "I", Type = "L", ReferenceName = "Akrukay"}, + new {Id = "afk", Scope = "I", Type = "L", ReferenceName = "Nanubae"}, + new {Id = "afn", Scope = "I", Type = "L", ReferenceName = "Defaka"}, + new {Id = "afo", Scope = "I", Type = "L", ReferenceName = "Eloyi"}, + new {Id = "afp", Scope = "I", Type = "L", ReferenceName = "Tapei"}, + new + { + Id = "afr", + Part2B = "afr", + Part2T = "afr", + Part1 = "af", + Scope = "I", + Type = "L", + ReferenceName = "Afrikaans" + }, new {Id = "afs", Scope = "I", Type = "L", ReferenceName = "Afro-Seminole Creole"}, + new {Id = "aft", Scope = "I", Type = "L", ReferenceName = "Afitti"}, + new {Id = "afu", Scope = "I", Type = "L", ReferenceName = "Awutu"}, + new {Id = "afz", Scope = "I", Type = "L", ReferenceName = "Obokuitai"}, + new {Id = "aga", Scope = "I", Type = "E", ReferenceName = "Aguano"}, + new {Id = "agb", Scope = "I", Type = "L", ReferenceName = "Legbo"}, + new {Id = "agc", Scope = "I", Type = "L", ReferenceName = "Agatu"}, + new {Id = "agd", Scope = "I", Type = "L", ReferenceName = "Agarabi"}, + new {Id = "age", Scope = "I", Type = "L", ReferenceName = "Angal"}, + new {Id = "agf", Scope = "I", Type = "L", ReferenceName = "Arguni"}, + new {Id = "agg", Scope = "I", Type = "L", ReferenceName = "Angor"}, + new {Id = "agh", Scope = "I", Type = "L", ReferenceName = "Ngelima"}, + new {Id = "agi", Scope = "I", Type = "L", ReferenceName = "Agariya"}, + new {Id = "agj", Scope = "I", Type = "L", ReferenceName = "Argobba"}, + new {Id = "agk", Scope = "I", Type = "L", ReferenceName = "Isarog Agta"}, + new {Id = "agl", Scope = "I", Type = "L", ReferenceName = "Fembe"}, + new {Id = "agm", Scope = "I", Type = "L", ReferenceName = "Angaataha"}, + new {Id = "agn", Scope = "I", Type = "L", ReferenceName = "Agutaynen"}, + new {Id = "ago", Scope = "I", Type = "L", ReferenceName = "Tainae"}, + new {Id = "agq", Scope = "I", Type = "L", ReferenceName = "Aghem"}, + new {Id = "agr", Scope = "I", Type = "L", ReferenceName = "Aguaruna"}, + new {Id = "ags", Scope = "I", Type = "L", ReferenceName = "Esimbi"}, + new {Id = "agt", Scope = "I", Type = "L", ReferenceName = "Central Cagayan Agta"}, + new {Id = "agu", Scope = "I", Type = "L", ReferenceName = "Aguacateco"}, + new {Id = "agv", Scope = "I", Type = "L", ReferenceName = "Remontado Dumagat"}, + new {Id = "agw", Scope = "I", Type = "L", ReferenceName = "Kahua"}, + new {Id = "agx", Scope = "I", Type = "L", ReferenceName = "Aghul"}, + new {Id = "agy", Scope = "I", Type = "L", ReferenceName = "Southern Alta"}, + new {Id = "agz", Scope = "I", Type = "L", ReferenceName = "Mt. Iriga Agta"}, + new {Id = "aha", Scope = "I", Type = "L", ReferenceName = "Ahanta"}, + new {Id = "ahb", Scope = "I", Type = "L", ReferenceName = "Axamb"}, + new {Id = "ahg", Scope = "I", Type = "L", ReferenceName = "Qimant"}, + new {Id = "ahh", Scope = "I", Type = "L", ReferenceName = "Aghu"}, + new {Id = "ahi", Scope = "I", Type = "L", ReferenceName = "Tiagbamrin Aizi"}, + new {Id = "ahk", Scope = "I", Type = "L", ReferenceName = "Akha"}, + new {Id = "ahl", Scope = "I", Type = "L", ReferenceName = "Igo"}, + new {Id = "ahm", Scope = "I", Type = "L", ReferenceName = "Mobumrin Aizi"}, + new {Id = "ahn", Scope = "I", Type = "L", ReferenceName = "Àhàn"}, + new {Id = "aho", Scope = "I", Type = "E", ReferenceName = "Ahom"}, + new {Id = "ahp", Scope = "I", Type = "L", ReferenceName = "Aproumu Aizi"}, + new {Id = "ahr", Scope = "I", Type = "L", ReferenceName = "Ahirani"}, + new {Id = "ahs", Scope = "I", Type = "L", ReferenceName = "Ashe"}, + new {Id = "aht", Scope = "I", Type = "L", ReferenceName = "Ahtena"}, + new {Id = "aia", Scope = "I", Type = "L", ReferenceName = "Arosi"}, + new {Id = "aib", Scope = "I", Type = "L", ReferenceName = "Ainu (China)"}, + new {Id = "aic", Scope = "I", Type = "L", ReferenceName = "Ainbai"}, + new {Id = "aid", Scope = "I", Type = "E", ReferenceName = "Alngith"}, + new {Id = "aie", Scope = "I", Type = "L", ReferenceName = "Amara"}, + new {Id = "aif", Scope = "I", Type = "L", ReferenceName = "Agi"}, + new + { + Id = "aig", + Scope = "I", + Type = "L", + ReferenceName = "Antigua and Barbuda Creole English" + }, new {Id = "aih", Scope = "I", Type = "L", ReferenceName = "Ai-Cham"}, + new + { + Id = "aii", + Scope = "I", + Type = "L", + ReferenceName = "Assyrian Neo-Aramaic" + }, + new {Id = "aij", Scope = "I", Type = "L", ReferenceName = "Lishanid Noshan"}, + new {Id = "aik", Scope = "I", Type = "L", ReferenceName = "Ake"}, + new {Id = "ail", Scope = "I", Type = "L", ReferenceName = "Aimele"}, + new {Id = "aim", Scope = "I", Type = "L", ReferenceName = "Aimol"}, + new + { + Id = "ain", + Part2B = "ain", + Part2T = "ain", + Scope = "I", + Type = "L", + ReferenceName = "Ainu (Japan)" + }, new {Id = "aio", Scope = "I", Type = "L", ReferenceName = "Aiton"}, + new {Id = "aip", Scope = "I", Type = "L", ReferenceName = "Burumakok"}, + new {Id = "aiq", Scope = "I", Type = "L", ReferenceName = "Aimaq"}, + new {Id = "air", Scope = "I", Type = "L", ReferenceName = "Airoran"}, + new {Id = "ait", Scope = "I", Type = "E", ReferenceName = "Arikem"}, + new {Id = "aiw", Scope = "I", Type = "L", ReferenceName = "Aari"}, + new {Id = "aix", Scope = "I", Type = "L", ReferenceName = "Aighon"}, + new {Id = "aiy", Scope = "I", Type = "L", ReferenceName = "Ali"}, + new {Id = "aja", Scope = "I", Type = "L", ReferenceName = "Aja (South Sudan)"}, + new {Id = "ajg", Scope = "I", Type = "L", ReferenceName = "Aja (Benin)"}, + new {Id = "aji", Scope = "I", Type = "L", ReferenceName = "Ajië"}, + new {Id = "ajn", Scope = "I", Type = "L", ReferenceName = "Andajin"}, + new {Id = "ajp", Scope = "I", Type = "L", ReferenceName = "South Levantine Arabic"}, + new {Id = "ajt", Scope = "I", Type = "L", ReferenceName = "Judeo-Tunisian Arabic"}, + new {Id = "aju", Scope = "I", Type = "L", ReferenceName = "Judeo-Moroccan Arabic"}, + new {Id = "ajw", Scope = "I", Type = "E", ReferenceName = "Ajawa"}, + new {Id = "ajz", Scope = "I", Type = "L", ReferenceName = "Amri Karbi"}, + new + { + Id = "aka", + Part2B = "aka", + Part2T = "aka", + Part1 = "ak", + Scope = "M", + Type = "L", + ReferenceName = "Akan" + }, new {Id = "akb", Scope = "I", Type = "L", ReferenceName = "Batak Angkola"}, + new {Id = "akc", Scope = "I", Type = "L", ReferenceName = "Mpur"}, + new {Id = "akd", Scope = "I", Type = "L", ReferenceName = "Ukpet-Ehom"}, + new {Id = "ake", Scope = "I", Type = "L", ReferenceName = "Akawaio"}, + new {Id = "akf", Scope = "I", Type = "L", ReferenceName = "Akpa"}, + new {Id = "akg", Scope = "I", Type = "L", ReferenceName = "Anakalangu"}, + new {Id = "akh", Scope = "I", Type = "L", ReferenceName = "Angal Heneng"}, + new {Id = "aki", Scope = "I", Type = "L", ReferenceName = "Aiome"}, + new {Id = "akj", Scope = "I", Type = "E", ReferenceName = "Aka-Jeru"}, + new + { + Id = "akk", + Part2B = "akk", + Part2T = "akk", + Scope = "I", + Type = "A", + ReferenceName = "Akkadian" + }, new {Id = "akl", Scope = "I", Type = "L", ReferenceName = "Aklanon"}, + new {Id = "akm", Scope = "I", Type = "E", ReferenceName = "Aka-Bo"}, + new {Id = "ako", Scope = "I", Type = "L", ReferenceName = "Akurio"}, + new {Id = "akp", Scope = "I", Type = "L", ReferenceName = "Siwu"}, + new {Id = "akq", Scope = "I", Type = "L", ReferenceName = "Ak"}, + new {Id = "akr", Scope = "I", Type = "L", ReferenceName = "Araki"}, + new {Id = "aks", Scope = "I", Type = "L", ReferenceName = "Akaselem"}, + new {Id = "akt", Scope = "I", Type = "L", ReferenceName = "Akolet"}, + new {Id = "aku", Scope = "I", Type = "L", ReferenceName = "Akum"}, + new {Id = "akv", Scope = "I", Type = "L", ReferenceName = "Akhvakh"}, + new {Id = "akw", Scope = "I", Type = "L", ReferenceName = "Akwa"}, + new {Id = "akx", Scope = "I", Type = "E", ReferenceName = "Aka-Kede"}, + new {Id = "aky", Scope = "I", Type = "E", ReferenceName = "Aka-Kol"}, + new {Id = "akz", Scope = "I", Type = "L", ReferenceName = "Alabama"}, + new {Id = "ala", Scope = "I", Type = "L", ReferenceName = "Alago"}, + new {Id = "alc", Scope = "I", Type = "L", ReferenceName = "Qawasqar"}, + new {Id = "ald", Scope = "I", Type = "L", ReferenceName = "Alladian"}, + new + { + Id = "ale", + Part2B = "ale", + Part2T = "ale", + Scope = "I", + Type = "L", + ReferenceName = "Aleut" + }, new {Id = "alf", Scope = "I", Type = "L", ReferenceName = "Alege"}, + new {Id = "alh", Scope = "I", Type = "L", ReferenceName = "Alawa"}, + new {Id = "ali", Scope = "I", Type = "L", ReferenceName = "Amaimon"}, + new {Id = "alj", Scope = "I", Type = "L", ReferenceName = "Alangan"}, + new {Id = "alk", Scope = "I", Type = "L", ReferenceName = "Alak"}, + new {Id = "all", Scope = "I", Type = "L", ReferenceName = "Allar"}, + new {Id = "alm", Scope = "I", Type = "L", ReferenceName = "Amblong"}, + new {Id = "aln", Scope = "I", Type = "L", ReferenceName = "Gheg Albanian"}, + new {Id = "alo", Scope = "I", Type = "L", ReferenceName = "Larike-Wakasihu"}, + new {Id = "alp", Scope = "I", Type = "L", ReferenceName = "Alune"}, + new {Id = "alq", Scope = "I", Type = "L", ReferenceName = "Algonquin"}, + new {Id = "alr", Scope = "I", Type = "L", ReferenceName = "Alutor"}, + new {Id = "als", Scope = "I", Type = "L", ReferenceName = "Tosk Albanian"}, + new + { + Id = "alt", + Part2B = "alt", + Part2T = "alt", + Scope = "I", + Type = "L", + ReferenceName = "Southern Altai" + }, new {Id = "alu", Scope = "I", Type = "L", ReferenceName = "'Are'are"}, + new {Id = "alw", Scope = "I", Type = "L", ReferenceName = "Alaba-K’abeena"}, + new {Id = "alx", Scope = "I", Type = "L", ReferenceName = "Amol"}, + new {Id = "aly", Scope = "I", Type = "L", ReferenceName = "Alyawarr"}, + new {Id = "alz", Scope = "I", Type = "L", ReferenceName = "Alur"}, + new {Id = "ama", Scope = "I", Type = "E", ReferenceName = "Amanayé"}, + new {Id = "amb", Scope = "I", Type = "L", ReferenceName = "Ambo"}, + new {Id = "amc", Scope = "I", Type = "L", ReferenceName = "Amahuaca"}, + new {Id = "ame", Scope = "I", Type = "L", ReferenceName = "Yanesha'"}, + new {Id = "amf", Scope = "I", Type = "L", ReferenceName = "Hamer-Banna"}, + new {Id = "amg", Scope = "I", Type = "L", ReferenceName = "Amurdak"}, + new + { + Id = "amh", + Part2B = "amh", + Part2T = "amh", + Part1 = "am", + Scope = "I", + Type = "L", + ReferenceName = "Amharic" + }, new {Id = "ami", Scope = "I", Type = "L", ReferenceName = "Amis"}, + new {Id = "amj", Scope = "I", Type = "L", ReferenceName = "Amdang"}, + new {Id = "amk", Scope = "I", Type = "L", ReferenceName = "Ambai"}, + new {Id = "aml", Scope = "I", Type = "L", ReferenceName = "War-Jaintia"}, + new {Id = "amm", Scope = "I", Type = "L", ReferenceName = "Ama (Papua New Guinea)"}, + new {Id = "amn", Scope = "I", Type = "L", ReferenceName = "Amanab"}, + new {Id = "amo", Scope = "I", Type = "L", ReferenceName = "Amo"}, + new {Id = "amp", Scope = "I", Type = "L", ReferenceName = "Alamblak"}, + new {Id = "amq", Scope = "I", Type = "L", ReferenceName = "Amahai"}, + new {Id = "amr", Scope = "I", Type = "L", ReferenceName = "Amarakaeri"}, + new {Id = "ams", Scope = "I", Type = "L", ReferenceName = "Southern Amami-Oshima"}, + new {Id = "amt", Scope = "I", Type = "L", ReferenceName = "Amto"}, + new {Id = "amu", Scope = "I", Type = "L", ReferenceName = "Guerrero Amuzgo"}, + new {Id = "amv", Scope = "I", Type = "L", ReferenceName = "Ambelau"}, + new {Id = "amw", Scope = "I", Type = "L", ReferenceName = "Western Neo-Aramaic"}, + new {Id = "amx", Scope = "I", Type = "L", ReferenceName = "Anmatyerre"}, + new {Id = "amy", Scope = "I", Type = "L", ReferenceName = "Ami"}, + new {Id = "amz", Scope = "I", Type = "E", ReferenceName = "Atampaya"}, + new {Id = "ana", Scope = "I", Type = "E", ReferenceName = "Andaqui"}, + new {Id = "anb", Scope = "I", Type = "E", ReferenceName = "Andoa"}, + new {Id = "anc", Scope = "I", Type = "L", ReferenceName = "Ngas"}, + new {Id = "and", Scope = "I", Type = "L", ReferenceName = "Ansus"}, + new {Id = "ane", Scope = "I", Type = "L", ReferenceName = "Xârâcùù"}, + new {Id = "anf", Scope = "I", Type = "L", ReferenceName = "Animere"}, + new + { + Id = "ang", + Part2B = "ang", + Part2T = "ang", + Scope = "I", + Type = "H", + ReferenceName = "Old English (ca. 450-1100)" + }, new {Id = "anh", Scope = "I", Type = "L", ReferenceName = "Nend"}, + new {Id = "ani", Scope = "I", Type = "L", ReferenceName = "Andi"}, + new {Id = "anj", Scope = "I", Type = "L", ReferenceName = "Anor"}, + new {Id = "ank", Scope = "I", Type = "L", ReferenceName = "Goemai"}, + new {Id = "anl", Scope = "I", Type = "L", ReferenceName = "Anu-Hkongso Chin"}, + new {Id = "anm", Scope = "I", Type = "L", ReferenceName = "Anal"}, + new {Id = "ann", Scope = "I", Type = "L", ReferenceName = "Obolo"}, + new {Id = "ano", Scope = "I", Type = "L", ReferenceName = "Andoque"}, + new + { + Id = "anp", + Part2B = "anp", + Part2T = "anp", + Scope = "I", + Type = "L", + ReferenceName = "Angika" + }, new {Id = "anq", Scope = "I", Type = "L", ReferenceName = "Jarawa (India)"}, + new {Id = "anr", Scope = "I", Type = "L", ReferenceName = "Andh"}, + new {Id = "ans", Scope = "I", Type = "E", ReferenceName = "Anserma"}, + new {Id = "ant", Scope = "I", Type = "L", ReferenceName = "Antakarinya"}, + new {Id = "anu", Scope = "I", Type = "L", ReferenceName = "Anuak"}, + new {Id = "anv", Scope = "I", Type = "L", ReferenceName = "Denya"}, + new {Id = "anw", Scope = "I", Type = "L", ReferenceName = "Anaang"}, + new {Id = "anx", Scope = "I", Type = "L", ReferenceName = "Andra-Hus"}, + new {Id = "any", Scope = "I", Type = "L", ReferenceName = "Anyin"}, + new {Id = "anz", Scope = "I", Type = "L", ReferenceName = "Anem"}, + new {Id = "aoa", Scope = "I", Type = "L", ReferenceName = "Angolar"}, + new {Id = "aob", Scope = "I", Type = "L", ReferenceName = "Abom"}, + new {Id = "aoc", Scope = "I", Type = "L", ReferenceName = "Pemon"}, + new {Id = "aod", Scope = "I", Type = "L", ReferenceName = "Andarum"}, + new {Id = "aoe", Scope = "I", Type = "L", ReferenceName = "Angal Enen"}, + new {Id = "aof", Scope = "I", Type = "L", ReferenceName = "Bragat"}, + new {Id = "aog", Scope = "I", Type = "L", ReferenceName = "Angoram"}, + new {Id = "aoh", Scope = "I", Type = "E", ReferenceName = "Arma"}, + new {Id = "aoi", Scope = "I", Type = "L", ReferenceName = "Anindilyakwa"}, + new {Id = "aoj", Scope = "I", Type = "L", ReferenceName = "Mufian"}, + new {Id = "aok", Scope = "I", Type = "L", ReferenceName = "Arhö"}, + new {Id = "aol", Scope = "I", Type = "L", ReferenceName = "Alor"}, + new {Id = "aom", Scope = "I", Type = "L", ReferenceName = "Ömie"}, + new {Id = "aon", Scope = "I", Type = "L", ReferenceName = "Bumbita Arapesh"}, + new {Id = "aor", Scope = "I", Type = "E", ReferenceName = "Aore"}, + new {Id = "aos", Scope = "I", Type = "L", ReferenceName = "Taikat"}, + new {Id = "aot", Scope = "I", Type = "L", ReferenceName = "Atong (India)"}, + new {Id = "aou", Scope = "I", Type = "L", ReferenceName = "A'ou"}, + new {Id = "aox", Scope = "I", Type = "L", ReferenceName = "Atorada"}, + new {Id = "aoz", Scope = "I", Type = "L", ReferenceName = "Uab Meto"}, + new {Id = "apb", Scope = "I", Type = "L", ReferenceName = "Sa'a"}, + new {Id = "apc", Scope = "I", Type = "L", ReferenceName = "North Levantine Arabic"}, + new {Id = "apd", Scope = "I", Type = "L", ReferenceName = "Sudanese Arabic"}, + new {Id = "ape", Scope = "I", Type = "L", ReferenceName = "Bukiyip"}, + new {Id = "apf", Scope = "I", Type = "L", ReferenceName = "Pahanan Agta"}, + new {Id = "apg", Scope = "I", Type = "L", ReferenceName = "Ampanang"}, + new {Id = "aph", Scope = "I", Type = "L", ReferenceName = "Athpariya"}, + new {Id = "api", Scope = "I", Type = "L", ReferenceName = "Apiaká"}, + new {Id = "apj", Scope = "I", Type = "L", ReferenceName = "Jicarilla Apache"}, + new {Id = "apk", Scope = "I", Type = "L", ReferenceName = "Kiowa Apache"}, + new {Id = "apl", Scope = "I", Type = "L", ReferenceName = "Lipan Apache"}, + new + { + Id = "apm", + Scope = "I", + Type = "L", + ReferenceName = "Mescalero-Chiricahua Apache" + }, new {Id = "apn", Scope = "I", Type = "L", ReferenceName = "Apinayé"}, + new {Id = "apo", Scope = "I", Type = "L", ReferenceName = "Ambul"}, + new {Id = "app", Scope = "I", Type = "L", ReferenceName = "Apma"}, + new {Id = "apq", Scope = "I", Type = "L", ReferenceName = "A-Pucikwar"}, + new {Id = "apr", Scope = "I", Type = "L", ReferenceName = "Arop-Lokep"}, + new {Id = "aps", Scope = "I", Type = "L", ReferenceName = "Arop-Sissano"}, + new {Id = "apt", Scope = "I", Type = "L", ReferenceName = "Apatani"}, + new {Id = "apu", Scope = "I", Type = "L", ReferenceName = "Apurinã"}, + new {Id = "apv", Scope = "I", Type = "E", ReferenceName = "Alapmunte"}, + new {Id = "apw", Scope = "I", Type = "L", ReferenceName = "Western Apache"}, + new {Id = "apx", Scope = "I", Type = "L", ReferenceName = "Aputai"}, + new {Id = "apy", Scope = "I", Type = "L", ReferenceName = "Apalaí"}, + new {Id = "apz", Scope = "I", Type = "L", ReferenceName = "Safeyoka"}, + new {Id = "aqc", Scope = "I", Type = "L", ReferenceName = "Archi"}, + new {Id = "aqd", Scope = "I", Type = "L", ReferenceName = "Ampari Dogon"}, + new {Id = "aqg", Scope = "I", Type = "L", ReferenceName = "Arigidi"}, + new {Id = "aqm", Scope = "I", Type = "L", ReferenceName = "Atohwaim"}, + new {Id = "aqn", Scope = "I", Type = "L", ReferenceName = "Northern Alta"}, + new {Id = "aqp", Scope = "I", Type = "E", ReferenceName = "Atakapa"}, + new {Id = "aqr", Scope = "I", Type = "L", ReferenceName = "Arhâ"}, + new {Id = "aqt", Scope = "I", Type = "L", ReferenceName = "Angaité"}, + new {Id = "aqz", Scope = "I", Type = "L", ReferenceName = "Akuntsu"}, + new + { + Id = "ara", + Part2B = "ara", + Part2T = "ara", + Part1 = "ar", + Scope = "M", + Type = "L", + ReferenceName = "Arabic" + }, new {Id = "arb", Scope = "I", Type = "L", ReferenceName = "Standard Arabic"}, + new + { + Id = "arc", + Part2B = "arc", + Part2T = "arc", + Scope = "I", + Type = "A", + ReferenceName = "Official Aramaic (700-300 BCE)" + }, new {Id = "ard", Scope = "I", Type = "E", ReferenceName = "Arabana"}, + new {Id = "are", Scope = "I", Type = "L", ReferenceName = "Western Arrarnta"}, + new + { + Id = "arg", + Part2B = "arg", + Part2T = "arg", + Part1 = "an", + Scope = "I", + Type = "L", + ReferenceName = "Aragonese" + }, new {Id = "arh", Scope = "I", Type = "L", ReferenceName = "Arhuaco"}, + new {Id = "ari", Scope = "I", Type = "L", ReferenceName = "Arikara"}, + new {Id = "arj", Scope = "I", Type = "E", ReferenceName = "Arapaso"}, + new {Id = "ark", Scope = "I", Type = "L", ReferenceName = "Arikapú"}, + new {Id = "arl", Scope = "I", Type = "L", ReferenceName = "Arabela"}, + new + { + Id = "arn", + Part2B = "arn", + Part2T = "arn", + Scope = "I", + Type = "L", + ReferenceName = "Mapudungun" + }, new {Id = "aro", Scope = "I", Type = "L", ReferenceName = "Araona"}, + new + { + Id = "arp", + Part2B = "arp", + Part2T = "arp", + Scope = "I", + Type = "L", + ReferenceName = "Arapaho" + }, new {Id = "arq", Scope = "I", Type = "L", ReferenceName = "Algerian Arabic"}, + new {Id = "arr", Scope = "I", Type = "L", ReferenceName = "Karo (Brazil)"}, + new {Id = "ars", Scope = "I", Type = "L", ReferenceName = "Najdi Arabic"}, + new {Id = "aru", Scope = "I", Type = "E", ReferenceName = "Aruá (Amazonas State)"}, + new {Id = "arv", Scope = "I", Type = "L", ReferenceName = "Arbore"}, + new + { + Id = "arw", + Part2B = "arw", + Part2T = "arw", + Scope = "I", + Type = "L", + ReferenceName = "Arawak" + }, new {Id = "arx", Scope = "I", Type = "L", ReferenceName = "Aruá (Rodonia State)"}, + new {Id = "ary", Scope = "I", Type = "L", ReferenceName = "Moroccan Arabic"}, + new {Id = "arz", Scope = "I", Type = "L", ReferenceName = "Egyptian Arabic"}, + new {Id = "asa", Scope = "I", Type = "L", ReferenceName = "Asu (Tanzania)"}, + new {Id = "asb", Scope = "I", Type = "L", ReferenceName = "Assiniboine"}, + new {Id = "asc", Scope = "I", Type = "L", ReferenceName = "Casuarina Coast Asmat"}, + new {Id = "ase", Scope = "I", Type = "L", ReferenceName = "American Sign Language"}, + new {Id = "asf", Scope = "I", Type = "L", ReferenceName = "Auslan"}, + new {Id = "asg", Scope = "I", Type = "L", ReferenceName = "Cishingini"}, + new {Id = "ash", Scope = "I", Type = "E", ReferenceName = "Abishira"}, + new {Id = "asi", Scope = "I", Type = "L", ReferenceName = "Buruwai"}, + new {Id = "asj", Scope = "I", Type = "L", ReferenceName = "Sari"}, + new {Id = "ask", Scope = "I", Type = "L", ReferenceName = "Ashkun"}, + new {Id = "asl", Scope = "I", Type = "L", ReferenceName = "Asilulu"}, + new + { + Id = "asm", + Part2B = "asm", + Part2T = "asm", + Part1 = "as", + Scope = "I", + Type = "L", + ReferenceName = "Assamese" + }, new {Id = "asn", Scope = "I", Type = "L", ReferenceName = "Xingú Asuriní"}, + new {Id = "aso", Scope = "I", Type = "L", ReferenceName = "Dano"}, + new {Id = "asp", Scope = "I", Type = "L", ReferenceName = "Algerian Sign Language"}, + new {Id = "asq", Scope = "I", Type = "L", ReferenceName = "Austrian Sign Language"}, + new {Id = "asr", Scope = "I", Type = "L", ReferenceName = "Asuri"}, + new {Id = "ass", Scope = "I", Type = "L", ReferenceName = "Ipulo"}, + new + { + Id = "ast", + Part2B = "ast", + Part2T = "ast", + Scope = "I", + Type = "L", + ReferenceName = "Asturian" + }, new {Id = "asu", Scope = "I", Type = "L", ReferenceName = "Tocantins Asurini"}, + new {Id = "asv", Scope = "I", Type = "L", ReferenceName = "Asoa"}, + new + { + Id = "asw", + Scope = "I", + Type = "L", + ReferenceName = "Australian Aborigines Sign Language" + }, new {Id = "asx", Scope = "I", Type = "L", ReferenceName = "Muratayak"}, + new {Id = "asy", Scope = "I", Type = "L", ReferenceName = "Yaosakor Asmat"}, + new {Id = "asz", Scope = "I", Type = "L", ReferenceName = "As"}, + new {Id = "ata", Scope = "I", Type = "L", ReferenceName = "Pele-Ata"}, + new {Id = "atb", Scope = "I", Type = "L", ReferenceName = "Zaiwa"}, + new {Id = "atc", Scope = "I", Type = "E", ReferenceName = "Atsahuaca"}, + new {Id = "atd", Scope = "I", Type = "L", ReferenceName = "Ata Manobo"}, + new {Id = "ate", Scope = "I", Type = "L", ReferenceName = "Atemble"}, + new + { + Id = "atg", + Scope = "I", + Type = "L", + ReferenceName = "Ivbie North-Okpela-Arhe" + }, + new {Id = "ati", Scope = "I", Type = "L", ReferenceName = "Attié"}, + new {Id = "atj", Scope = "I", Type = "L", ReferenceName = "Atikamekw"}, + new {Id = "atk", Scope = "I", Type = "L", ReferenceName = "Ati"}, + new {Id = "atl", Scope = "I", Type = "L", ReferenceName = "Mt. Iraya Agta"}, + new {Id = "atm", Scope = "I", Type = "L", ReferenceName = "Ata"}, + new {Id = "atn", Scope = "I", Type = "L", ReferenceName = "Ashtiani"}, + new {Id = "ato", Scope = "I", Type = "L", ReferenceName = "Atong (Cameroon)"}, + new {Id = "atp", Scope = "I", Type = "L", ReferenceName = "Pudtol Atta"}, + new {Id = "atq", Scope = "I", Type = "L", ReferenceName = "Aralle-Tabulahan"}, + new {Id = "atr", Scope = "I", Type = "L", ReferenceName = "Waimiri-Atroari"}, + new {Id = "ats", Scope = "I", Type = "L", ReferenceName = "Gros Ventre"}, + new {Id = "att", Scope = "I", Type = "L", ReferenceName = "Pamplona Atta"}, + new {Id = "atu", Scope = "I", Type = "L", ReferenceName = "Reel"}, + new {Id = "atv", Scope = "I", Type = "L", ReferenceName = "Northern Altai"}, + new {Id = "atw", Scope = "I", Type = "L", ReferenceName = "Atsugewi"}, + new {Id = "atx", Scope = "I", Type = "L", ReferenceName = "Arutani"}, + new {Id = "aty", Scope = "I", Type = "L", ReferenceName = "Aneityum"}, + new {Id = "atz", Scope = "I", Type = "L", ReferenceName = "Arta"}, + new {Id = "aua", Scope = "I", Type = "L", ReferenceName = "Asumboa"}, + new {Id = "aub", Scope = "I", Type = "L", ReferenceName = "Alugu"}, + new {Id = "auc", Scope = "I", Type = "L", ReferenceName = "Waorani"}, + new {Id = "aud", Scope = "I", Type = "L", ReferenceName = "Anuta"}, + new {Id = "aug", Scope = "I", Type = "L", ReferenceName = "Aguna"}, + new {Id = "auh", Scope = "I", Type = "L", ReferenceName = "Aushi"}, + new {Id = "aui", Scope = "I", Type = "L", ReferenceName = "Anuki"}, + new {Id = "auj", Scope = "I", Type = "L", ReferenceName = "Awjilah"}, + new {Id = "auk", Scope = "I", Type = "L", ReferenceName = "Heyo"}, + new {Id = "aul", Scope = "I", Type = "L", ReferenceName = "Aulua"}, + new {Id = "aum", Scope = "I", Type = "L", ReferenceName = "Asu (Nigeria)"}, + new {Id = "aun", Scope = "I", Type = "L", ReferenceName = "Molmo One"}, + new {Id = "auo", Scope = "I", Type = "E", ReferenceName = "Auyokawa"}, + new {Id = "aup", Scope = "I", Type = "L", ReferenceName = "Makayam"}, + new {Id = "auq", Scope = "I", Type = "L", ReferenceName = "Anus"}, + new {Id = "aur", Scope = "I", Type = "L", ReferenceName = "Aruek"}, + new {Id = "aut", Scope = "I", Type = "L", ReferenceName = "Austral"}, + new {Id = "auu", Scope = "I", Type = "L", ReferenceName = "Auye"}, + new {Id = "auw", Scope = "I", Type = "L", ReferenceName = "Awyi"}, + new {Id = "aux", Scope = "I", Type = "E", ReferenceName = "Aurá"}, + new {Id = "auy", Scope = "I", Type = "L", ReferenceName = "Awiyaana"}, + new {Id = "auz", Scope = "I", Type = "L", ReferenceName = "Uzbeki Arabic"}, + new + { + Id = "ava", + Part2B = "ava", + Part2T = "ava", + Part1 = "av", + Scope = "I", + Type = "L", + ReferenceName = "Avaric" + }, new {Id = "avb", Scope = "I", Type = "L", ReferenceName = "Avau"}, + new {Id = "avd", Scope = "I", Type = "L", ReferenceName = "Alviri-Vidari"}, + new + { + Id = "ave", + Part2B = "ave", + Part2T = "ave", + Part1 = "ae", + Scope = "I", + Type = "A", + ReferenceName = "Avestan" + }, new {Id = "avi", Scope = "I", Type = "L", ReferenceName = "Avikam"}, + new {Id = "avk", Scope = "I", Type = "C", ReferenceName = "Kotava"}, + new + { + Id = "avl", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Egyptian Bedawi Arabic" + }, new {Id = "avm", Scope = "I", Type = "E", ReferenceName = "Angkamuthi"}, + new {Id = "avn", Scope = "I", Type = "L", ReferenceName = "Avatime"}, + new {Id = "avo", Scope = "I", Type = "E", ReferenceName = "Agavotaguerra"}, + new {Id = "avs", Scope = "I", Type = "E", ReferenceName = "Aushiri"}, + new {Id = "avt", Scope = "I", Type = "L", ReferenceName = "Au"}, + new {Id = "avu", Scope = "I", Type = "L", ReferenceName = "Avokaya"}, + new {Id = "avv", Scope = "I", Type = "L", ReferenceName = "Avá-Canoeiro"}, + new + { + Id = "awa", + Part2B = "awa", + Part2T = "awa", + Scope = "I", + Type = "L", + ReferenceName = "Awadhi" + }, new {Id = "awb", Scope = "I", Type = "L", ReferenceName = "Awa (Papua New Guinea)"}, + new {Id = "awc", Scope = "I", Type = "L", ReferenceName = "Cicipu"}, + new {Id = "awe", Scope = "I", Type = "L", ReferenceName = "Awetí"}, + new {Id = "awg", Scope = "I", Type = "E", ReferenceName = "Anguthimri"}, + new {Id = "awh", Scope = "I", Type = "L", ReferenceName = "Awbono"}, + new {Id = "awi", Scope = "I", Type = "L", ReferenceName = "Aekyom"}, + new {Id = "awk", Scope = "I", Type = "E", ReferenceName = "Awabakal"}, + new {Id = "awm", Scope = "I", Type = "L", ReferenceName = "Arawum"}, + new {Id = "awn", Scope = "I", Type = "L", ReferenceName = "Awngi"}, + new {Id = "awo", Scope = "I", Type = "L", ReferenceName = "Awak"}, + new {Id = "awr", Scope = "I", Type = "L", ReferenceName = "Awera"}, + new {Id = "aws", Scope = "I", Type = "L", ReferenceName = "South Awyu"}, + new {Id = "awt", Scope = "I", Type = "L", ReferenceName = "Araweté"}, + new {Id = "awu", Scope = "I", Type = "L", ReferenceName = "Central Awyu"}, + new {Id = "awv", Scope = "I", Type = "L", ReferenceName = "Jair Awyu"}, + new {Id = "aww", Scope = "I", Type = "L", ReferenceName = "Awun"}, + new {Id = "awx", Scope = "I", Type = "L", ReferenceName = "Awara"}, + new {Id = "awy", Scope = "I", Type = "L", ReferenceName = "Edera Awyu"}, + new {Id = "axb", Scope = "I", Type = "E", ReferenceName = "Abipon"}, + new {Id = "axe", Scope = "I", Type = "E", ReferenceName = "Ayerrerenge"}, + new {Id = "axg", Scope = "I", Type = "E", ReferenceName = "Mato Grosso Arára"}, + new + { + Id = "axk", + Scope = "I", + Type = "L", + ReferenceName = "Yaka (Central African Republic)" + }, + new {Id = "axl", Scope = "I", Type = "E", ReferenceName = "Lower Southern Aranda"}, + new {Id = "axm", Scope = "I", Type = "H", ReferenceName = "Middle Armenian"}, + new {Id = "axx", Scope = "I", Type = "L", ReferenceName = "Xârâgurè"}, + new {Id = "aya", Scope = "I", Type = "L", ReferenceName = "Awar"}, + new {Id = "ayb", Scope = "I", Type = "L", ReferenceName = "Ayizo Gbe"}, + new {Id = "ayc", Scope = "I", Type = "L", ReferenceName = "Southern Aymara"}, + new {Id = "ayd", Scope = "I", Type = "E", ReferenceName = "Ayabadhu"}, + new {Id = "aye", Scope = "I", Type = "L", ReferenceName = "Ayere"}, + new {Id = "ayg", Scope = "I", Type = "L", ReferenceName = "Ginyanga"}, + new {Id = "ayh", Scope = "I", Type = "L", ReferenceName = "Hadrami Arabic"}, + new {Id = "ayi", Scope = "I", Type = "L", ReferenceName = "Leyigha"}, + new {Id = "ayk", Scope = "I", Type = "L", ReferenceName = "Akuku"}, + new {Id = "ayl", Scope = "I", Type = "L", ReferenceName = "Libyan Arabic"}, + new + { + Id = "aym", + Part2B = "aym", + Part2T = "aym", + Part1 = "ay", + Scope = "M", + Type = "L", + ReferenceName = "Aymara" + }, new {Id = "ayn", Scope = "I", Type = "L", ReferenceName = "Sanaani Arabic"}, + new {Id = "ayo", Scope = "I", Type = "L", ReferenceName = "Ayoreo"}, + new + { + Id = "ayp", + Scope = "I", + Type = "L", + ReferenceName = "North Mesopotamian Arabic" + }, + new {Id = "ayq", Scope = "I", Type = "L", ReferenceName = "Ayi (Papua New Guinea)"}, + new {Id = "ayr", Scope = "I", Type = "L", ReferenceName = "Central Aymara"}, + new {Id = "ays", Scope = "I", Type = "L", ReferenceName = "Sorsogon Ayta"}, + new {Id = "ayt", Scope = "I", Type = "L", ReferenceName = "Magbukun Ayta"}, + new {Id = "ayu", Scope = "I", Type = "L", ReferenceName = "Ayu"}, + new {Id = "ayy", Scope = "I", Type = "E", ReferenceName = "Tayabas Ayta"}, + new {Id = "ayz", Scope = "I", Type = "L", ReferenceName = "Mai Brat"}, + new {Id = "aza", Scope = "I", Type = "L", ReferenceName = "Azha"}, + new {Id = "azb", Scope = "I", Type = "L", ReferenceName = "South Azerbaijani"}, + new + { + Id = "azd", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Durango Nahuatl" + }, + new + { + Id = "aze", + Part2B = "aze", + Part2T = "aze", + Part1 = "az", + Scope = "M", + Type = "L", + ReferenceName = "Azerbaijani" + }, + new {Id = "azg", Scope = "I", Type = "L", ReferenceName = "San Pedro Amuzgos Amuzgo"}, + new {Id = "azj", Scope = "I", Type = "L", ReferenceName = "North Azerbaijani"}, + new {Id = "azm", Scope = "I", Type = "L", ReferenceName = "Ipalapa Amuzgo"}, + new {Id = "azn", Scope = "I", Type = "L", ReferenceName = "Western Durango Nahuatl"}, + new {Id = "azo", Scope = "I", Type = "L", ReferenceName = "Awing"}, + new {Id = "azt", Scope = "I", Type = "L", ReferenceName = "Faire Atta"}, + new {Id = "azz", Scope = "I", Type = "L", ReferenceName = "Highland Puebla Nahuatl"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/B.cs b/Cicm.Database/Seeders/Iso639Split/B.cs new file mode 100644 index 00000000..8a9f69c6 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/B.cs @@ -0,0 +1,907 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class B + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "baa", Scope = "I", Type = "L", ReferenceName = "Babatana"}, + new {Id = "bab", Scope = "I", Type = "L", ReferenceName = "Bainouk-Gunyuño"}, + new {Id = "bac", Scope = "I", Type = "L", ReferenceName = "Badui"}, + new {Id = "bae", Scope = "I", Type = "E", ReferenceName = "Baré"}, + new {Id = "baf", Scope = "I", Type = "L", ReferenceName = "Nubaca"}, + new {Id = "bag", Scope = "I", Type = "L", ReferenceName = "Tuki"}, + new {Id = "bah", Scope = "I", Type = "L", ReferenceName = "Bahamas Creole English"}, + new {Id = "baj", Scope = "I", Type = "L", ReferenceName = "Barakai"}, + new + { + Id = "bak", + Part2B = "bak", + Part2T = "bak", + Part1 = "ba", + Scope = "I", + Type = "L", + ReferenceName = "Bashkir" + }, new + { + Id = "bal", + Part2B = "bal", + Part2T = "bal", + Scope = "M", + Type = "L", + ReferenceName = "Baluchi" + }, new + { + Id = "bam", + Part2B = "bam", + Part2T = "bam", + Part1 = "bm", + Scope = "I", + Type = "L", + ReferenceName = "Bambara" + }, new + { + Id = "ban", + Part2B = "ban", + Part2T = "ban", + Scope = "I", + Type = "L", + ReferenceName = "Balinese" + }, new {Id = "bao", Scope = "I", Type = "L", ReferenceName = "Waimaha"}, + new {Id = "bap", Scope = "I", Type = "L", ReferenceName = "Bantawa"}, + new {Id = "bar", Scope = "I", Type = "L", ReferenceName = "Bavarian"}, + new + { + Id = "bas", + Part2B = "bas", + Part2T = "bas", + Scope = "I", + Type = "L", + ReferenceName = "Basa (Cameroon)" + }, new {Id = "bau", Scope = "I", Type = "L", ReferenceName = "Bada (Nigeria)"}, + new {Id = "bav", Scope = "I", Type = "L", ReferenceName = "Vengo"}, + new {Id = "baw", Scope = "I", Type = "L", ReferenceName = "Bambili-Bambui"}, + new {Id = "bax", Scope = "I", Type = "L", ReferenceName = "Bamun"}, + new {Id = "bay", Scope = "I", Type = "L", ReferenceName = "Batuley"}, + new {Id = "bba", Scope = "I", Type = "L", ReferenceName = "Baatonum"}, + new {Id = "bbb", Scope = "I", Type = "L", ReferenceName = "Barai"}, + new {Id = "bbc", Scope = "I", Type = "L", ReferenceName = "Batak Toba"}, + new {Id = "bbd", Scope = "I", Type = "L", ReferenceName = "Bau"}, + new {Id = "bbe", Scope = "I", Type = "L", ReferenceName = "Bangba"}, + new {Id = "bbf", Scope = "I", Type = "L", ReferenceName = "Baibai"}, + new {Id = "bbg", Scope = "I", Type = "L", ReferenceName = "Barama"}, + new {Id = "bbh", Scope = "I", Type = "L", ReferenceName = "Bugan"}, + new {Id = "bbi", Scope = "I", Type = "L", ReferenceName = "Barombi"}, + new {Id = "bbj", Scope = "I", Type = "L", ReferenceName = "Ghomálá'"}, + new {Id = "bbk", Scope = "I", Type = "L", ReferenceName = "Babanki"}, + new {Id = "bbl", Scope = "I", Type = "L", ReferenceName = "Bats"}, + new {Id = "bbm", Scope = "I", Type = "L", ReferenceName = "Babango"}, + new {Id = "bbn", Scope = "I", Type = "L", ReferenceName = "Uneapa"}, + new {Id = "bbo", Scope = "I", Type = "L", ReferenceName = "Northern Bobo Madaré"}, + new {Id = "bbp", Scope = "I", Type = "L", ReferenceName = "West Central Banda"}, + new {Id = "bbq", Scope = "I", Type = "L", ReferenceName = "Bamali"}, + new {Id = "bbr", Scope = "I", Type = "L", ReferenceName = "Girawa"}, + new {Id = "bbs", Scope = "I", Type = "L", ReferenceName = "Bakpinka"}, + new {Id = "bbt", Scope = "I", Type = "L", ReferenceName = "Mburku"}, + new {Id = "bbu", Scope = "I", Type = "L", ReferenceName = "Kulung (Nigeria)"}, + new {Id = "bbv", Scope = "I", Type = "L", ReferenceName = "Karnai"}, + new {Id = "bbw", Scope = "I", Type = "L", ReferenceName = "Baba"}, + new {Id = "bbx", Scope = "I", Type = "L", ReferenceName = "Bubia"}, + new {Id = "bby", Scope = "I", Type = "L", ReferenceName = "Befang"}, + new {Id = "bbz", Scope = "I", Type = "L", ReferenceName = "Babalia Creole Arabic"}, + new {Id = "bca", Scope = "I", Type = "L", ReferenceName = "Central Bai"}, + new {Id = "bcb", Scope = "I", Type = "L", ReferenceName = "Bainouk-Samik"}, + new {Id = "bcc", Scope = "I", Type = "L", ReferenceName = "Southern Balochi"}, + new {Id = "bcd", Scope = "I", Type = "L", ReferenceName = "North Babar"}, + new {Id = "bce", Scope = "I", Type = "L", ReferenceName = "Bamenyam"}, + new {Id = "bcf", Scope = "I", Type = "L", ReferenceName = "Bamu"}, + new {Id = "bcg", Scope = "I", Type = "L", ReferenceName = "Baga Pokur"}, + new {Id = "bch", Scope = "I", Type = "L", ReferenceName = "Bariai"}, + new {Id = "bci", Scope = "I", Type = "L", ReferenceName = "Baoulé"}, + new {Id = "bcj", Scope = "I", Type = "L", ReferenceName = "Bardi"}, + new {Id = "bck", Scope = "I", Type = "L", ReferenceName = "Bunuba"}, + new {Id = "bcl", Scope = "I", Type = "L", ReferenceName = "Central Bikol"}, + new {Id = "bcm", Scope = "I", Type = "L", ReferenceName = "Bannoni"}, + new {Id = "bcn", Scope = "I", Type = "L", ReferenceName = "Bali (Nigeria)"}, + new {Id = "bco", Scope = "I", Type = "L", ReferenceName = "Kaluli"}, + new + { + Id = "bcp", + Scope = "I", + Type = "L", + ReferenceName = "Bali (Democratic Republic of Congo)" + }, new {Id = "bcq", Scope = "I", Type = "L", ReferenceName = "Bench"}, + new {Id = "bcr", Scope = "I", Type = "L", ReferenceName = "Babine"}, + new {Id = "bcs", Scope = "I", Type = "L", ReferenceName = "Kohumono"}, + new {Id = "bct", Scope = "I", Type = "L", ReferenceName = "Bendi"}, + new {Id = "bcu", Scope = "I", Type = "L", ReferenceName = "Awad Bing"}, + new {Id = "bcv", Scope = "I", Type = "L", ReferenceName = "Shoo-Minda-Nye"}, + new {Id = "bcw", Scope = "I", Type = "L", ReferenceName = "Bana"}, + new {Id = "bcy", Scope = "I", Type = "L", ReferenceName = "Bacama"}, + new {Id = "bcz", Scope = "I", Type = "L", ReferenceName = "Bainouk-Gunyaamolo"}, + new {Id = "bda", Scope = "I", Type = "L", ReferenceName = "Bayot"}, + new {Id = "bdb", Scope = "I", Type = "L", ReferenceName = "Basap"}, + new {Id = "bdc", Scope = "I", Type = "L", ReferenceName = "Emberá-Baudó"}, + new {Id = "bdd", Scope = "I", Type = "L", ReferenceName = "Bunama"}, + new {Id = "bde", Scope = "I", Type = "L", ReferenceName = "Bade"}, + new {Id = "bdf", Scope = "I", Type = "L", ReferenceName = "Biage"}, + new {Id = "bdg", Scope = "I", Type = "L", ReferenceName = "Bonggi"}, + new {Id = "bdh", Scope = "I", Type = "L", ReferenceName = "Baka (South Sudan)"}, + new {Id = "bdi", Scope = "I", Type = "L", ReferenceName = "Burun"}, + new {Id = "bdj", Scope = "I", Type = "L", ReferenceName = "Bai (South Sudan)"}, + new {Id = "bdk", Scope = "I", Type = "L", ReferenceName = "Budukh"}, + new {Id = "bdl", Scope = "I", Type = "L", ReferenceName = "Indonesian Bajau"}, + new {Id = "bdm", Scope = "I", Type = "L", ReferenceName = "Buduma"}, + new {Id = "bdn", Scope = "I", Type = "L", ReferenceName = "Baldemu"}, + new {Id = "bdo", Scope = "I", Type = "L", ReferenceName = "Morom"}, + new {Id = "bdp", Scope = "I", Type = "L", ReferenceName = "Bende"}, + new {Id = "bdq", Scope = "I", Type = "L", ReferenceName = "Bahnar"}, + new {Id = "bdr", Scope = "I", Type = "L", ReferenceName = "West Coast Bajau"}, + new {Id = "bds", Scope = "I", Type = "L", ReferenceName = "Burunge"}, + new {Id = "bdt", Scope = "I", Type = "L", ReferenceName = "Bokoto"}, + new {Id = "bdu", Scope = "I", Type = "L", ReferenceName = "Oroko"}, + new {Id = "bdv", Scope = "I", Type = "L", ReferenceName = "Bodo Parja"}, + new {Id = "bdw", Scope = "I", Type = "L", ReferenceName = "Baham"}, + new {Id = "bdx", Scope = "I", Type = "L", ReferenceName = "Budong-Budong"}, + new {Id = "bdy", Scope = "I", Type = "L", ReferenceName = "Bandjalang"}, + new {Id = "bdz", Scope = "I", Type = "L", ReferenceName = "Badeshi"}, + new {Id = "bea", Scope = "I", Type = "L", ReferenceName = "Beaver"}, + new {Id = "beb", Scope = "I", Type = "L", ReferenceName = "Bebele"}, + new {Id = "bec", Scope = "I", Type = "L", ReferenceName = "Iceve-Maci"}, + new {Id = "bed", Scope = "I", Type = "L", ReferenceName = "Bedoanas"}, + new {Id = "bee", Scope = "I", Type = "L", ReferenceName = "Byangsi"}, + new {Id = "bef", Scope = "I", Type = "L", ReferenceName = "Benabena"}, + new {Id = "beg", Scope = "I", Type = "L", ReferenceName = "Belait"}, + new {Id = "beh", Scope = "I", Type = "L", ReferenceName = "Biali"}, + new {Id = "bei", Scope = "I", Type = "L", ReferenceName = "Bekati'"}, + new + { + Id = "bej", + Part2B = "bej", + Part2T = "bej", + Scope = "I", + Type = "L", + ReferenceName = "Beja" + }, new {Id = "bek", Scope = "I", Type = "L", ReferenceName = "Bebeli"}, + new + { + Id = "bel", + Part2B = "bel", + Part2T = "bel", + Part1 = "be", + Scope = "I", + Type = "L", + ReferenceName = "Belarusian" + }, new + { + Id = "bem", + Part2B = "bem", + Part2T = "bem", + Scope = "I", + Type = "L", + ReferenceName = "Bemba (Zambia)" + }, new + { + Id = "ben", + Part2B = "ben", + Part2T = "ben", + Part1 = "bn", + Scope = "I", + Type = "L", + ReferenceName = "Bengali" + }, new {Id = "beo", Scope = "I", Type = "L", ReferenceName = "Beami"}, + new {Id = "bep", Scope = "I", Type = "L", ReferenceName = "Besoa"}, + new {Id = "beq", Scope = "I", Type = "L", ReferenceName = "Beembe"}, + new {Id = "bes", Scope = "I", Type = "L", ReferenceName = "Besme"}, + new {Id = "bet", Scope = "I", Type = "L", ReferenceName = "Guiberoua Béte"}, + new {Id = "beu", Scope = "I", Type = "L", ReferenceName = "Blagar"}, + new {Id = "bev", Scope = "I", Type = "L", ReferenceName = "Daloa Bété"}, + new {Id = "bew", Scope = "I", Type = "L", ReferenceName = "Betawi"}, + new {Id = "bex", Scope = "I", Type = "L", ReferenceName = "Jur Modo"}, + new + { + Id = "bey", + Scope = "I", + Type = "L", + ReferenceName = "Beli (Papua New Guinea)" + }, + new {Id = "bez", Scope = "I", Type = "L", ReferenceName = "Bena (Tanzania)"}, + new {Id = "bfa", Scope = "I", Type = "L", ReferenceName = "Bari"}, + new {Id = "bfb", Scope = "I", Type = "L", ReferenceName = "Pauri Bareli"}, + new {Id = "bfc", Scope = "I", Type = "L", ReferenceName = "Panyi Bai"}, + new {Id = "bfd", Scope = "I", Type = "L", ReferenceName = "Bafut"}, + new {Id = "bfe", Scope = "I", Type = "L", ReferenceName = "Betaf"}, + new {Id = "bff", Scope = "I", Type = "L", ReferenceName = "Bofi"}, + new {Id = "bfg", Scope = "I", Type = "L", ReferenceName = "Busang Kayan"}, + new {Id = "bfh", Scope = "I", Type = "L", ReferenceName = "Blafe"}, + new {Id = "bfi", Scope = "I", Type = "L", ReferenceName = "British Sign Language"}, + new {Id = "bfj", Scope = "I", Type = "L", ReferenceName = "Bafanji"}, + new {Id = "bfk", Scope = "I", Type = "L", ReferenceName = "Ban Khor Sign Language"}, + new {Id = "bfl", Scope = "I", Type = "L", ReferenceName = "Banda-Ndélé"}, + new {Id = "bfm", Scope = "I", Type = "L", ReferenceName = "Mmen"}, + new {Id = "bfn", Scope = "I", Type = "L", ReferenceName = "Bunak"}, + new {Id = "bfo", Scope = "I", Type = "L", ReferenceName = "Malba Birifor"}, + new {Id = "bfp", Scope = "I", Type = "L", ReferenceName = "Beba"}, + new {Id = "bfq", Scope = "I", Type = "L", ReferenceName = "Badaga"}, + new {Id = "bfr", Scope = "I", Type = "L", ReferenceName = "Bazigar"}, + new {Id = "bfs", Scope = "I", Type = "L", ReferenceName = "Southern Bai"}, + new {Id = "bft", Scope = "I", Type = "L", ReferenceName = "Balti"}, + new {Id = "bfu", Scope = "I", Type = "L", ReferenceName = "Gahri"}, + new {Id = "bfw", Scope = "I", Type = "L", ReferenceName = "Bondo"}, + new {Id = "bfx", Scope = "I", Type = "L", ReferenceName = "Bantayanon"}, + new {Id = "bfy", Scope = "I", Type = "L", ReferenceName = "Bagheli"}, + new {Id = "bfz", Scope = "I", Type = "L", ReferenceName = "Mahasu Pahari"}, + new {Id = "bga", Scope = "I", Type = "L", ReferenceName = "Gwamhi-Wuri"}, + new {Id = "bgb", Scope = "I", Type = "L", ReferenceName = "Bobongko"}, + new {Id = "bgc", Scope = "I", Type = "L", ReferenceName = "Haryanvi"}, + new {Id = "bgd", Scope = "I", Type = "L", ReferenceName = "Rathwi Bareli"}, + new {Id = "bge", Scope = "I", Type = "L", ReferenceName = "Bauria"}, + new {Id = "bgf", Scope = "I", Type = "L", ReferenceName = "Bangandu"}, + new {Id = "bgg", Scope = "I", Type = "L", ReferenceName = "Bugun"}, + new {Id = "bgi", Scope = "I", Type = "L", ReferenceName = "Giangan"}, + new {Id = "bgj", Scope = "I", Type = "L", ReferenceName = "Bangolan"}, + new {Id = "bgk", Scope = "I", Type = "L", ReferenceName = "Bit"}, + new {Id = "bgl", Scope = "I", Type = "L", ReferenceName = "Bo (Laos)"}, + new {Id = "bgn", Scope = "I", Type = "L", ReferenceName = "Western Balochi"}, + new {Id = "bgo", Scope = "I", Type = "L", ReferenceName = "Baga Koga"}, + new {Id = "bgp", Scope = "I", Type = "L", ReferenceName = "Eastern Balochi"}, + new {Id = "bgq", Scope = "I", Type = "L", ReferenceName = "Bagri"}, + new {Id = "bgr", Scope = "I", Type = "L", ReferenceName = "Bawm Chin"}, + new {Id = "bgs", Scope = "I", Type = "L", ReferenceName = "Tagabawa"}, + new {Id = "bgt", Scope = "I", Type = "L", ReferenceName = "Bughotu"}, + new {Id = "bgu", Scope = "I", Type = "L", ReferenceName = "Mbongno"}, + new {Id = "bgv", Scope = "I", Type = "L", ReferenceName = "Warkay-Bipim"}, + new {Id = "bgw", Scope = "I", Type = "L", ReferenceName = "Bhatri"}, + new {Id = "bgx", Scope = "I", Type = "L", ReferenceName = "Balkan Gagauz Turkish"}, + new {Id = "bgy", Scope = "I", Type = "L", ReferenceName = "Benggoi"}, + new {Id = "bgz", Scope = "I", Type = "L", ReferenceName = "Banggai"}, + new {Id = "bha", Scope = "I", Type = "L", ReferenceName = "Bharia"}, + new {Id = "bhb", Scope = "I", Type = "L", ReferenceName = "Bhili"}, + new {Id = "bhc", Scope = "I", Type = "L", ReferenceName = "Biga"}, + new {Id = "bhd", Scope = "I", Type = "L", ReferenceName = "Bhadrawahi"}, + new {Id = "bhe", Scope = "I", Type = "L", ReferenceName = "Bhaya"}, + new {Id = "bhf", Scope = "I", Type = "L", ReferenceName = "Odiai"}, + new {Id = "bhg", Scope = "I", Type = "L", ReferenceName = "Binandere"}, + new {Id = "bhh", Scope = "I", Type = "L", ReferenceName = "Bukharic"}, + new {Id = "bhi", Scope = "I", Type = "L", ReferenceName = "Bhilali"}, + new {Id = "bhj", Scope = "I", Type = "L", ReferenceName = "Bahing"}, + new {Id = "bhl", Scope = "I", Type = "L", ReferenceName = "Bimin"}, + new {Id = "bhm", Scope = "I", Type = "L", ReferenceName = "Bathari"}, + new {Id = "bhn", Scope = "I", Type = "L", ReferenceName = "Bohtan Neo-Aramaic"}, + new + { + Id = "bho", + Part2B = "bho", + Part2T = "bho", + Scope = "I", + Type = "L", + ReferenceName = "Bhojpuri" + }, new {Id = "bhp", Scope = "I", Type = "L", ReferenceName = "Bima"}, + new {Id = "bhq", Scope = "I", Type = "L", ReferenceName = "Tukang Besi South"}, + new {Id = "bhr", Scope = "I", Type = "L", ReferenceName = "Bara Malagasy"}, + new {Id = "bhs", Scope = "I", Type = "L", ReferenceName = "Buwal"}, + new {Id = "bht", Scope = "I", Type = "L", ReferenceName = "Bhattiyali"}, + new {Id = "bhu", Scope = "I", Type = "L", ReferenceName = "Bhunjia"}, + new {Id = "bhv", Scope = "I", Type = "L", ReferenceName = "Bahau"}, + new {Id = "bhw", Scope = "I", Type = "L", ReferenceName = "Biak"}, + new {Id = "bhx", Scope = "I", Type = "L", ReferenceName = "Bhalay"}, + new {Id = "bhy", Scope = "I", Type = "L", ReferenceName = "Bhele"}, + new {Id = "bhz", Scope = "I", Type = "L", ReferenceName = "Bada (Indonesia)"}, + new {Id = "bia", Scope = "I", Type = "L", ReferenceName = "Badimaya"}, + new {Id = "bib", Scope = "I", Type = "L", ReferenceName = "Bissa"}, + new {Id = "bic", Scope = "I", Type = "L", ReferenceName = "Bikaru"}, + new {Id = "bid", Scope = "I", Type = "L", ReferenceName = "Bidiyo"}, + new {Id = "bie", Scope = "I", Type = "L", ReferenceName = "Bepour"}, + new {Id = "bif", Scope = "I", Type = "L", ReferenceName = "Biafada"}, + new {Id = "big", Scope = "I", Type = "L", ReferenceName = "Biangai"}, + new {Id = "bij", Scope = "I", Type = "L", ReferenceName = "Vaghat-Ya-Bijim-Legeri"}, + new + { + Id = "bik", + Part2B = "bik", + Part2T = "bik", + Scope = "M", + Type = "L", + ReferenceName = "Bikol" + }, new {Id = "bil", Scope = "I", Type = "L", ReferenceName = "Bile"}, + new {Id = "bim", Scope = "I", Type = "L", ReferenceName = "Bimoba"}, + new + { + Id = "bin", + Part2B = "bin", + Part2T = "bin", + Scope = "I", + Type = "L", + ReferenceName = "Bini" + }, new {Id = "bio", Scope = "I", Type = "L", ReferenceName = "Nai"}, + new {Id = "bip", Scope = "I", Type = "L", ReferenceName = "Bila"}, + new {Id = "biq", Scope = "I", Type = "L", ReferenceName = "Bipi"}, + new {Id = "bir", Scope = "I", Type = "L", ReferenceName = "Bisorio"}, + new + { + Id = "bis", + Part2B = "bis", + Part2T = "bis", + Part1 = "bi", + Scope = "I", + Type = "L", + ReferenceName = "Bislama" + }, new {Id = "bit", Scope = "I", Type = "L", ReferenceName = "Berinomo"}, + new {Id = "biu", Scope = "I", Type = "L", ReferenceName = "Biete"}, + new {Id = "biv", Scope = "I", Type = "L", ReferenceName = "Southern Birifor"}, + new {Id = "biw", Scope = "I", Type = "L", ReferenceName = "Kol (Cameroon)"}, + new {Id = "bix", Scope = "I", Type = "L", ReferenceName = "Bijori"}, + new {Id = "biy", Scope = "I", Type = "L", ReferenceName = "Birhor"}, + new {Id = "biz", Scope = "I", Type = "L", ReferenceName = "Baloi"}, + new {Id = "bja", Scope = "I", Type = "L", ReferenceName = "Budza"}, + new {Id = "bjb", Scope = "I", Type = "E", ReferenceName = "Banggarla"}, + new {Id = "bjc", Scope = "I", Type = "L", ReferenceName = "Bariji"}, + new {Id = "bje", Scope = "I", Type = "L", ReferenceName = "Biao-Jiao Mien"}, + new + { + Id = "bjf", + Scope = "I", + Type = "L", + ReferenceName = "Barzani Jewish Neo-Aramaic" + }, new {Id = "bjg", Scope = "I", Type = "L", ReferenceName = "Bidyogo"}, + new {Id = "bjh", Scope = "I", Type = "L", ReferenceName = "Bahinemo"}, + new {Id = "bji", Scope = "I", Type = "L", ReferenceName = "Burji"}, + new {Id = "bjj", Scope = "I", Type = "L", ReferenceName = "Kanauji"}, + new {Id = "bjk", Scope = "I", Type = "L", ReferenceName = "Barok"}, + new + { + Id = "bjl", + Scope = "I", + Type = "L", + ReferenceName = "Bulu (Papua New Guinea)" + }, + new {Id = "bjm", Scope = "I", Type = "L", ReferenceName = "Bajelani"}, + new {Id = "bjn", Scope = "I", Type = "L", ReferenceName = "Banjar"}, + new {Id = "bjo", Scope = "I", Type = "L", ReferenceName = "Mid-Southern Banda"}, + new {Id = "bjp", Scope = "I", Type = "L", ReferenceName = "Fanamaket"}, + new {Id = "bjr", Scope = "I", Type = "L", ReferenceName = "Binumarien"}, + new {Id = "bjs", Scope = "I", Type = "L", ReferenceName = "Bajan"}, + new {Id = "bjt", Scope = "I", Type = "L", ReferenceName = "Balanta-Ganja"}, + new {Id = "bju", Scope = "I", Type = "L", ReferenceName = "Busuu"}, + new {Id = "bjv", Scope = "I", Type = "L", ReferenceName = "Bedjond"}, + new {Id = "bjw", Scope = "I", Type = "L", ReferenceName = "Bakwé"}, + new {Id = "bjx", Scope = "I", Type = "L", ReferenceName = "Banao Itneg"}, + new {Id = "bjy", Scope = "I", Type = "E", ReferenceName = "Bayali"}, + new {Id = "bjz", Scope = "I", Type = "L", ReferenceName = "Baruga"}, + new {Id = "bka", Scope = "I", Type = "L", ReferenceName = "Kyak"}, + new {Id = "bkc", Scope = "I", Type = "L", ReferenceName = "Baka (Cameroon)"}, + new {Id = "bkd", Scope = "I", Type = "L", ReferenceName = "Binukid"}, + new {Id = "bkf", Scope = "I", Type = "L", ReferenceName = "Beeke"}, + new {Id = "bkg", Scope = "I", Type = "L", ReferenceName = "Buraka"}, + new {Id = "bkh", Scope = "I", Type = "L", ReferenceName = "Bakoko"}, + new {Id = "bki", Scope = "I", Type = "L", ReferenceName = "Baki"}, + new {Id = "bkj", Scope = "I", Type = "L", ReferenceName = "Pande"}, + new {Id = "bkk", Scope = "I", Type = "L", ReferenceName = "Brokskat"}, + new {Id = "bkl", Scope = "I", Type = "L", ReferenceName = "Berik"}, + new {Id = "bkm", Scope = "I", Type = "L", ReferenceName = "Kom (Cameroon)"}, + new {Id = "bkn", Scope = "I", Type = "L", ReferenceName = "Bukitan"}, + new {Id = "bko", Scope = "I", Type = "L", ReferenceName = "Kwa'"}, + new + { + Id = "bkp", + Scope = "I", + Type = "L", + ReferenceName = "Boko (Democratic Republic of Congo)" + }, new {Id = "bkq", Scope = "I", Type = "L", ReferenceName = "Bakairí"}, + new {Id = "bkr", Scope = "I", Type = "L", ReferenceName = "Bakumpai"}, + new + { + Id = "bks", + Scope = "I", + Type = "L", + ReferenceName = "Northern Sorsoganon" + }, + new {Id = "bkt", Scope = "I", Type = "L", ReferenceName = "Boloki"}, + new {Id = "bku", Scope = "I", Type = "L", ReferenceName = "Buhid"}, + new {Id = "bkv", Scope = "I", Type = "L", ReferenceName = "Bekwarra"}, + new {Id = "bkw", Scope = "I", Type = "L", ReferenceName = "Bekwel"}, + new {Id = "bkx", Scope = "I", Type = "L", ReferenceName = "Baikeno"}, + new {Id = "bky", Scope = "I", Type = "L", ReferenceName = "Bokyi"}, + new {Id = "bkz", Scope = "I", Type = "L", ReferenceName = "Bungku"}, + new + { + Id = "bla", + Part2B = "bla", + Part2T = "bla", + Scope = "I", + Type = "L", + ReferenceName = "Siksika" + }, new {Id = "blb", Scope = "I", Type = "L", ReferenceName = "Bilua"}, + new {Id = "blc", Scope = "I", Type = "L", ReferenceName = "Bella Coola"}, + new {Id = "bld", Scope = "I", Type = "L", ReferenceName = "Bolango"}, + new {Id = "ble", Scope = "I", Type = "L", ReferenceName = "Balanta-Kentohe"}, + new {Id = "blf", Scope = "I", Type = "L", ReferenceName = "Buol"}, + new {Id = "blg", Scope = "I", Type = "L", ReferenceName = "Balau"}, + new {Id = "blh", Scope = "I", Type = "L", ReferenceName = "Kuwaa"}, + new {Id = "bli", Scope = "I", Type = "L", ReferenceName = "Bolia"}, + new {Id = "blj", Scope = "I", Type = "L", ReferenceName = "Bolongan"}, + new {Id = "blk", Scope = "I", Type = "L", ReferenceName = "Pa'o Karen"}, + new {Id = "bll", Scope = "I", Type = "E", ReferenceName = "Biloxi"}, + new {Id = "blm", Scope = "I", Type = "L", ReferenceName = "Beli (South Sudan)"}, + new + { + Id = "bln", + Scope = "I", + Type = "L", + ReferenceName = "Southern Catanduanes Bikol" + }, new {Id = "blo", Scope = "I", Type = "L", ReferenceName = "Anii"}, + new {Id = "blp", Scope = "I", Type = "L", ReferenceName = "Blablanga"}, + new {Id = "blq", Scope = "I", Type = "L", ReferenceName = "Baluan-Pam"}, + new {Id = "blr", Scope = "I", Type = "L", ReferenceName = "Blang"}, + new {Id = "bls", Scope = "I", Type = "L", ReferenceName = "Balaesang"}, + new {Id = "blt", Scope = "I", Type = "L", ReferenceName = "Tai Dam"}, + new {Id = "blv", Scope = "I", Type = "L", ReferenceName = "Kibala"}, + new {Id = "blw", Scope = "I", Type = "L", ReferenceName = "Balangao"}, + new {Id = "blx", Scope = "I", Type = "L", ReferenceName = "Mag-Indi Ayta"}, + new {Id = "bly", Scope = "I", Type = "L", ReferenceName = "Notre"}, + new {Id = "blz", Scope = "I", Type = "L", ReferenceName = "Balantak"}, + new {Id = "bma", Scope = "I", Type = "L", ReferenceName = "Lame"}, + new {Id = "bmb", Scope = "I", Type = "L", ReferenceName = "Bembe"}, + new {Id = "bmc", Scope = "I", Type = "L", ReferenceName = "Biem"}, + new {Id = "bmd", Scope = "I", Type = "L", ReferenceName = "Baga Manduri"}, + new {Id = "bme", Scope = "I", Type = "L", ReferenceName = "Limassa"}, + new {Id = "bmf", Scope = "I", Type = "L", ReferenceName = "Bom-Kim"}, + new {Id = "bmg", Scope = "I", Type = "L", ReferenceName = "Bamwe"}, + new {Id = "bmh", Scope = "I", Type = "L", ReferenceName = "Kein"}, + new {Id = "bmi", Scope = "I", Type = "L", ReferenceName = "Bagirmi"}, + new {Id = "bmj", Scope = "I", Type = "L", ReferenceName = "Bote-Majhi"}, + new {Id = "bmk", Scope = "I", Type = "L", ReferenceName = "Ghayavi"}, + new {Id = "bml", Scope = "I", Type = "L", ReferenceName = "Bomboli"}, + new + { + Id = "bmm", + Scope = "I", + Type = "L", + ReferenceName = "Northern Betsimisaraka Malagasy" + }, + new {Id = "bmn", Scope = "I", Type = "E", ReferenceName = "Bina (Papua New Guinea)"}, + new {Id = "bmo", Scope = "I", Type = "L", ReferenceName = "Bambalang"}, + new {Id = "bmp", Scope = "I", Type = "L", ReferenceName = "Bulgebi"}, + new {Id = "bmq", Scope = "I", Type = "L", ReferenceName = "Bomu"}, + new {Id = "bmr", Scope = "I", Type = "L", ReferenceName = "Muinane"}, + new {Id = "bms", Scope = "I", Type = "L", ReferenceName = "Bilma Kanuri"}, + new {Id = "bmt", Scope = "I", Type = "L", ReferenceName = "Biao Mon"}, + new {Id = "bmu", Scope = "I", Type = "L", ReferenceName = "Somba-Siawari"}, + new {Id = "bmv", Scope = "I", Type = "L", ReferenceName = "Bum"}, + new {Id = "bmw", Scope = "I", Type = "L", ReferenceName = "Bomwali"}, + new {Id = "bmx", Scope = "I", Type = "L", ReferenceName = "Baimak"}, + new {Id = "bmz", Scope = "I", Type = "L", ReferenceName = "Baramu"}, + new {Id = "bna", Scope = "I", Type = "L", ReferenceName = "Bonerate"}, + new {Id = "bnb", Scope = "I", Type = "L", ReferenceName = "Bookan"}, + new {Id = "bnc", Scope = "M", Type = "L", ReferenceName = "Bontok"}, + new {Id = "bnd", Scope = "I", Type = "L", ReferenceName = "Banda (Indonesia)"}, + new {Id = "bne", Scope = "I", Type = "L", ReferenceName = "Bintauna"}, + new {Id = "bnf", Scope = "I", Type = "L", ReferenceName = "Masiwang"}, + new {Id = "bng", Scope = "I", Type = "L", ReferenceName = "Benga"}, + new {Id = "bni", Scope = "I", Type = "L", ReferenceName = "Bangi"}, + new {Id = "bnj", Scope = "I", Type = "L", ReferenceName = "Eastern Tawbuid"}, + new {Id = "bnk", Scope = "I", Type = "L", ReferenceName = "Bierebo"}, + new {Id = "bnl", Scope = "I", Type = "L", ReferenceName = "Boon"}, + new {Id = "bnm", Scope = "I", Type = "L", ReferenceName = "Batanga"}, + new {Id = "bnn", Scope = "I", Type = "L", ReferenceName = "Bunun"}, + new {Id = "bno", Scope = "I", Type = "L", ReferenceName = "Bantoanon"}, + new {Id = "bnp", Scope = "I", Type = "L", ReferenceName = "Bola"}, + new {Id = "bnq", Scope = "I", Type = "L", ReferenceName = "Bantik"}, + new {Id = "bnr", Scope = "I", Type = "L", ReferenceName = "Butmas-Tur"}, + new {Id = "bns", Scope = "I", Type = "L", ReferenceName = "Bundeli"}, + new {Id = "bnu", Scope = "I", Type = "L", ReferenceName = "Bentong"}, + new {Id = "bnv", Scope = "I", Type = "L", ReferenceName = "Bonerif"}, + new {Id = "bnw", Scope = "I", Type = "L", ReferenceName = "Bisis"}, + new {Id = "bnx", Scope = "I", Type = "L", ReferenceName = "Bangubangu"}, + new {Id = "bny", Scope = "I", Type = "L", ReferenceName = "Bintulu"}, + new {Id = "bnz", Scope = "I", Type = "L", ReferenceName = "Beezen"}, + new {Id = "boa", Scope = "I", Type = "L", ReferenceName = "Bora"}, + new {Id = "bob", Scope = "I", Type = "L", ReferenceName = "Aweer"}, + new + { + Id = "bod", + Part2B = "tib", + Part2T = "bod", + Part1 = "bo", + Scope = "I", + Type = "L", + ReferenceName = "Tibetan" + }, new {Id = "boe", Scope = "I", Type = "L", ReferenceName = "Mundabli"}, + new {Id = "bof", Scope = "I", Type = "L", ReferenceName = "Bolon"}, + new {Id = "bog", Scope = "I", Type = "L", ReferenceName = "Bamako Sign Language"}, + new {Id = "boh", Scope = "I", Type = "L", ReferenceName = "Boma"}, + new {Id = "boi", Scope = "I", Type = "E", ReferenceName = "Barbareño"}, + new {Id = "boj", Scope = "I", Type = "L", ReferenceName = "Anjam"}, + new {Id = "bok", Scope = "I", Type = "L", ReferenceName = "Bonjo"}, + new {Id = "bol", Scope = "I", Type = "L", ReferenceName = "Bole"}, + new {Id = "bom", Scope = "I", Type = "L", ReferenceName = "Berom"}, + new {Id = "bon", Scope = "I", Type = "L", ReferenceName = "Bine"}, + new {Id = "boo", Scope = "I", Type = "L", ReferenceName = "Tiemacèwè Bozo"}, + new {Id = "bop", Scope = "I", Type = "L", ReferenceName = "Bonkiman"}, + new {Id = "boq", Scope = "I", Type = "L", ReferenceName = "Bogaya"}, + new {Id = "bor", Scope = "I", Type = "L", ReferenceName = "Borôro"}, + new + { + Id = "bos", + Part2B = "bos", + Part2T = "bos", + Part1 = "bs", + Scope = "I", + Type = "L", + ReferenceName = "Bosnian" + }, new {Id = "bot", Scope = "I", Type = "L", ReferenceName = "Bongo"}, + new {Id = "bou", Scope = "I", Type = "L", ReferenceName = "Bondei"}, + new {Id = "bov", Scope = "I", Type = "L", ReferenceName = "Tuwuli"}, + new {Id = "bow", Scope = "I", Type = "E", ReferenceName = "Rema"}, + new {Id = "box", Scope = "I", Type = "L", ReferenceName = "Buamu"}, + new + { + Id = "boy", + Scope = "I", + Type = "L", + ReferenceName = "Bodo (Central African Republic)" + }, new {Id = "boz", Scope = "I", Type = "L", ReferenceName = "Tiéyaxo Bozo"}, + new {Id = "bpa", Scope = "I", Type = "L", ReferenceName = "Daakaka"}, + new {Id = "bpb", Scope = "I", Type = "E", ReferenceName = "Barbacoas"}, + new {Id = "bpd", Scope = "I", Type = "L", ReferenceName = "Banda-Banda"}, + new {Id = "bpg", Scope = "I", Type = "L", ReferenceName = "Bonggo"}, + new {Id = "bph", Scope = "I", Type = "L", ReferenceName = "Botlikh"}, + new {Id = "bpi", Scope = "I", Type = "L", ReferenceName = "Bagupi"}, + new {Id = "bpj", Scope = "I", Type = "L", ReferenceName = "Binji"}, + new {Id = "bpk", Scope = "I", Type = "L", ReferenceName = "Orowe"}, + new + { + Id = "bpl", + Scope = "I", + Type = "L", + ReferenceName = "Broome Pearling Lugger Pidgin" + }, new {Id = "bpm", Scope = "I", Type = "L", ReferenceName = "Biyom"}, + new {Id = "bpn", Scope = "I", Type = "L", ReferenceName = "Dzao Min"}, + new {Id = "bpo", Scope = "I", Type = "L", ReferenceName = "Anasi"}, + new {Id = "bpp", Scope = "I", Type = "L", ReferenceName = "Kaure"}, + new {Id = "bpq", Scope = "I", Type = "L", ReferenceName = "Banda Malay"}, + new {Id = "bpr", Scope = "I", Type = "L", ReferenceName = "Koronadal Blaan"}, + new {Id = "bps", Scope = "I", Type = "L", ReferenceName = "Sarangani Blaan"}, + new {Id = "bpt", Scope = "I", Type = "E", ReferenceName = "Barrow Point"}, + new {Id = "bpu", Scope = "I", Type = "L", ReferenceName = "Bongu"}, + new {Id = "bpv", Scope = "I", Type = "L", ReferenceName = "Bian Marind"}, + new + { + Id = "bpw", + Scope = "I", + Type = "L", + ReferenceName = "Bo (Papua New Guinea)" + }, + new {Id = "bpx", Scope = "I", Type = "L", ReferenceName = "Palya Bareli"}, + new {Id = "bpy", Scope = "I", Type = "L", ReferenceName = "Bishnupriya"}, + new {Id = "bpz", Scope = "I", Type = "L", ReferenceName = "Bilba"}, + new {Id = "bqa", Scope = "I", Type = "L", ReferenceName = "Tchumbuli"}, + new {Id = "bqb", Scope = "I", Type = "L", ReferenceName = "Bagusa"}, + new {Id = "bqc", Scope = "I", Type = "L", ReferenceName = "Boko (Benin)"}, + new {Id = "bqd", Scope = "I", Type = "L", ReferenceName = "Bung"}, + new {Id = "bqf", Scope = "I", Type = "E", ReferenceName = "Baga Kaloum"}, + new {Id = "bqg", Scope = "I", Type = "L", ReferenceName = "Bago-Kusuntu"}, + new {Id = "bqh", Scope = "I", Type = "L", ReferenceName = "Baima"}, + new {Id = "bqi", Scope = "I", Type = "L", ReferenceName = "Bakhtiari"}, + new {Id = "bqj", Scope = "I", Type = "L", ReferenceName = "Bandial"}, + new {Id = "bqk", Scope = "I", Type = "L", ReferenceName = "Banda-Mbrès"}, + new {Id = "bql", Scope = "I", Type = "L", ReferenceName = "Bilakura"}, + new {Id = "bqm", Scope = "I", Type = "L", ReferenceName = "Wumboko"}, + new + { + Id = "bqn", + Scope = "I", + Type = "L", + ReferenceName = "Bulgarian Sign Language" + }, + new {Id = "bqo", Scope = "I", Type = "L", ReferenceName = "Balo"}, + new {Id = "bqp", Scope = "I", Type = "L", ReferenceName = "Busa"}, + new {Id = "bqq", Scope = "I", Type = "L", ReferenceName = "Biritai"}, + new {Id = "bqr", Scope = "I", Type = "L", ReferenceName = "Burusu"}, + new {Id = "bqs", Scope = "I", Type = "L", ReferenceName = "Bosngun"}, + new {Id = "bqt", Scope = "I", Type = "L", ReferenceName = "Bamukumbit"}, + new {Id = "bqu", Scope = "I", Type = "L", ReferenceName = "Boguru"}, + new {Id = "bqv", Scope = "I", Type = "L", ReferenceName = "Koro Wachi"}, + new {Id = "bqw", Scope = "I", Type = "L", ReferenceName = "Buru (Nigeria)"}, + new {Id = "bqx", Scope = "I", Type = "L", ReferenceName = "Baangi"}, + new + { + Id = "bqy", + Scope = "I", + Type = "L", + ReferenceName = "Bengkala Sign Language" + }, + new {Id = "bqz", Scope = "I", Type = "L", ReferenceName = "Bakaka"}, + new + { + Id = "bra", + Part2B = "bra", + Part2T = "bra", + Scope = "I", + Type = "L", + ReferenceName = "Braj" + }, new {Id = "brb", Scope = "I", Type = "L", ReferenceName = "Lave"}, + new {Id = "brc", Scope = "I", Type = "E", ReferenceName = "Berbice Creole Dutch"}, + new {Id = "brd", Scope = "I", Type = "L", ReferenceName = "Baraamu"}, + new + { + Id = "bre", + Part2B = "bre", + Part2T = "bre", + Part1 = "br", + Scope = "I", + Type = "L", + ReferenceName = "Breton" + }, new {Id = "brf", Scope = "I", Type = "L", ReferenceName = "Bera"}, + new {Id = "brg", Scope = "I", Type = "L", ReferenceName = "Baure"}, + new {Id = "brh", Scope = "I", Type = "L", ReferenceName = "Brahui"}, + new {Id = "bri", Scope = "I", Type = "L", ReferenceName = "Mokpwe"}, + new {Id = "brj", Scope = "I", Type = "L", ReferenceName = "Bieria"}, + new {Id = "brk", Scope = "I", Type = "E", ReferenceName = "Birked"}, + new {Id = "brl", Scope = "I", Type = "L", ReferenceName = "Birwa"}, + new {Id = "brm", Scope = "I", Type = "L", ReferenceName = "Barambu"}, + new {Id = "brn", Scope = "I", Type = "L", ReferenceName = "Boruca"}, + new {Id = "bro", Scope = "I", Type = "L", ReferenceName = "Brokkat"}, + new {Id = "brp", Scope = "I", Type = "L", ReferenceName = "Barapasi"}, + new {Id = "brq", Scope = "I", Type = "L", ReferenceName = "Breri"}, + new {Id = "brr", Scope = "I", Type = "L", ReferenceName = "Birao"}, + new {Id = "brs", Scope = "I", Type = "L", ReferenceName = "Baras"}, + new {Id = "brt", Scope = "I", Type = "L", ReferenceName = "Bitare"}, + new {Id = "bru", Scope = "I", Type = "L", ReferenceName = "Eastern Bru"}, + new {Id = "brv", Scope = "I", Type = "L", ReferenceName = "Western Bru"}, + new {Id = "brw", Scope = "I", Type = "L", ReferenceName = "Bellari"}, + new {Id = "brx", Scope = "I", Type = "L", ReferenceName = "Bodo (India)"}, + new {Id = "bry", Scope = "I", Type = "L", ReferenceName = "Burui"}, + new {Id = "brz", Scope = "I", Type = "L", ReferenceName = "Bilbil"}, + new {Id = "bsa", Scope = "I", Type = "L", ReferenceName = "Abinomn"}, + new {Id = "bsb", Scope = "I", Type = "L", ReferenceName = "Brunei Bisaya"}, + new {Id = "bsc", Scope = "I", Type = "L", ReferenceName = "Bassari"}, + new {Id = "bse", Scope = "I", Type = "L", ReferenceName = "Wushi"}, + new {Id = "bsf", Scope = "I", Type = "L", ReferenceName = "Bauchi"}, + new {Id = "bsg", Scope = "I", Type = "L", ReferenceName = "Bashkardi"}, + new {Id = "bsh", Scope = "I", Type = "L", ReferenceName = "Kati"}, + new {Id = "bsi", Scope = "I", Type = "L", ReferenceName = "Bassossi"}, + new {Id = "bsj", Scope = "I", Type = "L", ReferenceName = "Bangwinji"}, + new {Id = "bsk", Scope = "I", Type = "L", ReferenceName = "Burushaski"}, + new {Id = "bsl", Scope = "I", Type = "E", ReferenceName = "Basa-Gumna"}, + new {Id = "bsm", Scope = "I", Type = "L", ReferenceName = "Busami"}, + new {Id = "bsn", Scope = "I", Type = "L", ReferenceName = "Barasana-Eduria"}, + new {Id = "bso", Scope = "I", Type = "L", ReferenceName = "Buso"}, + new {Id = "bsp", Scope = "I", Type = "L", ReferenceName = "Baga Sitemu"}, + new {Id = "bsq", Scope = "I", Type = "L", ReferenceName = "Bassa"}, + new {Id = "bsr", Scope = "I", Type = "L", ReferenceName = "Bassa-Kontagora"}, + new {Id = "bss", Scope = "I", Type = "L", ReferenceName = "Akoose"}, + new {Id = "bst", Scope = "I", Type = "L", ReferenceName = "Basketo"}, + new {Id = "bsu", Scope = "I", Type = "L", ReferenceName = "Bahonsuai"}, + new {Id = "bsv", Scope = "I", Type = "E", ReferenceName = "Baga Sobané"}, + new {Id = "bsw", Scope = "I", Type = "L", ReferenceName = "Baiso"}, + new {Id = "bsx", Scope = "I", Type = "L", ReferenceName = "Yangkam"}, + new {Id = "bsy", Scope = "I", Type = "L", ReferenceName = "Sabah Bisaya"}, + new {Id = "bta", Scope = "I", Type = "L", ReferenceName = "Bata"}, + new {Id = "btc", Scope = "I", Type = "L", ReferenceName = "Bati (Cameroon)"}, + new {Id = "btd", Scope = "I", Type = "L", ReferenceName = "Batak Dairi"}, + new {Id = "bte", Scope = "I", Type = "E", ReferenceName = "Gamo-Ningi"}, + new {Id = "btf", Scope = "I", Type = "L", ReferenceName = "Birgit"}, + new {Id = "btg", Scope = "I", Type = "L", ReferenceName = "Gagnoa Bété"}, + new {Id = "bth", Scope = "I", Type = "L", ReferenceName = "Biatah Bidayuh"}, + new {Id = "bti", Scope = "I", Type = "L", ReferenceName = "Burate"}, + new {Id = "btj", Scope = "I", Type = "L", ReferenceName = "Bacanese Malay"}, + new {Id = "btm", Scope = "I", Type = "L", ReferenceName = "Batak Mandailing"}, + new {Id = "btn", Scope = "I", Type = "L", ReferenceName = "Ratagnon"}, + new {Id = "bto", Scope = "I", Type = "L", ReferenceName = "Rinconada Bikol"}, + new {Id = "btp", Scope = "I", Type = "L", ReferenceName = "Budibud"}, + new {Id = "btq", Scope = "I", Type = "L", ReferenceName = "Batek"}, + new {Id = "btr", Scope = "I", Type = "L", ReferenceName = "Baetora"}, + new {Id = "bts", Scope = "I", Type = "L", ReferenceName = "Batak Simalungun"}, + new {Id = "btt", Scope = "I", Type = "L", ReferenceName = "Bete-Bendi"}, + new {Id = "btu", Scope = "I", Type = "L", ReferenceName = "Batu"}, + new {Id = "btv", Scope = "I", Type = "L", ReferenceName = "Bateri"}, + new {Id = "btw", Scope = "I", Type = "L", ReferenceName = "Butuanon"}, + new {Id = "btx", Scope = "I", Type = "L", ReferenceName = "Batak Karo"}, + new {Id = "bty", Scope = "I", Type = "L", ReferenceName = "Bobot"}, + new {Id = "btz", Scope = "I", Type = "L", ReferenceName = "Batak Alas-Kluet"}, + new + { + Id = "bua", + Part2B = "bua", + Part2T = "bua", + Scope = "M", + Type = "L", + ReferenceName = "Buriat" + }, new {Id = "bub", Scope = "I", Type = "L", ReferenceName = "Bua"}, + new {Id = "buc", Scope = "I", Type = "L", ReferenceName = "Bushi"}, + new {Id = "bud", Scope = "I", Type = "L", ReferenceName = "Ntcham"}, + new {Id = "bue", Scope = "I", Type = "E", ReferenceName = "Beothuk"}, + new {Id = "buf", Scope = "I", Type = "L", ReferenceName = "Bushoong"}, + new + { + Id = "bug", + Part2B = "bug", + Part2T = "bug", + Scope = "I", + Type = "L", + ReferenceName = "Buginese" + }, new {Id = "buh", Scope = "I", Type = "L", ReferenceName = "Younuo Bunu"}, + new {Id = "bui", Scope = "I", Type = "L", ReferenceName = "Bongili"}, + new {Id = "buj", Scope = "I", Type = "L", ReferenceName = "Basa-Gurmana"}, + new {Id = "buk", Scope = "I", Type = "L", ReferenceName = "Bugawac"}, + new + { + Id = "bul", + Part2B = "bul", + Part2T = "bul", + Part1 = "bg", + Scope = "I", + Type = "L", + ReferenceName = "Bulgarian" + }, new {Id = "bum", Scope = "I", Type = "L", ReferenceName = "Bulu (Cameroon)"}, + new {Id = "bun", Scope = "I", Type = "L", ReferenceName = "Sherbro"}, + new {Id = "buo", Scope = "I", Type = "L", ReferenceName = "Terei"}, + new {Id = "bup", Scope = "I", Type = "L", ReferenceName = "Busoa"}, + new {Id = "buq", Scope = "I", Type = "L", ReferenceName = "Brem"}, + new {Id = "bus", Scope = "I", Type = "L", ReferenceName = "Bokobaru"}, + new {Id = "but", Scope = "I", Type = "L", ReferenceName = "Bungain"}, + new {Id = "buu", Scope = "I", Type = "L", ReferenceName = "Budu"}, + new {Id = "buv", Scope = "I", Type = "L", ReferenceName = "Bun"}, + new {Id = "buw", Scope = "I", Type = "L", ReferenceName = "Bubi"}, + new {Id = "bux", Scope = "I", Type = "L", ReferenceName = "Boghom"}, + new {Id = "buy", Scope = "I", Type = "L", ReferenceName = "Bullom So"}, + new {Id = "buz", Scope = "I", Type = "L", ReferenceName = "Bukwen"}, + new {Id = "bva", Scope = "I", Type = "L", ReferenceName = "Barein"}, + new {Id = "bvb", Scope = "I", Type = "L", ReferenceName = "Bube"}, + new {Id = "bvc", Scope = "I", Type = "L", ReferenceName = "Baelelea"}, + new {Id = "bvd", Scope = "I", Type = "L", ReferenceName = "Baeggu"}, + new {Id = "bve", Scope = "I", Type = "L", ReferenceName = "Berau Malay"}, + new {Id = "bvf", Scope = "I", Type = "L", ReferenceName = "Boor"}, + new {Id = "bvg", Scope = "I", Type = "L", ReferenceName = "Bonkeng"}, + new {Id = "bvh", Scope = "I", Type = "L", ReferenceName = "Bure"}, + new {Id = "bvi", Scope = "I", Type = "L", ReferenceName = "Belanda Viri"}, + new {Id = "bvj", Scope = "I", Type = "L", ReferenceName = "Baan"}, + new {Id = "bvk", Scope = "I", Type = "L", ReferenceName = "Bukat"}, + new {Id = "bvl", Scope = "I", Type = "L", ReferenceName = "Bolivian Sign Language"}, + new {Id = "bvm", Scope = "I", Type = "L", ReferenceName = "Bamunka"}, + new {Id = "bvn", Scope = "I", Type = "L", ReferenceName = "Buna"}, + new {Id = "bvo", Scope = "I", Type = "L", ReferenceName = "Bolgo"}, + new {Id = "bvp", Scope = "I", Type = "L", ReferenceName = "Bumang"}, + new {Id = "bvq", Scope = "I", Type = "L", ReferenceName = "Birri"}, + new {Id = "bvr", Scope = "I", Type = "L", ReferenceName = "Burarra"}, + new {Id = "bvt", Scope = "I", Type = "L", ReferenceName = "Bati (Indonesia)"}, + new {Id = "bvu", Scope = "I", Type = "L", ReferenceName = "Bukit Malay"}, + new {Id = "bvv", Scope = "I", Type = "E", ReferenceName = "Baniva"}, + new {Id = "bvw", Scope = "I", Type = "L", ReferenceName = "Boga"}, + new {Id = "bvx", Scope = "I", Type = "L", ReferenceName = "Dibole"}, + new {Id = "bvy", Scope = "I", Type = "L", ReferenceName = "Baybayanon"}, + new {Id = "bvz", Scope = "I", Type = "L", ReferenceName = "Bauzi"}, + new {Id = "bwa", Scope = "I", Type = "L", ReferenceName = "Bwatoo"}, + new {Id = "bwb", Scope = "I", Type = "L", ReferenceName = "Namosi-Naitasiri-Serua"}, + new {Id = "bwc", Scope = "I", Type = "L", ReferenceName = "Bwile"}, + new {Id = "bwd", Scope = "I", Type = "L", ReferenceName = "Bwaidoka"}, + new {Id = "bwe", Scope = "I", Type = "L", ReferenceName = "Bwe Karen"}, + new {Id = "bwf", Scope = "I", Type = "L", ReferenceName = "Boselewa"}, + new {Id = "bwg", Scope = "I", Type = "L", ReferenceName = "Barwe"}, + new {Id = "bwh", Scope = "I", Type = "L", ReferenceName = "Bishuo"}, + new {Id = "bwi", Scope = "I", Type = "L", ReferenceName = "Baniwa"}, + new {Id = "bwj", Scope = "I", Type = "L", ReferenceName = "Láá Láá Bwamu"}, + new {Id = "bwk", Scope = "I", Type = "L", ReferenceName = "Bauwaki"}, + new {Id = "bwl", Scope = "I", Type = "L", ReferenceName = "Bwela"}, + new {Id = "bwm", Scope = "I", Type = "L", ReferenceName = "Biwat"}, + new {Id = "bwn", Scope = "I", Type = "L", ReferenceName = "Wunai Bunu"}, + new {Id = "bwo", Scope = "I", Type = "L", ReferenceName = "Boro (Ethiopia)"}, + new {Id = "bwp", Scope = "I", Type = "L", ReferenceName = "Mandobo Bawah"}, + new {Id = "bwq", Scope = "I", Type = "L", ReferenceName = "Southern Bobo Madaré"}, + new {Id = "bwr", Scope = "I", Type = "L", ReferenceName = "Bura-Pabir"}, + new {Id = "bws", Scope = "I", Type = "L", ReferenceName = "Bomboma"}, + new {Id = "bwt", Scope = "I", Type = "L", ReferenceName = "Bafaw-Balong"}, + new {Id = "bwu", Scope = "I", Type = "L", ReferenceName = "Buli (Ghana)"}, + new {Id = "bww", Scope = "I", Type = "L", ReferenceName = "Bwa"}, + new {Id = "bwx", Scope = "I", Type = "L", ReferenceName = "Bu-Nao Bunu"}, + new {Id = "bwy", Scope = "I", Type = "L", ReferenceName = "Cwi Bwamu"}, + new {Id = "bwz", Scope = "I", Type = "L", ReferenceName = "Bwisi"}, + new {Id = "bxa", Scope = "I", Type = "L", ReferenceName = "Tairaha"}, + new {Id = "bxb", Scope = "I", Type = "L", ReferenceName = "Belanda Bor"}, + new {Id = "bxc", Scope = "I", Type = "L", ReferenceName = "Molengue"}, + new {Id = "bxd", Scope = "I", Type = "L", ReferenceName = "Pela"}, + new {Id = "bxe", Scope = "I", Type = "L", ReferenceName = "Birale"}, + new {Id = "bxf", Scope = "I", Type = "L", ReferenceName = "Bilur"}, + new {Id = "bxg", Scope = "I", Type = "L", ReferenceName = "Bangala"}, + new {Id = "bxh", Scope = "I", Type = "L", ReferenceName = "Buhutu"}, + new {Id = "bxi", Scope = "I", Type = "E", ReferenceName = "Pirlatapa"}, + new {Id = "bxj", Scope = "I", Type = "L", ReferenceName = "Bayungu"}, + new {Id = "bxk", Scope = "I", Type = "L", ReferenceName = "Bukusu"}, + new {Id = "bxl", Scope = "I", Type = "L", ReferenceName = "Jalkunan"}, + new {Id = "bxm", Scope = "I", Type = "L", ReferenceName = "Mongolia Buriat"}, + new {Id = "bxn", Scope = "I", Type = "L", ReferenceName = "Burduna"}, + new {Id = "bxo", Scope = "I", Type = "L", ReferenceName = "Barikanchi"}, + new {Id = "bxp", Scope = "I", Type = "L", ReferenceName = "Bebil"}, + new {Id = "bxq", Scope = "I", Type = "L", ReferenceName = "Beele"}, + new {Id = "bxr", Scope = "I", Type = "L", ReferenceName = "Russia Buriat"}, + new {Id = "bxs", Scope = "I", Type = "L", ReferenceName = "Busam"}, + new {Id = "bxu", Scope = "I", Type = "L", ReferenceName = "China Buriat"}, + new {Id = "bxv", Scope = "I", Type = "L", ReferenceName = "Berakou"}, + new {Id = "bxw", Scope = "I", Type = "L", ReferenceName = "Bankagooma"}, + new {Id = "bxz", Scope = "I", Type = "L", ReferenceName = "Binahari"}, + new {Id = "bya", Scope = "I", Type = "L", ReferenceName = "Batak"}, + new {Id = "byb", Scope = "I", Type = "L", ReferenceName = "Bikya"}, + new {Id = "byc", Scope = "I", Type = "L", ReferenceName = "Ubaghara"}, + new {Id = "byd", Scope = "I", Type = "L", ReferenceName = "Benyadu'"}, + new {Id = "bye", Scope = "I", Type = "L", ReferenceName = "Pouye"}, + new {Id = "byf", Scope = "I", Type = "L", ReferenceName = "Bete"}, + new {Id = "byg", Scope = "I", Type = "E", ReferenceName = "Baygo"}, + new {Id = "byh", Scope = "I", Type = "L", ReferenceName = "Bhujel"}, + new {Id = "byi", Scope = "I", Type = "L", ReferenceName = "Buyu"}, + new {Id = "byj", Scope = "I", Type = "L", ReferenceName = "Bina (Nigeria)"}, + new {Id = "byk", Scope = "I", Type = "L", ReferenceName = "Biao"}, + new {Id = "byl", Scope = "I", Type = "L", ReferenceName = "Bayono"}, + new {Id = "bym", Scope = "I", Type = "L", ReferenceName = "Bidjara"}, + new + { + Id = "byn", + Part2B = "byn", + Part2T = "byn", + Scope = "I", + Type = "L", + ReferenceName = "Bilin" + }, new {Id = "byo", Scope = "I", Type = "L", ReferenceName = "Biyo"}, + new {Id = "byp", Scope = "I", Type = "L", ReferenceName = "Bumaji"}, + new {Id = "byq", Scope = "I", Type = "E", ReferenceName = "Basay"}, + new {Id = "byr", Scope = "I", Type = "L", ReferenceName = "Baruya"}, + new {Id = "bys", Scope = "I", Type = "L", ReferenceName = "Burak"}, + new {Id = "byt", Scope = "I", Type = "E", ReferenceName = "Berti"}, + new {Id = "byv", Scope = "I", Type = "L", ReferenceName = "Medumba"}, + new {Id = "byw", Scope = "I", Type = "L", ReferenceName = "Belhariya"}, + new {Id = "byx", Scope = "I", Type = "L", ReferenceName = "Qaqet"}, + new {Id = "byz", Scope = "I", Type = "L", ReferenceName = "Banaro"}, + new {Id = "bza", Scope = "I", Type = "L", ReferenceName = "Bandi"}, + new {Id = "bzb", Scope = "I", Type = "L", ReferenceName = "Andio"}, + new + { + Id = "bzc", + Scope = "I", + Type = "L", + ReferenceName = "Southern Betsimisaraka Malagasy" + }, new {Id = "bzd", Scope = "I", Type = "L", ReferenceName = "Bribri"}, + new {Id = "bze", Scope = "I", Type = "L", ReferenceName = "Jenaama Bozo"}, + new {Id = "bzf", Scope = "I", Type = "L", ReferenceName = "Boikin"}, + new {Id = "bzg", Scope = "I", Type = "L", ReferenceName = "Babuza"}, + new {Id = "bzh", Scope = "I", Type = "L", ReferenceName = "Mapos Buang"}, + new {Id = "bzi", Scope = "I", Type = "L", ReferenceName = "Bisu"}, + new + { + Id = "bzj", + Scope = "I", + Type = "L", + ReferenceName = "Belize Kriol English" + }, + new + { + Id = "bzk", + Scope = "I", + Type = "L", + ReferenceName = "Nicaragua Creole English" + }, + new {Id = "bzl", Scope = "I", Type = "L", ReferenceName = "Boano (Sulawesi)"}, + new {Id = "bzm", Scope = "I", Type = "L", ReferenceName = "Bolondo"}, + new {Id = "bzn", Scope = "I", Type = "L", ReferenceName = "Boano (Maluku)"}, + new {Id = "bzo", Scope = "I", Type = "L", ReferenceName = "Bozaba"}, + new {Id = "bzp", Scope = "I", Type = "L", ReferenceName = "Kemberano"}, + new {Id = "bzq", Scope = "I", Type = "L", ReferenceName = "Buli (Indonesia)"}, + new {Id = "bzr", Scope = "I", Type = "E", ReferenceName = "Biri"}, + new + { + Id = "bzs", + Scope = "I", + Type = "L", + ReferenceName = "Brazilian Sign Language" + }, + new {Id = "bzt", Scope = "I", Type = "C", ReferenceName = "Brithenig"}, + new {Id = "bzu", Scope = "I", Type = "L", ReferenceName = "Burmeso"}, + new {Id = "bzv", Scope = "I", Type = "L", ReferenceName = "Naami"}, + new {Id = "bzw", Scope = "I", Type = "L", ReferenceName = "Basa (Nigeria)"}, + new {Id = "bzx", Scope = "I", Type = "L", ReferenceName = "Kɛlɛngaxo Bozo"}, + new {Id = "bzy", Scope = "I", Type = "L", ReferenceName = "Obanliku"}, + new {Id = "bzz", Scope = "I", Type = "L", ReferenceName = "Evant"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/C.cs b/Cicm.Database/Seeders/Iso639Split/C.cs new file mode 100644 index 00000000..1d466c79 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/C.cs @@ -0,0 +1,619 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class C + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "caa", Scope = "I", Type = "L", ReferenceName = "Chortí"}, + new {Id = "cab", Scope = "I", Type = "L", ReferenceName = "Garifuna"}, + new {Id = "cac", Scope = "I", Type = "L", ReferenceName = "Chuj"}, + new + { + Id = "cad", + Part2B = "cad", + Part2T = "cad", + Scope = "I", + Type = "L", + ReferenceName = "Caddo" + }, new {Id = "cae", Scope = "I", Type = "L", ReferenceName = "Lehar"}, + new {Id = "caf", Scope = "I", Type = "L", ReferenceName = "Southern Carrier"}, + new {Id = "cag", Scope = "I", Type = "L", ReferenceName = "Nivaclé"}, + new {Id = "cah", Scope = "I", Type = "L", ReferenceName = "Cahuarano"}, + new {Id = "caj", Scope = "I", Type = "E", ReferenceName = "Chané"}, + new {Id = "cak", Scope = "I", Type = "L", ReferenceName = "Kaqchikel"}, + new {Id = "cal", Scope = "I", Type = "L", ReferenceName = "Carolinian"}, + new {Id = "cam", Scope = "I", Type = "L", ReferenceName = "Cemuhî"}, + new {Id = "can", Scope = "I", Type = "L", ReferenceName = "Chambri"}, + new {Id = "cao", Scope = "I", Type = "L", ReferenceName = "Chácobo"}, + new {Id = "cap", Scope = "I", Type = "L", ReferenceName = "Chipaya"}, + new {Id = "caq", Scope = "I", Type = "L", ReferenceName = "Car Nicobarese"}, + new + { + Id = "car", + Part2B = "car", + Part2T = "car", + Scope = "I", + Type = "L", + ReferenceName = "Galibi Carib" + }, new {Id = "cas", Scope = "I", Type = "L", ReferenceName = "Tsimané"}, + new + { + Id = "cat", + Part2B = "cat", + Part2T = "cat", + Part1 = "ca", + Scope = "I", + Type = "L", + ReferenceName = "Catalan" + }, new {Id = "cav", Scope = "I", Type = "L", ReferenceName = "Cavineña"}, + new {Id = "caw", Scope = "I", Type = "L", ReferenceName = "Callawalla"}, + new {Id = "cax", Scope = "I", Type = "L", ReferenceName = "Chiquitano"}, + new {Id = "cay", Scope = "I", Type = "L", ReferenceName = "Cayuga"}, + new {Id = "caz", Scope = "I", Type = "E", ReferenceName = "Canichana"}, + new {Id = "cbb", Scope = "I", Type = "L", ReferenceName = "Cabiyarí"}, + new {Id = "cbc", Scope = "I", Type = "L", ReferenceName = "Carapana"}, + new {Id = "cbd", Scope = "I", Type = "L", ReferenceName = "Carijona"}, + new {Id = "cbg", Scope = "I", Type = "L", ReferenceName = "Chimila"}, + new {Id = "cbi", Scope = "I", Type = "L", ReferenceName = "Chachi"}, + new {Id = "cbj", Scope = "I", Type = "L", ReferenceName = "Ede Cabe"}, + new {Id = "cbk", Scope = "I", Type = "L", ReferenceName = "Chavacano"}, + new {Id = "cbl", Scope = "I", Type = "L", ReferenceName = "Bualkhaw Chin"}, + new {Id = "cbn", Scope = "I", Type = "L", ReferenceName = "Nyahkur"}, + new {Id = "cbo", Scope = "I", Type = "L", ReferenceName = "Izora"}, + new {Id = "cbq", Scope = "I", Type = "L", ReferenceName = "Tsucuba"}, + new {Id = "cbr", Scope = "I", Type = "L", ReferenceName = "Cashibo-Cacataibo"}, + new {Id = "cbs", Scope = "I", Type = "L", ReferenceName = "Cashinahua"}, + new {Id = "cbt", Scope = "I", Type = "L", ReferenceName = "Chayahuita"}, + new {Id = "cbu", Scope = "I", Type = "L", ReferenceName = "Candoshi-Shapra"}, + new {Id = "cbv", Scope = "I", Type = "L", ReferenceName = "Cacua"}, + new {Id = "cbw", Scope = "I", Type = "L", ReferenceName = "Kinabalian"}, + new {Id = "cby", Scope = "I", Type = "L", ReferenceName = "Carabayo"}, + new {Id = "cca", Scope = "I", Type = "E", ReferenceName = "Cauca"}, + new {Id = "ccc", Scope = "I", Type = "L", ReferenceName = "Chamicuro"}, + new {Id = "ccd", Scope = "I", Type = "L", ReferenceName = "Cafundo Creole"}, + new {Id = "cce", Scope = "I", Type = "L", ReferenceName = "Chopi"}, + new {Id = "ccg", Scope = "I", Type = "L", ReferenceName = "Samba Daka"}, + new {Id = "cch", Scope = "I", Type = "L", ReferenceName = "Atsam"}, + new {Id = "ccj", Scope = "I", Type = "L", ReferenceName = "Kasanga"}, + new {Id = "ccl", Scope = "I", Type = "L", ReferenceName = "Cutchi-Swahili"}, + new {Id = "ccm", Scope = "I", Type = "L", ReferenceName = "Malaccan Creole Malay"}, + new {Id = "cco", Scope = "I", Type = "L", ReferenceName = "Comaltepec Chinantec"}, + new {Id = "ccp", Scope = "I", Type = "L", ReferenceName = "Chakma"}, + new {Id = "ccr", Scope = "I", Type = "E", ReferenceName = "Cacaopera"}, + new {Id = "cda", Scope = "I", Type = "L", ReferenceName = "Choni"}, + new {Id = "cde", Scope = "I", Type = "L", ReferenceName = "Chenchu"}, + new {Id = "cdf", Scope = "I", Type = "L", ReferenceName = "Chiru"}, + new {Id = "cdg", Scope = "I", Type = "L", ReferenceName = "Chamari"}, + new {Id = "cdh", Scope = "I", Type = "L", ReferenceName = "Chambeali"}, + new {Id = "cdi", Scope = "I", Type = "L", ReferenceName = "Chodri"}, + new {Id = "cdj", Scope = "I", Type = "L", ReferenceName = "Churahi"}, + new {Id = "cdm", Scope = "I", Type = "L", ReferenceName = "Chepang"}, + new {Id = "cdn", Scope = "I", Type = "L", ReferenceName = "Chaudangsi"}, + new {Id = "cdo", Scope = "I", Type = "L", ReferenceName = "Min Dong Chinese"}, + new {Id = "cdr", Scope = "I", Type = "L", ReferenceName = "Cinda-Regi-Tiyal"}, + new {Id = "cds", Scope = "I", Type = "L", ReferenceName = "Chadian Sign Language"}, + new {Id = "cdy", Scope = "I", Type = "L", ReferenceName = "Chadong"}, + new {Id = "cdz", Scope = "I", Type = "L", ReferenceName = "Koda"}, + new {Id = "cea", Scope = "I", Type = "E", ReferenceName = "Lower Chehalis"}, + new + { + Id = "ceb", + Part2B = "ceb", + Part2T = "ceb", + Scope = "I", + Type = "L", + ReferenceName = "Cebuano" + }, new {Id = "ceg", Scope = "I", Type = "L", ReferenceName = "Chamacoco"}, + new {Id = "cek", Scope = "I", Type = "L", ReferenceName = "Eastern Khumi Chin"}, + new {Id = "cen", Scope = "I", Type = "L", ReferenceName = "Cen"}, + new + { + Id = "ces", + Part2B = "cze", + Part2T = "ces", + Part1 = "cs", + Scope = "I", + Type = "L", + ReferenceName = "Czech" + }, new {Id = "cet", Scope = "I", Type = "L", ReferenceName = "Centúúm"}, + new {Id = "cey", Scope = "I", Type = "L", ReferenceName = "Ekai Chin"}, + new {Id = "cfa", Scope = "I", Type = "L", ReferenceName = "Dijim-Bwilim"}, + new {Id = "cfd", Scope = "I", Type = "L", ReferenceName = "Cara"}, + new {Id = "cfg", Scope = "I", Type = "L", ReferenceName = "Como Karim"}, + new {Id = "cfm", Scope = "I", Type = "L", ReferenceName = "Falam Chin"}, + new {Id = "cga", Scope = "I", Type = "L", ReferenceName = "Changriwa"}, + new {Id = "cgc", Scope = "I", Type = "L", ReferenceName = "Kagayanen"}, + new {Id = "cgg", Scope = "I", Type = "L", ReferenceName = "Chiga"}, + new {Id = "cgk", Scope = "I", Type = "L", ReferenceName = "Chocangacakha"}, + new + { + Id = "cha", + Part2B = "cha", + Part2T = "cha", + Part1 = "ch", + Scope = "I", + Type = "L", + ReferenceName = "Chamorro" + }, new + { + Id = "chb", + Part2B = "chb", + Part2T = "chb", + Scope = "I", + Type = "E", + ReferenceName = "Chibcha" + }, new {Id = "chc", Scope = "I", Type = "E", ReferenceName = "Catawba"}, + new + { + Id = "chd", + Scope = "I", + Type = "L", + ReferenceName = "Highland Oaxaca Chontal" + }, + new + { + Id = "che", + Part2B = "che", + Part2T = "che", + Part1 = "ce", + Scope = "I", + Type = "L", + ReferenceName = "Chechen" + }, new {Id = "chf", Scope = "I", Type = "L", ReferenceName = "Tabasco Chontal"}, + new + { + Id = "chg", + Part2B = "chg", + Part2T = "chg", + Scope = "I", + Type = "E", + ReferenceName = "Chagatai" + }, new {Id = "chh", Scope = "I", Type = "E", ReferenceName = "Chinook"}, + new {Id = "chj", Scope = "I", Type = "L", ReferenceName = "Ojitlán Chinantec"}, + new + { + Id = "chk", + Part2B = "chk", + Part2T = "chk", + Scope = "I", + Type = "L", + ReferenceName = "Chuukese" + }, new {Id = "chl", Scope = "I", Type = "L", ReferenceName = "Cahuilla"}, + new + { + Id = "chm", + Part2B = "chm", + Part2T = "chm", + Scope = "M", + Type = "L", + ReferenceName = "Mari (Russia)" + }, new + { + Id = "chn", + Part2B = "chn", + Part2T = "chn", + Scope = "I", + Type = "L", + ReferenceName = "Chinook jargon" + }, new + { + Id = "cho", + Part2B = "cho", + Part2T = "cho", + Scope = "I", + Type = "L", + ReferenceName = "Choctaw" + }, new + { + Id = "chp", + Part2B = "chp", + Part2T = "chp", + Scope = "I", + Type = "L", + ReferenceName = "Chipewyan" + }, new {Id = "chq", Scope = "I", Type = "L", ReferenceName = "Quiotepec Chinantec"}, + new + { + Id = "chr", + Part2B = "chr", + Part2T = "chr", + Scope = "I", + Type = "L", + ReferenceName = "Cherokee" + }, new {Id = "cht", Scope = "I", Type = "E", ReferenceName = "Cholón"}, + new + { + Id = "chu", + Part2B = "chu", + Part2T = "chu", + Part1 = "cu", + Scope = "I", + Type = "A", + ReferenceName = "Church Slavic" + }, new + { + Id = "chv", + Part2B = "chv", + Part2T = "chv", + Part1 = "cv", + Scope = "I", + Type = "L", + ReferenceName = "Chuvash" + }, new {Id = "chw", Scope = "I", Type = "L", ReferenceName = "Chuwabu"}, + new {Id = "chx", Scope = "I", Type = "L", ReferenceName = "Chantyal"}, + new + { + Id = "chy", + Part2B = "chy", + Part2T = "chy", + Scope = "I", + Type = "L", + ReferenceName = "Cheyenne" + }, new {Id = "chz", Scope = "I", Type = "L", ReferenceName = "Ozumacín Chinantec"}, + new {Id = "cia", Scope = "I", Type = "L", ReferenceName = "Cia-Cia"}, + new {Id = "cib", Scope = "I", Type = "L", ReferenceName = "Ci Gbe"}, + new {Id = "cic", Scope = "I", Type = "L", ReferenceName = "Chickasaw"}, + new {Id = "cid", Scope = "I", Type = "E", ReferenceName = "Chimariko"}, + new {Id = "cie", Scope = "I", Type = "L", ReferenceName = "Cineni"}, + new {Id = "cih", Scope = "I", Type = "L", ReferenceName = "Chinali"}, + new {Id = "cik", Scope = "I", Type = "L", ReferenceName = "Chitkuli Kinnauri"}, + new {Id = "cim", Scope = "I", Type = "L", ReferenceName = "Cimbrian"}, + new {Id = "cin", Scope = "I", Type = "L", ReferenceName = "Cinta Larga"}, + new {Id = "cip", Scope = "I", Type = "L", ReferenceName = "Chiapanec"}, + new {Id = "cir", Scope = "I", Type = "L", ReferenceName = "Tiri"}, + new {Id = "ciw", Scope = "I", Type = "L", ReferenceName = "Chippewa"}, + new {Id = "ciy", Scope = "I", Type = "L", ReferenceName = "Chaima"}, + new {Id = "cja", Scope = "I", Type = "L", ReferenceName = "Western Cham"}, + new {Id = "cje", Scope = "I", Type = "L", ReferenceName = "Chru"}, + new {Id = "cjh", Scope = "I", Type = "E", ReferenceName = "Upper Chehalis"}, + new {Id = "cji", Scope = "I", Type = "L", ReferenceName = "Chamalal"}, + new {Id = "cjk", Scope = "I", Type = "L", ReferenceName = "Chokwe"}, + new {Id = "cjm", Scope = "I", Type = "L", ReferenceName = "Eastern Cham"}, + new {Id = "cjn", Scope = "I", Type = "L", ReferenceName = "Chenapian"}, + new {Id = "cjo", Scope = "I", Type = "L", ReferenceName = "Ashéninka Pajonal"}, + new {Id = "cjp", Scope = "I", Type = "L", ReferenceName = "Cabécar"}, + new {Id = "cjs", Scope = "I", Type = "L", ReferenceName = "Shor"}, + new {Id = "cjv", Scope = "I", Type = "L", ReferenceName = "Chuave"}, + new {Id = "cjy", Scope = "I", Type = "L", ReferenceName = "Jinyu Chinese"}, + new {Id = "ckb", Scope = "I", Type = "L", ReferenceName = "Central Kurdish"}, + new {Id = "ckh", Scope = "I", Type = "L", ReferenceName = "Chak"}, + new {Id = "ckl", Scope = "I", Type = "L", ReferenceName = "Cibak"}, + new {Id = "ckn", Scope = "I", Type = "L", ReferenceName = "Kaang Chin"}, + new {Id = "cko", Scope = "I", Type = "L", ReferenceName = "Anufo"}, + new {Id = "ckq", Scope = "I", Type = "L", ReferenceName = "Kajakse"}, + new {Id = "ckr", Scope = "I", Type = "L", ReferenceName = "Kairak"}, + new {Id = "cks", Scope = "I", Type = "L", ReferenceName = "Tayo"}, + new {Id = "ckt", Scope = "I", Type = "L", ReferenceName = "Chukot"}, + new {Id = "cku", Scope = "I", Type = "L", ReferenceName = "Koasati"}, + new {Id = "ckv", Scope = "I", Type = "L", ReferenceName = "Kavalan"}, + new {Id = "ckx", Scope = "I", Type = "L", ReferenceName = "Caka"}, + new {Id = "cky", Scope = "I", Type = "L", ReferenceName = "Cakfem-Mushere"}, + new + { + Id = "ckz", + Scope = "I", + Type = "L", + ReferenceName = "Cakchiquel-Quiché Mixed Language" + }, new {Id = "cla", Scope = "I", Type = "L", ReferenceName = "Ron"}, + new {Id = "clc", Scope = "I", Type = "L", ReferenceName = "Chilcotin"}, + new + { + Id = "cld", + Scope = "I", + Type = "L", + ReferenceName = "Chaldean Neo-Aramaic" + }, + new {Id = "cle", Scope = "I", Type = "L", ReferenceName = "Lealao Chinantec"}, + new {Id = "clh", Scope = "I", Type = "L", ReferenceName = "Chilisso"}, + new {Id = "cli", Scope = "I", Type = "L", ReferenceName = "Chakali"}, + new {Id = "clj", Scope = "I", Type = "L", ReferenceName = "Laitu Chin"}, + new {Id = "clk", Scope = "I", Type = "L", ReferenceName = "Idu-Mishmi"}, + new {Id = "cll", Scope = "I", Type = "L", ReferenceName = "Chala"}, + new {Id = "clm", Scope = "I", Type = "L", ReferenceName = "Clallam"}, + new + { + Id = "clo", + Scope = "I", + Type = "L", + ReferenceName = "Lowland Oaxaca Chontal" + }, + new {Id = "clt", Scope = "I", Type = "L", ReferenceName = "Lautu Chin"}, + new {Id = "clu", Scope = "I", Type = "L", ReferenceName = "Caluyanun"}, + new {Id = "clw", Scope = "I", Type = "L", ReferenceName = "Chulym"}, + new + { + Id = "cly", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Highland Chatino" + }, + new {Id = "cma", Scope = "I", Type = "L", ReferenceName = "Maa"}, + new {Id = "cme", Scope = "I", Type = "L", ReferenceName = "Cerma"}, + new + { + Id = "cmg", + Scope = "I", + Type = "H", + ReferenceName = "Classical Mongolian" + }, + new {Id = "cmi", Scope = "I", Type = "L", ReferenceName = "Emberá-Chamí"}, + new {Id = "cml", Scope = "I", Type = "L", ReferenceName = "Campalagian"}, + new {Id = "cmm", Scope = "I", Type = "E", ReferenceName = "Michigamea"}, + new {Id = "cmn", Scope = "I", Type = "L", ReferenceName = "Mandarin Chinese"}, + new {Id = "cmo", Scope = "I", Type = "L", ReferenceName = "Central Mnong"}, + new {Id = "cmr", Scope = "I", Type = "L", ReferenceName = "Mro-Khimi Chin"}, + new {Id = "cms", Scope = "I", Type = "A", ReferenceName = "Messapic"}, + new {Id = "cmt", Scope = "I", Type = "L", ReferenceName = "Camtho"}, + new {Id = "cna", Scope = "I", Type = "L", ReferenceName = "Changthang"}, + new {Id = "cnb", Scope = "I", Type = "L", ReferenceName = "Chinbon Chin"}, + new {Id = "cnc", Scope = "I", Type = "L", ReferenceName = "Côông"}, + new {Id = "cng", Scope = "I", Type = "L", ReferenceName = "Northern Qiang"}, + new {Id = "cnh", Scope = "I", Type = "L", ReferenceName = "Hakha Chin"}, + new {Id = "cni", Scope = "I", Type = "L", ReferenceName = "Asháninka"}, + new {Id = "cnk", Scope = "I", Type = "L", ReferenceName = "Khumi Chin"}, + new {Id = "cnl", Scope = "I", Type = "L", ReferenceName = "Lalana Chinantec"}, + new {Id = "cno", Scope = "I", Type = "L", ReferenceName = "Con"}, + new + { + Id = "cnr", + Part2B = "cnr", + Part2T = "cnr", + Scope = "I", + Type = "L", + ReferenceName = "Montenegrin" + }, new {Id = "cns", Scope = "I", Type = "L", ReferenceName = "Central Asmat"}, + new {Id = "cnt", Scope = "I", Type = "L", ReferenceName = "Tepetotutla Chinantec"}, + new {Id = "cnu", Scope = "I", Type = "L", ReferenceName = "Chenoua"}, + new {Id = "cnw", Scope = "I", Type = "L", ReferenceName = "Ngawn Chin"}, + new {Id = "cnx", Scope = "I", Type = "H", ReferenceName = "Middle Cornish"}, + new {Id = "coa", Scope = "I", Type = "L", ReferenceName = "Cocos Islands Malay"}, + new {Id = "cob", Scope = "I", Type = "E", ReferenceName = "Chicomuceltec"}, + new {Id = "coc", Scope = "I", Type = "L", ReferenceName = "Cocopa"}, + new {Id = "cod", Scope = "I", Type = "L", ReferenceName = "Cocama-Cocamilla"}, + new {Id = "coe", Scope = "I", Type = "L", ReferenceName = "Koreguaje"}, + new {Id = "cof", Scope = "I", Type = "L", ReferenceName = "Colorado"}, + new {Id = "cog", Scope = "I", Type = "L", ReferenceName = "Chong"}, + new {Id = "coh", Scope = "I", Type = "L", ReferenceName = "Chonyi-Dzihana-Kauma"}, + new {Id = "coj", Scope = "I", Type = "E", ReferenceName = "Cochimi"}, + new {Id = "cok", Scope = "I", Type = "L", ReferenceName = "Santa Teresa Cora"}, + new {Id = "col", Scope = "I", Type = "L", ReferenceName = "Columbia-Wenatchi"}, + new {Id = "com", Scope = "I", Type = "L", ReferenceName = "Comanche"}, + new {Id = "con", Scope = "I", Type = "L", ReferenceName = "Cofán"}, + new {Id = "coo", Scope = "I", Type = "L", ReferenceName = "Comox"}, + new + { + Id = "cop", + Part2B = "cop", + Part2T = "cop", + Scope = "I", + Type = "E", + ReferenceName = "Coptic" + }, new {Id = "coq", Scope = "I", Type = "E", ReferenceName = "Coquille"}, + new + { + Id = "cor", + Part2B = "cor", + Part2T = "cor", + Part1 = "kw", + Scope = "I", + Type = "L", + ReferenceName = "Cornish" + }, new + { + Id = "cos", + Part2B = "cos", + Part2T = "cos", + Part1 = "co", + Scope = "I", + Type = "L", + ReferenceName = "Corsican" + }, new {Id = "cot", Scope = "I", Type = "L", ReferenceName = "Caquinte"}, + new {Id = "cou", Scope = "I", Type = "L", ReferenceName = "Wamey"}, + new {Id = "cov", Scope = "I", Type = "L", ReferenceName = "Cao Miao"}, + new {Id = "cow", Scope = "I", Type = "E", ReferenceName = "Cowlitz"}, + new {Id = "cox", Scope = "I", Type = "L", ReferenceName = "Nanti"}, + new {Id = "coz", Scope = "I", Type = "L", ReferenceName = "Chochotec"}, + new {Id = "cpa", Scope = "I", Type = "L", ReferenceName = "Palantla Chinantec"}, + new + { + Id = "cpb", + Scope = "I", + Type = "L", + ReferenceName = "Ucayali-Yurúa Ashéninka" + }, + new {Id = "cpc", Scope = "I", Type = "L", ReferenceName = "Ajyíninka Apurucayali"}, + new {Id = "cpg", Scope = "I", Type = "E", ReferenceName = "Cappadocian Greek"}, + new {Id = "cpi", Scope = "I", Type = "L", ReferenceName = "Chinese Pidgin English"}, + new {Id = "cpn", Scope = "I", Type = "L", ReferenceName = "Cherepon"}, + new {Id = "cpo", Scope = "I", Type = "L", ReferenceName = "Kpeego"}, + new {Id = "cps", Scope = "I", Type = "L", ReferenceName = "Capiznon"}, + new {Id = "cpu", Scope = "I", Type = "L", ReferenceName = "Pichis Ashéninka"}, + new {Id = "cpx", Scope = "I", Type = "L", ReferenceName = "Pu-Xian Chinese"}, + new + { + Id = "cpy", + Scope = "I", + Type = "L", + ReferenceName = "South Ucayali Ashéninka" + }, + new + { + Id = "cqd", + Scope = "I", + Type = "L", + ReferenceName = "Chuanqiandian Cluster Miao" + }, new {Id = "cra", Scope = "I", Type = "L", ReferenceName = "Chara"}, + new {Id = "crb", Scope = "I", Type = "E", ReferenceName = "Island Carib"}, + new {Id = "crc", Scope = "I", Type = "L", ReferenceName = "Lonwolwol"}, + new {Id = "crd", Scope = "I", Type = "L", ReferenceName = "Coeur d'Alene"}, + new + { + Id = "cre", + Part2B = "cre", + Part2T = "cre", + Part1 = "cr", + Scope = "M", + Type = "L", + ReferenceName = "Cree" + }, new {Id = "crf", Scope = "I", Type = "E", ReferenceName = "Caramanta"}, + new {Id = "crg", Scope = "I", Type = "L", ReferenceName = "Michif"}, + new + { + Id = "crh", + Part2B = "crh", + Part2T = "crh", + Scope = "I", + Type = "L", + ReferenceName = "Crimean Tatar" + }, new {Id = "cri", Scope = "I", Type = "L", ReferenceName = "Sãotomense"}, + new {Id = "crj", Scope = "I", Type = "L", ReferenceName = "Southern East Cree"}, + new {Id = "crk", Scope = "I", Type = "L", ReferenceName = "Plains Cree"}, + new {Id = "crl", Scope = "I", Type = "L", ReferenceName = "Northern East Cree"}, + new {Id = "crm", Scope = "I", Type = "L", ReferenceName = "Moose Cree"}, + new {Id = "crn", Scope = "I", Type = "L", ReferenceName = "El Nayar Cora"}, + new {Id = "cro", Scope = "I", Type = "L", ReferenceName = "Crow"}, + new {Id = "crq", Scope = "I", Type = "L", ReferenceName = "Iyo'wujwa Chorote"}, + new {Id = "crr", Scope = "I", Type = "E", ReferenceName = "Carolina Algonquian"}, + new {Id = "crs", Scope = "I", Type = "L", ReferenceName = "Seselwa Creole French"}, + new {Id = "crt", Scope = "I", Type = "L", ReferenceName = "Iyojwa'ja Chorote"}, + new {Id = "crv", Scope = "I", Type = "L", ReferenceName = "Chaura"}, + new {Id = "crw", Scope = "I", Type = "L", ReferenceName = "Chrau"}, + new {Id = "crx", Scope = "I", Type = "L", ReferenceName = "Carrier"}, + new {Id = "cry", Scope = "I", Type = "L", ReferenceName = "Cori"}, + new {Id = "crz", Scope = "I", Type = "E", ReferenceName = "Cruzeño"}, + new {Id = "csa", Scope = "I", Type = "L", ReferenceName = "Chiltepec Chinantec"}, + new + { + Id = "csb", + Part2B = "csb", + Part2T = "csb", + Scope = "I", + Type = "L", + ReferenceName = "Kashubian" + }, new {Id = "csc", Scope = "I", Type = "L", ReferenceName = "Catalan Sign Language"}, + new + { + Id = "csd", + Scope = "I", + Type = "L", + ReferenceName = "Chiangmai Sign Language" + }, + new {Id = "cse", Scope = "I", Type = "L", ReferenceName = "Czech Sign Language"}, + new {Id = "csf", Scope = "I", Type = "L", ReferenceName = "Cuba Sign Language"}, + new {Id = "csg", Scope = "I", Type = "L", ReferenceName = "Chilean Sign Language"}, + new {Id = "csh", Scope = "I", Type = "L", ReferenceName = "Asho Chin"}, + new {Id = "csi", Scope = "I", Type = "E", ReferenceName = "Coast Miwok"}, + new {Id = "csj", Scope = "I", Type = "L", ReferenceName = "Songlai Chin"}, + new {Id = "csk", Scope = "I", Type = "L", ReferenceName = "Jola-Kasa"}, + new {Id = "csl", Scope = "I", Type = "L", ReferenceName = "Chinese Sign Language"}, + new {Id = "csm", Scope = "I", Type = "L", ReferenceName = "Central Sierra Miwok"}, + new + { + Id = "csn", + Scope = "I", + Type = "L", + ReferenceName = "Colombian Sign Language" + }, + new {Id = "cso", Scope = "I", Type = "L", ReferenceName = "Sochiapam Chinantec"}, + new {Id = "csq", Scope = "I", Type = "L", ReferenceName = "Croatia Sign Language"}, + new + { + Id = "csr", + Scope = "I", + Type = "L", + ReferenceName = "Costa Rican Sign Language" + }, + new {Id = "css", Scope = "I", Type = "E", ReferenceName = "Southern Ohlone"}, + new {Id = "cst", Scope = "I", Type = "L", ReferenceName = "Northern Ohlone"}, + new {Id = "csv", Scope = "I", Type = "L", ReferenceName = "Sumtu Chin"}, + new {Id = "csw", Scope = "I", Type = "L", ReferenceName = "Swampy Cree"}, + new {Id = "csy", Scope = "I", Type = "L", ReferenceName = "Siyin Chin"}, + new {Id = "csz", Scope = "I", Type = "L", ReferenceName = "Coos"}, + new {Id = "cta", Scope = "I", Type = "L", ReferenceName = "Tataltepec Chatino"}, + new {Id = "ctc", Scope = "I", Type = "E", ReferenceName = "Chetco"}, + new {Id = "ctd", Scope = "I", Type = "L", ReferenceName = "Tedim Chin"}, + new {Id = "cte", Scope = "I", Type = "L", ReferenceName = "Tepinapa Chinantec"}, + new {Id = "ctg", Scope = "I", Type = "L", ReferenceName = "Chittagonian"}, + new {Id = "cth", Scope = "I", Type = "L", ReferenceName = "Thaiphum Chin"}, + new + { + Id = "ctl", + Scope = "I", + Type = "L", + ReferenceName = "Tlacoatzintepec Chinantec" + }, + new {Id = "ctm", Scope = "I", Type = "E", ReferenceName = "Chitimacha"}, + new {Id = "ctn", Scope = "I", Type = "L", ReferenceName = "Chhintange"}, + new {Id = "cto", Scope = "I", Type = "L", ReferenceName = "Emberá-Catío"}, + new + { + Id = "ctp", + Scope = "I", + Type = "L", + ReferenceName = "Western Highland Chatino" + }, + new + { + Id = "cts", + Scope = "I", + Type = "L", + ReferenceName = "Northern Catanduanes Bikol" + }, new {Id = "ctt", Scope = "I", Type = "L", ReferenceName = "Wayanad Chetti"}, + new {Id = "ctu", Scope = "I", Type = "L", ReferenceName = "Chol"}, + new {Id = "ctz", Scope = "I", Type = "L", ReferenceName = "Zacatepec Chatino"}, + new {Id = "cua", Scope = "I", Type = "L", ReferenceName = "Cua"}, + new {Id = "cub", Scope = "I", Type = "L", ReferenceName = "Cubeo"}, + new {Id = "cuc", Scope = "I", Type = "L", ReferenceName = "Usila Chinantec"}, + new {Id = "cug", Scope = "I", Type = "L", ReferenceName = "Chungmboko"}, + new {Id = "cuh", Scope = "I", Type = "L", ReferenceName = "Chuka"}, + new {Id = "cui", Scope = "I", Type = "L", ReferenceName = "Cuiba"}, + new {Id = "cuj", Scope = "I", Type = "L", ReferenceName = "Mashco Piro"}, + new {Id = "cuk", Scope = "I", Type = "L", ReferenceName = "San Blas Kuna"}, + new {Id = "cul", Scope = "I", Type = "L", ReferenceName = "Culina"}, + new {Id = "cuo", Scope = "I", Type = "E", ReferenceName = "Cumanagoto"}, + new {Id = "cup", Scope = "I", Type = "E", ReferenceName = "Cupeño"}, + new {Id = "cuq", Scope = "I", Type = "L", ReferenceName = "Cun"}, + new {Id = "cur", Scope = "I", Type = "L", ReferenceName = "Chhulung"}, + new {Id = "cut", Scope = "I", Type = "L", ReferenceName = "Teutila Cuicatec"}, + new {Id = "cuu", Scope = "I", Type = "L", ReferenceName = "Tai Ya"}, + new {Id = "cuv", Scope = "I", Type = "L", ReferenceName = "Cuvok"}, + new {Id = "cuw", Scope = "I", Type = "L", ReferenceName = "Chukwa"}, + new {Id = "cux", Scope = "I", Type = "L", ReferenceName = "Tepeuxila Cuicatec"}, + new {Id = "cuy", Scope = "I", Type = "L", ReferenceName = "Cuitlatec"}, + new {Id = "cvg", Scope = "I", Type = "L", ReferenceName = "Chug"}, + new + { + Id = "cvn", + Scope = "I", + Type = "L", + ReferenceName = "Valle Nacional Chinantec" + }, + new {Id = "cwa", Scope = "I", Type = "L", ReferenceName = "Kabwa"}, + new {Id = "cwb", Scope = "I", Type = "L", ReferenceName = "Maindo"}, + new {Id = "cwd", Scope = "I", Type = "L", ReferenceName = "Woods Cree"}, + new {Id = "cwe", Scope = "I", Type = "L", ReferenceName = "Kwere"}, + new {Id = "cwg", Scope = "I", Type = "L", ReferenceName = "Chewong"}, + new {Id = "cwt", Scope = "I", Type = "L", ReferenceName = "Kuwaataay"}, + new {Id = "cya", Scope = "I", Type = "L", ReferenceName = "Nopala Chatino"}, + new {Id = "cyb", Scope = "I", Type = "E", ReferenceName = "Cayubaba"}, + new + { + Id = "cym", + Part2B = "wel", + Part2T = "cym", + Part1 = "cy", + Scope = "I", + Type = "L", + ReferenceName = "Welsh" + }, new {Id = "cyo", Scope = "I", Type = "L", ReferenceName = "Cuyonon"}, + new {Id = "czh", Scope = "I", Type = "L", ReferenceName = "Huizhou Chinese"}, + new {Id = "czk", Scope = "I", Type = "E", ReferenceName = "Knaanic"}, + new {Id = "czn", Scope = "I", Type = "L", ReferenceName = "Zenzontepec Chatino"}, + new {Id = "czo", Scope = "I", Type = "L", ReferenceName = "Min Zhong Chinese"}, + new {Id = "czt", Scope = "I", Type = "L", ReferenceName = "Zotung Chin"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/D.cs b/Cicm.Database/Seeders/Iso639Split/D.cs new file mode 100644 index 00000000..befc0671 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/D.cs @@ -0,0 +1,463 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class D + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "daa", Scope = "I", Type = "L", ReferenceName = "Dangaléat"}, + new {Id = "dac", Scope = "I", Type = "L", ReferenceName = "Dambi"}, + new {Id = "dad", Scope = "I", Type = "L", ReferenceName = "Marik"}, + new {Id = "dae", Scope = "I", Type = "L", ReferenceName = "Duupa"}, + new {Id = "dag", Scope = "I", Type = "L", ReferenceName = "Dagbani"}, + new {Id = "dah", Scope = "I", Type = "L", ReferenceName = "Gwahatike"}, + new {Id = "dai", Scope = "I", Type = "L", ReferenceName = "Day"}, + new {Id = "daj", Scope = "I", Type = "L", ReferenceName = "Dar Fur Daju"}, + new + { + Id = "dak", + Part2B = "dak", + Part2T = "dak", + Scope = "I", + Type = "L", + ReferenceName = "Dakota" + }, new {Id = "dal", Scope = "I", Type = "L", ReferenceName = "Dahalo"}, + new {Id = "dam", Scope = "I", Type = "L", ReferenceName = "Damakawa"}, + new + { + Id = "dan", + Part2B = "dan", + Part2T = "dan", + Part1 = "da", + Scope = "I", + Type = "L", + ReferenceName = "Danish" + }, new {Id = "dao", Scope = "I", Type = "L", ReferenceName = "Daai Chin"}, + new {Id = "daq", Scope = "I", Type = "L", ReferenceName = "Dandami Maria"}, + new + { + Id = "dar", + Part2B = "dar", + Part2T = "dar", + Scope = "I", + Type = "L", + ReferenceName = "Dargwa" + }, new {Id = "das", Scope = "I", Type = "L", ReferenceName = "Daho-Doo"}, + new {Id = "dau", Scope = "I", Type = "L", ReferenceName = "Dar Sila Daju"}, + new {Id = "dav", Scope = "I", Type = "L", ReferenceName = "Taita"}, + new {Id = "daw", Scope = "I", Type = "L", ReferenceName = "Davawenyo"}, + new {Id = "dax", Scope = "I", Type = "L", ReferenceName = "Dayi"}, + new {Id = "daz", Scope = "I", Type = "L", ReferenceName = "Dao"}, + new {Id = "dba", Scope = "I", Type = "L", ReferenceName = "Bangime"}, + new {Id = "dbb", Scope = "I", Type = "L", ReferenceName = "Deno"}, + new {Id = "dbd", Scope = "I", Type = "L", ReferenceName = "Dadiya"}, + new {Id = "dbe", Scope = "I", Type = "L", ReferenceName = "Dabe"}, + new {Id = "dbf", Scope = "I", Type = "L", ReferenceName = "Edopi"}, + new {Id = "dbg", Scope = "I", Type = "L", ReferenceName = "Dogul Dom Dogon"}, + new {Id = "dbi", Scope = "I", Type = "L", ReferenceName = "Doka"}, + new {Id = "dbj", Scope = "I", Type = "L", ReferenceName = "Ida'an"}, + new {Id = "dbl", Scope = "I", Type = "L", ReferenceName = "Dyirbal"}, + new {Id = "dbm", Scope = "I", Type = "L", ReferenceName = "Duguri"}, + new {Id = "dbn", Scope = "I", Type = "L", ReferenceName = "Duriankere"}, + new {Id = "dbo", Scope = "I", Type = "L", ReferenceName = "Dulbu"}, + new {Id = "dbp", Scope = "I", Type = "L", ReferenceName = "Duwai"}, + new {Id = "dbq", Scope = "I", Type = "L", ReferenceName = "Daba"}, + new {Id = "dbr", Scope = "I", Type = "L", ReferenceName = "Dabarre"}, + new {Id = "dbt", Scope = "I", Type = "L", ReferenceName = "Ben Tey Dogon"}, + new {Id = "dbu", Scope = "I", Type = "L", ReferenceName = "Bondum Dom Dogon"}, + new {Id = "dbv", Scope = "I", Type = "L", ReferenceName = "Dungu"}, + new {Id = "dbw", Scope = "I", Type = "L", ReferenceName = "Bankan Tey Dogon"}, + new {Id = "dby", Scope = "I", Type = "L", ReferenceName = "Dibiyaso"}, + new {Id = "dcc", Scope = "I", Type = "L", ReferenceName = "Deccan"}, + new {Id = "dcr", Scope = "I", Type = "E", ReferenceName = "Negerhollands"}, + new {Id = "dda", Scope = "I", Type = "E", ReferenceName = "Dadi Dadi"}, + new {Id = "ddd", Scope = "I", Type = "L", ReferenceName = "Dongotono"}, + new {Id = "dde", Scope = "I", Type = "L", ReferenceName = "Doondo"}, + new {Id = "ddg", Scope = "I", Type = "L", ReferenceName = "Fataluku"}, + new {Id = "ddi", Scope = "I", Type = "L", ReferenceName = "West Goodenough"}, + new {Id = "ddj", Scope = "I", Type = "L", ReferenceName = "Jaru"}, + new {Id = "ddn", Scope = "I", Type = "L", ReferenceName = "Dendi (Benin)"}, + new {Id = "ddo", Scope = "I", Type = "L", ReferenceName = "Dido"}, + new {Id = "ddr", Scope = "I", Type = "E", ReferenceName = "Dhudhuroa"}, + new {Id = "dds", Scope = "I", Type = "L", ReferenceName = "Donno So Dogon"}, + new {Id = "ddw", Scope = "I", Type = "L", ReferenceName = "Dawera-Daweloor"}, + new {Id = "dec", Scope = "I", Type = "L", ReferenceName = "Dagik"}, + new {Id = "ded", Scope = "I", Type = "L", ReferenceName = "Dedua"}, + new {Id = "dee", Scope = "I", Type = "L", ReferenceName = "Dewoin"}, + new {Id = "def", Scope = "I", Type = "L", ReferenceName = "Dezfuli"}, + new {Id = "deg", Scope = "I", Type = "L", ReferenceName = "Degema"}, + new {Id = "deh", Scope = "I", Type = "L", ReferenceName = "Dehwari"}, + new {Id = "dei", Scope = "I", Type = "L", ReferenceName = "Demisa"}, + new {Id = "dek", Scope = "I", Type = "L", ReferenceName = "Dek"}, + new + { + Id = "del", + Part2B = "del", + Part2T = "del", + Scope = "M", + Type = "L", + ReferenceName = "Delaware" + }, new {Id = "dem", Scope = "I", Type = "L", ReferenceName = "Dem"}, + new + { + Id = "den", + Part2B = "den", + Part2T = "den", + Scope = "M", + Type = "L", + ReferenceName = "Slave (Athapascan)" + }, new {Id = "dep", Scope = "I", Type = "E", ReferenceName = "Pidgin Delaware"}, + new + { + Id = "deq", + Scope = "I", + Type = "L", + ReferenceName = "Dendi (Central African Republic)" + }, new {Id = "der", Scope = "I", Type = "L", ReferenceName = "Deori"}, + new {Id = "des", Scope = "I", Type = "L", ReferenceName = "Desano"}, + new + { + Id = "deu", + Part2B = "ger", + Part2T = "deu", + Part1 = "de", + Scope = "I", + Type = "L", + ReferenceName = "German" + }, new {Id = "dev", Scope = "I", Type = "L", ReferenceName = "Domung"}, + new {Id = "dez", Scope = "I", Type = "L", ReferenceName = "Dengese"}, + new {Id = "dga", Scope = "I", Type = "L", ReferenceName = "Southern Dagaare"}, + new {Id = "dgb", Scope = "I", Type = "L", ReferenceName = "Bunoge Dogon"}, + new {Id = "dgc", Scope = "I", Type = "L", ReferenceName = "Casiguran Dumagat Agta"}, + new {Id = "dgd", Scope = "I", Type = "L", ReferenceName = "Dagaari Dioula"}, + new {Id = "dge", Scope = "I", Type = "L", ReferenceName = "Degenan"}, + new {Id = "dgg", Scope = "I", Type = "L", ReferenceName = "Doga"}, + new {Id = "dgh", Scope = "I", Type = "L", ReferenceName = "Dghwede"}, + new {Id = "dgi", Scope = "I", Type = "L", ReferenceName = "Northern Dagara"}, + new {Id = "dgk", Scope = "I", Type = "L", ReferenceName = "Dagba"}, + new {Id = "dgl", Scope = "I", Type = "L", ReferenceName = "Andaandi"}, + new {Id = "dgn", Scope = "I", Type = "E", ReferenceName = "Dagoman"}, + new + { + Id = "dgo", + Scope = "I", + Type = "L", + ReferenceName = "Dogri (individual language)" + }, new + { + Id = "dgr", + Part2B = "dgr", + Part2T = "dgr", + Scope = "I", + Type = "L", + ReferenceName = "Dogrib" + }, new {Id = "dgs", Scope = "I", Type = "L", ReferenceName = "Dogoso"}, + new {Id = "dgt", Scope = "I", Type = "E", ReferenceName = "Ndra'ngith"}, + new {Id = "dgu", Scope = "I", Type = "L", ReferenceName = "Degaru"}, + new {Id = "dgw", Scope = "I", Type = "E", ReferenceName = "Daungwurrung"}, + new {Id = "dgx", Scope = "I", Type = "L", ReferenceName = "Doghoro"}, + new {Id = "dgz", Scope = "I", Type = "L", ReferenceName = "Daga"}, + new {Id = "dhd", Scope = "I", Type = "L", ReferenceName = "Dhundari"}, + new {Id = "dhg", Scope = "I", Type = "L", ReferenceName = "Dhangu-Djangu"}, + new {Id = "dhi", Scope = "I", Type = "L", ReferenceName = "Dhimal"}, + new {Id = "dhl", Scope = "I", Type = "L", ReferenceName = "Dhalandji"}, + new {Id = "dhm", Scope = "I", Type = "L", ReferenceName = "Zemba"}, + new {Id = "dhn", Scope = "I", Type = "L", ReferenceName = "Dhanki"}, + new {Id = "dho", Scope = "I", Type = "L", ReferenceName = "Dhodia"}, + new {Id = "dhr", Scope = "I", Type = "L", ReferenceName = "Dhargari"}, + new {Id = "dhs", Scope = "I", Type = "L", ReferenceName = "Dhaiso"}, + new {Id = "dhu", Scope = "I", Type = "E", ReferenceName = "Dhurga"}, + new {Id = "dhv", Scope = "I", Type = "L", ReferenceName = "Dehu"}, + new {Id = "dhw", Scope = "I", Type = "L", ReferenceName = "Dhanwar (Nepal)"}, + new {Id = "dhx", Scope = "I", Type = "L", ReferenceName = "Dhungaloo"}, + new {Id = "dia", Scope = "I", Type = "L", ReferenceName = "Dia"}, + new {Id = "dib", Scope = "I", Type = "L", ReferenceName = "South Central Dinka"}, + new {Id = "dic", Scope = "I", Type = "L", ReferenceName = "Lakota Dida"}, + new {Id = "did", Scope = "I", Type = "L", ReferenceName = "Didinga"}, + new {Id = "dif", Scope = "I", Type = "E", ReferenceName = "Dieri"}, + new {Id = "dig", Scope = "I", Type = "L", ReferenceName = "Digo"}, + new {Id = "dih", Scope = "I", Type = "L", ReferenceName = "Kumiai"}, + new {Id = "dii", Scope = "I", Type = "L", ReferenceName = "Dimbong"}, + new {Id = "dij", Scope = "I", Type = "L", ReferenceName = "Dai"}, + new {Id = "dik", Scope = "I", Type = "L", ReferenceName = "Southwestern Dinka"}, + new {Id = "dil", Scope = "I", Type = "L", ReferenceName = "Dilling"}, + new {Id = "dim", Scope = "I", Type = "L", ReferenceName = "Dime"}, + new + { + Id = "din", + Part2B = "din", + Part2T = "din", + Scope = "M", + Type = "L", + ReferenceName = "Dinka" + }, new {Id = "dio", Scope = "I", Type = "L", ReferenceName = "Dibo"}, + new {Id = "dip", Scope = "I", Type = "L", ReferenceName = "Northeastern Dinka"}, + new + { + Id = "diq", + Scope = "I", + Type = "L", + ReferenceName = "Dimli (individual language)" + }, new {Id = "dir", Scope = "I", Type = "L", ReferenceName = "Dirim"}, + new {Id = "dis", Scope = "I", Type = "L", ReferenceName = "Dimasa"}, + new {Id = "diu", Scope = "I", Type = "L", ReferenceName = "Diriku"}, + new + { + Id = "div", + Part2B = "div", + Part2T = "div", + Part1 = "dv", + Scope = "I", + Type = "L", + ReferenceName = "Dhivehi" + }, new {Id = "diw", Scope = "I", Type = "L", ReferenceName = "Northwestern Dinka"}, + new {Id = "dix", Scope = "I", Type = "L", ReferenceName = "Dixon Reef"}, + new {Id = "diy", Scope = "I", Type = "L", ReferenceName = "Diuwe"}, + new {Id = "diz", Scope = "I", Type = "L", ReferenceName = "Ding"}, + new {Id = "dja", Scope = "I", Type = "E", ReferenceName = "Djadjawurrung"}, + new {Id = "djb", Scope = "I", Type = "L", ReferenceName = "Djinba"}, + new {Id = "djc", Scope = "I", Type = "L", ReferenceName = "Dar Daju Daju"}, + new {Id = "djd", Scope = "I", Type = "L", ReferenceName = "Djamindjung"}, + new {Id = "dje", Scope = "I", Type = "L", ReferenceName = "Zarma"}, + new {Id = "djf", Scope = "I", Type = "E", ReferenceName = "Djangun"}, + new {Id = "dji", Scope = "I", Type = "L", ReferenceName = "Djinang"}, + new {Id = "djj", Scope = "I", Type = "L", ReferenceName = "Djeebbana"}, + new {Id = "djk", Scope = "I", Type = "L", ReferenceName = "Eastern Maroon Creole"}, + new {Id = "djm", Scope = "I", Type = "L", ReferenceName = "Jamsay Dogon"}, + new {Id = "djn", Scope = "I", Type = "L", ReferenceName = "Jawoyn"}, + new {Id = "djo", Scope = "I", Type = "L", ReferenceName = "Jangkang"}, + new {Id = "djr", Scope = "I", Type = "L", ReferenceName = "Djambarrpuyngu"}, + new {Id = "dju", Scope = "I", Type = "L", ReferenceName = "Kapriman"}, + new {Id = "djw", Scope = "I", Type = "E", ReferenceName = "Djawi"}, + new {Id = "dka", Scope = "I", Type = "L", ReferenceName = "Dakpakha"}, + new {Id = "dkk", Scope = "I", Type = "L", ReferenceName = "Dakka"}, + new {Id = "dkr", Scope = "I", Type = "L", ReferenceName = "Kuijau"}, + new {Id = "dks", Scope = "I", Type = "L", ReferenceName = "Southeastern Dinka"}, + new {Id = "dkx", Scope = "I", Type = "L", ReferenceName = "Mazagway"}, + new {Id = "dlg", Scope = "I", Type = "L", ReferenceName = "Dolgan"}, + new {Id = "dlk", Scope = "I", Type = "L", ReferenceName = "Dahalik"}, + new {Id = "dlm", Scope = "I", Type = "E", ReferenceName = "Dalmatian"}, + new {Id = "dln", Scope = "I", Type = "L", ReferenceName = "Darlong"}, + new {Id = "dma", Scope = "I", Type = "L", ReferenceName = "Duma"}, + new {Id = "dmb", Scope = "I", Type = "L", ReferenceName = "Mombo Dogon"}, + new {Id = "dmc", Scope = "I", Type = "L", ReferenceName = "Gavak"}, + new {Id = "dmd", Scope = "I", Type = "E", ReferenceName = "Madhi Madhi"}, + new {Id = "dme", Scope = "I", Type = "L", ReferenceName = "Dugwor"}, + new {Id = "dmg", Scope = "I", Type = "L", ReferenceName = "Upper Kinabatangan"}, + new {Id = "dmk", Scope = "I", Type = "L", ReferenceName = "Domaaki"}, + new {Id = "dml", Scope = "I", Type = "L", ReferenceName = "Dameli"}, + new {Id = "dmm", Scope = "I", Type = "L", ReferenceName = "Dama"}, + new {Id = "dmo", Scope = "I", Type = "L", ReferenceName = "Kemedzung"}, + new {Id = "dmr", Scope = "I", Type = "L", ReferenceName = "East Damar"}, + new {Id = "dms", Scope = "I", Type = "L", ReferenceName = "Dampelas"}, + new {Id = "dmu", Scope = "I", Type = "L", ReferenceName = "Dubu"}, + new {Id = "dmv", Scope = "I", Type = "L", ReferenceName = "Dumpas"}, + new {Id = "dmw", Scope = "I", Type = "L", ReferenceName = "Mudburra"}, + new {Id = "dmx", Scope = "I", Type = "L", ReferenceName = "Dema"}, + new {Id = "dmy", Scope = "I", Type = "L", ReferenceName = "Demta"}, + new + { + Id = "dna", + Scope = "I", + Type = "L", + ReferenceName = "Upper Grand Valley Dani" + }, + new {Id = "dnd", Scope = "I", Type = "L", ReferenceName = "Daonda"}, + new {Id = "dne", Scope = "I", Type = "L", ReferenceName = "Ndendeule"}, + new {Id = "dng", Scope = "I", Type = "L", ReferenceName = "Dungan"}, + new + { + Id = "dni", + Scope = "I", + Type = "L", + ReferenceName = "Lower Grand Valley Dani" + }, + new {Id = "dnj", Scope = "I", Type = "L", ReferenceName = "Dan"}, + new {Id = "dnk", Scope = "I", Type = "L", ReferenceName = "Dengka"}, + new {Id = "dnn", Scope = "I", Type = "L", ReferenceName = "Dzùùngoo"}, + new {Id = "dno", Scope = "I", Type = "L", ReferenceName = "Ndrulo"}, + new {Id = "dnr", Scope = "I", Type = "L", ReferenceName = "Danaru"}, + new {Id = "dnt", Scope = "I", Type = "L", ReferenceName = "Mid Grand Valley Dani"}, + new {Id = "dnu", Scope = "I", Type = "L", ReferenceName = "Danau"}, + new {Id = "dnv", Scope = "I", Type = "L", ReferenceName = "Danu"}, + new {Id = "dnw", Scope = "I", Type = "L", ReferenceName = "Western Dani"}, + new {Id = "dny", Scope = "I", Type = "L", ReferenceName = "Dení"}, + new {Id = "doa", Scope = "I", Type = "L", ReferenceName = "Dom"}, + new {Id = "dob", Scope = "I", Type = "L", ReferenceName = "Dobu"}, + new {Id = "doc", Scope = "I", Type = "L", ReferenceName = "Northern Dong"}, + new {Id = "doe", Scope = "I", Type = "L", ReferenceName = "Doe"}, + new {Id = "dof", Scope = "I", Type = "L", ReferenceName = "Domu"}, + new {Id = "doh", Scope = "I", Type = "L", ReferenceName = "Dong"}, + new + { + Id = "doi", + Part2B = "doi", + Part2T = "doi", + Scope = "M", + Type = "L", + ReferenceName = "Dogri (macrolanguage)" + }, new {Id = "dok", Scope = "I", Type = "L", ReferenceName = "Dondo"}, + new {Id = "dol", Scope = "I", Type = "L", ReferenceName = "Doso"}, + new + { + Id = "don", + Scope = "I", + Type = "L", + ReferenceName = "Toura (Papua New Guinea)" + }, + new {Id = "doo", Scope = "I", Type = "L", ReferenceName = "Dongo"}, + new {Id = "dop", Scope = "I", Type = "L", ReferenceName = "Lukpa"}, + new + { + Id = "doq", + Scope = "I", + Type = "L", + ReferenceName = "Dominican Sign Language" + }, + new {Id = "dor", Scope = "I", Type = "L", ReferenceName = "Dori'o"}, + new {Id = "dos", Scope = "I", Type = "L", ReferenceName = "Dogosé"}, + new {Id = "dot", Scope = "I", Type = "L", ReferenceName = "Dass"}, + new {Id = "dov", Scope = "I", Type = "L", ReferenceName = "Dombe"}, + new {Id = "dow", Scope = "I", Type = "L", ReferenceName = "Doyayo"}, + new {Id = "dox", Scope = "I", Type = "L", ReferenceName = "Bussa"}, + new {Id = "doy", Scope = "I", Type = "L", ReferenceName = "Dompo"}, + new {Id = "doz", Scope = "I", Type = "L", ReferenceName = "Dorze"}, + new {Id = "dpp", Scope = "I", Type = "L", ReferenceName = "Papar"}, + new {Id = "drb", Scope = "I", Type = "L", ReferenceName = "Dair"}, + new {Id = "drc", Scope = "I", Type = "L", ReferenceName = "Minderico"}, + new {Id = "drd", Scope = "I", Type = "L", ReferenceName = "Darmiya"}, + new {Id = "dre", Scope = "I", Type = "L", ReferenceName = "Dolpo"}, + new {Id = "drg", Scope = "I", Type = "L", ReferenceName = "Rungus"}, + new {Id = "dri", Scope = "I", Type = "L", ReferenceName = "C'Lela"}, + new {Id = "drl", Scope = "I", Type = "L", ReferenceName = "Paakantyi"}, + new {Id = "drn", Scope = "I", Type = "L", ReferenceName = "West Damar"}, + new {Id = "dro", Scope = "I", Type = "L", ReferenceName = "Daro-Matu Melanau"}, + new {Id = "drq", Scope = "I", Type = "E", ReferenceName = "Dura"}, + new {Id = "drr", Scope = "I", Type = "E", ReferenceName = "Dororo"}, + new {Id = "drs", Scope = "I", Type = "L", ReferenceName = "Gedeo"}, + new {Id = "drt", Scope = "I", Type = "L", ReferenceName = "Drents"}, + new {Id = "dru", Scope = "I", Type = "L", ReferenceName = "Rukai"}, + new {Id = "dry", Scope = "I", Type = "L", ReferenceName = "Darai"}, + new + { + Id = "dsb", + Part2B = "dsb", + Part2T = "dsb", + Scope = "I", + Type = "L", + ReferenceName = "Lower Sorbian" + }, new {Id = "dse", Scope = "I", Type = "L", ReferenceName = "Dutch Sign Language"}, + new {Id = "dsh", Scope = "I", Type = "L", ReferenceName = "Daasanach"}, + new {Id = "dsi", Scope = "I", Type = "L", ReferenceName = "Disa"}, + new {Id = "dsl", Scope = "I", Type = "L", ReferenceName = "Danish Sign Language"}, + new {Id = "dsn", Scope = "I", Type = "E", ReferenceName = "Dusner"}, + new {Id = "dso", Scope = "I", Type = "L", ReferenceName = "Desiya"}, + new {Id = "dsq", Scope = "I", Type = "L", ReferenceName = "Tadaksahak"}, + new {Id = "dta", Scope = "I", Type = "L", ReferenceName = "Daur"}, + new + { + Id = "dtb", + Scope = "I", + Type = "L", + ReferenceName = "Labuk-Kinabatangan Kadazan" + }, new {Id = "dtd", Scope = "I", Type = "L", ReferenceName = "Ditidaht"}, + new {Id = "dth", Scope = "I", Type = "E", ReferenceName = "Adithinngithigh"}, + new {Id = "dti", Scope = "I", Type = "L", ReferenceName = "Ana Tinga Dogon"}, + new {Id = "dtk", Scope = "I", Type = "L", ReferenceName = "Tene Kan Dogon"}, + new {Id = "dtm", Scope = "I", Type = "L", ReferenceName = "Tomo Kan Dogon"}, + new {Id = "dtn", Scope = "I", Type = "L", ReferenceName = "Daatsʼíin"}, + new {Id = "dto", Scope = "I", Type = "L", ReferenceName = "Tommo So Dogon"}, + new {Id = "dtp", Scope = "I", Type = "L", ReferenceName = "Kadazan Dusun"}, + new {Id = "dtr", Scope = "I", Type = "L", ReferenceName = "Lotud"}, + new {Id = "dts", Scope = "I", Type = "L", ReferenceName = "Toro So Dogon"}, + new {Id = "dtt", Scope = "I", Type = "L", ReferenceName = "Toro Tegu Dogon"}, + new {Id = "dtu", Scope = "I", Type = "L", ReferenceName = "Tebul Ure Dogon"}, + new {Id = "dty", Scope = "I", Type = "L", ReferenceName = "Dotyali"}, + new + { + Id = "dua", + Part2B = "dua", + Part2T = "dua", + Scope = "I", + Type = "L", + ReferenceName = "Duala" + }, new {Id = "dub", Scope = "I", Type = "L", ReferenceName = "Dubli"}, + new {Id = "duc", Scope = "I", Type = "L", ReferenceName = "Duna"}, + new {Id = "due", Scope = "I", Type = "L", ReferenceName = "Umiray Dumaget Agta"}, + new {Id = "duf", Scope = "I", Type = "L", ReferenceName = "Dumbea"}, + new {Id = "dug", Scope = "I", Type = "L", ReferenceName = "Duruma"}, + new {Id = "duh", Scope = "I", Type = "L", ReferenceName = "Dungra Bhil"}, + new {Id = "dui", Scope = "I", Type = "L", ReferenceName = "Dumun"}, + new {Id = "duk", Scope = "I", Type = "L", ReferenceName = "Uyajitaya"}, + new {Id = "dul", Scope = "I", Type = "L", ReferenceName = "Alabat Island Agta"}, + new + { + Id = "dum", + Part2B = "dum", + Part2T = "dum", + Scope = "I", + Type = "H", + ReferenceName = "Middle Dutch (ca. 1050-1350)" + }, new {Id = "dun", Scope = "I", Type = "L", ReferenceName = "Dusun Deyah"}, + new {Id = "duo", Scope = "I", Type = "L", ReferenceName = "Dupaninan Agta"}, + new {Id = "dup", Scope = "I", Type = "L", ReferenceName = "Duano"}, + new {Id = "duq", Scope = "I", Type = "L", ReferenceName = "Dusun Malang"}, + new {Id = "dur", Scope = "I", Type = "L", ReferenceName = "Dii"}, + new {Id = "dus", Scope = "I", Type = "L", ReferenceName = "Dumi"}, + new {Id = "duu", Scope = "I", Type = "L", ReferenceName = "Drung"}, + new {Id = "duv", Scope = "I", Type = "L", ReferenceName = "Duvle"}, + new {Id = "duw", Scope = "I", Type = "L", ReferenceName = "Dusun Witu"}, + new {Id = "dux", Scope = "I", Type = "L", ReferenceName = "Duungooma"}, + new {Id = "duy", Scope = "I", Type = "E", ReferenceName = "Dicamay Agta"}, + new {Id = "duz", Scope = "I", Type = "E", ReferenceName = "Duli-Gey"}, + new {Id = "dva", Scope = "I", Type = "L", ReferenceName = "Duau"}, + new {Id = "dwa", Scope = "I", Type = "L", ReferenceName = "Diri"}, + new {Id = "dwr", Scope = "I", Type = "L", ReferenceName = "Dawro"}, + new + { + Id = "dws", + Scope = "I", + Type = "C", + ReferenceName = "Dutton World Speedwords" + }, + new {Id = "dwu", Scope = "I", Type = "L", ReferenceName = "Dhuwal"}, + new {Id = "dww", Scope = "I", Type = "L", ReferenceName = "Dawawa"}, + new {Id = "dwy", Scope = "I", Type = "L", ReferenceName = "Dhuwaya"}, + new {Id = "dwz", Scope = "I", Type = "L", ReferenceName = "Dewas Rai"}, + new {Id = "dya", Scope = "I", Type = "L", ReferenceName = "Dyan"}, + new {Id = "dyb", Scope = "I", Type = "E", ReferenceName = "Dyaberdyaber"}, + new {Id = "dyd", Scope = "I", Type = "E", ReferenceName = "Dyugun"}, + new {Id = "dyg", Scope = "I", Type = "E", ReferenceName = "Villa Viciosa Agta"}, + new {Id = "dyi", Scope = "I", Type = "L", ReferenceName = "Djimini Senoufo"}, + new {Id = "dym", Scope = "I", Type = "L", ReferenceName = "Yanda Dom Dogon"}, + new {Id = "dyn", Scope = "I", Type = "L", ReferenceName = "Dyangadi"}, + new {Id = "dyo", Scope = "I", Type = "L", ReferenceName = "Jola-Fonyi"}, + new + { + Id = "dyu", + Part2B = "dyu", + Part2T = "dyu", + Scope = "I", + Type = "L", + ReferenceName = "Dyula" + }, new {Id = "dyy", Scope = "I", Type = "L", ReferenceName = "Djabugay"}, + new {Id = "dza", Scope = "I", Type = "L", ReferenceName = "Tunzu"}, + new {Id = "dze", Scope = "I", Type = "E", ReferenceName = "Djiwarli"}, + new {Id = "dzg", Scope = "I", Type = "L", ReferenceName = "Dazaga"}, + new {Id = "dzl", Scope = "I", Type = "L", ReferenceName = "Dzalakha"}, + new {Id = "dzn", Scope = "I", Type = "L", ReferenceName = "Dzando"}, + new + { + Id = "dzo", + Part2B = "dzo", + Part2T = "dzo", + Part1 = "dz", + Scope = "I", + Type = "L", + ReferenceName = "Dzongkha" + }); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/E.cs b/Cicm.Database/Seeders/Iso639Split/E.cs new file mode 100644 index 00000000..ccb46794 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/E.cs @@ -0,0 +1,249 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class E + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "eaa", Scope = "I", Type = "E", ReferenceName = "Karenggapa"}, + new {Id = "ebg", Scope = "I", Type = "L", ReferenceName = "Ebughu"}, + new {Id = "ebk", Scope = "I", Type = "L", ReferenceName = "Eastern Bontok"}, + new {Id = "ebo", Scope = "I", Type = "L", ReferenceName = "Teke-Ebo"}, + new {Id = "ebr", Scope = "I", Type = "L", ReferenceName = "Ebrié"}, + new {Id = "ebu", Scope = "I", Type = "L", ReferenceName = "Embu"}, + new {Id = "ecr", Scope = "I", Type = "A", ReferenceName = "Eteocretan"}, + new {Id = "ecs", Scope = "I", Type = "L", ReferenceName = "Ecuadorian Sign Language"}, + new {Id = "ecy", Scope = "I", Type = "A", ReferenceName = "Eteocypriot"}, + new {Id = "eee", Scope = "I", Type = "L", ReferenceName = "E"}, + new {Id = "efa", Scope = "I", Type = "L", ReferenceName = "Efai"}, + new {Id = "efe", Scope = "I", Type = "L", ReferenceName = "Efe"}, + new + { + Id = "efi", + Part2B = "efi", + Part2T = "efi", + Scope = "I", + Type = "L", + ReferenceName = "Efik" + }, new {Id = "ega", Scope = "I", Type = "L", ReferenceName = "Ega"}, + new {Id = "egl", Scope = "I", Type = "L", ReferenceName = "Emilian"}, + new {Id = "ego", Scope = "I", Type = "L", ReferenceName = "Eggon"}, + new + { + Id = "egy", + Part2B = "egy", + Part2T = "egy", + Scope = "I", + Type = "A", + ReferenceName = "Egyptian (Ancient)" + }, new {Id = "ehu", Scope = "I", Type = "L", ReferenceName = "Ehueun"}, + new {Id = "eip", Scope = "I", Type = "L", ReferenceName = "Eipomek"}, + new {Id = "eit", Scope = "I", Type = "L", ReferenceName = "Eitiep"}, + new {Id = "eiv", Scope = "I", Type = "L", ReferenceName = "Askopan"}, + new {Id = "eja", Scope = "I", Type = "L", ReferenceName = "Ejamat"}, + new + { + Id = "eka", + Part2B = "eka", + Part2T = "eka", + Scope = "I", + Type = "L", + ReferenceName = "Ekajuk" + }, new {Id = "ekc", Scope = "I", Type = "E", ReferenceName = "Eastern Karnic"}, + new {Id = "eke", Scope = "I", Type = "L", ReferenceName = "Ekit"}, + new {Id = "ekg", Scope = "I", Type = "L", ReferenceName = "Ekari"}, + new {Id = "eki", Scope = "I", Type = "L", ReferenceName = "Eki"}, + new {Id = "ekk", Scope = "I", Type = "L", ReferenceName = "Standard Estonian"}, + new {Id = "ekl", Scope = "I", Type = "L", ReferenceName = "Kol (Bangladesh)"}, + new {Id = "ekm", Scope = "I", Type = "L", ReferenceName = "Elip"}, + new {Id = "eko", Scope = "I", Type = "L", ReferenceName = "Koti"}, + new {Id = "ekp", Scope = "I", Type = "L", ReferenceName = "Ekpeye"}, + new {Id = "ekr", Scope = "I", Type = "L", ReferenceName = "Yace"}, + new {Id = "eky", Scope = "I", Type = "L", ReferenceName = "Eastern Kayah"}, + new {Id = "ele", Scope = "I", Type = "L", ReferenceName = "Elepi"}, + new {Id = "elh", Scope = "I", Type = "L", ReferenceName = "El Hugeirat"}, + new {Id = "eli", Scope = "I", Type = "E", ReferenceName = "Nding"}, + new {Id = "elk", Scope = "I", Type = "L", ReferenceName = "Elkei"}, + new + { + Id = "ell", + Part2B = "gre", + Part2T = "ell", + Part1 = "el", + Scope = "I", + Type = "L", + ReferenceName = "Modern Greek (1453-)" + }, new {Id = "elm", Scope = "I", Type = "L", ReferenceName = "Eleme"}, + new {Id = "elo", Scope = "I", Type = "L", ReferenceName = "El Molo"}, + new {Id = "elu", Scope = "I", Type = "L", ReferenceName = "Elu"}, + new + { + Id = "elx", + Part2B = "elx", + Part2T = "elx", + Scope = "I", + Type = "A", + ReferenceName = "Elamite" + }, new {Id = "ema", Scope = "I", Type = "L", ReferenceName = "Emai-Iuleha-Ora"}, + new {Id = "emb", Scope = "I", Type = "L", ReferenceName = "Embaloh"}, + new {Id = "eme", Scope = "I", Type = "L", ReferenceName = "Emerillon"}, + new {Id = "emg", Scope = "I", Type = "L", ReferenceName = "Eastern Meohang"}, + new {Id = "emi", Scope = "I", Type = "L", ReferenceName = "Mussau-Emira"}, + new {Id = "emk", Scope = "I", Type = "L", ReferenceName = "Eastern Maninkakan"}, + new {Id = "emm", Scope = "I", Type = "E", ReferenceName = "Mamulique"}, + new {Id = "emn", Scope = "I", Type = "L", ReferenceName = "Eman"}, + new {Id = "emp", Scope = "I", Type = "L", ReferenceName = "Northern Emberá"}, + new {Id = "ems", Scope = "I", Type = "L", ReferenceName = "Pacific Gulf Yupik"}, + new {Id = "emu", Scope = "I", Type = "L", ReferenceName = "Eastern Muria"}, + new {Id = "emw", Scope = "I", Type = "L", ReferenceName = "Emplawas"}, + new {Id = "emx", Scope = "I", Type = "L", ReferenceName = "Erromintxela"}, + new {Id = "emy", Scope = "I", Type = "A", ReferenceName = "Epigraphic Mayan"}, + new {Id = "ena", Scope = "I", Type = "L", ReferenceName = "Apali"}, + new {Id = "enb", Scope = "I", Type = "L", ReferenceName = "Markweeta"}, + new {Id = "enc", Scope = "I", Type = "L", ReferenceName = "En"}, + new {Id = "end", Scope = "I", Type = "L", ReferenceName = "Ende"}, + new {Id = "enf", Scope = "I", Type = "L", ReferenceName = "Forest Enets"}, + new + { + Id = "eng", + Part2B = "eng", + Part2T = "eng", + Part1 = "en", + Scope = "I", + Type = "L", + ReferenceName = "English" + }, new {Id = "enh", Scope = "I", Type = "L", ReferenceName = "Tundra Enets"}, + new {Id = "enl", Scope = "I", Type = "L", ReferenceName = "Enlhet"}, + new + { + Id = "enm", + Part2B = "enm", + Part2T = "enm", + Scope = "I", + Type = "H", + ReferenceName = "Middle English (1100-1500)" + }, new {Id = "enn", Scope = "I", Type = "L", ReferenceName = "Engenni"}, + new {Id = "eno", Scope = "I", Type = "L", ReferenceName = "Enggano"}, + new {Id = "enq", Scope = "I", Type = "L", ReferenceName = "Enga"}, + new {Id = "enr", Scope = "I", Type = "L", ReferenceName = "Emumu"}, + new {Id = "enu", Scope = "I", Type = "L", ReferenceName = "Enu"}, + new {Id = "env", Scope = "I", Type = "L", ReferenceName = "Enwan (Edu State)"}, + new + { + Id = "enw", + Scope = "I", + Type = "L", + ReferenceName = "Enwan (Akwa Ibom State)" + }, + new {Id = "enx", Scope = "I", Type = "L", ReferenceName = "Enxet"}, + new {Id = "eot", Scope = "I", Type = "L", ReferenceName = "Beti (Côte d'Ivoire)"}, + new {Id = "epi", Scope = "I", Type = "L", ReferenceName = "Epie"}, + new + { + Id = "epo", + Part2B = "epo", + Part2T = "epo", + Part1 = "eo", + Scope = "I", + Type = "C", + ReferenceName = "Esperanto" + }, new {Id = "era", Scope = "I", Type = "L", ReferenceName = "Eravallan"}, + new {Id = "erg", Scope = "I", Type = "L", ReferenceName = "Sie"}, + new {Id = "erh", Scope = "I", Type = "L", ReferenceName = "Eruwa"}, + new {Id = "eri", Scope = "I", Type = "L", ReferenceName = "Ogea"}, + new {Id = "erk", Scope = "I", Type = "L", ReferenceName = "South Efate"}, + new {Id = "ero", Scope = "I", Type = "L", ReferenceName = "Horpa"}, + new {Id = "err", Scope = "I", Type = "E", ReferenceName = "Erre"}, + new {Id = "ers", Scope = "I", Type = "L", ReferenceName = "Ersu"}, + new {Id = "ert", Scope = "I", Type = "L", ReferenceName = "Eritai"}, + new {Id = "erw", Scope = "I", Type = "L", ReferenceName = "Erokwanas"}, + new {Id = "ese", Scope = "I", Type = "L", ReferenceName = "Ese Ejja"}, + new {Id = "esg", Scope = "I", Type = "L", ReferenceName = "Aheri Gondi"}, + new {Id = "esh", Scope = "I", Type = "L", ReferenceName = "Eshtehardi"}, + new + { + Id = "esi", + Scope = "I", + Type = "L", + ReferenceName = "North Alaskan Inupiatun" + }, + new + { + Id = "esk", + Scope = "I", + Type = "L", + ReferenceName = "Northwest Alaska Inupiatun" + }, + new {Id = "esl", Scope = "I", Type = "L", ReferenceName = "Egypt Sign Language"}, + new {Id = "esm", Scope = "I", Type = "E", ReferenceName = "Esuma"}, + new {Id = "esn", Scope = "I", Type = "L", ReferenceName = "Salvadoran Sign Language"}, + new {Id = "eso", Scope = "I", Type = "L", ReferenceName = "Estonian Sign Language"}, + new {Id = "esq", Scope = "I", Type = "E", ReferenceName = "Esselen"}, + new {Id = "ess", Scope = "I", Type = "L", ReferenceName = "Central Siberian Yupik"}, + new + { + Id = "est", + Part2B = "est", + Part2T = "est", + Part1 = "et", + Scope = "M", + Type = "L", + ReferenceName = "Estonian" + }, new {Id = "esu", Scope = "I", Type = "L", ReferenceName = "Central Yupik"}, + new {Id = "esy", Scope = "I", Type = "L", ReferenceName = "Eskayan"}, + new {Id = "etb", Scope = "I", Type = "L", ReferenceName = "Etebi"}, + new {Id = "etc", Scope = "I", Type = "E", ReferenceName = "Etchemin"}, + new + { + Id = "eth", + Scope = "I", + Type = "L", + ReferenceName = "Ethiopian Sign Language" + }, + new {Id = "etn", Scope = "I", Type = "L", ReferenceName = "Eton (Vanuatu)"}, + new {Id = "eto", Scope = "I", Type = "L", ReferenceName = "Eton (Cameroon)"}, + new {Id = "etr", Scope = "I", Type = "L", ReferenceName = "Edolo"}, + new {Id = "ets", Scope = "I", Type = "L", ReferenceName = "Yekhee"}, + new {Id = "ett", Scope = "I", Type = "A", ReferenceName = "Etruscan"}, + new {Id = "etu", Scope = "I", Type = "L", ReferenceName = "Ejagham"}, + new {Id = "etx", Scope = "I", Type = "L", ReferenceName = "Eten"}, + new {Id = "etz", Scope = "I", Type = "L", ReferenceName = "Semimi"}, + new + { + Id = "eus", + Part2B = "baq", + Part2T = "eus", + Part1 = "eu", + Scope = "I", + Type = "L", + ReferenceName = "Basque" + }, new {Id = "eve", Scope = "I", Type = "L", ReferenceName = "Even"}, + new {Id = "evh", Scope = "I", Type = "L", ReferenceName = "Uvbie"}, + new {Id = "evn", Scope = "I", Type = "L", ReferenceName = "Evenki"}, + new + { + Id = "ewe", + Part2B = "ewe", + Part2T = "ewe", + Part1 = "ee", + Scope = "I", + Type = "L", + ReferenceName = "Ewe" + }, new + { + Id = "ewo", + Part2B = "ewo", + Part2T = "ewo", + Scope = "I", + Type = "L", + ReferenceName = "Ewondo" + }, new {Id = "ext", Scope = "I", Type = "L", ReferenceName = "Extremaduran"}, + new {Id = "eya", Scope = "I", Type = "E", ReferenceName = "Eyak"}, + new {Id = "eyo", Scope = "I", Type = "L", ReferenceName = "Keiyo"}, + new {Id = "eza", Scope = "I", Type = "L", ReferenceName = "Ezaa"}, + new {Id = "eze", Scope = "I", Type = "L", ReferenceName = "Uzekwe"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/F.cs b/Cicm.Database/Seeders/Iso639Split/F.cs new file mode 100644 index 00000000..05b96f53 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/F.cs @@ -0,0 +1,251 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class F + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "faa", Scope = "I", Type = "L", ReferenceName = "Fasu"}, + new {Id = "fab", Scope = "I", Type = "L", ReferenceName = "Fa d'Ambu"}, + new {Id = "fad", Scope = "I", Type = "L", ReferenceName = "Wagi"}, + new {Id = "faf", Scope = "I", Type = "L", ReferenceName = "Fagani"}, + new {Id = "fag", Scope = "I", Type = "L", ReferenceName = "Finongan"}, + new {Id = "fah", Scope = "I", Type = "L", ReferenceName = "Baissa Fali"}, + new {Id = "fai", Scope = "I", Type = "L", ReferenceName = "Faiwol"}, + new {Id = "faj", Scope = "I", Type = "L", ReferenceName = "Faita"}, + new {Id = "fak", Scope = "I", Type = "L", ReferenceName = "Fang (Cameroon)"}, + new {Id = "fal", Scope = "I", Type = "L", ReferenceName = "South Fali"}, + new {Id = "fam", Scope = "I", Type = "L", ReferenceName = "Fam"}, + new + { + Id = "fan", + Part2B = "fan", + Part2T = "fan", + Scope = "I", + Type = "L", + ReferenceName = "Fang (Equatorial Guinea)" + }, new + { + Id = "fao", + Part2B = "fao", + Part2T = "fao", + Part1 = "fo", + Scope = "I", + Type = "L", + ReferenceName = "Faroese" + }, new {Id = "fap", Scope = "I", Type = "L", ReferenceName = "Paloor"}, + new {Id = "far", Scope = "I", Type = "L", ReferenceName = "Fataleka"}, + new + { + Id = "fas", + Part2B = "per", + Part2T = "fas", + Part1 = "fa", + Scope = "M", + Type = "L", + ReferenceName = "Persian" + }, new + { + Id = "fat", + Part2B = "fat", + Part2T = "fat", + Scope = "I", + Type = "L", + ReferenceName = "Fanti" + }, new {Id = "fau", Scope = "I", Type = "L", ReferenceName = "Fayu"}, + new {Id = "fax", Scope = "I", Type = "L", ReferenceName = "Fala"}, + new {Id = "fay", Scope = "I", Type = "L", ReferenceName = "Southwestern Fars"}, + new {Id = "faz", Scope = "I", Type = "L", ReferenceName = "Northwestern Fars"}, + new {Id = "fbl", Scope = "I", Type = "L", ReferenceName = "West Albay Bikol"}, + new {Id = "fcs", Scope = "I", Type = "L", ReferenceName = "Quebec Sign Language"}, + new {Id = "fer", Scope = "I", Type = "L", ReferenceName = "Feroge"}, + new {Id = "ffi", Scope = "I", Type = "L", ReferenceName = "Foia Foia"}, + new {Id = "ffm", Scope = "I", Type = "L", ReferenceName = "Maasina Fulfulde"}, + new {Id = "fgr", Scope = "I", Type = "L", ReferenceName = "Fongoro"}, + new {Id = "fia", Scope = "I", Type = "L", ReferenceName = "Nobiin"}, + new {Id = "fie", Scope = "I", Type = "L", ReferenceName = "Fyer"}, + new + { + Id = "fij", + Part2B = "fij", + Part2T = "fij", + Part1 = "fj", + Scope = "I", + Type = "L", + ReferenceName = "Fijian" + }, new + { + Id = "fil", + Part2B = "fil", + Part2T = "fil", + Scope = "I", + Type = "L", + ReferenceName = "Filipino" + }, new + { + Id = "fin", + Part2B = "fin", + Part2T = "fin", + Part1 = "fi", + Scope = "I", + Type = "L", + ReferenceName = "Finnish" + }, new {Id = "fip", Scope = "I", Type = "L", ReferenceName = "Fipa"}, + new {Id = "fir", Scope = "I", Type = "L", ReferenceName = "Firan"}, + new {Id = "fit", Scope = "I", Type = "L", ReferenceName = "Tornedalen Finnish"}, + new {Id = "fiw", Scope = "I", Type = "L", ReferenceName = "Fiwaga"}, + new {Id = "fkk", Scope = "I", Type = "L", ReferenceName = "Kirya-Konzəl"}, + new {Id = "fkv", Scope = "I", Type = "L", ReferenceName = "Kven Finnish"}, + new + { + Id = "fla", + Scope = "I", + Type = "L", + ReferenceName = "Kalispel-Pend d'Oreille" + }, + new {Id = "flh", Scope = "I", Type = "L", ReferenceName = "Foau"}, + new {Id = "fli", Scope = "I", Type = "L", ReferenceName = "Fali"}, + new {Id = "fll", Scope = "I", Type = "L", ReferenceName = "North Fali"}, + new {Id = "fln", Scope = "I", Type = "E", ReferenceName = "Flinders Island"}, + new {Id = "flr", Scope = "I", Type = "L", ReferenceName = "Fuliiru"}, + new {Id = "fly", Scope = "I", Type = "L", ReferenceName = "Flaaitaal"}, + new {Id = "fmp", Scope = "I", Type = "L", ReferenceName = "Fe'fe'"}, + new {Id = "fmu", Scope = "I", Type = "L", ReferenceName = "Far Western Muria"}, + new {Id = "fnb", Scope = "I", Type = "L", ReferenceName = "Fanbak"}, + new {Id = "fng", Scope = "I", Type = "L", ReferenceName = "Fanagalo"}, + new {Id = "fni", Scope = "I", Type = "L", ReferenceName = "Fania"}, + new {Id = "fod", Scope = "I", Type = "L", ReferenceName = "Foodo"}, + new {Id = "foi", Scope = "I", Type = "L", ReferenceName = "Foi"}, + new {Id = "fom", Scope = "I", Type = "L", ReferenceName = "Foma"}, + new + { + Id = "fon", + Part2B = "fon", + Part2T = "fon", + Scope = "I", + Type = "L", + ReferenceName = "Fon" + }, new {Id = "for", Scope = "I", Type = "L", ReferenceName = "Fore"}, + new {Id = "fos", Scope = "I", Type = "E", ReferenceName = "Siraya"}, + new + { + Id = "fpe", + Scope = "I", + Type = "L", + ReferenceName = "Fernando Po Creole English" + }, new {Id = "fqs", Scope = "I", Type = "L", ReferenceName = "Fas"}, + new + { + Id = "fra", + Part2B = "fre", + Part2T = "fra", + Part1 = "fr", + Scope = "I", + Type = "L", + ReferenceName = "French" + }, new {Id = "frc", Scope = "I", Type = "L", ReferenceName = "Cajun French"}, + new {Id = "frd", Scope = "I", Type = "L", ReferenceName = "Fordata"}, + new {Id = "frk", Scope = "I", Type = "H", ReferenceName = "Frankish"}, + new + { + Id = "frm", + Part2B = "frm", + Part2T = "frm", + Scope = "I", + Type = "H", + ReferenceName = "Middle French (ca. 1400-1600)" + }, new + { + Id = "fro", + Part2B = "fro", + Part2T = "fro", + Scope = "I", + Type = "H", + ReferenceName = "Old French (842-ca. 1400)" + }, new {Id = "frp", Scope = "I", Type = "L", ReferenceName = "Arpitan"}, + new {Id = "frq", Scope = "I", Type = "L", ReferenceName = "Forak"}, + new + { + Id = "frr", + Part2B = "frr", + Part2T = "frr", + Scope = "I", + Type = "L", + ReferenceName = "Northern Frisian" + }, new + { + Id = "frs", + Part2B = "frs", + Part2T = "frs", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Frisian" + }, new {Id = "frt", Scope = "I", Type = "L", ReferenceName = "Fortsenal"}, + new + { + Id = "fry", + Part2B = "fry", + Part2T = "fry", + Part1 = "fy", + Scope = "I", + Type = "L", + ReferenceName = "Western Frisian" + }, new {Id = "fse", Scope = "I", Type = "L", ReferenceName = "Finnish Sign Language"}, + new {Id = "fsl", Scope = "I", Type = "L", ReferenceName = "French Sign Language"}, + new + { + Id = "fss", + Scope = "I", + Type = "L", + ReferenceName = "Finland-Swedish Sign Language" + }, new {Id = "fub", Scope = "I", Type = "L", ReferenceName = "Adamawa Fulfulde"}, + new {Id = "fuc", Scope = "I", Type = "L", ReferenceName = "Pulaar"}, + new {Id = "fud", Scope = "I", Type = "L", ReferenceName = "East Futuna"}, + new {Id = "fue", Scope = "I", Type = "L", ReferenceName = "Borgu Fulfulde"}, + new {Id = "fuf", Scope = "I", Type = "L", ReferenceName = "Pular"}, + new + { + Id = "fuh", + Scope = "I", + Type = "L", + ReferenceName = "Western Niger Fulfulde" + }, + new {Id = "fui", Scope = "I", Type = "L", ReferenceName = "Bagirmi Fulfulde"}, + new {Id = "fuj", Scope = "I", Type = "L", ReferenceName = "Ko"}, + new + { + Id = "ful", + Part2B = "ful", + Part2T = "ful", + Part1 = "ff", + Scope = "M", + Type = "L", + ReferenceName = "Fulah" + }, new {Id = "fum", Scope = "I", Type = "L", ReferenceName = "Fum"}, + new {Id = "fun", Scope = "I", Type = "L", ReferenceName = "Fulniô"}, + new + { + Id = "fuq", + Scope = "I", + Type = "L", + ReferenceName = "Central-Eastern Niger Fulfulde" + }, new + { + Id = "fur", + Part2B = "fur", + Part2T = "fur", + Scope = "I", + Type = "L", + ReferenceName = "Friulian" + }, new {Id = "fut", Scope = "I", Type = "L", ReferenceName = "Futuna-Aniwa"}, + new {Id = "fuu", Scope = "I", Type = "L", ReferenceName = "Furu"}, + new {Id = "fuv", Scope = "I", Type = "L", ReferenceName = "Nigerian Fulfulde"}, + new {Id = "fuy", Scope = "I", Type = "L", ReferenceName = "Fuyug"}, + new {Id = "fvr", Scope = "I", Type = "L", ReferenceName = "Fur"}, + new {Id = "fwa", Scope = "I", Type = "L", ReferenceName = "Fwâi"}, + new {Id = "fwe", Scope = "I", Type = "L", ReferenceName = "Fwe"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/G.cs b/Cicm.Database/Seeders/Iso639Split/G.cs new file mode 100644 index 00000000..9157f73b --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/G.cs @@ -0,0 +1,2400 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class G + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity().HasData(new + { + Id = "gaa", + Part2B = "gaa", + Part2T = "gaa", + Scope = "I", + Type = "L", + ReferenceName = "Ga" + }, + new + { + Id = "gab", + Scope = "I", + Type = "L", + ReferenceName = "Gabri" + }, + new + { + Id = "gac", + Scope = "I", + Type = "L", + ReferenceName = "Mixed Great Andamanese" + }, + new + { + Id = "gad", + Scope = "I", + Type = "L", + ReferenceName = "Gaddang" + }, + new + { + Id = "gae", + Scope = "I", + Type = "L", + ReferenceName = "Guarequena" + }, + new + { + Id = "gaf", + Scope = "I", + Type = "L", + ReferenceName = "Gende" + }, + new + { + Id = "gag", + Scope = "I", + Type = "L", + ReferenceName = "Gagauz" + }, + new + { + Id = "gah", + Scope = "I", + Type = "L", + ReferenceName = "Alekano" + }, + new + { + Id = "gai", + Scope = "I", + Type = "L", + ReferenceName = "Borei" + }, + new + { + Id = "gaj", + Scope = "I", + Type = "L", + ReferenceName = "Gadsup" + }, + new + { + Id = "gak", + Scope = "I", + Type = "L", + ReferenceName = "Gamkonora" + }, + new + { + Id = "gal", + Scope = "I", + Type = "L", + ReferenceName = "Galolen" + }, + new + { + Id = "gam", + Scope = "I", + Type = "L", + ReferenceName = "Kandawo" + }, + new + { + Id = "gan", + Scope = "I", + Type = "L", + ReferenceName = "Gan Chinese" + }, + new + { + Id = "gao", + Scope = "I", + Type = "L", + ReferenceName = "Gants" + }, + new + { + Id = "gap", + Scope = "I", + Type = "L", + ReferenceName = "Gal" + }, + new + { + Id = "gaq", + Scope = "I", + Type = "L", + ReferenceName = "Gata'" + }, + new + { + Id = "gar", + Scope = "I", + Type = "L", + ReferenceName = "Galeya" + }, + new + { + Id = "gas", + Scope = "I", + Type = "L", + ReferenceName = "Adiwasi Garasia" + }, + new + { + Id = "gat", + Scope = "I", + Type = "L", + ReferenceName = "Kenati" + }, + new + { + Id = "gau", + Scope = "I", + Type = "L", + ReferenceName = "Mudhili Gadaba" + }, + new + { + Id = "gaw", + Scope = "I", + Type = "L", + ReferenceName = "Nobonob" + }, + new + { + Id = "gax", + Scope = "I", + Type = "L", + ReferenceName = "Borana-Arsi-Guji Oromo" + }, + new + { + Id = "gay", + Part2B = "gay", + Part2T = "gay", + Scope = "I", + Type = "L", + ReferenceName = "Gayo" + }, + new + { + Id = "gaz", + Scope = "I", + Type = "L", + ReferenceName = "West Central Oromo" + }, + new + { + Id = "gba", + Part2B = "gba", + Part2T = "gba", + Scope = "M", + Type = "L", + ReferenceName = "Gbaya (Central African Republic)" + }, + new + { + Id = "gbb", + Scope = "I", + Type = "L", + ReferenceName = "Kaytetye" + }, + new + { + Id = "gbd", + Scope = "I", + Type = "L", + ReferenceName = "Karajarri" + }, + new + { + Id = "gbe", + Scope = "I", + Type = "L", + ReferenceName = "Niksek" + }, + new + { + Id = "gbf", + Scope = "I", + Type = "L", + ReferenceName = "Gaikundi" + }, + new + { + Id = "gbg", + Scope = "I", + Type = "L", + ReferenceName = "Gbanziri" + }, + new + { + Id = "gbh", + Scope = "I", + Type = "L", + ReferenceName = "Defi Gbe" + }, + new + { + Id = "gbi", + Scope = "I", + Type = "L", + ReferenceName = "Galela" + }, + new + { + Id = "gbj", + Scope = "I", + Type = "L", + ReferenceName = "Bodo Gadaba" + }, + new + { + Id = "gbk", + Scope = "I", + Type = "L", + ReferenceName = "Gaddi" + }, + new + { + Id = "gbl", + Scope = "I", + Type = "L", + ReferenceName = "Gamit" + }, + new + { + Id = "gbm", + Scope = "I", + Type = "L", + ReferenceName = "Garhwali" + }, + new + { + Id = "gbn", + Scope = "I", + Type = "L", + ReferenceName = "Mo'da" + }, + new + { + Id = "gbo", + Scope = "I", + Type = "L", + ReferenceName = "Northern Grebo" + }, + new + { + Id = "gbp", + Scope = "I", + Type = "L", + ReferenceName = "Gbaya-Bossangoa" + }, + new + { + Id = "gbq", + Scope = "I", + Type = "L", + ReferenceName = "Gbaya-Bozoum" + }, + new + { + Id = "gbr", + Scope = "I", + Type = "L", + ReferenceName = "Gbagyi" + }, + new + { + Id = "gbs", + Scope = "I", + Type = "L", + ReferenceName = "Gbesi Gbe" + }, + new + { + Id = "gbu", + Scope = "I", + Type = "L", + ReferenceName = "Gagadu" + }, + new + { + Id = "gbv", + Scope = "I", + Type = "L", + ReferenceName = "Gbanu" + }, + new + { + Id = "gbw", + Scope = "I", + Type = "L", + ReferenceName = "Gabi-Gabi" + }, + new + { + Id = "gbx", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Xwla Gbe" + }, + new + { + Id = "gby", + Scope = "I", + Type = "L", + ReferenceName = "Gbari" + }, + new + { + Id = "gbz", + Scope = "I", + Type = "L", + ReferenceName = "Zoroastrian Dari" + }, + new + { + Id = "gcc", + Scope = "I", + Type = "L", + ReferenceName = "Mali" + }, + new + { + Id = "gcd", + Scope = "I", + Type = "E", + ReferenceName = "Ganggalida" + }, + new + { + Id = "gce", + Scope = "I", + Type = "E", + ReferenceName = "Galice" + }, + new + { + Id = "gcf", + Scope = "I", + Type = "L", + ReferenceName = "Guadeloupean Creole French" + }, + new + { + Id = "gcl", + Scope = "I", + Type = "L", + ReferenceName = "Grenadian Creole English" + }, + new + { + Id = "gcn", + Scope = "I", + Type = "L", + ReferenceName = "Gaina" + }, + new + { + Id = "gcr", + Scope = "I", + Type = "L", + ReferenceName = "Guianese Creole French" + }, + new + { + Id = "gct", + Scope = "I", + Type = "L", + ReferenceName = "Colonia Tovar German" + }, + new + { + Id = "gda", + Scope = "I", + Type = "L", + ReferenceName = "Gade Lohar" + }, + new + { + Id = "gdb", + Scope = "I", + Type = "L", + ReferenceName = "Pottangi Ollar Gadaba" + }, + new + { + Id = "gdc", + Scope = "I", + Type = "E", + ReferenceName = "Gugu Badhun" + }, + new + { + Id = "gdd", + Scope = "I", + Type = "L", + ReferenceName = "Gedaged" + }, + new + { + Id = "gde", + Scope = "I", + Type = "L", + ReferenceName = "Gude" + }, + new + { + Id = "gdf", + Scope = "I", + Type = "L", + ReferenceName = "Guduf-Gava" + }, + new + { + Id = "gdg", + Scope = "I", + Type = "L", + ReferenceName = "Ga'dang" + }, + new + { + Id = "gdh", + Scope = "I", + Type = "L", + ReferenceName = "Gadjerawang" + }, + new + { + Id = "gdi", + Scope = "I", + Type = "L", + ReferenceName = "Gundi" + }, + new + { + Id = "gdj", + Scope = "I", + Type = "L", + ReferenceName = "Gurdjar" + }, + new + { + Id = "gdk", + Scope = "I", + Type = "L", + ReferenceName = "Gadang" + }, + new + { + Id = "gdl", + Scope = "I", + Type = "L", + ReferenceName = "Dirasha" + }, + new + { + Id = "gdm", + Scope = "I", + Type = "L", + ReferenceName = "Laal" + }, + new + { + Id = "gdn", + Scope = "I", + Type = "L", + ReferenceName = "Umanakaina" + }, + new + { + Id = "gdo", + Scope = "I", + Type = "L", + ReferenceName = "Ghodoberi" + }, + new + { + Id = "gdq", + Scope = "I", + Type = "L", + ReferenceName = "Mehri" + }, + new + { + Id = "gdr", + Scope = "I", + Type = "L", + ReferenceName = "Wipi" + }, + new + { + Id = "gds", + Scope = "I", + Type = "L", + ReferenceName = "Ghandruk Sign Language" + }, + new + { + Id = "gdt", + Scope = "I", + Type = "E", + ReferenceName = "Kungardutyi" + }, + new + { + Id = "gdu", + Scope = "I", + Type = "L", + ReferenceName = "Gudu" + }, + new + { + Id = "gdx", + Scope = "I", + Type = "L", + ReferenceName = "Godwari" + }, + new + { + Id = "gea", + Scope = "I", + Type = "L", + ReferenceName = "Geruma" + }, + new + { + Id = "geb", + Scope = "I", + Type = "L", + ReferenceName = "Kire" + }, + new + { + Id = "gec", + Scope = "I", + Type = "L", + ReferenceName = "Gboloo Grebo" + }, + new + { + Id = "ged", + Scope = "I", + Type = "L", + ReferenceName = "Gade" + }, + new + { + Id = "geg", + Scope = "I", + Type = "L", + ReferenceName = "Gengle" + }, + new + { + Id = "geh", + Scope = "I", + Type = "L", + ReferenceName = "Hutterite German" + }, + new + { + Id = "gei", + Scope = "I", + Type = "L", + ReferenceName = "Gebe" + }, + new + { + Id = "gej", + Scope = "I", + Type = "L", + ReferenceName = "Gen" + }, + new + { + Id = "gek", + Scope = "I", + Type = "L", + ReferenceName = "Ywom" + }, + new + { + Id = "gel", + Scope = "I", + Type = "L", + ReferenceName = "ut-Ma'in" + }, + new + { + Id = "geq", + Scope = "I", + Type = "L", + ReferenceName = "Geme" + }, + new + { + Id = "ges", + Scope = "I", + Type = "L", + ReferenceName = "Geser-Gorom" + }, + new + { + Id = "gev", + Scope = "I", + Type = "L", + ReferenceName = "Eviya" + }, + new + { + Id = "gew", + Scope = "I", + Type = "L", + ReferenceName = "Gera" + }, + new + { + Id = "gex", + Scope = "I", + Type = "L", + ReferenceName = "Garre" + }, + new + { + Id = "gey", + Scope = "I", + Type = "L", + ReferenceName = "Enya" + }, + new + { + Id = "gez", + Part2B = "gez", + Part2T = "gez", + Scope = "I", + Type = "A", + ReferenceName = "Geez" + }, + new + { + Id = "gfk", + Scope = "I", + Type = "L", + ReferenceName = "Patpatar" + }, + new + { + Id = "gft", + Scope = "I", + Type = "E", + ReferenceName = "Gafat" + }, + new + { + Id = "gga", + Scope = "I", + Type = "L", + ReferenceName = "Gao" + }, + new + { + Id = "ggb", + Scope = "I", + Type = "L", + ReferenceName = "Gbii" + }, + new + { + Id = "ggd", + Scope = "I", + Type = "E", + ReferenceName = "Gugadj" + }, + new + { + Id = "gge", + Scope = "I", + Type = "L", + ReferenceName = "Gurr-goni" + }, + new + { + Id = "ggg", + Scope = "I", + Type = "L", + ReferenceName = "Gurgula" + }, + new + { + Id = "ggk", + Scope = "I", + Type = "E", + ReferenceName = "Kungarakany" + }, + new + { + Id = "ggl", + Scope = "I", + Type = "L", + ReferenceName = "Ganglau" + }, + new + { + Id = "ggt", + Scope = "I", + Type = "L", + ReferenceName = "Gitua" + }, + new + { + Id = "ggu", + Scope = "I", + Type = "L", + ReferenceName = "Gagu" + }, + new + { + Id = "ggw", + Scope = "I", + Type = "L", + ReferenceName = "Gogodala" + }, + new + { + Id = "gha", + Scope = "I", + Type = "L", + ReferenceName = "Ghadamès" + }, + new + { + Id = "ghc", + Scope = "I", + Type = "H", + ReferenceName = "Hiberno-Scottish Gaelic" + }, + new + { + Id = "ghe", + Scope = "I", + Type = "L", + ReferenceName = "Southern Ghale" + }, + new + { + Id = "ghh", + Scope = "I", + Type = "L", + ReferenceName = "Northern Ghale" + }, + new + { + Id = "ghk", + Scope = "I", + Type = "L", + ReferenceName = "Geko Karen" + }, + new + { + Id = "ghl", + Scope = "I", + Type = "L", + ReferenceName = "Ghulfan" + }, + new + { + Id = "ghn", + Scope = "I", + Type = "L", + ReferenceName = "Ghanongga" + }, + new + { + Id = "gho", + Scope = "I", + Type = "E", + ReferenceName = "Ghomara" + }, + new + { + Id = "ghr", + Scope = "I", + Type = "L", + ReferenceName = "Ghera" + }, + new + { + Id = "ghs", + Scope = "I", + Type = "L", + ReferenceName = "Guhu-Samane" + }, + new + { + Id = "ght", + Scope = "I", + Type = "L", + ReferenceName = "Kuke" + }, + new + { + Id = "gia", + Scope = "I", + Type = "L", + ReferenceName = "Kija" + }, + new + { + Id = "gib", + Scope = "I", + Type = "L", + ReferenceName = "Gibanawa" + }, + new + { + Id = "gic", + Scope = "I", + Type = "L", + ReferenceName = "Gail" + }, + new + { + Id = "gid", + Scope = "I", + Type = "L", + ReferenceName = "Gidar" + }, + new + { + Id = "gie", + Scope = "I", + Type = "L", + ReferenceName = "Gaɓogbo" + }, + new + { + Id = "gig", + Scope = "I", + Type = "L", + ReferenceName = "Goaria" + }, + new + { + Id = "gih", + Scope = "I", + Type = "L", + ReferenceName = "Githabul" + }, + new + { + Id = "gil", + Part2B = "gil", + Part2T = "gil", + Scope = "I", + Type = "L", + ReferenceName = "Gilbertese" + }, + new + { + Id = "gim", + Scope = "I", + Type = "L", + ReferenceName = "Gimi (Eastern Highlands)" + }, + new + { + Id = "gin", + Scope = "I", + Type = "L", + ReferenceName = "Hinukh" + }, + new + { + Id = "gip", + Scope = "I", + Type = "L", + ReferenceName = "Gimi (West New Britain)" + }, + new + { + Id = "giq", + Scope = "I", + Type = "L", + ReferenceName = "Green Gelao" + }, + new + { + Id = "gir", + Scope = "I", + Type = "L", + ReferenceName = "Red Gelao" + }, + new + { + Id = "gis", + Scope = "I", + Type = "L", + ReferenceName = "North Giziga" + }, + new + { + Id = "git", + Scope = "I", + Type = "L", + ReferenceName = "Gitxsan" + }, + new + { + Id = "giu", + Scope = "I", + Type = "L", + ReferenceName = "Mulao" + }, + new + { + Id = "giw", + Scope = "I", + Type = "L", + ReferenceName = "White Gelao" + }, + new + { + Id = "gix", + Scope = "I", + Type = "L", + ReferenceName = "Gilima" + }, + new + { + Id = "giy", + Scope = "I", + Type = "L", + ReferenceName = "Giyug" + }, + new + { + Id = "giz", + Scope = "I", + Type = "L", + ReferenceName = "South Giziga" + }, + new + { + Id = "gji", + Scope = "I", + Type = "L", + ReferenceName = "Geji" + }, + new + { + Id = "gjk", + Scope = "I", + Type = "L", + ReferenceName = "Kachi Koli" + }, + new + { + Id = "gjm", + Scope = "I", + Type = "E", + ReferenceName = "Gunditjmara" + }, + new + { + Id = "gjn", + Scope = "I", + Type = "L", + ReferenceName = "Gonja" + }, + new + { + Id = "gjr", + Scope = "I", + Type = "L", + ReferenceName = "Gurindji Kriol" + }, + new + { + Id = "gju", + Scope = "I", + Type = "L", + ReferenceName = "Gujari" + }, + new + { + Id = "gka", + Scope = "I", + Type = "L", + ReferenceName = "Guya" + }, + new + { + Id = "gkd", + Scope = "I", + Type = "L", + ReferenceName = "Magɨ (Madang Province)" + }, + new + { + Id = "gke", + Scope = "I", + Type = "L", + ReferenceName = "Ndai" + }, + new + { + Id = "gkn", + Scope = "I", + Type = "L", + ReferenceName = "Gokana" + }, + new + { + Id = "gko", + Scope = "I", + Type = "E", + ReferenceName = "Kok-Nar" + }, + new + { + Id = "gkp", + Scope = "I", + Type = "L", + ReferenceName = "Guinea Kpelle" + }, + new + { + Id = "gku", + Scope = "I", + Type = "E", + ReferenceName = "ǂUngkue" + }, + new + { + Id = "gla", + Part2B = "gla", + Part2T = "gla", + Part1 = "gd", + Scope = "I", + Type = "L", + ReferenceName = "Scottish Gaelic" + }, + new + { + Id = "glc", + Scope = "I", + Type = "L", + ReferenceName = "Bon Gula" + }, + new + { + Id = "gld", + Scope = "I", + Type = "L", + ReferenceName = "Nanai" + }, + new + { + Id = "gle", + Part2B = "gle", + Part2T = "gle", + Part1 = "ga", + Scope = "I", + Type = "L", + ReferenceName = "Irish" + }, new + { + Id = "glg", + Part2B = "glg", + Part2T = "glg", + Part1 = "gl", + Scope = "I", + Type = "L", + ReferenceName = "Galician" + }, + new + { + Id = "glh", + Scope = "I", + Type = "L", + ReferenceName = "Northwest Pashai" + }, + new + { + Id = "gli", + Scope = "I", + Type = "E", + ReferenceName = "Guliguli" + }, + new + { + Id = "glj", + Scope = "I", + Type = "L", + ReferenceName = "Gula Iro" + }, + new + { + Id = "glk", + Scope = "I", + Type = "L", + ReferenceName = "Gilaki" + }, + new + { + Id = "gll", + Scope = "I", + Type = "E", + ReferenceName = "Garlali" + }, + new + { + Id = "glo", + Scope = "I", + Type = "L", + ReferenceName = "Galambu" + }, + new + { + Id = "glr", + Scope = "I", + Type = "L", + ReferenceName = "Glaro-Twabo" + }, + new + { + Id = "glu", + Scope = "I", + Type = "L", + ReferenceName = "Gula (Chad)" + }, + new + { + Id = "glv", + Part2B = "glv", + Part2T = "glv", + Part1 = "gv", + Scope = "I", + Type = "L", + ReferenceName = "Manx" + }, + new + { + Id = "glw", + Scope = "I", + Type = "L", + ReferenceName = "Glavda" + }, + new + { + Id = "gly", + Scope = "I", + Type = "E", + ReferenceName = "Gule" + }, + new + { + Id = "gma", + Scope = "I", + Type = "E", + ReferenceName = "Gambera" + }, + new + { + Id = "gmb", + Scope = "I", + Type = "L", + ReferenceName = "Gula'alaa" + }, + new + { + Id = "gmd", + Scope = "I", + Type = "L", + ReferenceName = "Mághdì" + }, + new + { + Id = "gmg", + Scope = "I", + Type = "L", + ReferenceName = "Magɨyi" + }, + new + { + Id = "gmh", + Part2B = "gmh", + Part2T = "gmh", + Scope = "I", + Type = "H", + ReferenceName = "Middle High German (ca. 1050-1500)" + }, + new + { + Id = "gml", + Scope = "I", + Type = "H", + ReferenceName = "Middle Low German" + }, + new + { + Id = "gmm", + Scope = "I", + Type = "L", + ReferenceName = "Gbaya-Mbodomo" + }, + new + { + Id = "gmn", + Scope = "I", + Type = "L", + ReferenceName = "Gimnime" + }, + new + { + Id = "gmu", + Scope = "I", + Type = "L", + ReferenceName = "Gumalu" + }, + new + { + Id = "gmv", + Scope = "I", + Type = "L", + ReferenceName = "Gamo" + }, + new + { + Id = "gmx", + Scope = "I", + Type = "L", + ReferenceName = "Magoma" + }, + new + { + Id = "gmy", + Scope = "I", + Type = "A", + ReferenceName = "Mycenaean Greek" + }, + new + { + Id = "gmz", + Scope = "I", + Type = "L", + ReferenceName = "Mgbolizhia" + }, + new + { + Id = "gna", + Scope = "I", + Type = "L", + ReferenceName = "Kaansa" + }, + new + { + Id = "gnb", + Scope = "I", + Type = "L", + ReferenceName = "Gangte" + }, + new + { + Id = "gnc", + Scope = "I", + Type = "E", + ReferenceName = "Guanche" + }, + new + { + Id = "gnd", + Scope = "I", + Type = "L", + ReferenceName = "Zulgo-Gemzek" + }, + new + { + Id = "gne", + Scope = "I", + Type = "L", + ReferenceName = "Ganang" + }, + new + { + Id = "gng", + Scope = "I", + Type = "L", + ReferenceName = "Ngangam" + }, + new + { + Id = "gnh", + Scope = "I", + Type = "L", + ReferenceName = "Lere" + }, + new + { + Id = "gni", + Scope = "I", + Type = "L", + ReferenceName = "Gooniyandi" + }, + new + { + Id = "gnj", + Scope = "I", + Type = "L", + ReferenceName = "Ngen" + }, + new + { + Id = "gnk", + Scope = "I", + Type = "L", + ReferenceName = "ǁGana" + }, + new + { + Id = "gnl", + Scope = "I", + Type = "E", + ReferenceName = "Gangulu" + }, + new + { + Id = "gnm", + Scope = "I", + Type = "L", + ReferenceName = "Ginuman" + }, + new + { + Id = "gnn", + Scope = "I", + Type = "L", + ReferenceName = "Gumatj" + }, + new + { + Id = "gno", + Scope = "I", + Type = "L", + ReferenceName = "Northern Gondi" + }, + new + { + Id = "gnq", + Scope = "I", + Type = "L", + ReferenceName = "Gana" + }, + new + { + Id = "gnr", + Scope = "I", + Type = "E", + ReferenceName = "Gureng Gureng" + }, + new + { + Id = "gnt", + Scope = "I", + Type = "L", + ReferenceName = "Guntai" + }, + new + { + Id = "gnu", + Scope = "I", + Type = "L", + ReferenceName = "Gnau" + }, + new + { + Id = "gnw", + Scope = "I", + Type = "L", + ReferenceName = "Western Bolivian Guaraní" + }, + new + { + Id = "gnz", + Scope = "I", + Type = "L", + ReferenceName = "Ganzi" + }, + new + { + Id = "goa", + Scope = "I", + Type = "L", + ReferenceName = "Guro" + }, + new + { + Id = "gob", + Scope = "I", + Type = "L", + ReferenceName = "Playero" + }, + new + { + Id = "goc", + Scope = "I", + Type = "L", + ReferenceName = "Gorakor" + }, + new + { + Id = "god", + Scope = "I", + Type = "L", + ReferenceName = "Godié" + }, + new + { + Id = "goe", + Scope = "I", + Type = "L", + ReferenceName = "Gongduk" + }, + new + { + Id = "gof", + Scope = "I", + Type = "L", + ReferenceName = "Gofa" + }, + new + { + Id = "gog", + Scope = "I", + Type = "L", + ReferenceName = "Gogo" + }, + new + { + Id = "goh", + Part2B = "goh", + Part2T = "goh", + Scope = "I", + Type = "H", + ReferenceName = "Old High German (ca. 750-1050)" + }, + new + { + Id = "goi", + Scope = "I", + Type = "L", + ReferenceName = "Gobasi" + }, + new + { + Id = "goj", + Scope = "I", + Type = "L", + ReferenceName = "Gowlan" + }, + new + { + Id = "gok", + Scope = "I", + Type = "L", + ReferenceName = "Gowli" + }, + new + { + Id = "gol", + Scope = "I", + Type = "L", + ReferenceName = "Gola" + }, + new + { + Id = "gom", + Scope = "I", + Type = "L", + ReferenceName = "Goan Konkani" + }, + new + { + Id = "gon", + Part2B = "gon", + Part2T = "gon", + Scope = "M", + Type = "L", + ReferenceName = "Gondi" + }, + new + { + Id = "goo", + Scope = "I", + Type = "L", + ReferenceName = "Gone Dau" + }, + new + { + Id = "gop", + Scope = "I", + Type = "L", + ReferenceName = "Yeretuar" + }, + new + { + Id = "goq", + Scope = "I", + Type = "L", + ReferenceName = "Gorap" + }, + new + { + Id = "gor", + Part2B = "gor", + Part2T = "gor", + Scope = "I", + Type = "L", + ReferenceName = "Gorontalo" + }, + new + { + Id = "gos", + Scope = "I", + Type = "L", + ReferenceName = "Gronings" + }, + new + { + Id = "got", + Part2B = "got", + Part2T = "got", + Scope = "I", + Type = "A", + ReferenceName = "Gothic" + }, + new + { + Id = "gou", + Scope = "I", + Type = "L", + ReferenceName = "Gavar" + }, + new + { + Id = "gow", + Scope = "I", + Type = "L", + ReferenceName = "Gorowa" + }, + new + { + Id = "gox", + Scope = "I", + Type = "L", + ReferenceName = "Gobu" + }, + new + { + Id = "goy", + Scope = "I", + Type = "L", + ReferenceName = "Goundo" + }, + new + { + Id = "goz", + Scope = "I", + Type = "L", + ReferenceName = "Gozarkhani" + }, + new + { + Id = "gpa", + Scope = "I", + Type = "L", + ReferenceName = "Gupa-Abawa" + }, + new + { + Id = "gpe", + Scope = "I", + Type = "L", + ReferenceName = "Ghanaian Pidgin English" + }, + new + { + Id = "gpn", + Scope = "I", + Type = "L", + ReferenceName = "Taiap" + }, + new + { + Id = "gqa", + Scope = "I", + Type = "L", + ReferenceName = "Ga'anda" + }, + new + { + Id = "gqi", + Scope = "I", + Type = "L", + ReferenceName = "Guiqiong" + }, + new + { + Id = "gqn", + Scope = "I", + Type = "E", + ReferenceName = "Guana (Brazil)" + }, + new + { + Id = "gqr", + Scope = "I", + Type = "L", + ReferenceName = "Gor" + }, + new + { + Id = "gqu", + Scope = "I", + Type = "L", + ReferenceName = "Qau" + }, + new + { + Id = "gra", + Scope = "I", + Type = "L", + ReferenceName = "Rajput Garasia" + }, + new + { + Id = "grb", + Part2B = "grb", + Part2T = "grb", + Scope = "M", + Type = "L", + ReferenceName = "Grebo" + }, new + { + Id = "grc", + Part2B = "grc", + Part2T = "grc", + Scope = "I", + Type = "H", + ReferenceName = "Ancient Greek (to 1453)" + }, + new + { + Id = "grd", + Scope = "I", + Type = "L", + ReferenceName = "Guruntum-Mbaaru" + }, + new + { + Id = "grg", + Scope = "I", + Type = "L", + ReferenceName = "Madi" + }, + new + { + Id = "grh", + Scope = "I", + Type = "L", + ReferenceName = "Gbiri-Niragu" + }, + new + { + Id = "gri", + Scope = "I", + Type = "L", + ReferenceName = "Ghari" + }, + new + { + Id = "grj", + Scope = "I", + Type = "L", + ReferenceName = "Southern Grebo" + }, + new + { + Id = "grm", + Scope = "I", + Type = "L", + ReferenceName = "Kota Marudu Talantang" + }, + new + { + Id = "grn", + Part2B = "grn", + Part2T = "grn", + Part1 = "gn", + Scope = "M", + Type = "L", + ReferenceName = "Guarani" + }, + new + { + Id = "gro", + Scope = "I", + Type = "L", + ReferenceName = "Groma" + }, + new + { + Id = "grq", + Scope = "I", + Type = "L", + ReferenceName = "Gorovu" + }, + new + { + Id = "grr", + Scope = "I", + Type = "L", + ReferenceName = "Taznatit" + }, + new + { + Id = "grs", + Scope = "I", + Type = "L", + ReferenceName = "Gresi" + }, + new + { + Id = "grt", + Scope = "I", + Type = "L", + ReferenceName = "Garo" + }, + new + { + Id = "gru", + Scope = "I", + Type = "L", + ReferenceName = "Kistane" + }, + new + { + Id = "grv", + Scope = "I", + Type = "L", + ReferenceName = "Central Grebo" + }, + new + { + Id = "grw", + Scope = "I", + Type = "L", + ReferenceName = "Gweda" + }, + new + { + Id = "grx", + Scope = "I", + Type = "L", + ReferenceName = "Guriaso" + }, + new + { + Id = "gry", + Scope = "I", + Type = "L", + ReferenceName = "Barclayville Grebo" + }, + new + { + Id = "grz", + Scope = "I", + Type = "L", + ReferenceName = "Guramalum" + }, + new + { + Id = "gse", + Scope = "I", + Type = "L", + ReferenceName = "Ghanaian Sign Language" + }, + new + { + Id = "gsg", + Scope = "I", + Type = "L", + ReferenceName = "German Sign Language" + }, + new + { + Id = "gsl", + Scope = "I", + Type = "L", + ReferenceName = "Gusilay" + }, + new + { + Id = "gsm", + Scope = "I", + Type = "L", + ReferenceName = "Guatemalan Sign Language" + }, + new + { + Id = "gsn", + Scope = "I", + Type = "L", + ReferenceName = "Nema" + }, + new + { + Id = "gso", + Scope = "I", + Type = "L", + ReferenceName = "Southwest Gbaya" + }, + new + { + Id = "gsp", + Scope = "I", + Type = "L", + ReferenceName = "Wasembo" + }, + new + { + Id = "gss", + Scope = "I", + Type = "L", + ReferenceName = "Greek Sign Language" + }, + new + { + Id = "gsw", + Part2B = "gsw", + Part2T = "gsw", + Scope = "I", + Type = "L", + ReferenceName = "Swiss German" + }, + new + { + Id = "gta", + Scope = "I", + Type = "L", + ReferenceName = "Guató" + }, + new + { + Id = "gtu", + Scope = "I", + Type = "E", + ReferenceName = "Aghu-Tharnggala" + }, + new + { + Id = "gua", + Scope = "I", + Type = "L", + ReferenceName = "Shiki" + }, + new + { + Id = "gub", + Scope = "I", + Type = "L", + ReferenceName = "Guajajára" + }, + new + { + Id = "guc", + Scope = "I", + Type = "L", + ReferenceName = "Wayuu" + }, + new + { + Id = "gud", + Scope = "I", + Type = "L", + ReferenceName = "Yocoboué Dida" + }, + new + { + Id = "gue", + Scope = "I", + Type = "L", + ReferenceName = "Gurindji" + }, + new + { + Id = "guf", + Scope = "I", + Type = "L", + ReferenceName = "Gupapuyngu" + }, + new + { + Id = "gug", + Scope = "I", + Type = "L", + ReferenceName = "Paraguayan Guaraní" + }, + new + { + Id = "guh", + Scope = "I", + Type = "L", + ReferenceName = "Guahibo" + }, + new + { + Id = "gui", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Bolivian Guaraní" + }, + new + { + Id = "guj", + Part2B = "guj", + Part2T = "guj", + Part1 = "gu", + Scope = "I", + Type = "L", + ReferenceName = "Gujarati" + }, + new + { + Id = "guk", + Scope = "I", + Type = "L", + ReferenceName = "Gumuz" + }, + new + { + Id = "gul", + Scope = "I", + Type = "L", + ReferenceName = "Sea Island Creole English" + }, + new + { + Id = "gum", + Scope = "I", + Type = "L", + ReferenceName = "Guambiano" + }, + new + { + Id = "gun", + Scope = "I", + Type = "L", + ReferenceName = "Mbyá Guaraní" + }, + new + { + Id = "guo", + Scope = "I", + Type = "L", + ReferenceName = "Guayabero" + }, + new + { + Id = "gup", + Scope = "I", + Type = "L", + ReferenceName = "Gunwinggu" + }, + new + { + Id = "guq", + Scope = "I", + Type = "L", + ReferenceName = "Aché" + }, + new + { + Id = "gur", + Scope = "I", + Type = "L", + ReferenceName = "Farefare" + }, + new + { + Id = "gus", + Scope = "I", + Type = "L", + ReferenceName = "Guinean Sign Language" + }, + new + { + Id = "gut", + Scope = "I", + Type = "L", + ReferenceName = "Maléku Jaíka" + }, + new + { + Id = "guu", + Scope = "I", + Type = "L", + ReferenceName = "Yanomamö" + }, + new + { + Id = "guw", + Scope = "I", + Type = "L", + ReferenceName = "Gun" + }, + new + { + Id = "gux", + Scope = "I", + Type = "L", + ReferenceName = "Gourmanchéma" + }, + new + { + Id = "guz", + Scope = "I", + Type = "L", + ReferenceName = "Gusii" + }, + new + { + Id = "gva", + Scope = "I", + Type = "L", + ReferenceName = "Guana (Paraguay)" + }, + new + { + Id = "gvc", + Scope = "I", + Type = "L", + ReferenceName = "Guanano" + }, + new + { + Id = "gve", + Scope = "I", + Type = "L", + ReferenceName = "Duwet" + }, + new + { + Id = "gvf", + Scope = "I", + Type = "L", + ReferenceName = "Golin" + }, + new + { + Id = "gvj", + Scope = "I", + Type = "L", + ReferenceName = "Guajá" + }, + new + { + Id = "gvl", + Scope = "I", + Type = "L", + ReferenceName = "Gulay" + }, + new + { + Id = "gvm", + Scope = "I", + Type = "L", + ReferenceName = "Gurmana" + }, + new + { + Id = "gvn", + Scope = "I", + Type = "L", + ReferenceName = "Kuku-Yalanji" + }, + new + { + Id = "gvo", + Scope = "I", + Type = "L", + ReferenceName = "Gavião Do Jiparaná" + }, + new + { + Id = "gvp", + Scope = "I", + Type = "L", + ReferenceName = "Pará Gavião" + }, + new + { + Id = "gvr", + Scope = "I", + Type = "L", + ReferenceName = "Gurung" + }, + new + { + Id = "gvs", + Scope = "I", + Type = "L", + ReferenceName = "Gumawana" + }, + new + { + Id = "gvy", + Scope = "I", + Type = "E", + ReferenceName = "Guyani" + }, + new + { + Id = "gwa", + Scope = "I", + Type = "L", + ReferenceName = "Mbato" + }, + new + { + Id = "gwb", + Scope = "I", + Type = "L", + ReferenceName = "Gwa" + }, + new + { + Id = "gwc", + Scope = "I", + Type = "L", + ReferenceName = "Kalami" + }, + new + { + Id = "gwd", + Scope = "I", + Type = "L", + ReferenceName = "Gawwada" + }, + new + { + Id = "gwe", + Scope = "I", + Type = "L", + ReferenceName = "Gweno" + }, + new + { + Id = "gwf", + Scope = "I", + Type = "L", + ReferenceName = "Gowro" + }, + new + { + Id = "gwg", + Scope = "I", + Type = "L", + ReferenceName = "Moo" + }, + new + { + Id = "gwi", + Part2B = "gwi", + Part2T = "gwi", + Scope = "I", + Type = "L", + ReferenceName = "Gwichʼin" + }, + new + { + Id = "gwj", + Scope = "I", + Type = "L", + ReferenceName = "ǀGwi" + }, + new + { + Id = "gwm", + Scope = "I", + Type = "E", + ReferenceName = "Awngthim" + }, + new + { + Id = "gwn", + Scope = "I", + Type = "L", + ReferenceName = "Gwandara" + }, + new + { + Id = "gwr", + Scope = "I", + Type = "L", + ReferenceName = "Gwere" + }, + new + { + Id = "gwt", + Scope = "I", + Type = "L", + ReferenceName = "Gawar-Bati" + }, + new + { + Id = "gwu", + Scope = "I", + Type = "E", + ReferenceName = "Guwamu" + }, + new + { + Id = "gww", + Scope = "I", + Type = "L", + ReferenceName = "Kwini" + }, + new + { + Id = "gwx", + Scope = "I", + Type = "L", + ReferenceName = "Gua" + }, + new + { + Id = "gxx", + Scope = "I", + Type = "L", + ReferenceName = "Wè Southern" + }, + new + { + Id = "gya", + Scope = "I", + Type = "L", + ReferenceName = "Northwest Gbaya" + }, + new + { + Id = "gyb", + Scope = "I", + Type = "L", + ReferenceName = "Garus" + }, + new + { + Id = "gyd", + Scope = "I", + Type = "L", + ReferenceName = "Kayardild" + }, + new + { + Id = "gye", + Scope = "I", + Type = "L", + ReferenceName = "Gyem" + }, + new + { + Id = "gyf", + Scope = "I", + Type = "E", + ReferenceName = "Gungabula" + }, + new + { + Id = "gyg", + Scope = "I", + Type = "L", + ReferenceName = "Gbayi" + }, + new + { + Id = "gyi", + Scope = "I", + Type = "L", + ReferenceName = "Gyele" + }, + new + { + Id = "gyl", + Scope = "I", + Type = "L", + ReferenceName = "Gayil" + }, + new + { + Id = "gym", + Scope = "I", + Type = "L", + ReferenceName = "Ngäbere" + }, + new + { + Id = "gyn", + Scope = "I", + Type = "L", + ReferenceName = "Guyanese Creole English" + }, + new + { + Id = "gyo", + Scope = "I", + Type = "L", + ReferenceName = "Gyalsumdo" + }, + new + { + Id = "gyr", + Scope = "I", + Type = "L", + ReferenceName = "Guarayu" + }, + new + { + Id = "gyy", + Scope = "I", + Type = "E", + ReferenceName = "Gunya" + }, + new + { + Id = "gza", + Scope = "I", + Type = "L", + ReferenceName = "Ganza" + }, + new + { + Id = "gzi", + Scope = "I", + Type = "L", + ReferenceName = "Gazi" + }, + new + { + Id = "gzn", + Scope = "I", + Type = "L", + ReferenceName = "Gane" + }); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/H.cs b/Cicm.Database/Seeders/Iso639Split/H.cs new file mode 100644 index 00000000..eae6d2fb --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/H.cs @@ -0,0 +1,401 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class H + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "haa", Scope = "I", Type = "L", ReferenceName = "Han"}, + new {Id = "hab", Scope = "I", Type = "L", ReferenceName = "Hanoi Sign Language"}, + new {Id = "hac", Scope = "I", Type = "L", ReferenceName = "Gurani"}, + new {Id = "had", Scope = "I", Type = "L", ReferenceName = "Hatam"}, + new {Id = "hae", Scope = "I", Type = "L", ReferenceName = "Eastern Oromo"}, + new {Id = "haf", Scope = "I", Type = "L", ReferenceName = "Haiphong Sign Language"}, + new {Id = "hag", Scope = "I", Type = "L", ReferenceName = "Hanga"}, + new {Id = "hah", Scope = "I", Type = "L", ReferenceName = "Hahon"}, + new + { + Id = "hai", + Part2B = "hai", + Part2T = "hai", + Scope = "M", + Type = "L", + ReferenceName = "Haida" + }, new {Id = "haj", Scope = "I", Type = "L", ReferenceName = "Hajong"}, + new {Id = "hak", Scope = "I", Type = "L", ReferenceName = "Hakka Chinese"}, + new {Id = "hal", Scope = "I", Type = "L", ReferenceName = "Halang"}, + new {Id = "ham", Scope = "I", Type = "L", ReferenceName = "Hewa"}, + new {Id = "han", Scope = "I", Type = "L", ReferenceName = "Hangaza"}, + new {Id = "hao", Scope = "I", Type = "L", ReferenceName = "Hakö"}, + new {Id = "hap", Scope = "I", Type = "L", ReferenceName = "Hupla"}, + new {Id = "haq", Scope = "I", Type = "L", ReferenceName = "Ha"}, + new {Id = "har", Scope = "I", Type = "L", ReferenceName = "Harari"}, + new {Id = "has", Scope = "I", Type = "L", ReferenceName = "Haisla"}, + new + { + Id = "hat", + Part2B = "hat", + Part2T = "hat", + Part1 = "ht", + Scope = "I", + Type = "L", + ReferenceName = "Haitian" + }, new + { + Id = "hau", + Part2B = "hau", + Part2T = "hau", + Part1 = "ha", + Scope = "I", + Type = "L", + ReferenceName = "Hausa" + }, new {Id = "hav", Scope = "I", Type = "L", ReferenceName = "Havu"}, + new + { + Id = "haw", + Part2B = "haw", + Part2T = "haw", + Scope = "I", + Type = "L", + ReferenceName = "Hawaiian" + }, new {Id = "hax", Scope = "I", Type = "L", ReferenceName = "Southern Haida"}, + new {Id = "hay", Scope = "I", Type = "L", ReferenceName = "Haya"}, + new {Id = "haz", Scope = "I", Type = "L", ReferenceName = "Hazaragi"}, + new {Id = "hba", Scope = "I", Type = "L", ReferenceName = "Hamba"}, + new {Id = "hbb", Scope = "I", Type = "L", ReferenceName = "Huba"}, + new {Id = "hbn", Scope = "I", Type = "L", ReferenceName = "Heiban"}, + new {Id = "hbo", Scope = "I", Type = "H", ReferenceName = "Ancient Hebrew"}, + new + { + Id = "hbs", + Part1 = "sh", + Scope = "M", + Type = "L", + ReferenceName = "Serbo-Croatian" + }, new {Id = "hbu", Scope = "I", Type = "L", ReferenceName = "Habu"}, + new {Id = "hca", Scope = "I", Type = "L", ReferenceName = "Andaman Creole Hindi"}, + new {Id = "hch", Scope = "I", Type = "L", ReferenceName = "Huichol"}, + new {Id = "hdn", Scope = "I", Type = "L", ReferenceName = "Northern Haida"}, + new {Id = "hds", Scope = "I", Type = "L", ReferenceName = "Honduras Sign Language"}, + new {Id = "hdy", Scope = "I", Type = "L", ReferenceName = "Hadiyya"}, + new {Id = "hea", Scope = "I", Type = "L", ReferenceName = "Northern Qiandong Miao"}, + new + { + Id = "heb", + Part2B = "heb", + Part2T = "heb", + Part1 = "he", + Scope = "I", + Type = "L", + ReferenceName = "Hebrew" + }, new {Id = "hed", Scope = "I", Type = "L", ReferenceName = "Herdé"}, + new {Id = "heg", Scope = "I", Type = "L", ReferenceName = "Helong"}, + new {Id = "heh", Scope = "I", Type = "L", ReferenceName = "Hehe"}, + new {Id = "hei", Scope = "I", Type = "L", ReferenceName = "Heiltsuk"}, + new {Id = "hem", Scope = "I", Type = "L", ReferenceName = "Hemba"}, + new + { + Id = "her", + Part2B = "her", + Part2T = "her", + Part1 = "hz", + Scope = "I", + Type = "L", + ReferenceName = "Herero" + }, new {Id = "hgm", Scope = "I", Type = "L", ReferenceName = "Haiǁom"}, + new {Id = "hgw", Scope = "I", Type = "L", ReferenceName = "Haigwai"}, + new {Id = "hhi", Scope = "I", Type = "L", ReferenceName = "Hoia Hoia"}, + new {Id = "hhr", Scope = "I", Type = "L", ReferenceName = "Kerak"}, + new {Id = "hhy", Scope = "I", Type = "L", ReferenceName = "Hoyahoya"}, + new {Id = "hia", Scope = "I", Type = "L", ReferenceName = "Lamang"}, + new {Id = "hib", Scope = "I", Type = "E", ReferenceName = "Hibito"}, + new {Id = "hid", Scope = "I", Type = "L", ReferenceName = "Hidatsa"}, + new {Id = "hif", Scope = "I", Type = "L", ReferenceName = "Fiji Hindi"}, + new {Id = "hig", Scope = "I", Type = "L", ReferenceName = "Kamwe"}, + new {Id = "hih", Scope = "I", Type = "L", ReferenceName = "Pamosu"}, + new {Id = "hii", Scope = "I", Type = "L", ReferenceName = "Hinduri"}, + new {Id = "hij", Scope = "I", Type = "L", ReferenceName = "Hijuk"}, + new {Id = "hik", Scope = "I", Type = "L", ReferenceName = "Seit-Kaitetu"}, + new + { + Id = "hil", + Part2B = "hil", + Part2T = "hil", + Scope = "I", + Type = "L", + ReferenceName = "Hiligaynon" + }, new + { + Id = "hin", + Part2B = "hin", + Part2T = "hin", + Part1 = "hi", + Scope = "I", + Type = "L", + ReferenceName = "Hindi" + }, new {Id = "hio", Scope = "I", Type = "L", ReferenceName = "Tsoa"}, + new {Id = "hir", Scope = "I", Type = "L", ReferenceName = "Himarimã"}, + new + { + Id = "hit", + Part2B = "hit", + Part2T = "hit", + Scope = "I", + Type = "A", + ReferenceName = "Hittite" + }, new {Id = "hiw", Scope = "I", Type = "L", ReferenceName = "Hiw"}, + new {Id = "hix", Scope = "I", Type = "L", ReferenceName = "Hixkaryána"}, + new {Id = "hji", Scope = "I", Type = "L", ReferenceName = "Haji"}, + new {Id = "hka", Scope = "I", Type = "L", ReferenceName = "Kahe"}, + new {Id = "hke", Scope = "I", Type = "L", ReferenceName = "Hunde"}, + new {Id = "hkk", Scope = "I", Type = "L", ReferenceName = "Hunjara-Kaina Ke"}, + new {Id = "hkn", Scope = "I", Type = "L", ReferenceName = "Mel-Khaonh"}, + new + { + Id = "hks", + Scope = "I", + Type = "L", + ReferenceName = "Hong Kong Sign Language" + }, + new {Id = "hla", Scope = "I", Type = "L", ReferenceName = "Halia"}, + new {Id = "hlb", Scope = "I", Type = "L", ReferenceName = "Halbi"}, + new {Id = "hld", Scope = "I", Type = "L", ReferenceName = "Halang Doan"}, + new {Id = "hle", Scope = "I", Type = "L", ReferenceName = "Hlersu"}, + new {Id = "hlt", Scope = "I", Type = "L", ReferenceName = "Matu Chin"}, + new {Id = "hlu", Scope = "I", Type = "A", ReferenceName = "Hieroglyphic Luwian"}, + new {Id = "hma", Scope = "I", Type = "L", ReferenceName = "Southern Mashan Hmong"}, + new {Id = "hmb", Scope = "I", Type = "L", ReferenceName = "Humburi Senni Songhay"}, + new {Id = "hmc", Scope = "I", Type = "L", ReferenceName = "Central Huishui Hmong"}, + new {Id = "hmd", Scope = "I", Type = "L", ReferenceName = "Large Flowery Miao"}, + new {Id = "hme", Scope = "I", Type = "L", ReferenceName = "Eastern Huishui Hmong"}, + new {Id = "hmf", Scope = "I", Type = "L", ReferenceName = "Hmong Don"}, + new + { + Id = "hmg", + Scope = "I", + Type = "L", + ReferenceName = "Southwestern Guiyang Hmong" + }, + new + { + Id = "hmh", + Scope = "I", + Type = "L", + ReferenceName = "Southwestern Huishui Hmong" + }, + new {Id = "hmi", Scope = "I", Type = "L", ReferenceName = "Northern Huishui Hmong"}, + new {Id = "hmj", Scope = "I", Type = "L", ReferenceName = "Ge"}, + new {Id = "hmk", Scope = "I", Type = "A", ReferenceName = "Maek"}, + new {Id = "hml", Scope = "I", Type = "L", ReferenceName = "Luopohe Hmong"}, + new {Id = "hmm", Scope = "I", Type = "L", ReferenceName = "Central Mashan Hmong"}, + new + { + Id = "hmn", + Part2B = "hmn", + Part2T = "hmn", + Scope = "M", + Type = "L", + ReferenceName = "Hmong" + }, new + { + Id = "hmo", + Part2B = "hmo", + Part2T = "hmo", + Part1 = "ho", + Scope = "I", + Type = "L", + ReferenceName = "Hiri Motu" + }, new {Id = "hmp", Scope = "I", Type = "L", ReferenceName = "Northern Mashan Hmong"}, + new {Id = "hmq", Scope = "I", Type = "L", ReferenceName = "Eastern Qiandong Miao"}, + new {Id = "hmr", Scope = "I", Type = "L", ReferenceName = "Hmar"}, + new {Id = "hms", Scope = "I", Type = "L", ReferenceName = "Southern Qiandong Miao"}, + new {Id = "hmt", Scope = "I", Type = "L", ReferenceName = "Hamtai"}, + new {Id = "hmu", Scope = "I", Type = "L", ReferenceName = "Hamap"}, + new {Id = "hmv", Scope = "I", Type = "L", ReferenceName = "Hmong Dô"}, + new {Id = "hmw", Scope = "I", Type = "L", ReferenceName = "Western Mashan Hmong"}, + new {Id = "hmy", Scope = "I", Type = "L", ReferenceName = "Southern Guiyang Hmong"}, + new {Id = "hmz", Scope = "I", Type = "L", ReferenceName = "Hmong Shua"}, + new {Id = "hna", Scope = "I", Type = "L", ReferenceName = "Mina (Cameroon)"}, + new {Id = "hnd", Scope = "I", Type = "L", ReferenceName = "Southern Hindko"}, + new {Id = "hne", Scope = "I", Type = "L", ReferenceName = "Chhattisgarhi"}, + new {Id = "hnh", Scope = "I", Type = "L", ReferenceName = "ǁAni"}, + new {Id = "hni", Scope = "I", Type = "L", ReferenceName = "Hani"}, + new {Id = "hnj", Scope = "I", Type = "L", ReferenceName = "Hmong Njua"}, + new {Id = "hnn", Scope = "I", Type = "L", ReferenceName = "Hanunoo"}, + new {Id = "hno", Scope = "I", Type = "L", ReferenceName = "Northern Hindko"}, + new {Id = "hns", Scope = "I", Type = "L", ReferenceName = "Caribbean Hindustani"}, + new {Id = "hnu", Scope = "I", Type = "L", ReferenceName = "Hung"}, + new {Id = "hoa", Scope = "I", Type = "L", ReferenceName = "Hoava"}, + new {Id = "hob", Scope = "I", Type = "L", ReferenceName = "Mari (Madang Province)"}, + new {Id = "hoc", Scope = "I", Type = "L", ReferenceName = "Ho"}, + new {Id = "hod", Scope = "I", Type = "E", ReferenceName = "Holma"}, + new {Id = "hoe", Scope = "I", Type = "L", ReferenceName = "Horom"}, + new {Id = "hoh", Scope = "I", Type = "L", ReferenceName = "Hobyót"}, + new {Id = "hoi", Scope = "I", Type = "L", ReferenceName = "Holikachuk"}, + new {Id = "hoj", Scope = "I", Type = "L", ReferenceName = "Hadothi"}, + new {Id = "hol", Scope = "I", Type = "L", ReferenceName = "Holu"}, + new {Id = "hom", Scope = "I", Type = "E", ReferenceName = "Homa"}, + new {Id = "hoo", Scope = "I", Type = "L", ReferenceName = "Holoholo"}, + new {Id = "hop", Scope = "I", Type = "L", ReferenceName = "Hopi"}, + new {Id = "hor", Scope = "I", Type = "E", ReferenceName = "Horo"}, + new + { + Id = "hos", + Scope = "I", + Type = "L", + ReferenceName = "Ho Chi Minh City Sign Language" + }, new {Id = "hot", Scope = "I", Type = "L", ReferenceName = "Hote"}, + new {Id = "hov", Scope = "I", Type = "L", ReferenceName = "Hovongan"}, + new {Id = "how", Scope = "I", Type = "L", ReferenceName = "Honi"}, + new {Id = "hoy", Scope = "I", Type = "L", ReferenceName = "Holiya"}, + new {Id = "hoz", Scope = "I", Type = "L", ReferenceName = "Hozo"}, + new {Id = "hpo", Scope = "I", Type = "E", ReferenceName = "Hpon"}, + new + { + Id = "hps", + Scope = "I", + Type = "L", + ReferenceName = "Hawai'i Sign Language (HSL)" + }, new {Id = "hra", Scope = "I", Type = "L", ReferenceName = "Hrangkhol"}, + new {Id = "hrc", Scope = "I", Type = "L", ReferenceName = "Niwer Mil"}, + new {Id = "hre", Scope = "I", Type = "L", ReferenceName = "Hre"}, + new {Id = "hrk", Scope = "I", Type = "L", ReferenceName = "Haruku"}, + new {Id = "hrm", Scope = "I", Type = "L", ReferenceName = "Horned Miao"}, + new {Id = "hro", Scope = "I", Type = "L", ReferenceName = "Haroi"}, + new {Id = "hrp", Scope = "I", Type = "E", ReferenceName = "Nhirrpi"}, + new {Id = "hrt", Scope = "I", Type = "L", ReferenceName = "Hértevin"}, + new {Id = "hru", Scope = "I", Type = "L", ReferenceName = "Hruso"}, + new + { + Id = "hrv", + Part2B = "hrv", + Part2T = "hrv", + Part1 = "hr", + Scope = "I", + Type = "L", + ReferenceName = "Croatian" + }, new {Id = "hrw", Scope = "I", Type = "L", ReferenceName = "Warwar Feni"}, + new {Id = "hrx", Scope = "I", Type = "L", ReferenceName = "Hunsrik"}, + new {Id = "hrz", Scope = "I", Type = "L", ReferenceName = "Harzani"}, + new + { + Id = "hsb", + Part2B = "hsb", + Part2T = "hsb", + Scope = "I", + Type = "L", + ReferenceName = "Upper Sorbian" + }, + new {Id = "hsh", Scope = "I", Type = "L", ReferenceName = "Hungarian Sign Language"}, + new {Id = "hsl", Scope = "I", Type = "L", ReferenceName = "Hausa Sign Language"}, + new {Id = "hsn", Scope = "I", Type = "L", ReferenceName = "Xiang Chinese"}, + new {Id = "hss", Scope = "I", Type = "L", ReferenceName = "Harsusi"}, + new {Id = "hti", Scope = "I", Type = "E", ReferenceName = "Hoti"}, + new {Id = "hto", Scope = "I", Type = "L", ReferenceName = "Minica Huitoto"}, + new {Id = "hts", Scope = "I", Type = "L", ReferenceName = "Hadza"}, + new {Id = "htu", Scope = "I", Type = "L", ReferenceName = "Hitu"}, + new {Id = "htx", Scope = "I", Type = "A", ReferenceName = "Middle Hittite"}, + new {Id = "hub", Scope = "I", Type = "L", ReferenceName = "Huambisa"}, + new {Id = "huc", Scope = "I", Type = "L", ReferenceName = "ǂHua"}, + new {Id = "hud", Scope = "I", Type = "L", ReferenceName = "Huaulu"}, + new + { + Id = "hue", + Scope = "I", + Type = "L", + ReferenceName = "San Francisco Del Mar Huave" + }, new {Id = "huf", Scope = "I", Type = "L", ReferenceName = "Humene"}, + new {Id = "hug", Scope = "I", Type = "L", ReferenceName = "Huachipaeri"}, + new {Id = "huh", Scope = "I", Type = "L", ReferenceName = "Huilliche"}, + new {Id = "hui", Scope = "I", Type = "L", ReferenceName = "Huli"}, + new + { + Id = "huj", + Scope = "I", + Type = "L", + ReferenceName = "Northern Guiyang Hmong" + }, + new {Id = "huk", Scope = "I", Type = "E", ReferenceName = "Hulung"}, + new {Id = "hul", Scope = "I", Type = "L", ReferenceName = "Hula"}, + new {Id = "hum", Scope = "I", Type = "L", ReferenceName = "Hungana"}, + new + { + Id = "hun", + Part2B = "hun", + Part2T = "hun", + Part1 = "hu", + Scope = "I", + Type = "L", + ReferenceName = "Hungarian" + }, new {Id = "huo", Scope = "I", Type = "L", ReferenceName = "Hu"}, + new + { + Id = "hup", + Part2B = "hup", + Part2T = "hup", + Scope = "I", + Type = "L", + ReferenceName = "Hupa" + }, new {Id = "huq", Scope = "I", Type = "L", ReferenceName = "Tsat"}, + new {Id = "hur", Scope = "I", Type = "L", ReferenceName = "Halkomelem"}, + new {Id = "hus", Scope = "I", Type = "L", ReferenceName = "Huastec"}, + new {Id = "hut", Scope = "I", Type = "L", ReferenceName = "Humla"}, + new {Id = "huu", Scope = "I", Type = "L", ReferenceName = "Murui Huitoto"}, + new + { + Id = "huv", + Scope = "I", + Type = "L", + ReferenceName = "San Mateo Del Mar Huave" + }, + new {Id = "huw", Scope = "I", Type = "E", ReferenceName = "Hukumina"}, + new {Id = "hux", Scope = "I", Type = "L", ReferenceName = "Nüpode Huitoto"}, + new {Id = "huy", Scope = "I", Type = "L", ReferenceName = "Hulaulá"}, + new {Id = "huz", Scope = "I", Type = "L", ReferenceName = "Hunzib"}, + new + { + Id = "hvc", + Scope = "I", + Type = "L", + ReferenceName = "Haitian Vodoun Culture Language" + }, + new + { + Id = "hve", + Scope = "I", + Type = "L", + ReferenceName = "San Dionisio Del Mar Huave" + }, new {Id = "hvk", Scope = "I", Type = "L", ReferenceName = "Haveke"}, + new {Id = "hvn", Scope = "I", Type = "L", ReferenceName = "Sabu"}, + new + { + Id = "hvv", + Scope = "I", + Type = "L", + ReferenceName = "Santa María Del Mar Huave" + }, + new {Id = "hwa", Scope = "I", Type = "L", ReferenceName = "Wané"}, + new + { + Id = "hwc", + Scope = "I", + Type = "L", + ReferenceName = "Hawai'i Creole English" + }, + new {Id = "hwo", Scope = "I", Type = "L", ReferenceName = "Hwana"}, + new {Id = "hya", Scope = "I", Type = "L", ReferenceName = "Hya"}, + new + { + Id = "hye", + Part2B = "arm", + Part2T = "hye", + Part1 = "hy", + Scope = "I", + Type = "L", + ReferenceName = "Armenian" + }, new {Id = "hyw", Scope = "I", Type = "L", ReferenceName = "Western Armenian"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/I.cs b/Cicm.Database/Seeders/Iso639Split/I.cs new file mode 100644 index 00000000..0980154f --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/I.cs @@ -0,0 +1,313 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class I + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "iai", Scope = "I", Type = "L", ReferenceName = "Iaai"}, + new {Id = "ian", Scope = "I", Type = "L", ReferenceName = "Iatmul"}, + new {Id = "iar", Scope = "I", Type = "L", ReferenceName = "Purari"}, + new + { + Id = "iba", + Part2B = "iba", + Part2T = "iba", + Scope = "I", + Type = "L", + ReferenceName = "Iban" + }, new {Id = "ibb", Scope = "I", Type = "L", ReferenceName = "Ibibio"}, + new {Id = "ibd", Scope = "I", Type = "L", ReferenceName = "Iwaidja"}, + new {Id = "ibe", Scope = "I", Type = "L", ReferenceName = "Akpes"}, + new {Id = "ibg", Scope = "I", Type = "L", ReferenceName = "Ibanag"}, + new {Id = "ibh", Scope = "I", Type = "L", ReferenceName = "Bih"}, + new {Id = "ibl", Scope = "I", Type = "L", ReferenceName = "Ibaloi"}, + new {Id = "ibm", Scope = "I", Type = "L", ReferenceName = "Agoi"}, + new {Id = "ibn", Scope = "I", Type = "L", ReferenceName = "Ibino"}, + new + { + Id = "ibo", + Part2B = "ibo", + Part2T = "ibo", + Part1 = "ig", + Scope = "I", + Type = "L", + ReferenceName = "Igbo" + }, new {Id = "ibr", Scope = "I", Type = "L", ReferenceName = "Ibuoro"}, + new {Id = "ibu", Scope = "I", Type = "L", ReferenceName = "Ibu"}, + new {Id = "iby", Scope = "I", Type = "L", ReferenceName = "Ibani"}, + new {Id = "ica", Scope = "I", Type = "L", ReferenceName = "Ede Ica"}, + new {Id = "ich", Scope = "I", Type = "L", ReferenceName = "Etkywan"}, + new + { + Id = "icl", + Scope = "I", + Type = "L", + ReferenceName = "Icelandic Sign Language" + }, + new + { + Id = "icr", + Scope = "I", + Type = "L", + ReferenceName = "Islander Creole English" + }, + new {Id = "ida", Scope = "I", Type = "L", ReferenceName = "Idakho-Isukha-Tiriki"}, + new {Id = "idb", Scope = "I", Type = "L", ReferenceName = "Indo-Portuguese"}, + new {Id = "idc", Scope = "I", Type = "L", ReferenceName = "Idon"}, + new {Id = "idd", Scope = "I", Type = "L", ReferenceName = "Ede Idaca"}, + new {Id = "ide", Scope = "I", Type = "L", ReferenceName = "Idere"}, + new {Id = "idi", Scope = "I", Type = "L", ReferenceName = "Idi"}, + new + { + Id = "ido", + Part2B = "ido", + Part2T = "ido", + Part1 = "io", + Scope = "I", + Type = "C", + ReferenceName = "Ido" + }, new {Id = "idr", Scope = "I", Type = "L", ReferenceName = "Indri"}, + new {Id = "ids", Scope = "I", Type = "L", ReferenceName = "Idesa"}, + new {Id = "idt", Scope = "I", Type = "L", ReferenceName = "Idaté"}, + new {Id = "idu", Scope = "I", Type = "L", ReferenceName = "Idoma"}, + new {Id = "ifa", Scope = "I", Type = "L", ReferenceName = "Amganad Ifugao"}, + new {Id = "ifb", Scope = "I", Type = "L", ReferenceName = "Batad Ifugao"}, + new {Id = "ife", Scope = "I", Type = "L", ReferenceName = "Ifè"}, + new {Id = "iff", Scope = "I", Type = "E", ReferenceName = "Ifo"}, + new {Id = "ifk", Scope = "I", Type = "L", ReferenceName = "Tuwali Ifugao"}, + new {Id = "ifm", Scope = "I", Type = "L", ReferenceName = "Teke-Fuumu"}, + new {Id = "ifu", Scope = "I", Type = "L", ReferenceName = "Mayoyao Ifugao"}, + new {Id = "ify", Scope = "I", Type = "L", ReferenceName = "Keley-I Kallahan"}, + new {Id = "igb", Scope = "I", Type = "L", ReferenceName = "Ebira"}, + new {Id = "ige", Scope = "I", Type = "L", ReferenceName = "Igede"}, + new {Id = "igg", Scope = "I", Type = "L", ReferenceName = "Igana"}, + new {Id = "igl", Scope = "I", Type = "L", ReferenceName = "Igala"}, + new {Id = "igm", Scope = "I", Type = "L", ReferenceName = "Kanggape"}, + new {Id = "ign", Scope = "I", Type = "L", ReferenceName = "Ignaciano"}, + new {Id = "igo", Scope = "I", Type = "L", ReferenceName = "Isebe"}, + new {Id = "igs", Scope = "I", Type = "C", ReferenceName = "Interglossa"}, + new {Id = "igw", Scope = "I", Type = "L", ReferenceName = "Igwe"}, + new {Id = "ihb", Scope = "I", Type = "L", ReferenceName = "Iha Based Pidgin"}, + new {Id = "ihi", Scope = "I", Type = "L", ReferenceName = "Ihievbe"}, + new {Id = "ihp", Scope = "I", Type = "L", ReferenceName = "Iha"}, + new {Id = "ihw", Scope = "I", Type = "E", ReferenceName = "Bidhawal"}, + new + { + Id = "iii", + Part2B = "iii", + Part2T = "iii", + Part1 = "ii", + Scope = "I", + Type = "L", + ReferenceName = "Sichuan Yi" + }, new {Id = "iin", Scope = "I", Type = "E", ReferenceName = "Thiin"}, + new {Id = "ijc", Scope = "I", Type = "L", ReferenceName = "Izon"}, + new {Id = "ije", Scope = "I", Type = "L", ReferenceName = "Biseni"}, + new {Id = "ijj", Scope = "I", Type = "L", ReferenceName = "Ede Ije"}, + new {Id = "ijn", Scope = "I", Type = "L", ReferenceName = "Kalabari"}, + new {Id = "ijs", Scope = "I", Type = "L", ReferenceName = "Southeast Ijo"}, + new + { + Id = "ike", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Canadian Inuktitut" + }, new {Id = "iki", Scope = "I", Type = "L", ReferenceName = "Iko"}, + new {Id = "ikk", Scope = "I", Type = "L", ReferenceName = "Ika"}, + new {Id = "ikl", Scope = "I", Type = "L", ReferenceName = "Ikulu"}, + new {Id = "iko", Scope = "I", Type = "L", ReferenceName = "Olulumo-Ikom"}, + new {Id = "ikp", Scope = "I", Type = "L", ReferenceName = "Ikpeshi"}, + new {Id = "ikr", Scope = "I", Type = "E", ReferenceName = "Ikaranggal"}, + new + { + Id = "iks", + Scope = "I", + Type = "L", + ReferenceName = "Inuit Sign Language" + }, + new {Id = "ikt", Scope = "I", Type = "L", ReferenceName = "Inuinnaqtun"}, + new + { + Id = "iku", + Part2B = "iku", + Part2T = "iku", + Part1 = "iu", + Scope = "M", + Type = "L", + ReferenceName = "Inuktitut" + }, new {Id = "ikv", Scope = "I", Type = "L", ReferenceName = "Iku-Gora-Ankwa"}, + new {Id = "ikw", Scope = "I", Type = "L", ReferenceName = "Ikwere"}, + new {Id = "ikx", Scope = "I", Type = "L", ReferenceName = "Ik"}, + new {Id = "ikz", Scope = "I", Type = "L", ReferenceName = "Ikizu"}, + new {Id = "ila", Scope = "I", Type = "L", ReferenceName = "Ile Ape"}, + new {Id = "ilb", Scope = "I", Type = "L", ReferenceName = "Ila"}, + new + { + Id = "ile", + Part2B = "ile", + Part2T = "ile", + Part1 = "ie", + Scope = "I", + Type = "C", + ReferenceName = "Interlingue" + }, new {Id = "ilg", Scope = "I", Type = "E", ReferenceName = "Garig-Ilgar"}, + new {Id = "ili", Scope = "I", Type = "L", ReferenceName = "Ili Turki"}, + new {Id = "ilk", Scope = "I", Type = "L", ReferenceName = "Ilongot"}, + new {Id = "ilm", Scope = "I", Type = "L", ReferenceName = "Iranun (Malaysia)"}, + new + { + Id = "ilo", + Part2B = "ilo", + Part2T = "ilo", + Scope = "I", + Type = "L", + ReferenceName = "Iloko" + }, new {Id = "ilp", Scope = "I", Type = "L", ReferenceName = "Iranun (Philippines)"}, + new {Id = "ils", Scope = "I", Type = "L", ReferenceName = "International Sign"}, + new {Id = "ilu", Scope = "I", Type = "L", ReferenceName = "Ili'uun"}, + new {Id = "ilv", Scope = "I", Type = "L", ReferenceName = "Ilue"}, + new {Id = "ima", Scope = "I", Type = "L", ReferenceName = "Mala Malasar"}, + new {Id = "imi", Scope = "I", Type = "L", ReferenceName = "Anamgura"}, + new {Id = "iml", Scope = "I", Type = "E", ReferenceName = "Miluk"}, + new {Id = "imn", Scope = "I", Type = "L", ReferenceName = "Imonda"}, + new {Id = "imo", Scope = "I", Type = "L", ReferenceName = "Imbongu"}, + new {Id = "imr", Scope = "I", Type = "L", ReferenceName = "Imroing"}, + new {Id = "ims", Scope = "I", Type = "A", ReferenceName = "Marsian"}, + new {Id = "imy", Scope = "I", Type = "A", ReferenceName = "Milyan"}, + new + { + Id = "ina", + Part2B = "ina", + Part2T = "ina", + Part1 = "ia", + Scope = "I", + Type = "C", + ReferenceName = "Interlingua (International Auxiliary Language Association)" + }, new {Id = "inb", Scope = "I", Type = "L", ReferenceName = "Inga"}, + new + { + Id = "ind", + Part2B = "ind", + Part2T = "ind", + Part1 = "id", + Scope = "I", + Type = "L", + ReferenceName = "Indonesian" + }, new {Id = "ing", Scope = "I", Type = "L", ReferenceName = "Degexit'an"}, + new + { + Id = "inh", + Part2B = "inh", + Part2T = "inh", + Scope = "I", + Type = "L", + ReferenceName = "Ingush" + }, new {Id = "inj", Scope = "I", Type = "L", ReferenceName = "Jungle Inga"}, + new + { + Id = "inl", + Scope = "I", + Type = "L", + ReferenceName = "Indonesian Sign Language" + }, + new {Id = "inm", Scope = "I", Type = "A", ReferenceName = "Minaean"}, + new {Id = "inn", Scope = "I", Type = "L", ReferenceName = "Isinai"}, + new {Id = "ino", Scope = "I", Type = "L", ReferenceName = "Inoke-Yate"}, + new {Id = "inp", Scope = "I", Type = "L", ReferenceName = "Iñapari"}, + new {Id = "ins", Scope = "I", Type = "L", ReferenceName = "Indian Sign Language"}, + new {Id = "int", Scope = "I", Type = "L", ReferenceName = "Intha"}, + new {Id = "inz", Scope = "I", Type = "E", ReferenceName = "Ineseño"}, + new {Id = "ior", Scope = "I", Type = "L", ReferenceName = "Inor"}, + new {Id = "iou", Scope = "I", Type = "L", ReferenceName = "Tuma-Irumu"}, + new {Id = "iow", Scope = "I", Type = "E", ReferenceName = "Iowa-Oto"}, + new {Id = "ipi", Scope = "I", Type = "L", ReferenceName = "Ipili"}, + new + { + Id = "ipk", + Part2B = "ipk", + Part2T = "ipk", + Part1 = "ik", + Scope = "M", + Type = "L", + ReferenceName = "Inupiaq" + }, new {Id = "ipo", Scope = "I", Type = "L", ReferenceName = "Ipiko"}, + new {Id = "iqu", Scope = "I", Type = "L", ReferenceName = "Iquito"}, + new {Id = "iqw", Scope = "I", Type = "L", ReferenceName = "Ikwo"}, + new {Id = "ire", Scope = "I", Type = "L", ReferenceName = "Iresim"}, + new {Id = "irh", Scope = "I", Type = "L", ReferenceName = "Irarutu"}, + new {Id = "iri", Scope = "I", Type = "L", ReferenceName = "Rigwe"}, + new {Id = "irk", Scope = "I", Type = "L", ReferenceName = "Iraqw"}, + new {Id = "irn", Scope = "I", Type = "L", ReferenceName = "Irántxe"}, + new {Id = "irr", Scope = "I", Type = "L", ReferenceName = "Ir"}, + new {Id = "iru", Scope = "I", Type = "L", ReferenceName = "Irula"}, + new {Id = "irx", Scope = "I", Type = "L", ReferenceName = "Kamberau"}, + new {Id = "iry", Scope = "I", Type = "L", ReferenceName = "Iraya"}, + new {Id = "isa", Scope = "I", Type = "L", ReferenceName = "Isabi"}, + new {Id = "isc", Scope = "I", Type = "L", ReferenceName = "Isconahua"}, + new {Id = "isd", Scope = "I", Type = "L", ReferenceName = "Isnag"}, + new {Id = "ise", Scope = "I", Type = "L", ReferenceName = "Italian Sign Language"}, + new {Id = "isg", Scope = "I", Type = "L", ReferenceName = "Irish Sign Language"}, + new {Id = "ish", Scope = "I", Type = "L", ReferenceName = "Esan"}, + new {Id = "isi", Scope = "I", Type = "L", ReferenceName = "Nkem-Nkum"}, + new {Id = "isk", Scope = "I", Type = "L", ReferenceName = "Ishkashimi"}, + new + { + Id = "isl", + Part2B = "ice", + Part2T = "isl", + Part1 = "is", + Scope = "I", + Type = "L", + ReferenceName = "Icelandic" + }, new {Id = "ism", Scope = "I", Type = "L", ReferenceName = "Masimasi"}, + new {Id = "isn", Scope = "I", Type = "L", ReferenceName = "Isanzu"}, + new {Id = "iso", Scope = "I", Type = "L", ReferenceName = "Isoko"}, + new {Id = "isr", Scope = "I", Type = "L", ReferenceName = "Israeli Sign Language"}, + new {Id = "ist", Scope = "I", Type = "L", ReferenceName = "Istriot"}, + new {Id = "isu", Scope = "I", Type = "L", ReferenceName = "Isu (Menchum Division)"}, + new + { + Id = "ita", + Part2B = "ita", + Part2T = "ita", + Part1 = "it", + Scope = "I", + Type = "L", + ReferenceName = "Italian" + }, new {Id = "itb", Scope = "I", Type = "L", ReferenceName = "Binongan Itneg"}, + new {Id = "itd", Scope = "I", Type = "L", ReferenceName = "Southern Tidung"}, + new {Id = "ite", Scope = "I", Type = "E", ReferenceName = "Itene"}, + new {Id = "iti", Scope = "I", Type = "L", ReferenceName = "Inlaod Itneg"}, + new {Id = "itk", Scope = "I", Type = "L", ReferenceName = "Judeo-Italian"}, + new {Id = "itl", Scope = "I", Type = "L", ReferenceName = "Itelmen"}, + new {Id = "itm", Scope = "I", Type = "L", ReferenceName = "Itu Mbon Uzo"}, + new {Id = "ito", Scope = "I", Type = "L", ReferenceName = "Itonama"}, + new {Id = "itr", Scope = "I", Type = "L", ReferenceName = "Iteri"}, + new {Id = "its", Scope = "I", Type = "L", ReferenceName = "Isekiri"}, + new {Id = "itt", Scope = "I", Type = "L", ReferenceName = "Maeng Itneg"}, + new {Id = "itv", Scope = "I", Type = "L", ReferenceName = "Itawit"}, + new {Id = "itw", Scope = "I", Type = "L", ReferenceName = "Ito"}, + new {Id = "itx", Scope = "I", Type = "L", ReferenceName = "Itik"}, + new {Id = "ity", Scope = "I", Type = "L", ReferenceName = "Moyadan Itneg"}, + new {Id = "itz", Scope = "I", Type = "L", ReferenceName = "Itzá"}, + new {Id = "ium", Scope = "I", Type = "L", ReferenceName = "Iu Mien"}, + new {Id = "ivb", Scope = "I", Type = "L", ReferenceName = "Ibatan"}, + new {Id = "ivv", Scope = "I", Type = "L", ReferenceName = "Ivatan"}, + new {Id = "iwk", Scope = "I", Type = "L", ReferenceName = "I-Wak"}, + new {Id = "iwm", Scope = "I", Type = "L", ReferenceName = "Iwam"}, + new {Id = "iwo", Scope = "I", Type = "L", ReferenceName = "Iwur"}, + new {Id = "iws", Scope = "I", Type = "L", ReferenceName = "Sepik Iwam"}, + new {Id = "ixc", Scope = "I", Type = "L", ReferenceName = "Ixcatec"}, + new {Id = "ixl", Scope = "I", Type = "L", ReferenceName = "Ixil"}, + new {Id = "iya", Scope = "I", Type = "L", ReferenceName = "Iyayu"}, + new {Id = "iyo", Scope = "I", Type = "L", ReferenceName = "Mesaka"}, + new {Id = "iyx", Scope = "I", Type = "L", ReferenceName = "Yaka (Congo)"}, + new {Id = "izh", Scope = "I", Type = "L", ReferenceName = "Ingrian"}, + new {Id = "izr", Scope = "I", Type = "L", ReferenceName = "Izere"}, + new {Id = "izz", Scope = "I", Type = "L", ReferenceName = "Izii"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/J.cs b/Cicm.Database/Seeders/Iso639Split/J.cs new file mode 100644 index 00000000..214567e4 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/J.cs @@ -0,0 +1,224 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class J + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "jaa", Scope = "I", Type = "L", ReferenceName = "Jamamadí"}, + new {Id = "jab", Scope = "I", Type = "L", ReferenceName = "Hyam"}, + new {Id = "jac", Scope = "I", Type = "L", ReferenceName = "Popti'"}, + new {Id = "jad", Scope = "I", Type = "L", ReferenceName = "Jahanka"}, + new {Id = "jae", Scope = "I", Type = "L", ReferenceName = "Yabem"}, + new {Id = "jaf", Scope = "I", Type = "L", ReferenceName = "Jara"}, + new {Id = "jah", Scope = "I", Type = "L", ReferenceName = "Jah Hut"}, + new {Id = "jaj", Scope = "I", Type = "L", ReferenceName = "Zazao"}, + new {Id = "jak", Scope = "I", Type = "L", ReferenceName = "Jakun"}, + new {Id = "jal", Scope = "I", Type = "L", ReferenceName = "Yalahatan"}, + new {Id = "jam", Scope = "I", Type = "L", ReferenceName = "Jamaican Creole English"}, + new {Id = "jan", Scope = "I", Type = "E", ReferenceName = "Jandai"}, + new {Id = "jao", Scope = "I", Type = "L", ReferenceName = "Yanyuwa"}, + new {Id = "jaq", Scope = "I", Type = "L", ReferenceName = "Yaqay"}, + new {Id = "jas", Scope = "I", Type = "L", ReferenceName = "New Caledonian Javanese"}, + new {Id = "jat", Scope = "I", Type = "L", ReferenceName = "Jakati"}, + new {Id = "jau", Scope = "I", Type = "L", ReferenceName = "Yaur"}, + new + { + Id = "jav", + Part2B = "jav", + Part2T = "jav", + Part1 = "jv", + Scope = "I", + Type = "L", + ReferenceName = "Javanese" + }, new {Id = "jax", Scope = "I", Type = "L", ReferenceName = "Jambi Malay"}, + new {Id = "jay", Scope = "I", Type = "L", ReferenceName = "Yan-nhangu"}, + new {Id = "jaz", Scope = "I", Type = "L", ReferenceName = "Jawe"}, + new {Id = "jbe", Scope = "I", Type = "L", ReferenceName = "Judeo-Berber"}, + new {Id = "jbi", Scope = "I", Type = "E", ReferenceName = "Badjiri"}, + new {Id = "jbj", Scope = "I", Type = "L", ReferenceName = "Arandai"}, + new {Id = "jbk", Scope = "I", Type = "L", ReferenceName = "Barikewa"}, + new {Id = "jbn", Scope = "I", Type = "L", ReferenceName = "Nafusi"}, + new + { + Id = "jbo", + Part2B = "jbo", + Part2T = "jbo", + Scope = "I", + Type = "C", + ReferenceName = "Lojban" + }, new {Id = "jbr", Scope = "I", Type = "L", ReferenceName = "Jofotek-Bromnya"}, + new {Id = "jbt", Scope = "I", Type = "L", ReferenceName = "Jabutí"}, + new {Id = "jbu", Scope = "I", Type = "L", ReferenceName = "Jukun Takum"}, + new {Id = "jbw", Scope = "I", Type = "E", ReferenceName = "Yawijibaya"}, + new + { + Id = "jcs", + Scope = "I", + Type = "L", + ReferenceName = "Jamaican Country Sign Language" + }, new {Id = "jct", Scope = "I", Type = "L", ReferenceName = "Krymchak"}, + new {Id = "jda", Scope = "I", Type = "L", ReferenceName = "Jad"}, + new {Id = "jdg", Scope = "I", Type = "L", ReferenceName = "Jadgali"}, + new {Id = "jdt", Scope = "I", Type = "L", ReferenceName = "Judeo-Tat"}, + new {Id = "jeb", Scope = "I", Type = "L", ReferenceName = "Jebero"}, + new {Id = "jee", Scope = "I", Type = "L", ReferenceName = "Jerung"}, + new {Id = "jeh", Scope = "I", Type = "L", ReferenceName = "Jeh"}, + new {Id = "jei", Scope = "I", Type = "L", ReferenceName = "Yei"}, + new {Id = "jek", Scope = "I", Type = "L", ReferenceName = "Jeri Kuo"}, + new {Id = "jel", Scope = "I", Type = "L", ReferenceName = "Yelmek"}, + new {Id = "jen", Scope = "I", Type = "L", ReferenceName = "Dza"}, + new {Id = "jer", Scope = "I", Type = "L", ReferenceName = "Jere"}, + new {Id = "jet", Scope = "I", Type = "L", ReferenceName = "Manem"}, + new + { + Id = "jeu", + Scope = "I", + Type = "L", + ReferenceName = "Jonkor Bourmataguil" + }, + new {Id = "jgb", Scope = "I", Type = "E", ReferenceName = "Ngbee"}, + new {Id = "jge", Scope = "I", Type = "L", ReferenceName = "Judeo-Georgian"}, + new {Id = "jgk", Scope = "I", Type = "L", ReferenceName = "Gwak"}, + new {Id = "jgo", Scope = "I", Type = "L", ReferenceName = "Ngomba"}, + new {Id = "jhi", Scope = "I", Type = "L", ReferenceName = "Jehai"}, + new + { + Id = "jhs", + Scope = "I", + Type = "L", + ReferenceName = "Jhankot Sign Language" + }, + new {Id = "jia", Scope = "I", Type = "L", ReferenceName = "Jina"}, + new {Id = "jib", Scope = "I", Type = "L", ReferenceName = "Jibu"}, + new {Id = "jic", Scope = "I", Type = "L", ReferenceName = "Tol"}, + new {Id = "jid", Scope = "I", Type = "L", ReferenceName = "Bu"}, + new {Id = "jie", Scope = "I", Type = "L", ReferenceName = "Jilbe"}, + new {Id = "jig", Scope = "I", Type = "L", ReferenceName = "Jingulu"}, + new {Id = "jih", Scope = "I", Type = "L", ReferenceName = "sTodsde"}, + new {Id = "jii", Scope = "I", Type = "L", ReferenceName = "Jiiddu"}, + new {Id = "jil", Scope = "I", Type = "L", ReferenceName = "Jilim"}, + new {Id = "jim", Scope = "I", Type = "L", ReferenceName = "Jimi (Cameroon)"}, + new {Id = "jio", Scope = "I", Type = "L", ReferenceName = "Jiamao"}, + new {Id = "jiq", Scope = "I", Type = "L", ReferenceName = "Guanyinqiao"}, + new {Id = "jit", Scope = "I", Type = "L", ReferenceName = "Jita"}, + new {Id = "jiu", Scope = "I", Type = "L", ReferenceName = "Youle Jinuo"}, + new {Id = "jiv", Scope = "I", Type = "L", ReferenceName = "Shuar"}, + new {Id = "jiy", Scope = "I", Type = "L", ReferenceName = "Buyuan Jinuo"}, + new {Id = "jje", Scope = "I", Type = "L", ReferenceName = "Jejueo"}, + new {Id = "jjr", Scope = "I", Type = "L", ReferenceName = "Bankal"}, + new {Id = "jka", Scope = "I", Type = "L", ReferenceName = "Kaera"}, + new {Id = "jkm", Scope = "I", Type = "L", ReferenceName = "Mobwa Karen"}, + new {Id = "jko", Scope = "I", Type = "L", ReferenceName = "Kubo"}, + new {Id = "jkp", Scope = "I", Type = "L", ReferenceName = "Paku Karen"}, + new {Id = "jkr", Scope = "I", Type = "L", ReferenceName = "Koro (India)"}, + new {Id = "jku", Scope = "I", Type = "L", ReferenceName = "Labir"}, + new {Id = "jle", Scope = "I", Type = "L", ReferenceName = "Ngile"}, + new + { + Id = "jls", + Scope = "I", + Type = "L", + ReferenceName = "Jamaican Sign Language" + }, + new {Id = "jma", Scope = "I", Type = "L", ReferenceName = "Dima"}, + new {Id = "jmb", Scope = "I", Type = "L", ReferenceName = "Zumbun"}, + new {Id = "jmc", Scope = "I", Type = "L", ReferenceName = "Machame"}, + new {Id = "jmd", Scope = "I", Type = "L", ReferenceName = "Yamdena"}, + new {Id = "jmi", Scope = "I", Type = "L", ReferenceName = "Jimi (Nigeria)"}, + new {Id = "jml", Scope = "I", Type = "L", ReferenceName = "Jumli"}, + new {Id = "jmn", Scope = "I", Type = "L", ReferenceName = "Makuri Naga"}, + new {Id = "jmr", Scope = "I", Type = "L", ReferenceName = "Kamara"}, + new {Id = "jms", Scope = "I", Type = "L", ReferenceName = "Mashi (Nigeria)"}, + new {Id = "jmw", Scope = "I", Type = "L", ReferenceName = "Mouwase"}, + new + { + Id = "jmx", + Scope = "I", + Type = "L", + ReferenceName = "Western Juxtlahuaca Mixtec" + }, new {Id = "jna", Scope = "I", Type = "L", ReferenceName = "Jangshung"}, + new {Id = "jnd", Scope = "I", Type = "L", ReferenceName = "Jandavra"}, + new {Id = "jng", Scope = "I", Type = "E", ReferenceName = "Yangman"}, + new {Id = "jni", Scope = "I", Type = "L", ReferenceName = "Janji"}, + new {Id = "jnj", Scope = "I", Type = "L", ReferenceName = "Yemsa"}, + new {Id = "jnl", Scope = "I", Type = "L", ReferenceName = "Rawat"}, + new {Id = "jns", Scope = "I", Type = "L", ReferenceName = "Jaunsari"}, + new {Id = "job", Scope = "I", Type = "L", ReferenceName = "Joba"}, + new {Id = "jod", Scope = "I", Type = "L", ReferenceName = "Wojenaka"}, + new {Id = "jog", Scope = "I", Type = "L", ReferenceName = "Jogi"}, + new {Id = "jor", Scope = "I", Type = "E", ReferenceName = "Jorá"}, + new + { + Id = "jos", + Scope = "I", + Type = "L", + ReferenceName = "Jordanian Sign Language" + }, + new {Id = "jow", Scope = "I", Type = "L", ReferenceName = "Jowulu"}, + new + { + Id = "jpa", + Scope = "I", + Type = "H", + ReferenceName = "Jewish Palestinian Aramaic" + }, new + { + Id = "jpn", + Part2B = "jpn", + Part2T = "jpn", + Part1 = "ja", + Scope = "I", + Type = "L", + ReferenceName = "Japanese" + }, new + { + Id = "jpr", + Part2B = "jpr", + Part2T = "jpr", + Scope = "I", + Type = "L", + ReferenceName = "Judeo-Persian" + }, new {Id = "jqr", Scope = "I", Type = "L", ReferenceName = "Jaqaru"}, + new {Id = "jra", Scope = "I", Type = "L", ReferenceName = "Jarai"}, + new + { + Id = "jrb", + Part2B = "jrb", + Part2T = "jrb", + Scope = "M", + Type = "L", + ReferenceName = "Judeo-Arabic" + }, new {Id = "jrr", Scope = "I", Type = "L", ReferenceName = "Jiru"}, + new {Id = "jrt", Scope = "I", Type = "L", ReferenceName = "Jorto"}, + new {Id = "jru", Scope = "I", Type = "L", ReferenceName = "Japrería"}, + new {Id = "jsl", Scope = "I", Type = "L", ReferenceName = "Japanese Sign Language"}, + new {Id = "jua", Scope = "I", Type = "L", ReferenceName = "Júma"}, + new {Id = "jub", Scope = "I", Type = "L", ReferenceName = "Wannu"}, + new {Id = "juc", Scope = "I", Type = "E", ReferenceName = "Jurchen"}, + new {Id = "jud", Scope = "I", Type = "L", ReferenceName = "Worodougou"}, + new {Id = "juh", Scope = "I", Type = "L", ReferenceName = "Hõne"}, + new {Id = "jui", Scope = "I", Type = "E", ReferenceName = "Ngadjuri"}, + new {Id = "juk", Scope = "I", Type = "L", ReferenceName = "Wapan"}, + new {Id = "jul", Scope = "I", Type = "L", ReferenceName = "Jirel"}, + new {Id = "jum", Scope = "I", Type = "L", ReferenceName = "Jumjum"}, + new {Id = "jun", Scope = "I", Type = "L", ReferenceName = "Juang"}, + new {Id = "juo", Scope = "I", Type = "L", ReferenceName = "Jiba"}, + new {Id = "jup", Scope = "I", Type = "L", ReferenceName = "Hupdë"}, + new {Id = "jur", Scope = "I", Type = "L", ReferenceName = "Jurúna"}, + new {Id = "jus", Scope = "I", Type = "L", ReferenceName = "Jumla Sign Language"}, + new {Id = "jut", Scope = "I", Type = "H", ReferenceName = "Jutish"}, + new {Id = "juu", Scope = "I", Type = "L", ReferenceName = "Ju"}, + new {Id = "juw", Scope = "I", Type = "L", ReferenceName = "Wãpha"}, + new {Id = "juy", Scope = "I", Type = "L", ReferenceName = "Juray"}, + new {Id = "jvd", Scope = "I", Type = "L", ReferenceName = "Javindo"}, + new {Id = "jvn", Scope = "I", Type = "L", ReferenceName = "Caribbean Javanese"}, + new {Id = "jwi", Scope = "I", Type = "L", ReferenceName = "Jwira-Pepesa"}, + new {Id = "jya", Scope = "I", Type = "L", ReferenceName = "Jiarong"}, + new {Id = "jye", Scope = "I", Type = "L", ReferenceName = "Judeo-Yemeni Arabic"}, + new {Id = "jyy", Scope = "I", Type = "L", ReferenceName = "Jaya"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/K.cs b/Cicm.Database/Seeders/Iso639Split/K.cs new file mode 100644 index 00000000..b5313cc1 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/K.cs @@ -0,0 +1,4611 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class K + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity().HasData(new + { + Id = "kaa", + Part2B = "kaa", + Part2T = "kaa", + Scope = "I", + Type = "L", + ReferenceName = "Kara-Kalpak" + }, new + { + Id = "kab", + Part2B = "kab", + Part2T = "kab", + Scope = "I", + Type = "L", + ReferenceName = "Kabyle" + }, new + { + Id = "kac", + Part2B = "kac", + Part2T = "kac", + Scope = "I", + Type = "L", + ReferenceName = "Kachin" + }, + new + { + Id = "kad", + Scope = "I", + Type = "L", + ReferenceName = "Adara" + }, + new + { + Id = "kae", + Scope = "I", + Type = "E", + ReferenceName = "Ketangalan" + }, + new + { + Id = "kaf", + Scope = "I", + Type = "L", + ReferenceName = "Katso" + }, + new + { + Id = "kag", + Scope = "I", + Type = "L", + ReferenceName = "Kajaman" + }, + new + { + Id = "kah", + Scope = "I", + Type = "L", + ReferenceName = "Kara (Central African Republic)" + }, + new + { + Id = "kai", + Scope = "I", + Type = "L", + ReferenceName = "Karekare" + }, + new + { + Id = "kaj", + Scope = "I", + Type = "L", + ReferenceName = "Jju" + }, + new + { + Id = "kak", + Scope = "I", + Type = "L", + ReferenceName = "Kalanguya" + }, + new + { + Id = "kal", + Part2B = "kal", + Part2T = "kal", + Part1 = "kl", + Scope = "I", + Type = "L", + ReferenceName = "Kalaallisut" + }, new + { + Id = "kam", + Part2B = "kam", + Part2T = "kam", + Scope = "I", + Type = "L", + ReferenceName = "Kamba (Kenya)" + }, new + { + Id = "kan", + Part2B = "kan", + Part2T = "kan", + Part1 = "kn", + Scope = "I", + Type = "L", + ReferenceName = "Kannada" + }, + new + { + Id = "kao", + Scope = "I", + Type = "L", + ReferenceName = "Xaasongaxango" + }, + new + { + Id = "kap", + Scope = "I", + Type = "L", + ReferenceName = "Bezhta" + }, + new + { + Id = "kaq", + Scope = "I", + Type = "L", + ReferenceName = "Capanahua" + }, + new + { + Id = "kas", + Part2B = "kas", + Part2T = "kas", + Part1 = "ks", + Scope = "I", + Type = "L", + ReferenceName = "Kashmiri" + }, new + { + Id = "kat", + Part2B = "geo", + Part2T = "kat", + Part1 = "ka", + Scope = "I", + Type = "L", + ReferenceName = "Georgian" + }, new + { + Id = "kau", + Part2B = "kau", + Part2T = "kau", + Part1 = "kr", + Scope = "M", + Type = "L", + ReferenceName = "Kanuri" + }, + new + { + Id = "kav", + Scope = "I", + Type = "L", + ReferenceName = "Katukína" + }, + new + { + Id = "kaw", + Part2B = "kaw", + Part2T = "kaw", + Scope = "I", + Type = "A", + ReferenceName = "Kawi" + }, + new + { + Id = "kax", + Scope = "I", + Type = "L", + ReferenceName = "Kao" + }, + new + { + Id = "kay", + Scope = "I", + Type = "L", + ReferenceName = "Kamayurá" + }, + new + { + Id = "kaz", + Part2B = "kaz", + Part2T = "kaz", + Part1 = "kk", + Scope = "I", + Type = "L", + ReferenceName = "Kazakh" + }, + new + { + Id = "kba", + Scope = "I", + Type = "E", + ReferenceName = "Kalarko" + }, + new + { + Id = "kbb", + Scope = "I", + Type = "E", + ReferenceName = "Kaxuiâna" + }, + new + { + Id = "kbc", + Scope = "I", + Type = "L", + ReferenceName = "Kadiwéu" + }, + new + { + Id = "kbd", + Part2B = "kbd", + Part2T = "kbd", + Scope = "I", + Type = "L", + ReferenceName = "Kabardian" + }, + new + { + Id = "kbe", + Scope = "I", + Type = "L", + ReferenceName = "Kanju" + }, + new + { + Id = "kbg", + Scope = "I", + Type = "L", + ReferenceName = "Khamba" + }, + new + { + Id = "kbh", + Scope = "I", + Type = "L", + ReferenceName = "Camsá" + }, + new + { + Id = "kbi", + Scope = "I", + Type = "L", + ReferenceName = "Kaptiau" + }, + new + { + Id = "kbj", + Scope = "I", + Type = "L", + ReferenceName = "Kari" + }, + new + { + Id = "kbk", + Scope = "I", + Type = "L", + ReferenceName = "Grass Koiari" + }, + new + { + Id = "kbl", + Scope = "I", + Type = "L", + ReferenceName = "Kanembu" + }, + new + { + Id = "kbm", + Scope = "I", + Type = "L", + ReferenceName = "Iwal" + }, + new + { + Id = "kbn", + Scope = "I", + Type = "L", + ReferenceName = "Kare (Central African Republic)" + }, + new + { + Id = "kbo", + Scope = "I", + Type = "L", + ReferenceName = "Keliko" + }, + new + { + Id = "kbp", + Scope = "I", + Type = "L", + ReferenceName = "Kabiyè" + }, + new + { + Id = "kbq", + Scope = "I", + Type = "L", + ReferenceName = "Kamano" + }, + new + { + Id = "kbr", + Scope = "I", + Type = "L", + ReferenceName = "Kafa" + }, + new + { + Id = "kbs", + Scope = "I", + Type = "L", + ReferenceName = "Kande" + }, + new + { + Id = "kbt", + Scope = "I", + Type = "L", + ReferenceName = "Abadi" + }, + new + { + Id = "kbu", + Scope = "I", + Type = "L", + ReferenceName = "Kabutra" + }, + new + { + Id = "kbv", + Scope = "I", + Type = "L", + ReferenceName = "Dera (Indonesia)" + }, + new + { + Id = "kbw", + Scope = "I", + Type = "L", + ReferenceName = "Kaiep" + }, + new + { + Id = "kbx", + Scope = "I", + Type = "L", + ReferenceName = "Ap Ma" + }, + new + { + Id = "kby", + Scope = "I", + Type = "L", + ReferenceName = "Manga Kanuri" + }, + new + { + Id = "kbz", + Scope = "I", + Type = "L", + ReferenceName = "Duhwa" + }, + new + { + Id = "kca", + Scope = "I", + Type = "L", + ReferenceName = "Khanty" + }, + new + { + Id = "kcb", + Scope = "I", + Type = "L", + ReferenceName = "Kawacha" + }, + new + { + Id = "kcc", + Scope = "I", + Type = "L", + ReferenceName = "Lubila" + }, + new + { + Id = "kcd", + Scope = "I", + Type = "L", + ReferenceName = "Ngkâlmpw Kanum" + }, + new + { + Id = "kce", + Scope = "I", + Type = "L", + ReferenceName = "Kaivi" + }, + new + { + Id = "kcf", + Scope = "I", + Type = "L", + ReferenceName = "Ukaan" + }, + new + { + Id = "kcg", + Scope = "I", + Type = "L", + ReferenceName = "Tyap" + }, + new + { + Id = "kch", + Scope = "I", + Type = "L", + ReferenceName = "Vono" + }, + new + { + Id = "kci", + Scope = "I", + Type = "L", + ReferenceName = "Kamantan" + }, + new + { + Id = "kcj", + Scope = "I", + Type = "L", + ReferenceName = "Kobiana" + }, + new + { + Id = "kck", + Scope = "I", + Type = "L", + ReferenceName = "Kalanga" + }, + new + { + Id = "kcl", + Scope = "I", + Type = "L", + ReferenceName = "Kela (Papua New Guinea)" + }, + new + { + Id = "kcm", + Scope = "I", + Type = "L", + ReferenceName = "Gula (Central African Republic)" + }, + new + { + Id = "kcn", + Scope = "I", + Type = "L", + ReferenceName = "Nubi" + }, + new + { + Id = "kco", + Scope = "I", + Type = "L", + ReferenceName = "Kinalakna" + }, + new + { + Id = "kcp", + Scope = "I", + Type = "L", + ReferenceName = "Kanga" + }, + new + { + Id = "kcq", + Scope = "I", + Type = "L", + ReferenceName = "Kamo" + }, + new + { + Id = "kcr", + Scope = "I", + Type = "L", + ReferenceName = "Katla" + }, + new + { + Id = "kcs", + Scope = "I", + Type = "L", + ReferenceName = "Koenoem" + }, + new + { + Id = "kct", + Scope = "I", + Type = "L", + ReferenceName = "Kaian" + }, + new + { + Id = "kcu", + Scope = "I", + Type = "L", + ReferenceName = "Kami (Tanzania)" + }, + new + { + Id = "kcv", + Scope = "I", + Type = "L", + ReferenceName = "Kete" + }, + new + { + Id = "kcw", + Scope = "I", + Type = "L", + ReferenceName = "Kabwari" + }, + new + { + Id = "kcx", + Scope = "I", + Type = "L", + ReferenceName = "Kachama-Ganjule" + }, + new + { + Id = "kcy", + Scope = "I", + Type = "L", + ReferenceName = "Korandje" + }, + new + { + Id = "kcz", + Scope = "I", + Type = "L", + ReferenceName = "Konongo" + }, + new + { + Id = "kda", + Scope = "I", + Type = "E", + ReferenceName = "Worimi" + }, + new + { + Id = "kdc", + Scope = "I", + Type = "L", + ReferenceName = "Kutu" + }, + new + { + Id = "kdd", + Scope = "I", + Type = "L", + ReferenceName = "Yankunytjatjara" + }, + new + { + Id = "kde", + Scope = "I", + Type = "L", + ReferenceName = "Makonde" + }, + new + { + Id = "kdf", + Scope = "I", + Type = "L", + ReferenceName = "Mamusi" + }, + new + { + Id = "kdg", + Scope = "I", + Type = "L", + ReferenceName = "Seba" + }, + new + { + Id = "kdh", + Scope = "I", + Type = "L", + ReferenceName = "Tem" + }, + new + { + Id = "kdi", + Scope = "I", + Type = "L", + ReferenceName = "Kumam" + }, + new + { + Id = "kdj", + Scope = "I", + Type = "L", + ReferenceName = "Karamojong" + }, + new + { + Id = "kdk", + Scope = "I", + Type = "L", + ReferenceName = "Numèè" + }, + new + { + Id = "kdl", + Scope = "I", + Type = "L", + ReferenceName = "Tsikimba" + }, + new + { + Id = "kdm", + Scope = "I", + Type = "L", + ReferenceName = "Kagoma" + }, + new + { + Id = "kdn", + Scope = "I", + Type = "L", + ReferenceName = "Kunda" + }, + new + { + Id = "kdp", + Scope = "I", + Type = "L", + ReferenceName = "Kaningdon-Nindem" + }, + new + { + Id = "kdq", + Scope = "I", + Type = "L", + ReferenceName = "Koch" + }, + new + { + Id = "kdr", + Scope = "I", + Type = "L", + ReferenceName = "Karaim" + }, + new + { + Id = "kdt", + Scope = "I", + Type = "L", + ReferenceName = "Kuy" + }, + new + { + Id = "kdu", + Scope = "I", + Type = "L", + ReferenceName = "Kadaru" + }, + new + { + Id = "kdw", + Scope = "I", + Type = "L", + ReferenceName = "Koneraw" + }, + new + { + Id = "kdx", + Scope = "I", + Type = "L", + ReferenceName = "Kam" + }, + new + { + Id = "kdy", + Scope = "I", + Type = "L", + ReferenceName = "Keder" + }, + new + { + Id = "kdz", + Scope = "I", + Type = "L", + ReferenceName = "Kwaja" + }, + new + { + Id = "kea", + Scope = "I", + Type = "L", + ReferenceName = "Kabuverdianu" + }, + new + { + Id = "keb", + Scope = "I", + Type = "L", + ReferenceName = "Kélé" + }, + new + { + Id = "kec", + Scope = "I", + Type = "L", + ReferenceName = "Keiga" + }, + new + { + Id = "ked", + Scope = "I", + Type = "L", + ReferenceName = "Kerewe" + }, + new + { + Id = "kee", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Keres" + }, + new + { + Id = "kef", + Scope = "I", + Type = "L", + ReferenceName = "Kpessi" + }, + new + { + Id = "keg", + Scope = "I", + Type = "L", + ReferenceName = "Tese" + }, + new + { + Id = "keh", + Scope = "I", + Type = "L", + ReferenceName = "Keak" + }, + new + { + Id = "kei", + Scope = "I", + Type = "L", + ReferenceName = "Kei" + }, + new + { + Id = "kej", + Scope = "I", + Type = "L", + ReferenceName = "Kadar" + }, + new + { + Id = "kek", + Scope = "I", + Type = "L", + ReferenceName = "Kekchí" + }, + new + { + Id = "kel", + Scope = "I", + Type = "L", + ReferenceName = "Kela (Democratic Republic of Congo)" + }, + new + { + Id = "kem", + Scope = "I", + Type = "L", + ReferenceName = "Kemak" + }, + new + { + Id = "ken", + Scope = "I", + Type = "L", + ReferenceName = "Kenyang" + }, + new + { + Id = "keo", + Scope = "I", + Type = "L", + ReferenceName = "Kakwa" + }, + new + { + Id = "kep", + Scope = "I", + Type = "L", + ReferenceName = "Kaikadi" + }, + new + { + Id = "keq", + Scope = "I", + Type = "L", + ReferenceName = "Kamar" + }, + new + { + Id = "ker", + Scope = "I", + Type = "L", + ReferenceName = "Kera" + }, + new + { + Id = "kes", + Scope = "I", + Type = "L", + ReferenceName = "Kugbo" + }, + new + { + Id = "ket", + Scope = "I", + Type = "L", + ReferenceName = "Ket" + }, + new + { + Id = "keu", + Scope = "I", + Type = "L", + ReferenceName = "Akebu" + }, + new + { + Id = "kev", + Scope = "I", + Type = "L", + ReferenceName = "Kanikkaran" + }, + new + { + Id = "kew", + Scope = "I", + Type = "L", + ReferenceName = "West Kewa" + }, + new + { + Id = "kex", + Scope = "I", + Type = "L", + ReferenceName = "Kukna" + }, + new + { + Id = "key", + Scope = "I", + Type = "L", + ReferenceName = "Kupia" + }, + new + { + Id = "kez", + Scope = "I", + Type = "L", + ReferenceName = "Kukele" + }, + new + { + Id = "kfa", + Scope = "I", + Type = "L", + ReferenceName = "Kodava" + }, + new + { + Id = "kfb", + Scope = "I", + Type = "L", + ReferenceName = "Northwestern Kolami" + }, + new + { + Id = "kfc", + Scope = "I", + Type = "L", + ReferenceName = "Konda-Dora" + }, + new + { + Id = "kfd", + Scope = "I", + Type = "L", + ReferenceName = "Korra Koraga" + }, + new + { + Id = "kfe", + Scope = "I", + Type = "L", + ReferenceName = "Kota (India)" + }, + new + { + Id = "kff", + Scope = "I", + Type = "L", + ReferenceName = "Koya" + }, + new + { + Id = "kfg", + Scope = "I", + Type = "L", + ReferenceName = "Kudiya" + }, + new + { + Id = "kfh", + Scope = "I", + Type = "L", + ReferenceName = "Kurichiya" + }, + new + { + Id = "kfi", + Scope = "I", + Type = "L", + ReferenceName = "Kannada Kurumba" + }, + new + { + Id = "kfj", + Scope = "I", + Type = "L", + ReferenceName = "Kemiehua" + }, + new + { + Id = "kfk", + Scope = "I", + Type = "L", + ReferenceName = "Kinnauri" + }, + new + { + Id = "kfl", + Scope = "I", + Type = "L", + ReferenceName = "Kung" + }, + new + { + Id = "kfm", + Scope = "I", + Type = "L", + ReferenceName = "Khunsari" + }, + new + { + Id = "kfn", + Scope = "I", + Type = "L", + ReferenceName = "Kuk" + }, + new + { + Id = "kfo", + Scope = "I", + Type = "L", + ReferenceName = "Koro (Côte d'Ivoire)" + }, + new + { + Id = "kfp", + Scope = "I", + Type = "L", + ReferenceName = "Korwa" + }, + new + { + Id = "kfq", + Scope = "I", + Type = "L", + ReferenceName = "Korku" + }, + new + { + Id = "kfr", + Scope = "I", + Type = "L", + ReferenceName = "Kachhi" + }, + new + { + Id = "kfs", + Scope = "I", + Type = "L", + ReferenceName = "Bilaspuri" + }, + new + { + Id = "kft", + Scope = "I", + Type = "L", + ReferenceName = "Kanjari" + }, + new + { + Id = "kfu", + Scope = "I", + Type = "L", + ReferenceName = "Katkari" + }, + new + { + Id = "kfv", + Scope = "I", + Type = "L", + ReferenceName = "Kurmukar" + }, + new + { + Id = "kfw", + Scope = "I", + Type = "L", + ReferenceName = "Kharam Naga" + }, + new + { + Id = "kfx", + Scope = "I", + Type = "L", + ReferenceName = "Kullu Pahari" + }, + new + { + Id = "kfy", + Scope = "I", + Type = "L", + ReferenceName = "Kumaoni" + }, + new + { + Id = "kfz", + Scope = "I", + Type = "L", + ReferenceName = "Koromfé" + }, + new + { + Id = "kga", + Scope = "I", + Type = "L", + ReferenceName = "Koyaga" + }, + new + { + Id = "kgb", + Scope = "I", + Type = "L", + ReferenceName = "Kawe" + }, + new + { + Id = "kge", + Scope = "I", + Type = "L", + ReferenceName = "Komering" + }, + new + { + Id = "kgf", + Scope = "I", + Type = "L", + ReferenceName = "Kube" + }, + new + { + Id = "kgg", + Scope = "I", + Type = "L", + ReferenceName = "Kusunda" + }, + new + { + Id = "kgi", + Scope = "I", + Type = "L", + ReferenceName = "Selangor Sign Language" + }, + new + { + Id = "kgj", + Scope = "I", + Type = "L", + ReferenceName = "Gamale Kham" + }, + new + { + Id = "kgk", + Scope = "I", + Type = "L", + ReferenceName = "Kaiwá" + }, + new + { + Id = "kgl", + Scope = "I", + Type = "E", + ReferenceName = "Kunggari" + }, + new + { + Id = "kgm", + Scope = "I", + Type = "E", + ReferenceName = "Karipúna" + }, + new + { + Id = "kgn", + Scope = "I", + Type = "L", + ReferenceName = "Karingani" + }, + new + { + Id = "kgo", + Scope = "I", + Type = "L", + ReferenceName = "Krongo" + }, + new + { + Id = "kgp", + Scope = "I", + Type = "L", + ReferenceName = "Kaingang" + }, + new + { + Id = "kgq", + Scope = "I", + Type = "L", + ReferenceName = "Kamoro" + }, + new + { + Id = "kgr", + Scope = "I", + Type = "L", + ReferenceName = "Abun" + }, + new + { + Id = "kgs", + Scope = "I", + Type = "L", + ReferenceName = "Kumbainggar" + }, + new + { + Id = "kgt", + Scope = "I", + Type = "L", + ReferenceName = "Somyev" + }, + new + { + Id = "kgu", + Scope = "I", + Type = "L", + ReferenceName = "Kobol" + }, + new + { + Id = "kgv", + Scope = "I", + Type = "L", + ReferenceName = "Karas" + }, + new + { + Id = "kgw", + Scope = "I", + Type = "L", + ReferenceName = "Karon Dori" + }, + new + { + Id = "kgx", + Scope = "I", + Type = "L", + ReferenceName = "Kamaru" + }, + new + { + Id = "kgy", + Scope = "I", + Type = "L", + ReferenceName = "Kyerung" + }, + new + { + Id = "kha", + Part2B = "kha", + Part2T = "kha", + Scope = "I", + Type = "L", + ReferenceName = "Khasi" + }, + new + { + Id = "khb", + Scope = "I", + Type = "L", + ReferenceName = "Lü" + }, + new + { + Id = "khc", + Scope = "I", + Type = "L", + ReferenceName = "Tukang Besi North" + }, + new + { + Id = "khd", + Scope = "I", + Type = "L", + ReferenceName = "Bädi Kanum" + }, + new + { + Id = "khe", + Scope = "I", + Type = "L", + ReferenceName = "Korowai" + }, + new + { + Id = "khf", + Scope = "I", + Type = "L", + ReferenceName = "Khuen" + }, + new + { + Id = "khg", + Scope = "I", + Type = "L", + ReferenceName = "Khams Tibetan" + }, + new + { + Id = "khh", + Scope = "I", + Type = "L", + ReferenceName = "Kehu" + }, + new + { + Id = "khj", + Scope = "I", + Type = "L", + ReferenceName = "Kuturmi" + }, + new + { + Id = "khk", + Scope = "I", + Type = "L", + ReferenceName = "Halh Mongolian" + }, + new + { + Id = "khl", + Scope = "I", + Type = "L", + ReferenceName = "Lusi" + }, + new + { + Id = "khm", + Part2B = "khm", + Part2T = "khm", + Part1 = "km", + Scope = "I", + Type = "L", + ReferenceName = "Khmer" + }, + new + { + Id = "khn", + Scope = "I", + Type = "L", + ReferenceName = "Khandesi" + }, + new + { + Id = "kho", + Part2B = "kho", + Part2T = "kho", + Scope = "I", + Type = "A", + ReferenceName = "Khotanese" + }, + new + { + Id = "khp", + Scope = "I", + Type = "L", + ReferenceName = "Kapori" + }, + new + { + Id = "khq", + Scope = "I", + Type = "L", + ReferenceName = "Koyra Chiini Songhay" + }, + new + { + Id = "khr", + Scope = "I", + Type = "L", + ReferenceName = "Kharia" + }, + new + { + Id = "khs", + Scope = "I", + Type = "L", + ReferenceName = "Kasua" + }, + new + { + Id = "kht", + Scope = "I", + Type = "L", + ReferenceName = "Khamti" + }, + new + { + Id = "khu", + Scope = "I", + Type = "L", + ReferenceName = "Nkhumbi" + }, + new + { + Id = "khv", + Scope = "I", + Type = "L", + ReferenceName = "Khvarshi" + }, + new + { + Id = "khw", + Scope = "I", + Type = "L", + ReferenceName = "Khowar" + }, + new + { + Id = "khx", + Scope = "I", + Type = "L", + ReferenceName = "Kanu" + }, + new + { + Id = "khy", + Scope = "I", + Type = "L", + ReferenceName = "Kele (Democratic Republic of Congo)" + }, + new + { + Id = "khz", + Scope = "I", + Type = "L", + ReferenceName = "Keapara" + }, + new + { + Id = "kia", + Scope = "I", + Type = "L", + ReferenceName = "Kim" + }, + new + { + Id = "kib", + Scope = "I", + Type = "L", + ReferenceName = "Koalib" + }, + new + { + Id = "kic", + Scope = "I", + Type = "L", + ReferenceName = "Kickapoo" + }, + new + { + Id = "kid", + Scope = "I", + Type = "L", + ReferenceName = "Koshin" + }, + new + { + Id = "kie", + Scope = "I", + Type = "L", + ReferenceName = "Kibet" + }, + new + { + Id = "kif", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Parbate Kham" + }, + new + { + Id = "kig", + Scope = "I", + Type = "L", + ReferenceName = "Kimaama" + }, + new + { + Id = "kih", + Scope = "I", + Type = "L", + ReferenceName = "Kilmeri" + }, + new + { + Id = "kii", + Scope = "I", + Type = "E", + ReferenceName = "Kitsai" + }, + new + { + Id = "kij", + Scope = "I", + Type = "L", + ReferenceName = "Kilivila" + }, + new + { + Id = "kik", + Part2B = "kik", + Part2T = "kik", + Part1 = "ki", + Scope = "I", + Type = "L", + ReferenceName = "Kikuyu" + }, + new + { + Id = "kil", + Scope = "I", + Type = "L", + ReferenceName = "Kariya" + }, + new + { + Id = "kim", + Scope = "I", + Type = "L", + ReferenceName = "Karagas" + }, + new + { + Id = "kin", + Part2B = "kin", + Part2T = "kin", + Part1 = "rw", + Scope = "I", + Type = "L", + ReferenceName = "Kinyarwanda" + }, + new + { + Id = "kio", + Scope = "I", + Type = "L", + ReferenceName = "Kiowa" + }, + new + { + Id = "kip", + Scope = "I", + Type = "L", + ReferenceName = "Sheshi Kham" + }, + new + { + Id = "kiq", + Scope = "I", + Type = "L", + ReferenceName = "Kosadle" + }, + new + { + Id = "kir", + Part2B = "kir", + Part2T = "kir", + Part1 = "ky", + Scope = "I", + Type = "L", + ReferenceName = "Kirghiz" + }, + new + { + Id = "kis", + Scope = "I", + Type = "L", + ReferenceName = "Kis" + }, + new + { + Id = "kit", + Scope = "I", + Type = "L", + ReferenceName = "Agob" + }, + new + { + Id = "kiu", + Scope = "I", + Type = "L", + ReferenceName = "Kirmanjki (individual language)" + }, + new + { + Id = "kiv", + Scope = "I", + Type = "L", + ReferenceName = "Kimbu" + }, + new + { + Id = "kiw", + Scope = "I", + Type = "L", + ReferenceName = "Northeast Kiwai" + }, + new + { + Id = "kix", + Scope = "I", + Type = "L", + ReferenceName = "Khiamniungan Naga" + }, + new + { + Id = "kiy", + Scope = "I", + Type = "L", + ReferenceName = "Kirikiri" + }, + new + { + Id = "kiz", + Scope = "I", + Type = "L", + ReferenceName = "Kisi" + }, + new + { + Id = "kja", + Scope = "I", + Type = "L", + ReferenceName = "Mlap" + }, + new + { + Id = "kjb", + Scope = "I", + Type = "L", + ReferenceName = "Q'anjob'al" + }, + new + { + Id = "kjc", + Scope = "I", + Type = "L", + ReferenceName = "Coastal Konjo" + }, + new + { + Id = "kjd", + Scope = "I", + Type = "L", + ReferenceName = "Southern Kiwai" + }, + new + { + Id = "kje", + Scope = "I", + Type = "L", + ReferenceName = "Kisar" + }, + new + { + Id = "kjf", + Scope = "I", + Type = "L", + ReferenceName = "Khalaj" + }, + new + { + Id = "kjg", + Scope = "I", + Type = "L", + ReferenceName = "Khmu" + }, + new + { + Id = "kjh", + Scope = "I", + Type = "L", + ReferenceName = "Khakas" + }, + new + { + Id = "kji", + Scope = "I", + Type = "L", + ReferenceName = "Zabana" + }, + new + { + Id = "kjj", + Scope = "I", + Type = "L", + ReferenceName = "Khinalugh" + }, + new + { + Id = "kjk", + Scope = "I", + Type = "L", + ReferenceName = "Highland Konjo" + }, + new + { + Id = "kjl", + Scope = "I", + Type = "L", + ReferenceName = "Western Parbate Kham" + }, + new + { + Id = "kjm", + Scope = "I", + Type = "L", + ReferenceName = "Kháng" + }, + new + { + Id = "kjn", + Scope = "I", + Type = "L", + ReferenceName = "Kunjen" + }, + new + { + Id = "kjo", + Scope = "I", + Type = "L", + ReferenceName = "Harijan Kinnauri" + }, + new + { + Id = "kjp", + Scope = "I", + Type = "L", + ReferenceName = "Pwo Eastern Karen" + }, + new + { + Id = "kjq", + Scope = "I", + Type = "L", + ReferenceName = "Western Keres" + }, + new + { + Id = "kjr", + Scope = "I", + Type = "L", + ReferenceName = "Kurudu" + }, + new + { + Id = "kjs", + Scope = "I", + Type = "L", + ReferenceName = "East Kewa" + }, + new + { + Id = "kjt", + Scope = "I", + Type = "L", + ReferenceName = "Phrae Pwo Karen" + }, + new + { + Id = "kju", + Scope = "I", + Type = "L", + ReferenceName = "Kashaya" + }, + new + { + Id = "kjv", + Scope = "I", + Type = "H", + ReferenceName = "Kaikavian Literary Language" + }, + new + { + Id = "kjx", + Scope = "I", + Type = "L", + ReferenceName = "Ramopa" + }, + new + { + Id = "kjy", + Scope = "I", + Type = "L", + ReferenceName = "Erave" + }, + new + { + Id = "kjz", + Scope = "I", + Type = "L", + ReferenceName = "Bumthangkha" + }, + new + { + Id = "kka", + Scope = "I", + Type = "L", + ReferenceName = "Kakanda" + }, + new + { + Id = "kkb", + Scope = "I", + Type = "L", + ReferenceName = "Kwerisa" + }, + new + { + Id = "kkc", + Scope = "I", + Type = "L", + ReferenceName = "Odoodee" + }, + new + { + Id = "kkd", + Scope = "I", + Type = "L", + ReferenceName = "Kinuku" + }, + new + { + Id = "kke", + Scope = "I", + Type = "L", + ReferenceName = "Kakabe" + }, + new + { + Id = "kkf", + Scope = "I", + Type = "L", + ReferenceName = "Kalaktang Monpa" + }, + new + { + Id = "kkg", + Scope = "I", + Type = "L", + ReferenceName = "Mabaka Valley Kalinga" + }, + new + { + Id = "kkh", + Scope = "I", + Type = "L", + ReferenceName = "Khün" + }, + new + { + Id = "kki", + Scope = "I", + Type = "L", + ReferenceName = "Kagulu" + }, + new + { + Id = "kkj", + Scope = "I", + Type = "L", + ReferenceName = "Kako" + }, + new + { + Id = "kkk", + Scope = "I", + Type = "L", + ReferenceName = "Kokota" + }, + new + { + Id = "kkl", + Scope = "I", + Type = "L", + ReferenceName = "Kosarek Yale" + }, + new + { + Id = "kkm", + Scope = "I", + Type = "L", + ReferenceName = "Kiong" + }, + new + { + Id = "kkn", + Scope = "I", + Type = "L", + ReferenceName = "Kon Keu" + }, + new + { + Id = "kko", + Scope = "I", + Type = "L", + ReferenceName = "Karko" + }, + new + { + Id = "kkp", + Scope = "I", + Type = "L", + ReferenceName = "Gugubera" + }, + new + { + Id = "kkq", + Scope = "I", + Type = "L", + ReferenceName = "Kaiku" + }, + new + { + Id = "kkr", + Scope = "I", + Type = "L", + ReferenceName = "Kir-Balar" + }, + new + { + Id = "kks", + Scope = "I", + Type = "L", + ReferenceName = "Giiwo" + }, + new + { + Id = "kkt", + Scope = "I", + Type = "L", + ReferenceName = "Koi" + }, + new + { + Id = "kku", + Scope = "I", + Type = "L", + ReferenceName = "Tumi" + }, + new + { + Id = "kkv", + Scope = "I", + Type = "L", + ReferenceName = "Kangean" + }, + new + { + Id = "kkw", + Scope = "I", + Type = "L", + ReferenceName = "Teke-Kukuya" + }, + new + { + Id = "kkx", + Scope = "I", + Type = "L", + ReferenceName = "Kohin" + }, + new + { + Id = "kky", + Scope = "I", + Type = "L", + ReferenceName = "Guugu Yimidhirr" + }, + new + { + Id = "kkz", + Scope = "I", + Type = "L", + ReferenceName = "Kaska" + }, + new + { + Id = "kla", + Scope = "I", + Type = "E", + ReferenceName = "Klamath-Modoc" + }, + new + { + Id = "klb", + Scope = "I", + Type = "L", + ReferenceName = "Kiliwa" + }, + new + { + Id = "klc", + Scope = "I", + Type = "L", + ReferenceName = "Kolbila" + }, + new + { + Id = "kld", + Scope = "I", + Type = "L", + ReferenceName = "Gamilaraay" + }, + new + { + Id = "kle", + Scope = "I", + Type = "L", + ReferenceName = "Kulung (Nepal)" + }, + new + { + Id = "klf", + Scope = "I", + Type = "L", + ReferenceName = "Kendeje" + }, + new + { + Id = "klg", + Scope = "I", + Type = "L", + ReferenceName = "Tagakaulo" + }, + new + { + Id = "klh", + Scope = "I", + Type = "L", + ReferenceName = "Weliki" + }, + new + { + Id = "kli", + Scope = "I", + Type = "L", + ReferenceName = "Kalumpang" + }, + new + { + Id = "klj", + Scope = "I", + Type = "L", + ReferenceName = "Turkic Khalaj" + }, + new + { + Id = "klk", + Scope = "I", + Type = "L", + ReferenceName = "Kono (Nigeria)" + }, + new + { + Id = "kll", + Scope = "I", + Type = "L", + ReferenceName = "Kagan Kalagan" + }, + new + { + Id = "klm", + Scope = "I", + Type = "L", + ReferenceName = "Migum" + }, + new + { + Id = "kln", + Scope = "M", + Type = "L", + ReferenceName = "Kalenjin" + }, + new + { + Id = "klo", + Scope = "I", + Type = "L", + ReferenceName = "Kapya" + }, + new + { + Id = "klp", + Scope = "I", + Type = "L", + ReferenceName = "Kamasa" + }, + new + { + Id = "klq", + Scope = "I", + Type = "L", + ReferenceName = "Rumu" + }, + new + { + Id = "klr", + Scope = "I", + Type = "L", + ReferenceName = "Khaling" + }, + new + { + Id = "kls", + Scope = "I", + Type = "L", + ReferenceName = "Kalasha" + }, + new + { + Id = "klt", + Scope = "I", + Type = "L", + ReferenceName = "Nukna" + }, + new + { + Id = "klu", + Scope = "I", + Type = "L", + ReferenceName = "Klao" + }, + new + { + Id = "klv", + Scope = "I", + Type = "L", + ReferenceName = "Maskelynes" + }, + new + { + Id = "klw", + Scope = "I", + Type = "L", + ReferenceName = "Tado" + }, + new + { + Id = "klx", + Scope = "I", + Type = "L", + ReferenceName = "Koluwawa" + }, + new + { + Id = "kly", + Scope = "I", + Type = "L", + ReferenceName = "Kalao" + }, + new + { + Id = "klz", + Scope = "I", + Type = "L", + ReferenceName = "Kabola" + }, + new + { + Id = "kma", + Scope = "I", + Type = "L", + ReferenceName = "Konni" + }, + new + { + Id = "kmb", + Part2B = "kmb", + Part2T = "kmb", + Scope = "I", + Type = "L", + ReferenceName = "Kimbundu" + }, + new + { + Id = "kmc", + Scope = "I", + Type = "L", + ReferenceName = "Southern Dong" + }, + new + { + Id = "kmd", + Scope = "I", + Type = "L", + ReferenceName = "Majukayang Kalinga" + }, + new + { + Id = "kme", + Scope = "I", + Type = "L", + ReferenceName = "Bakole" + }, + new + { + Id = "kmf", + Scope = "I", + Type = "L", + ReferenceName = "Kare (Papua New Guinea)" + }, + new + { + Id = "kmg", + Scope = "I", + Type = "L", + ReferenceName = "Kâte" + }, + new + { + Id = "kmh", + Scope = "I", + Type = "L", + ReferenceName = "Kalam" + }, + new + { + Id = "kmi", + Scope = "I", + Type = "L", + ReferenceName = "Kami (Nigeria)" + }, + new + { + Id = "kmj", + Scope = "I", + Type = "L", + ReferenceName = "Kumarbhag Paharia" + }, + new + { + Id = "kmk", + Scope = "I", + Type = "L", + ReferenceName = "Limos Kalinga" + }, + new + { + Id = "kml", + Scope = "I", + Type = "L", + ReferenceName = "Tanudan Kalinga" + }, + new + { + Id = "kmm", + Scope = "I", + Type = "L", + ReferenceName = "Kom (India)" + }, + new + { + Id = "kmn", + Scope = "I", + Type = "L", + ReferenceName = "Awtuw" + }, + new + { + Id = "kmo", + Scope = "I", + Type = "L", + ReferenceName = "Kwoma" + }, + new + { + Id = "kmp", + Scope = "I", + Type = "L", + ReferenceName = "Gimme" + }, + new + { + Id = "kmq", + Scope = "I", + Type = "L", + ReferenceName = "Kwama" + }, + new + { + Id = "kmr", + Scope = "I", + Type = "L", + ReferenceName = "Northern Kurdish" + }, + new + { + Id = "kms", + Scope = "I", + Type = "L", + ReferenceName = "Kamasau" + }, + new + { + Id = "kmt", + Scope = "I", + Type = "L", + ReferenceName = "Kemtuik" + }, + new + { + Id = "kmu", + Scope = "I", + Type = "L", + ReferenceName = "Kanite" + }, + new + { + Id = "kmv", + Scope = "I", + Type = "L", + ReferenceName = "Karipúna Creole French" + }, + new + { + Id = "kmw", + Scope = "I", + Type = "L", + ReferenceName = "Komo (Democratic Republic of Congo)" + }, + new + { + Id = "kmx", + Scope = "I", + Type = "L", + ReferenceName = "Waboda" + }, + new + { + Id = "kmy", + Scope = "I", + Type = "L", + ReferenceName = "Koma" + }, + new + { + Id = "kmz", + Scope = "I", + Type = "L", + ReferenceName = "Khorasani Turkish" + }, + new + { + Id = "kna", + Scope = "I", + Type = "L", + ReferenceName = "Dera (Nigeria)" + }, + new + { + Id = "knb", + Scope = "I", + Type = "L", + ReferenceName = "Lubuagan Kalinga" + }, + new + { + Id = "knc", + Scope = "I", + Type = "L", + ReferenceName = "Central Kanuri" + }, + new + { + Id = "knd", + Scope = "I", + Type = "L", + ReferenceName = "Konda" + }, + new + { + Id = "kne", + Scope = "I", + Type = "L", + ReferenceName = "Kankanaey" + }, + new + { + Id = "knf", + Scope = "I", + Type = "L", + ReferenceName = "Mankanya" + }, + new + { + Id = "kng", + Scope = "I", + Type = "L", + ReferenceName = "Koongo" + }, + new + { + Id = "kni", + Scope = "I", + Type = "L", + ReferenceName = "Kanufi" + }, + new + { + Id = "knj", + Scope = "I", + Type = "L", + ReferenceName = "Western Kanjobal" + }, + new + { + Id = "knk", + Scope = "I", + Type = "L", + ReferenceName = "Kuranko" + }, + new + { + Id = "knl", + Scope = "I", + Type = "L", + ReferenceName = "Keninjal" + }, + new + { + Id = "knm", + Scope = "I", + Type = "L", + ReferenceName = "Kanamarí" + }, + new + { + Id = "knn", + Scope = "I", + Type = "L", + ReferenceName = "Konkani (individual language)" + }, + new + { + Id = "kno", + Scope = "I", + Type = "L", + ReferenceName = "Kono (Sierra Leone)" + }, + new + { + Id = "knp", + Scope = "I", + Type = "L", + ReferenceName = "Kwanja" + }, + new + { + Id = "knq", + Scope = "I", + Type = "L", + ReferenceName = "Kintaq" + }, + new + { + Id = "knr", + Scope = "I", + Type = "L", + ReferenceName = "Kaningra" + }, + new + { + Id = "kns", + Scope = "I", + Type = "L", + ReferenceName = "Kensiu" + }, + new + { + Id = "knt", + Scope = "I", + Type = "L", + ReferenceName = "Panoan Katukína" + }, + new + { + Id = "knu", + Scope = "I", + Type = "L", + ReferenceName = "Kono (Guinea)" + }, + new + { + Id = "knv", + Scope = "I", + Type = "L", + ReferenceName = "Tabo" + }, + new + { + Id = "knw", + Scope = "I", + Type = "L", + ReferenceName = "Kung-Ekoka" + }, + new + { + Id = "knx", + Scope = "I", + Type = "L", + ReferenceName = "Kendayan" + }, + new + { + Id = "kny", + Scope = "I", + Type = "L", + ReferenceName = "Kanyok" + }, + new + { + Id = "knz", + Scope = "I", + Type = "L", + ReferenceName = "Kalamsé" + }, + new + { + Id = "koa", + Scope = "I", + Type = "L", + ReferenceName = "Konomala" + }, + new + { + Id = "koc", + Scope = "I", + Type = "E", + ReferenceName = "Kpati" + }, + new + { + Id = "kod", + Scope = "I", + Type = "L", + ReferenceName = "Kodi" + }, + new + { + Id = "koe", + Scope = "I", + Type = "L", + ReferenceName = "Kacipo-Balesi" + }, + new + { + Id = "kof", + Scope = "I", + Type = "E", + ReferenceName = "Kubi" + }, + new + { + Id = "kog", + Scope = "I", + Type = "L", + ReferenceName = "Cogui" + }, + new + { + Id = "koh", + Scope = "I", + Type = "L", + ReferenceName = "Koyo" + }, + new + { + Id = "koi", + Scope = "I", + Type = "L", + ReferenceName = "Komi-Permyak" + }, + new + { + Id = "kok", + Part2B = "kok", + Part2T = "kok", + Scope = "M", + Type = "L", + ReferenceName = "Konkani (macrolanguage)" + }, + new + { + Id = "kol", + Scope = "I", + Type = "L", + ReferenceName = "Kol (Papua New Guinea)" + }, + new + { + Id = "kom", + Part2B = "kom", + Part2T = "kom", + Part1 = "kv", + Scope = "M", + Type = "L", + ReferenceName = "Komi" + }, new + { + Id = "kon", + Part2B = "kon", + Part2T = "kon", + Part1 = "kg", + Scope = "M", + Type = "L", + ReferenceName = "Kongo" + }, + new + { + Id = "koo", + Scope = "I", + Type = "L", + ReferenceName = "Konzo" + }, + new + { + Id = "kop", + Scope = "I", + Type = "L", + ReferenceName = "Waube" + }, + new + { + Id = "koq", + Scope = "I", + Type = "L", + ReferenceName = "Kota (Gabon)" + }, + new + { + Id = "kor", + Part2B = "kor", + Part2T = "kor", + Part1 = "ko", + Scope = "I", + Type = "L", + ReferenceName = "Korean" + }, new + { + Id = "kos", + Part2B = "kos", + Part2T = "kos", + Scope = "I", + Type = "L", + ReferenceName = "Kosraean" + }, + new + { + Id = "kot", + Scope = "I", + Type = "L", + ReferenceName = "Lagwan" + }, + new + { + Id = "kou", + Scope = "I", + Type = "L", + ReferenceName = "Koke" + }, + new + { + Id = "kov", + Scope = "I", + Type = "L", + ReferenceName = "Kudu-Camo" + }, + new + { + Id = "kow", + Scope = "I", + Type = "L", + ReferenceName = "Kugama" + }, + new + { + Id = "koy", + Scope = "I", + Type = "L", + ReferenceName = "Koyukon" + }, + new + { + Id = "koz", + Scope = "I", + Type = "L", + ReferenceName = "Korak" + }, + new + { + Id = "kpa", + Scope = "I", + Type = "L", + ReferenceName = "Kutto" + }, + new + { + Id = "kpb", + Scope = "I", + Type = "L", + ReferenceName = "Mullu Kurumba" + }, + new + { + Id = "kpc", + Scope = "I", + Type = "L", + ReferenceName = "Curripaco" + }, + new + { + Id = "kpd", + Scope = "I", + Type = "L", + ReferenceName = "Koba" + }, + new + { + Id = "kpe", + Part2B = "kpe", + Part2T = "kpe", + Scope = "M", + Type = "L", + ReferenceName = "Kpelle" + }, + new + { + Id = "kpf", + Scope = "I", + Type = "L", + ReferenceName = "Komba" + }, + new + { + Id = "kpg", + Scope = "I", + Type = "L", + ReferenceName = "Kapingamarangi" + }, + new + { + Id = "kph", + Scope = "I", + Type = "L", + ReferenceName = "Kplang" + }, + new + { + Id = "kpi", + Scope = "I", + Type = "L", + ReferenceName = "Kofei" + }, + new + { + Id = "kpj", + Scope = "I", + Type = "L", + ReferenceName = "Karajá" + }, + new + { + Id = "kpk", + Scope = "I", + Type = "L", + ReferenceName = "Kpan" + }, + new + { + Id = "kpl", + Scope = "I", + Type = "L", + ReferenceName = "Kpala" + }, + new + { + Id = "kpm", + Scope = "I", + Type = "L", + ReferenceName = "Koho" + }, + new + { + Id = "kpn", + Scope = "I", + Type = "E", + ReferenceName = "Kepkiriwát" + }, + new + { + Id = "kpo", + Scope = "I", + Type = "L", + ReferenceName = "Ikposo" + }, + new + { + Id = "kpq", + Scope = "I", + Type = "L", + ReferenceName = "Korupun-Sela" + }, + new + { + Id = "kpr", + Scope = "I", + Type = "L", + ReferenceName = "Korafe-Yegha" + }, + new + { + Id = "kps", + Scope = "I", + Type = "L", + ReferenceName = "Tehit" + }, + new + { + Id = "kpt", + Scope = "I", + Type = "L", + ReferenceName = "Karata" + }, + new + { + Id = "kpu", + Scope = "I", + Type = "L", + ReferenceName = "Kafoa" + }, + new + { + Id = "kpv", + Scope = "I", + Type = "L", + ReferenceName = "Komi-Zyrian" + }, + new + { + Id = "kpw", + Scope = "I", + Type = "L", + ReferenceName = "Kobon" + }, + new + { + Id = "kpx", + Scope = "I", + Type = "L", + ReferenceName = "Mountain Koiali" + }, + new + { + Id = "kpy", + Scope = "I", + Type = "L", + ReferenceName = "Koryak" + }, + new + { + Id = "kpz", + Scope = "I", + Type = "L", + ReferenceName = "Kupsabiny" + }, + new + { + Id = "kqa", + Scope = "I", + Type = "L", + ReferenceName = "Mum" + }, + new + { + Id = "kqb", + Scope = "I", + Type = "L", + ReferenceName = "Kovai" + }, + new + { + Id = "kqc", + Scope = "I", + Type = "L", + ReferenceName = "Doromu-Koki" + }, + new + { + Id = "kqd", + Scope = "I", + Type = "L", + ReferenceName = "Koy Sanjaq Surat" + }, + new + { + Id = "kqe", + Scope = "I", + Type = "L", + ReferenceName = "Kalagan" + }, + new + { + Id = "kqf", + Scope = "I", + Type = "L", + ReferenceName = "Kakabai" + }, + new + { + Id = "kqg", + Scope = "I", + Type = "L", + ReferenceName = "Khe" + }, + new + { + Id = "kqh", + Scope = "I", + Type = "L", + ReferenceName = "Kisankasa" + }, + new + { + Id = "kqi", + Scope = "I", + Type = "L", + ReferenceName = "Koitabu" + }, + new + { + Id = "kqj", + Scope = "I", + Type = "L", + ReferenceName = "Koromira" + }, + new + { + Id = "kqk", + Scope = "I", + Type = "L", + ReferenceName = "Kotafon Gbe" + }, + new + { + Id = "kql", + Scope = "I", + Type = "L", + ReferenceName = "Kyenele" + }, + new + { + Id = "kqm", + Scope = "I", + Type = "L", + ReferenceName = "Khisa" + }, + new + { + Id = "kqn", + Scope = "I", + Type = "L", + ReferenceName = "Kaonde" + }, + new + { + Id = "kqo", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Krahn" + }, + new + { + Id = "kqp", + Scope = "I", + Type = "L", + ReferenceName = "Kimré" + }, + new + { + Id = "kqq", + Scope = "I", + Type = "L", + ReferenceName = "Krenak" + }, + new + { + Id = "kqr", + Scope = "I", + Type = "L", + ReferenceName = "Kimaragang" + }, + new + { + Id = "kqs", + Scope = "I", + Type = "L", + ReferenceName = "Northern Kissi" + }, + new + { + Id = "kqt", + Scope = "I", + Type = "L", + ReferenceName = "Klias River Kadazan" + }, + new + { + Id = "kqu", + Scope = "I", + Type = "E", + ReferenceName = "Seroa" + }, + new + { + Id = "kqv", + Scope = "I", + Type = "L", + ReferenceName = "Okolod" + }, + new + { + Id = "kqw", + Scope = "I", + Type = "L", + ReferenceName = "Kandas" + }, + new + { + Id = "kqx", + Scope = "I", + Type = "L", + ReferenceName = "Mser" + }, + new + { + Id = "kqy", + Scope = "I", + Type = "L", + ReferenceName = "Koorete" + }, + new + { + Id = "kqz", + Scope = "I", + Type = "E", + ReferenceName = "Korana" + }, + new + { + Id = "kra", + Scope = "I", + Type = "L", + ReferenceName = "Kumhali" + }, + new + { + Id = "krb", + Scope = "I", + Type = "E", + ReferenceName = "Karkin" + }, + new + { + Id = "krc", + Part2B = "krc", + Part2T = "krc", + Scope = "I", + Type = "L", + ReferenceName = "Karachay-Balkar" + }, + new + { + Id = "krd", + Scope = "I", + Type = "L", + ReferenceName = "Kairui-Midiki" + }, + new + { + Id = "kre", + Scope = "I", + Type = "L", + ReferenceName = "Panará" + }, + new + { + Id = "krf", + Scope = "I", + Type = "L", + ReferenceName = "Koro (Vanuatu)" + }, + new + { + Id = "krh", + Scope = "I", + Type = "L", + ReferenceName = "Kurama" + }, + new + { + Id = "kri", + Scope = "I", + Type = "L", + ReferenceName = "Krio" + }, + new + { + Id = "krj", + Scope = "I", + Type = "L", + ReferenceName = "Kinaray-A" + }, + new + { + Id = "krk", + Scope = "I", + Type = "E", + ReferenceName = "Kerek" + }, + new + { + Id = "krl", + Part2B = "krl", + Part2T = "krl", + Scope = "I", + Type = "L", + ReferenceName = "Karelian" + }, + new + { + Id = "krn", + Scope = "I", + Type = "L", + ReferenceName = "Sapo" + }, + new + { + Id = "krp", + Scope = "I", + Type = "L", + ReferenceName = "Korop" + }, + new + { + Id = "krr", + Scope = "I", + Type = "L", + ReferenceName = "Krung" + }, + new + { + Id = "krs", + Scope = "I", + Type = "L", + ReferenceName = "Gbaya (Sudan)" + }, + new + { + Id = "krt", + Scope = "I", + Type = "L", + ReferenceName = "Tumari Kanuri" + }, + new + { + Id = "kru", + Part2B = "kru", + Part2T = "kru", + Scope = "I", + Type = "L", + ReferenceName = "Kurukh" + }, + new + { + Id = "krv", + Scope = "I", + Type = "L", + ReferenceName = "Kavet" + }, + new + { + Id = "krw", + Scope = "I", + Type = "L", + ReferenceName = "Western Krahn" + }, + new + { + Id = "krx", + Scope = "I", + Type = "L", + ReferenceName = "Karon" + }, + new + { + Id = "kry", + Scope = "I", + Type = "L", + ReferenceName = "Kryts" + }, + new + { + Id = "krz", + Scope = "I", + Type = "L", + ReferenceName = "Sota Kanum" + }, + new + { + Id = "ksa", + Scope = "I", + Type = "L", + ReferenceName = "Shuwa-Zamani" + }, + new + { + Id = "ksb", + Scope = "I", + Type = "L", + ReferenceName = "Shambala" + }, + new + { + Id = "ksc", + Scope = "I", + Type = "L", + ReferenceName = "Southern Kalinga" + }, + new + { + Id = "ksd", + Scope = "I", + Type = "L", + ReferenceName = "Kuanua" + }, + new + { + Id = "kse", + Scope = "I", + Type = "L", + ReferenceName = "Kuni" + }, + new + { + Id = "ksf", + Scope = "I", + Type = "L", + ReferenceName = "Bafia" + }, + new + { + Id = "ksg", + Scope = "I", + Type = "L", + ReferenceName = "Kusaghe" + }, + new + { + Id = "ksh", + Scope = "I", + Type = "L", + ReferenceName = "Kölsch" + }, + new + { + Id = "ksi", + Scope = "I", + Type = "L", + ReferenceName = "Krisa" + }, + new + { + Id = "ksj", + Scope = "I", + Type = "L", + ReferenceName = "Uare" + }, + new + { + Id = "ksk", + Scope = "I", + Type = "L", + ReferenceName = "Kansa" + }, + new + { + Id = "ksl", + Scope = "I", + Type = "L", + ReferenceName = "Kumalu" + }, + new + { + Id = "ksm", + Scope = "I", + Type = "L", + ReferenceName = "Kumba" + }, + new + { + Id = "ksn", + Scope = "I", + Type = "L", + ReferenceName = "Kasiguranin" + }, + new + { + Id = "kso", + Scope = "I", + Type = "L", + ReferenceName = "Kofa" + }, + new + { + Id = "ksp", + Scope = "I", + Type = "L", + ReferenceName = "Kaba" + }, + new + { + Id = "ksq", + Scope = "I", + Type = "L", + ReferenceName = "Kwaami" + }, + new + { + Id = "ksr", + Scope = "I", + Type = "L", + ReferenceName = "Borong" + }, + new + { + Id = "kss", + Scope = "I", + Type = "L", + ReferenceName = "Southern Kisi" + }, + new + { + Id = "kst", + Scope = "I", + Type = "L", + ReferenceName = "Winyé" + }, + new + { + Id = "ksu", + Scope = "I", + Type = "L", + ReferenceName = "Khamyang" + }, + new + { + Id = "ksv", + Scope = "I", + Type = "L", + ReferenceName = "Kusu" + }, + new + { + Id = "ksw", + Scope = "I", + Type = "L", + ReferenceName = "S'gaw Karen" + }, + new + { + Id = "ksx", + Scope = "I", + Type = "L", + ReferenceName = "Kedang" + }, + new + { + Id = "ksy", + Scope = "I", + Type = "L", + ReferenceName = "Kharia Thar" + }, + new + { + Id = "ksz", + Scope = "I", + Type = "L", + ReferenceName = "Kodaku" + }, + new + { + Id = "kta", + Scope = "I", + Type = "L", + ReferenceName = "Katua" + }, + new + { + Id = "ktb", + Scope = "I", + Type = "L", + ReferenceName = "Kambaata" + }, + new + { + Id = "ktc", + Scope = "I", + Type = "L", + ReferenceName = "Kholok" + }, + new + { + Id = "ktd", + Scope = "I", + Type = "L", + ReferenceName = "Kokata" + }, + new + { + Id = "kte", + Scope = "I", + Type = "L", + ReferenceName = "Nubri" + }, + new + { + Id = "ktf", + Scope = "I", + Type = "L", + ReferenceName = "Kwami" + }, + new + { + Id = "ktg", + Scope = "I", + Type = "E", + ReferenceName = "Kalkutung" + }, + new + { + Id = "kth", + Scope = "I", + Type = "L", + ReferenceName = "Karanga" + }, + new + { + Id = "kti", + Scope = "I", + Type = "L", + ReferenceName = "North Muyu" + }, + new + { + Id = "ktj", + Scope = "I", + Type = "L", + ReferenceName = "Plapo Krumen" + }, + new + { + Id = "ktk", + Scope = "I", + Type = "E", + ReferenceName = "Kaniet" + }, + new + { + Id = "ktl", + Scope = "I", + Type = "L", + ReferenceName = "Koroshi" + }, + new + { + Id = "ktm", + Scope = "I", + Type = "L", + ReferenceName = "Kurti" + }, + new + { + Id = "ktn", + Scope = "I", + Type = "L", + ReferenceName = "Karitiâna" + }, + new + { + Id = "kto", + Scope = "I", + Type = "L", + ReferenceName = "Kuot" + }, + new + { + Id = "ktp", + Scope = "I", + Type = "L", + ReferenceName = "Kaduo" + }, + new + { + Id = "ktq", + Scope = "I", + Type = "E", + ReferenceName = "Katabaga" + }, + new + { + Id = "kts", + Scope = "I", + Type = "L", + ReferenceName = "South Muyu" + }, + new + { + Id = "ktt", + Scope = "I", + Type = "L", + ReferenceName = "Ketum" + }, + new + { + Id = "ktu", + Scope = "I", + Type = "L", + ReferenceName = "Kituba (Democratic Republic of Congo)" + }, + new + { + Id = "ktv", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Katu" + }, + new + { + Id = "ktw", + Scope = "I", + Type = "E", + ReferenceName = "Kato" + }, + new + { + Id = "ktx", + Scope = "I", + Type = "L", + ReferenceName = "Kaxararí" + }, + new + { + Id = "kty", + Scope = "I", + Type = "L", + ReferenceName = "Kango (Bas-Uélé District)" + }, + new + { + Id = "ktz", + Scope = "I", + Type = "L", + ReferenceName = "Juǀʼhoan" + }, + new + { + Id = "kua", + Part2B = "kua", + Part2T = "kua", + Part1 = "kj", + Scope = "I", + Type = "L", + ReferenceName = "Kuanyama" + }, + new + { + Id = "kub", + Scope = "I", + Type = "L", + ReferenceName = "Kutep" + }, + new + { + Id = "kuc", + Scope = "I", + Type = "L", + ReferenceName = "Kwinsu" + }, + new + { + Id = "kud", + Scope = "I", + Type = "L", + ReferenceName = "'Auhelawa" + }, + new + { + Id = "kue", + Scope = "I", + Type = "L", + ReferenceName = "Kuman (Papua New Guinea)" + }, + new + { + Id = "kuf", + Scope = "I", + Type = "L", + ReferenceName = "Western Katu" + }, + new + { + Id = "kug", + Scope = "I", + Type = "L", + ReferenceName = "Kupa" + }, + new + { + Id = "kuh", + Scope = "I", + Type = "L", + ReferenceName = "Kushi" + }, + new + { + Id = "kui", + Scope = "I", + Type = "L", + ReferenceName = "Kuikúro-Kalapálo" + }, + new + { + Id = "kuj", + Scope = "I", + Type = "L", + ReferenceName = "Kuria" + }, + new + { + Id = "kuk", + Scope = "I", + Type = "L", + ReferenceName = "Kepo'" + }, + new + { + Id = "kul", + Scope = "I", + Type = "L", + ReferenceName = "Kulere" + }, + new + { + Id = "kum", + Part2B = "kum", + Part2T = "kum", + Scope = "I", + Type = "L", + ReferenceName = "Kumyk" + }, + new + { + Id = "kun", + Scope = "I", + Type = "L", + ReferenceName = "Kunama" + }, + new + { + Id = "kuo", + Scope = "I", + Type = "L", + ReferenceName = "Kumukio" + }, + new + { + Id = "kup", + Scope = "I", + Type = "L", + ReferenceName = "Kunimaipa" + }, + new + { + Id = "kuq", + Scope = "I", + Type = "L", + ReferenceName = "Karipuna" + }, + new + { + Id = "kur", + Part2B = "kur", + Part2T = "kur", + Part1 = "ku", + Scope = "M", + Type = "L", + ReferenceName = "Kurdish" + }, + new + { + Id = "kus", + Scope = "I", + Type = "L", + ReferenceName = "Kusaal" + }, + new + { + Id = "kut", + Part2B = "kut", + Part2T = "kut", + Scope = "I", + Type = "L", + ReferenceName = "Kutenai" + }, + new + { + Id = "kuu", + Scope = "I", + Type = "L", + ReferenceName = "Upper Kuskokwim" + }, + new + { + Id = "kuv", + Scope = "I", + Type = "L", + ReferenceName = "Kur" + }, + new + { + Id = "kuw", + Scope = "I", + Type = "L", + ReferenceName = "Kpagua" + }, + new + { + Id = "kux", + Scope = "I", + Type = "L", + ReferenceName = "Kukatja" + }, + new + { + Id = "kuy", + Scope = "I", + Type = "L", + ReferenceName = "Kuuku-Ya'u" + }, + new + { + Id = "kuz", + Scope = "I", + Type = "E", + ReferenceName = "Kunza" + }, + new + { + Id = "kva", + Scope = "I", + Type = "L", + ReferenceName = "Bagvalal" + }, + new + { + Id = "kvb", + Scope = "I", + Type = "L", + ReferenceName = "Kubu" + }, + new + { + Id = "kvc", + Scope = "I", + Type = "L", + ReferenceName = "Kove" + }, + new + { + Id = "kvd", + Scope = "I", + Type = "L", + ReferenceName = "Kui (Indonesia)" + }, + new + { + Id = "kve", + Scope = "I", + Type = "L", + ReferenceName = "Kalabakan" + }, + new + { + Id = "kvf", + Scope = "I", + Type = "L", + ReferenceName = "Kabalai" + }, + new + { + Id = "kvg", + Scope = "I", + Type = "L", + ReferenceName = "Kuni-Boazi" + }, + new + { + Id = "kvh", + Scope = "I", + Type = "L", + ReferenceName = "Komodo" + }, + new + { + Id = "kvi", + Scope = "I", + Type = "L", + ReferenceName = "Kwang" + }, + new + { + Id = "kvj", + Scope = "I", + Type = "L", + ReferenceName = "Psikye" + }, + new + { + Id = "kvk", + Scope = "I", + Type = "L", + ReferenceName = "Korean Sign Language" + }, + new + { + Id = "kvl", + Scope = "I", + Type = "L", + ReferenceName = "Kayaw" + }, + new + { + Id = "kvm", + Scope = "I", + Type = "L", + ReferenceName = "Kendem" + }, + new + { + Id = "kvn", + Scope = "I", + Type = "L", + ReferenceName = "Border Kuna" + }, + new + { + Id = "kvo", + Scope = "I", + Type = "L", + ReferenceName = "Dobel" + }, + new + { + Id = "kvp", + Scope = "I", + Type = "L", + ReferenceName = "Kompane" + }, + new + { + Id = "kvq", + Scope = "I", + Type = "L", + ReferenceName = "Geba Karen" + }, + new + { + Id = "kvr", + Scope = "I", + Type = "L", + ReferenceName = "Kerinci" + }, + new + { + Id = "kvt", + Scope = "I", + Type = "L", + ReferenceName = "Lahta Karen" + }, + new + { + Id = "kvu", + Scope = "I", + Type = "L", + ReferenceName = "Yinbaw Karen" + }, + new + { + Id = "kvv", + Scope = "I", + Type = "L", + ReferenceName = "Kola" + }, + new + { + Id = "kvw", + Scope = "I", + Type = "L", + ReferenceName = "Wersing" + }, + new + { + Id = "kvx", + Scope = "I", + Type = "L", + ReferenceName = "Parkari Koli" + }, + new + { + Id = "kvy", + Scope = "I", + Type = "L", + ReferenceName = "Yintale Karen" + }, + new + { + Id = "kvz", + Scope = "I", + Type = "L", + ReferenceName = "Tsakwambo" + }, + new + { + Id = "kwa", + Scope = "I", + Type = "L", + ReferenceName = "Dâw" + }, + new + { + Id = "kwb", + Scope = "I", + Type = "L", + ReferenceName = "Kwa" + }, + new + { + Id = "kwc", + Scope = "I", + Type = "L", + ReferenceName = "Likwala" + }, + new + { + Id = "kwd", + Scope = "I", + Type = "L", + ReferenceName = "Kwaio" + }, + new + { + Id = "kwe", + Scope = "I", + Type = "L", + ReferenceName = "Kwerba" + }, + new + { + Id = "kwf", + Scope = "I", + Type = "L", + ReferenceName = "Kwara'ae" + }, + new + { + Id = "kwg", + Scope = "I", + Type = "L", + ReferenceName = "Sara Kaba Deme" + }, + new + { + Id = "kwh", + Scope = "I", + Type = "L", + ReferenceName = "Kowiai" + }, + new + { + Id = "kwi", + Scope = "I", + Type = "L", + ReferenceName = "Awa-Cuaiquer" + }, + new + { + Id = "kwj", + Scope = "I", + Type = "L", + ReferenceName = "Kwanga" + }, + new + { + Id = "kwk", + Scope = "I", + Type = "L", + ReferenceName = "Kwakiutl" + }, + new + { + Id = "kwl", + Scope = "I", + Type = "L", + ReferenceName = "Kofyar" + }, + new + { + Id = "kwm", + Scope = "I", + Type = "L", + ReferenceName = "Kwambi" + }, + new + { + Id = "kwn", + Scope = "I", + Type = "L", + ReferenceName = "Kwangali" + }, + new + { + Id = "kwo", + Scope = "I", + Type = "L", + ReferenceName = "Kwomtari" + }, + new + { + Id = "kwp", + Scope = "I", + Type = "L", + ReferenceName = "Kodia" + }, + new + { + Id = "kwr", + Scope = "I", + Type = "L", + ReferenceName = "Kwer" + }, + new + { + Id = "kws", + Scope = "I", + Type = "L", + ReferenceName = "Kwese" + }, + new + { + Id = "kwt", + Scope = "I", + Type = "L", + ReferenceName = "Kwesten" + }, + new + { + Id = "kwu", + Scope = "I", + Type = "L", + ReferenceName = "Kwakum" + }, + new + { + Id = "kwv", + Scope = "I", + Type = "L", + ReferenceName = "Sara Kaba Náà" + }, + new + { + Id = "kww", + Scope = "I", + Type = "L", + ReferenceName = "Kwinti" + }, + new + { + Id = "kwx", + Scope = "I", + Type = "L", + ReferenceName = "Khirwar" + }, + new + { + Id = "kwy", + Scope = "I", + Type = "L", + ReferenceName = "San Salvador Kongo" + }, + new + { + Id = "kwz", + Scope = "I", + Type = "E", + ReferenceName = "Kwadi" + }, + new + { + Id = "kxa", + Scope = "I", + Type = "L", + ReferenceName = "Kairiru" + }, + new + { + Id = "kxb", + Scope = "I", + Type = "L", + ReferenceName = "Krobu" + }, + new + { + Id = "kxc", + Scope = "I", + Type = "L", + ReferenceName = "Konso" + }, + new + { + Id = "kxd", + Scope = "I", + Type = "L", + ReferenceName = "Brunei" + }, + new + { + Id = "kxf", + Scope = "I", + Type = "L", + ReferenceName = "Manumanaw Karen" + }, + new + { + Id = "kxh", + Scope = "I", + Type = "L", + ReferenceName = "Karo (Ethiopia)" + }, + new + { + Id = "kxi", + Scope = "I", + Type = "L", + ReferenceName = "Keningau Murut" + }, + new + { + Id = "kxj", + Scope = "I", + Type = "L", + ReferenceName = "Kulfa" + }, + new + { + Id = "kxk", + Scope = "I", + Type = "L", + ReferenceName = "Zayein Karen" + }, + new + { + Id = "kxl", + Scope = "I", + Type = "L", + ReferenceName = "Nepali Kurux" + }, + new + { + Id = "kxm", + Scope = "I", + Type = "L", + ReferenceName = "Northern Khmer" + }, + new + { + Id = "kxn", + Scope = "I", + Type = "L", + ReferenceName = "Kanowit-Tanjong Melanau" + }, + new + { + Id = "kxo", + Scope = "I", + Type = "E", + ReferenceName = "Kanoé" + }, + new + { + Id = "kxp", + Scope = "I", + Type = "L", + ReferenceName = "Wadiyara Koli" + }, + new + { + Id = "kxq", + Scope = "I", + Type = "L", + ReferenceName = "Smärky Kanum" + }, + new + { + Id = "kxr", + Scope = "I", + Type = "L", + ReferenceName = "Koro (Papua New Guinea)" + }, + new + { + Id = "kxs", + Scope = "I", + Type = "L", + ReferenceName = "Kangjia" + }, + new + { + Id = "kxt", + Scope = "I", + Type = "L", + ReferenceName = "Koiwat" + }, + new + { + Id = "kxu", + Scope = "I", + Type = "L", + ReferenceName = "Kui (India)" + }, + new + { + Id = "kxv", + Scope = "I", + Type = "L", + ReferenceName = "Kuvi" + }, + new + { + Id = "kxw", + Scope = "I", + Type = "L", + ReferenceName = "Konai" + }, + new + { + Id = "kxx", + Scope = "I", + Type = "L", + ReferenceName = "Likuba" + }, + new + { + Id = "kxy", + Scope = "I", + Type = "L", + ReferenceName = "Kayong" + }, + new + { + Id = "kxz", + Scope = "I", + Type = "L", + ReferenceName = "Kerewo" + }, + new + { + Id = "kya", + Scope = "I", + Type = "L", + ReferenceName = "Kwaya" + }, + new + { + Id = "kyb", + Scope = "I", + Type = "L", + ReferenceName = "Butbut Kalinga" + }, + new + { + Id = "kyc", + Scope = "I", + Type = "L", + ReferenceName = "Kyaka" + }, + new + { + Id = "kyd", + Scope = "I", + Type = "L", + ReferenceName = "Karey" + }, + new + { + Id = "kye", + Scope = "I", + Type = "L", + ReferenceName = "Krache" + }, + new + { + Id = "kyf", + Scope = "I", + Type = "L", + ReferenceName = "Kouya" + }, + new + { + Id = "kyg", + Scope = "I", + Type = "L", + ReferenceName = "Keyagana" + }, + new + { + Id = "kyh", + Scope = "I", + Type = "L", + ReferenceName = "Karok" + }, + new + { + Id = "kyi", + Scope = "I", + Type = "L", + ReferenceName = "Kiput" + }, + new + { + Id = "kyj", + Scope = "I", + Type = "L", + ReferenceName = "Karao" + }, + new + { + Id = "kyk", + Scope = "I", + Type = "L", + ReferenceName = "Kamayo" + }, + new + { + Id = "kyl", + Scope = "I", + Type = "L", + ReferenceName = "Kalapuya" + }, + new + { + Id = "kym", + Scope = "I", + Type = "L", + ReferenceName = "Kpatili" + }, + new + { + Id = "kyn", + Scope = "I", + Type = "L", + ReferenceName = "Northern Binukidnon" + }, + new + { + Id = "kyo", + Scope = "I", + Type = "L", + ReferenceName = "Kelon" + }, + new + { + Id = "kyp", + Scope = "I", + Type = "L", + ReferenceName = "Kang" + }, + new + { + Id = "kyq", + Scope = "I", + Type = "L", + ReferenceName = "Kenga" + }, + new + { + Id = "kyr", + Scope = "I", + Type = "L", + ReferenceName = "Kuruáya" + }, + new + { + Id = "kys", + Scope = "I", + Type = "L", + ReferenceName = "Baram Kayan" + }, + new + { + Id = "kyt", + Scope = "I", + Type = "L", + ReferenceName = "Kayagar" + }, + new + { + Id = "kyu", + Scope = "I", + Type = "L", + ReferenceName = "Western Kayah" + }, + new + { + Id = "kyv", + Scope = "I", + Type = "L", + ReferenceName = "Kayort" + }, + new + { + Id = "kyw", + Scope = "I", + Type = "L", + ReferenceName = "Kudmali" + }, + new + { + Id = "kyx", + Scope = "I", + Type = "L", + ReferenceName = "Rapoisi" + }, + new + { + Id = "kyy", + Scope = "I", + Type = "L", + ReferenceName = "Kambaira" + }, + new + { + Id = "kyz", + Scope = "I", + Type = "L", + ReferenceName = "Kayabí" + }, + new + { + Id = "kza", + Scope = "I", + Type = "L", + ReferenceName = "Western Karaboro" + }, + new + { + Id = "kzb", + Scope = "I", + Type = "L", + ReferenceName = "Kaibobo" + }, + new + { + Id = "kzc", + Scope = "I", + Type = "L", + ReferenceName = "Bondoukou Kulango" + }, + new + { + Id = "kzd", + Scope = "I", + Type = "L", + ReferenceName = "Kadai" + }, + new + { + Id = "kze", + Scope = "I", + Type = "L", + ReferenceName = "Kosena" + }, + new + { + Id = "kzf", + Scope = "I", + Type = "L", + ReferenceName = "Da'a Kaili" + }, + new + { + Id = "kzg", + Scope = "I", + Type = "L", + ReferenceName = "Kikai" + }, + new + { + Id = "kzi", + Scope = "I", + Type = "L", + ReferenceName = "Kelabit" + }, + new + { + Id = "kzk", + Scope = "I", + Type = "E", + ReferenceName = "Kazukuru" + }, + new + { + Id = "kzl", + Scope = "I", + Type = "L", + ReferenceName = "Kayeli" + }, + new + { + Id = "kzm", + Scope = "I", + Type = "L", + ReferenceName = "Kais" + }, + new + { + Id = "kzn", + Scope = "I", + Type = "L", + ReferenceName = "Kokola" + }, + new + { + Id = "kzo", + Scope = "I", + Type = "L", + ReferenceName = "Kaningi" + }, + new + { + Id = "kzp", + Scope = "I", + Type = "L", + ReferenceName = "Kaidipang" + }, + new + { + Id = "kzq", + Scope = "I", + Type = "L", + ReferenceName = "Kaike" + }, + new + { + Id = "kzr", + Scope = "I", + Type = "L", + ReferenceName = "Karang" + }, + new + { + Id = "kzs", + Scope = "I", + Type = "L", + ReferenceName = "Sugut Dusun" + }, + new + { + Id = "kzu", + Scope = "I", + Type = "L", + ReferenceName = "Kayupulau" + }, + new + { + Id = "kzv", + Scope = "I", + Type = "L", + ReferenceName = "Komyandaret" + }, + new + { + Id = "kzw", + Scope = "I", + Type = "E", + ReferenceName = "Karirí-Xocó" + }, + new + { + Id = "kzx", + Scope = "I", + Type = "E", + ReferenceName = "Kamarian" + }, + new + { + Id = "kzy", + Scope = "I", + Type = "L", + ReferenceName = "Kango (Tshopo District)" + }, + new + { + Id = "kzz", + Scope = "I", + Type = "L", + ReferenceName = "Kalabra" + }); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/L.cs b/Cicm.Database/Seeders/Iso639Split/L.cs new file mode 100644 index 00000000..4c646144 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/L.cs @@ -0,0 +1,540 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class L + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "laa", Scope = "I", Type = "L", ReferenceName = "Southern Subanen"}, + new {Id = "lab", Scope = "I", Type = "A", ReferenceName = "Linear A"}, + new {Id = "lac", Scope = "I", Type = "L", ReferenceName = "Lacandon"}, + new + { + Id = "lad", + Part2B = "lad", + Part2T = "lad", + Scope = "I", + Type = "L", + ReferenceName = "Ladino" + }, new {Id = "lae", Scope = "I", Type = "L", ReferenceName = "Pattani"}, + new {Id = "laf", Scope = "I", Type = "L", ReferenceName = "Lafofa"}, + new {Id = "lag", Scope = "I", Type = "L", ReferenceName = "Langi"}, + new + { + Id = "lah", + Part2B = "lah", + Part2T = "lah", + Scope = "M", + Type = "L", + ReferenceName = "Lahnda" + }, new {Id = "lai", Scope = "I", Type = "L", ReferenceName = "Lambya"}, + new {Id = "laj", Scope = "I", Type = "L", ReferenceName = "Lango (Uganda)"}, + new {Id = "lak", Scope = "I", Type = "L", ReferenceName = "Laka (Nigeria)"}, + new {Id = "lal", Scope = "I", Type = "L", ReferenceName = "Lalia"}, + new + { + Id = "lam", + Part2B = "lam", + Part2T = "lam", + Scope = "I", + Type = "L", + ReferenceName = "Lamba" + }, new {Id = "lan", Scope = "I", Type = "L", ReferenceName = "Laru"}, + new + { + Id = "lao", + Part2B = "lao", + Part2T = "lao", + Part1 = "lo", + Scope = "I", + Type = "L", + ReferenceName = "Lao" + }, new {Id = "lap", Scope = "I", Type = "L", ReferenceName = "Laka (Chad)"}, + new {Id = "laq", Scope = "I", Type = "L", ReferenceName = "Qabiao"}, + new {Id = "lar", Scope = "I", Type = "L", ReferenceName = "Larteh"}, + new {Id = "las", Scope = "I", Type = "L", ReferenceName = "Lama (Togo)"}, + new + { + Id = "lat", + Part2B = "lat", + Part2T = "lat", + Part1 = "la", + Scope = "I", + Type = "A", + ReferenceName = "Latin" + }, new {Id = "lau", Scope = "I", Type = "L", ReferenceName = "Laba"}, + new + { + Id = "lav", + Part2B = "lav", + Part2T = "lav", + Part1 = "lv", + Scope = "M", + Type = "L", + ReferenceName = "Latvian" + }, new {Id = "law", Scope = "I", Type = "L", ReferenceName = "Lauje"}, + new {Id = "lax", Scope = "I", Type = "L", ReferenceName = "Tiwa"}, + new {Id = "lay", Scope = "I", Type = "L", ReferenceName = "Lama Bai"}, + new {Id = "laz", Scope = "I", Type = "E", ReferenceName = "Aribwatsa"}, + new {Id = "lbb", Scope = "I", Type = "L", ReferenceName = "Label"}, + new {Id = "lbc", Scope = "I", Type = "L", ReferenceName = "Lakkia"}, + new {Id = "lbe", Scope = "I", Type = "L", ReferenceName = "Lak"}, + new {Id = "lbf", Scope = "I", Type = "L", ReferenceName = "Tinani"}, + new {Id = "lbg", Scope = "I", Type = "L", ReferenceName = "Laopang"}, + new {Id = "lbi", Scope = "I", Type = "L", ReferenceName = "La'bi"}, + new {Id = "lbj", Scope = "I", Type = "L", ReferenceName = "Ladakhi"}, + new {Id = "lbk", Scope = "I", Type = "L", ReferenceName = "Central Bontok"}, + new {Id = "lbl", Scope = "I", Type = "L", ReferenceName = "Libon Bikol"}, + new {Id = "lbm", Scope = "I", Type = "L", ReferenceName = "Lodhi"}, + new {Id = "lbn", Scope = "I", Type = "L", ReferenceName = "Rmeet"}, + new {Id = "lbo", Scope = "I", Type = "L", ReferenceName = "Laven"}, + new {Id = "lbq", Scope = "I", Type = "L", ReferenceName = "Wampar"}, + new {Id = "lbr", Scope = "I", Type = "L", ReferenceName = "Lohorung"}, + new {Id = "lbs", Scope = "I", Type = "L", ReferenceName = "Libyan Sign Language"}, + new {Id = "lbt", Scope = "I", Type = "L", ReferenceName = "Lachi"}, + new {Id = "lbu", Scope = "I", Type = "L", ReferenceName = "Labu"}, + new {Id = "lbv", Scope = "I", Type = "L", ReferenceName = "Lavatbura-Lamusong"}, + new {Id = "lbw", Scope = "I", Type = "L", ReferenceName = "Tolaki"}, + new {Id = "lbx", Scope = "I", Type = "L", ReferenceName = "Lawangan"}, + new {Id = "lby", Scope = "I", Type = "E", ReferenceName = "Lamalama"}, + new {Id = "lbz", Scope = "I", Type = "L", ReferenceName = "Lardil"}, + new {Id = "lcc", Scope = "I", Type = "L", ReferenceName = "Legenyem"}, + new {Id = "lcd", Scope = "I", Type = "L", ReferenceName = "Lola"}, + new {Id = "lce", Scope = "I", Type = "L", ReferenceName = "Loncong"}, + new {Id = "lcf", Scope = "I", Type = "L", ReferenceName = "Lubu"}, + new {Id = "lch", Scope = "I", Type = "L", ReferenceName = "Luchazi"}, + new {Id = "lcl", Scope = "I", Type = "L", ReferenceName = "Lisela"}, + new {Id = "lcm", Scope = "I", Type = "L", ReferenceName = "Tungag"}, + new {Id = "lcp", Scope = "I", Type = "L", ReferenceName = "Western Lawa"}, + new {Id = "lcq", Scope = "I", Type = "L", ReferenceName = "Luhu"}, + new {Id = "lcs", Scope = "I", Type = "L", ReferenceName = "Lisabata-Nuniali"}, + new {Id = "lda", Scope = "I", Type = "L", ReferenceName = "Kla-Dan"}, + new {Id = "ldb", Scope = "I", Type = "L", ReferenceName = "Dũya"}, + new {Id = "ldd", Scope = "I", Type = "L", ReferenceName = "Luri"}, + new {Id = "ldg", Scope = "I", Type = "L", ReferenceName = "Lenyima"}, + new {Id = "ldh", Scope = "I", Type = "L", ReferenceName = "Lamja-Dengsa-Tola"}, + new {Id = "ldi", Scope = "I", Type = "L", ReferenceName = "Laari"}, + new {Id = "ldj", Scope = "I", Type = "L", ReferenceName = "Lemoro"}, + new {Id = "ldk", Scope = "I", Type = "L", ReferenceName = "Leelau"}, + new {Id = "ldl", Scope = "I", Type = "L", ReferenceName = "Kaan"}, + new {Id = "ldm", Scope = "I", Type = "L", ReferenceName = "Landoma"}, + new {Id = "ldn", Scope = "I", Type = "C", ReferenceName = "Láadan"}, + new {Id = "ldo", Scope = "I", Type = "L", ReferenceName = "Loo"}, + new {Id = "ldp", Scope = "I", Type = "L", ReferenceName = "Tso"}, + new {Id = "ldq", Scope = "I", Type = "L", ReferenceName = "Lufu"}, + new {Id = "lea", Scope = "I", Type = "L", ReferenceName = "Lega-Shabunda"}, + new {Id = "leb", Scope = "I", Type = "L", ReferenceName = "Lala-Bisa"}, + new {Id = "lec", Scope = "I", Type = "L", ReferenceName = "Leco"}, + new {Id = "led", Scope = "I", Type = "L", ReferenceName = "Lendu"}, + new {Id = "lee", Scope = "I", Type = "L", ReferenceName = "Lyélé"}, + new {Id = "lef", Scope = "I", Type = "L", ReferenceName = "Lelemi"}, + new {Id = "leh", Scope = "I", Type = "L", ReferenceName = "Lenje"}, + new {Id = "lei", Scope = "I", Type = "L", ReferenceName = "Lemio"}, + new {Id = "lej", Scope = "I", Type = "L", ReferenceName = "Lengola"}, + new {Id = "lek", Scope = "I", Type = "L", ReferenceName = "Leipon"}, + new + { + Id = "lel", + Scope = "I", + Type = "L", + ReferenceName = "Lele (Democratic Republic of Congo)" + }, new {Id = "lem", Scope = "I", Type = "L", ReferenceName = "Nomaande"}, + new {Id = "len", Scope = "I", Type = "E", ReferenceName = "Lenca"}, + new {Id = "leo", Scope = "I", Type = "L", ReferenceName = "Leti (Cameroon)"}, + new {Id = "lep", Scope = "I", Type = "L", ReferenceName = "Lepcha"}, + new {Id = "leq", Scope = "I", Type = "L", ReferenceName = "Lembena"}, + new {Id = "ler", Scope = "I", Type = "L", ReferenceName = "Lenkau"}, + new {Id = "les", Scope = "I", Type = "L", ReferenceName = "Lese"}, + new {Id = "let", Scope = "I", Type = "L", ReferenceName = "Lesing-Gelimi"}, + new + { + Id = "leu", + Scope = "I", + Type = "L", + ReferenceName = "Kara (Papua New Guinea)" + }, + new {Id = "lev", Scope = "I", Type = "L", ReferenceName = "Lamma"}, + new {Id = "lew", Scope = "I", Type = "L", ReferenceName = "Ledo Kaili"}, + new {Id = "lex", Scope = "I", Type = "L", ReferenceName = "Luang"}, + new {Id = "ley", Scope = "I", Type = "L", ReferenceName = "Lemolang"}, + new + { + Id = "lez", + Part2B = "lez", + Part2T = "lez", + Scope = "I", + Type = "L", + ReferenceName = "Lezghian" + }, new {Id = "lfa", Scope = "I", Type = "L", ReferenceName = "Lefa"}, + new {Id = "lfn", Scope = "I", Type = "C", ReferenceName = "Lingua Franca Nova"}, + new {Id = "lga", Scope = "I", Type = "L", ReferenceName = "Lungga"}, + new {Id = "lgb", Scope = "I", Type = "L", ReferenceName = "Laghu"}, + new {Id = "lgg", Scope = "I", Type = "L", ReferenceName = "Lugbara"}, + new {Id = "lgh", Scope = "I", Type = "L", ReferenceName = "Laghuu"}, + new {Id = "lgi", Scope = "I", Type = "L", ReferenceName = "Lengilu"}, + new {Id = "lgk", Scope = "I", Type = "L", ReferenceName = "Lingarak"}, + new {Id = "lgl", Scope = "I", Type = "L", ReferenceName = "Wala"}, + new {Id = "lgm", Scope = "I", Type = "L", ReferenceName = "Lega-Mwenga"}, + new {Id = "lgn", Scope = "I", Type = "L", ReferenceName = "T'apo"}, + new {Id = "lgq", Scope = "I", Type = "L", ReferenceName = "Logba"}, + new {Id = "lgr", Scope = "I", Type = "L", ReferenceName = "Lengo"}, + new {Id = "lgt", Scope = "I", Type = "L", ReferenceName = "Pahi"}, + new {Id = "lgu", Scope = "I", Type = "L", ReferenceName = "Longgu"}, + new {Id = "lgz", Scope = "I", Type = "L", ReferenceName = "Ligenza"}, + new {Id = "lha", Scope = "I", Type = "L", ReferenceName = "Laha (Viet Nam)"}, + new {Id = "lhh", Scope = "I", Type = "L", ReferenceName = "Laha (Indonesia)"}, + new {Id = "lhi", Scope = "I", Type = "L", ReferenceName = "Lahu Shi"}, + new {Id = "lhl", Scope = "I", Type = "L", ReferenceName = "Lahul Lohar"}, + new {Id = "lhm", Scope = "I", Type = "L", ReferenceName = "Lhomi"}, + new {Id = "lhn", Scope = "I", Type = "L", ReferenceName = "Lahanan"}, + new {Id = "lhp", Scope = "I", Type = "L", ReferenceName = "Lhokpu"}, + new {Id = "lhs", Scope = "I", Type = "E", ReferenceName = "Mlahsö"}, + new {Id = "lht", Scope = "I", Type = "L", ReferenceName = "Lo-Toga"}, + new {Id = "lhu", Scope = "I", Type = "L", ReferenceName = "Lahu"}, + new {Id = "lia", Scope = "I", Type = "L", ReferenceName = "West-Central Limba"}, + new {Id = "lib", Scope = "I", Type = "L", ReferenceName = "Likum"}, + new {Id = "lic", Scope = "I", Type = "L", ReferenceName = "Hlai"}, + new {Id = "lid", Scope = "I", Type = "L", ReferenceName = "Nyindrou"}, + new {Id = "lie", Scope = "I", Type = "L", ReferenceName = "Likila"}, + new {Id = "lif", Scope = "I", Type = "L", ReferenceName = "Limbu"}, + new {Id = "lig", Scope = "I", Type = "L", ReferenceName = "Ligbi"}, + new {Id = "lih", Scope = "I", Type = "L", ReferenceName = "Lihir"}, + new {Id = "lij", Scope = "I", Type = "L", ReferenceName = "Ligurian"}, + new {Id = "lik", Scope = "I", Type = "L", ReferenceName = "Lika"}, + new {Id = "lil", Scope = "I", Type = "L", ReferenceName = "Lillooet"}, + new + { + Id = "lim", + Part2B = "lim", + Part2T = "lim", + Part1 = "li", + Scope = "I", + Type = "L", + ReferenceName = "Limburgan" + }, new + { + Id = "lin", + Part2B = "lin", + Part2T = "lin", + Part1 = "ln", + Scope = "I", + Type = "L", + ReferenceName = "Lingala" + }, new {Id = "lio", Scope = "I", Type = "L", ReferenceName = "Liki"}, + new {Id = "lip", Scope = "I", Type = "L", ReferenceName = "Sekpele"}, + new {Id = "liq", Scope = "I", Type = "L", ReferenceName = "Libido"}, + new {Id = "lir", Scope = "I", Type = "L", ReferenceName = "Liberian English"}, + new {Id = "lis", Scope = "I", Type = "L", ReferenceName = "Lisu"}, + new + { + Id = "lit", + Part2B = "lit", + Part2T = "lit", + Part1 = "lt", + Scope = "I", + Type = "L", + ReferenceName = "Lithuanian" + }, new {Id = "liu", Scope = "I", Type = "L", ReferenceName = "Logorik"}, + new {Id = "liv", Scope = "I", Type = "L", ReferenceName = "Liv"}, + new {Id = "liw", Scope = "I", Type = "L", ReferenceName = "Col"}, + new {Id = "lix", Scope = "I", Type = "L", ReferenceName = "Liabuku"}, + new {Id = "liy", Scope = "I", Type = "L", ReferenceName = "Banda-Bambari"}, + new {Id = "liz", Scope = "I", Type = "L", ReferenceName = "Libinza"}, + new {Id = "lja", Scope = "I", Type = "E", ReferenceName = "Golpa"}, + new {Id = "lje", Scope = "I", Type = "L", ReferenceName = "Rampi"}, + new {Id = "lji", Scope = "I", Type = "L", ReferenceName = "Laiyolo"}, + new {Id = "ljl", Scope = "I", Type = "L", ReferenceName = "Li'o"}, + new {Id = "ljp", Scope = "I", Type = "L", ReferenceName = "Lampung Api"}, + new {Id = "ljw", Scope = "I", Type = "L", ReferenceName = "Yirandali"}, + new {Id = "ljx", Scope = "I", Type = "E", ReferenceName = "Yuru"}, + new {Id = "lka", Scope = "I", Type = "L", ReferenceName = "Lakalei"}, + new {Id = "lkb", Scope = "I", Type = "L", ReferenceName = "Kabras"}, + new {Id = "lkc", Scope = "I", Type = "L", ReferenceName = "Kucong"}, + new {Id = "lkd", Scope = "I", Type = "L", ReferenceName = "Lakondê"}, + new {Id = "lke", Scope = "I", Type = "L", ReferenceName = "Kenyi"}, + new {Id = "lkh", Scope = "I", Type = "L", ReferenceName = "Lakha"}, + new {Id = "lki", Scope = "I", Type = "L", ReferenceName = "Laki"}, + new {Id = "lkj", Scope = "I", Type = "L", ReferenceName = "Remun"}, + new {Id = "lkl", Scope = "I", Type = "L", ReferenceName = "Laeko-Libuat"}, + new {Id = "lkm", Scope = "I", Type = "E", ReferenceName = "Kalaamaya"}, + new {Id = "lkn", Scope = "I", Type = "L", ReferenceName = "Lakon"}, + new {Id = "lko", Scope = "I", Type = "L", ReferenceName = "Khayo"}, + new {Id = "lkr", Scope = "I", Type = "L", ReferenceName = "Päri"}, + new {Id = "lks", Scope = "I", Type = "L", ReferenceName = "Kisa"}, + new {Id = "lkt", Scope = "I", Type = "L", ReferenceName = "Lakota"}, + new {Id = "lku", Scope = "I", Type = "E", ReferenceName = "Kungkari"}, + new {Id = "lky", Scope = "I", Type = "L", ReferenceName = "Lokoya"}, + new {Id = "lla", Scope = "I", Type = "L", ReferenceName = "Lala-Roba"}, + new {Id = "llb", Scope = "I", Type = "L", ReferenceName = "Lolo"}, + new {Id = "llc", Scope = "I", Type = "L", ReferenceName = "Lele (Guinea)"}, + new {Id = "lld", Scope = "I", Type = "L", ReferenceName = "Ladin"}, + new + { + Id = "lle", + Scope = "I", + Type = "L", + ReferenceName = "Lele (Papua New Guinea)" + }, + new {Id = "llf", Scope = "I", Type = "E", ReferenceName = "Hermit"}, + new {Id = "llg", Scope = "I", Type = "L", ReferenceName = "Lole"}, + new {Id = "llh", Scope = "I", Type = "L", ReferenceName = "Lamu"}, + new {Id = "lli", Scope = "I", Type = "L", ReferenceName = "Teke-Laali"}, + new {Id = "llj", Scope = "I", Type = "E", ReferenceName = "Ladji Ladji"}, + new {Id = "llk", Scope = "I", Type = "E", ReferenceName = "Lelak"}, + new {Id = "lll", Scope = "I", Type = "L", ReferenceName = "Lilau"}, + new {Id = "llm", Scope = "I", Type = "L", ReferenceName = "Lasalimu"}, + new {Id = "lln", Scope = "I", Type = "L", ReferenceName = "Lele (Chad)"}, + new {Id = "llp", Scope = "I", Type = "L", ReferenceName = "North Efate"}, + new {Id = "llq", Scope = "I", Type = "L", ReferenceName = "Lolak"}, + new + { + Id = "lls", + Scope = "I", + Type = "L", + ReferenceName = "Lithuanian Sign Language" + }, + new {Id = "llu", Scope = "I", Type = "L", ReferenceName = "Lau"}, + new {Id = "llx", Scope = "I", Type = "L", ReferenceName = "Lauan"}, + new {Id = "lma", Scope = "I", Type = "L", ReferenceName = "East Limba"}, + new {Id = "lmb", Scope = "I", Type = "L", ReferenceName = "Merei"}, + new {Id = "lmc", Scope = "I", Type = "E", ReferenceName = "Limilngan"}, + new {Id = "lmd", Scope = "I", Type = "L", ReferenceName = "Lumun"}, + new {Id = "lme", Scope = "I", Type = "L", ReferenceName = "Pévé"}, + new {Id = "lmf", Scope = "I", Type = "L", ReferenceName = "South Lembata"}, + new {Id = "lmg", Scope = "I", Type = "L", ReferenceName = "Lamogai"}, + new {Id = "lmh", Scope = "I", Type = "L", ReferenceName = "Lambichhong"}, + new {Id = "lmi", Scope = "I", Type = "L", ReferenceName = "Lombi"}, + new {Id = "lmj", Scope = "I", Type = "L", ReferenceName = "West Lembata"}, + new {Id = "lmk", Scope = "I", Type = "L", ReferenceName = "Lamkang"}, + new {Id = "lml", Scope = "I", Type = "L", ReferenceName = "Hano"}, + new {Id = "lmn", Scope = "I", Type = "L", ReferenceName = "Lambadi"}, + new {Id = "lmo", Scope = "I", Type = "L", ReferenceName = "Lombard"}, + new {Id = "lmp", Scope = "I", Type = "L", ReferenceName = "Limbum"}, + new {Id = "lmq", Scope = "I", Type = "L", ReferenceName = "Lamatuka"}, + new {Id = "lmr", Scope = "I", Type = "L", ReferenceName = "Lamalera"}, + new {Id = "lmu", Scope = "I", Type = "L", ReferenceName = "Lamenu"}, + new {Id = "lmv", Scope = "I", Type = "L", ReferenceName = "Lomaiviti"}, + new {Id = "lmw", Scope = "I", Type = "L", ReferenceName = "Lake Miwok"}, + new {Id = "lmx", Scope = "I", Type = "L", ReferenceName = "Laimbue"}, + new {Id = "lmy", Scope = "I", Type = "L", ReferenceName = "Lamboya"}, + new {Id = "lmz", Scope = "I", Type = "E", ReferenceName = "Lumbee"}, + new {Id = "lna", Scope = "I", Type = "L", ReferenceName = "Langbashe"}, + new {Id = "lnb", Scope = "I", Type = "L", ReferenceName = "Mbalanhu"}, + new {Id = "lnd", Scope = "I", Type = "L", ReferenceName = "Lundayeh"}, + new {Id = "lng", Scope = "I", Type = "A", ReferenceName = "Langobardic"}, + new {Id = "lnh", Scope = "I", Type = "L", ReferenceName = "Lanoh"}, + new {Id = "lni", Scope = "I", Type = "L", ReferenceName = "Daantanai'"}, + new {Id = "lnj", Scope = "I", Type = "E", ReferenceName = "Leningitij"}, + new {Id = "lnl", Scope = "I", Type = "L", ReferenceName = "South Central Banda"}, + new {Id = "lnm", Scope = "I", Type = "L", ReferenceName = "Langam"}, + new {Id = "lnn", Scope = "I", Type = "L", ReferenceName = "Lorediakarkar"}, + new {Id = "lno", Scope = "I", Type = "L", ReferenceName = "Lango (South Sudan)"}, + new {Id = "lns", Scope = "I", Type = "L", ReferenceName = "Lamnso'"}, + new {Id = "lnu", Scope = "I", Type = "L", ReferenceName = "Longuda"}, + new {Id = "lnw", Scope = "I", Type = "E", ReferenceName = "Lanima"}, + new {Id = "lnz", Scope = "I", Type = "L", ReferenceName = "Lonzo"}, + new {Id = "loa", Scope = "I", Type = "L", ReferenceName = "Loloda"}, + new {Id = "lob", Scope = "I", Type = "L", ReferenceName = "Lobi"}, + new {Id = "loc", Scope = "I", Type = "L", ReferenceName = "Inonhan"}, + new {Id = "loe", Scope = "I", Type = "L", ReferenceName = "Saluan"}, + new {Id = "lof", Scope = "I", Type = "L", ReferenceName = "Logol"}, + new {Id = "log", Scope = "I", Type = "L", ReferenceName = "Logo"}, + new {Id = "loh", Scope = "I", Type = "L", ReferenceName = "Narim"}, + new {Id = "loi", Scope = "I", Type = "L", ReferenceName = "Loma (Côte d'Ivoire)"}, + new {Id = "loj", Scope = "I", Type = "L", ReferenceName = "Lou"}, + new {Id = "lok", Scope = "I", Type = "L", ReferenceName = "Loko"}, + new + { + Id = "lol", + Part2B = "lol", + Part2T = "lol", + Scope = "I", + Type = "L", + ReferenceName = "Mongo" + }, new {Id = "lom", Scope = "I", Type = "L", ReferenceName = "Loma (Liberia)"}, + new {Id = "lon", Scope = "I", Type = "L", ReferenceName = "Malawi Lomwe"}, + new {Id = "loo", Scope = "I", Type = "L", ReferenceName = "Lombo"}, + new {Id = "lop", Scope = "I", Type = "L", ReferenceName = "Lopa"}, + new {Id = "loq", Scope = "I", Type = "L", ReferenceName = "Lobala"}, + new {Id = "lor", Scope = "I", Type = "L", ReferenceName = "Téén"}, + new {Id = "los", Scope = "I", Type = "L", ReferenceName = "Loniu"}, + new {Id = "lot", Scope = "I", Type = "L", ReferenceName = "Otuho"}, + new {Id = "lou", Scope = "I", Type = "L", ReferenceName = "Louisiana Creole"}, + new {Id = "lov", Scope = "I", Type = "L", ReferenceName = "Lopi"}, + new {Id = "low", Scope = "I", Type = "L", ReferenceName = "Tampias Lobu"}, + new {Id = "lox", Scope = "I", Type = "L", ReferenceName = "Loun"}, + new {Id = "loy", Scope = "I", Type = "L", ReferenceName = "Loke"}, + new + { + Id = "loz", + Part2B = "loz", + Part2T = "loz", + Scope = "I", + Type = "L", + ReferenceName = "Lozi" + }, new {Id = "lpa", Scope = "I", Type = "L", ReferenceName = "Lelepa"}, + new {Id = "lpe", Scope = "I", Type = "L", ReferenceName = "Lepki"}, + new {Id = "lpn", Scope = "I", Type = "L", ReferenceName = "Long Phuri Naga"}, + new {Id = "lpo", Scope = "I", Type = "L", ReferenceName = "Lipo"}, + new {Id = "lpx", Scope = "I", Type = "L", ReferenceName = "Lopit"}, + new {Id = "lra", Scope = "I", Type = "L", ReferenceName = "Rara Bakati'"}, + new {Id = "lrc", Scope = "I", Type = "L", ReferenceName = "Northern Luri"}, + new {Id = "lre", Scope = "I", Type = "E", ReferenceName = "Laurentian"}, + new {Id = "lrg", Scope = "I", Type = "E", ReferenceName = "Laragia"}, + new {Id = "lri", Scope = "I", Type = "L", ReferenceName = "Marachi"}, + new {Id = "lrk", Scope = "I", Type = "L", ReferenceName = "Loarki"}, + new {Id = "lrl", Scope = "I", Type = "L", ReferenceName = "Lari"}, + new {Id = "lrm", Scope = "I", Type = "L", ReferenceName = "Marama"}, + new {Id = "lrn", Scope = "I", Type = "L", ReferenceName = "Lorang"}, + new {Id = "lro", Scope = "I", Type = "L", ReferenceName = "Laro"}, + new {Id = "lrr", Scope = "I", Type = "L", ReferenceName = "Southern Yamphu"}, + new {Id = "lrt", Scope = "I", Type = "L", ReferenceName = "Larantuka Malay"}, + new {Id = "lrv", Scope = "I", Type = "L", ReferenceName = "Larevat"}, + new {Id = "lrz", Scope = "I", Type = "L", ReferenceName = "Lemerig"}, + new {Id = "lsa", Scope = "I", Type = "L", ReferenceName = "Lasgerdi"}, + new {Id = "lsd", Scope = "I", Type = "L", ReferenceName = "Lishana Deni"}, + new {Id = "lse", Scope = "I", Type = "L", ReferenceName = "Lusengo"}, + new {Id = "lsh", Scope = "I", Type = "L", ReferenceName = "Lish"}, + new {Id = "lsi", Scope = "I", Type = "L", ReferenceName = "Lashi"}, + new {Id = "lsl", Scope = "I", Type = "L", ReferenceName = "Latvian Sign Language"}, + new {Id = "lsm", Scope = "I", Type = "L", ReferenceName = "Saamia"}, + new {Id = "lsn", Scope = "I", Type = "L", ReferenceName = "Tibetan Sign Language"}, + new {Id = "lso", Scope = "I", Type = "L", ReferenceName = "Laos Sign Language"}, + new + { + Id = "lsp", + Scope = "I", + Type = "L", + ReferenceName = "Panamanian Sign Language" + }, + new {Id = "lsr", Scope = "I", Type = "L", ReferenceName = "Aruop"}, + new {Id = "lss", Scope = "I", Type = "L", ReferenceName = "Lasi"}, + new + { + Id = "lst", + Scope = "I", + Type = "L", + ReferenceName = "Trinidad and Tobago Sign Language" + }, + new {Id = "lsv", Scope = "I", Type = "L", ReferenceName = "Sivia Sign Language"}, + new {Id = "lsy", Scope = "I", Type = "L", ReferenceName = "Mauritian Sign Language"}, + new {Id = "ltc", Scope = "I", Type = "H", ReferenceName = "Late Middle Chinese"}, + new {Id = "ltg", Scope = "I", Type = "L", ReferenceName = "Latgalian"}, + new {Id = "lth", Scope = "I", Type = "L", ReferenceName = "Thur"}, + new {Id = "lti", Scope = "I", Type = "L", ReferenceName = "Leti (Indonesia)"}, + new {Id = "ltn", Scope = "I", Type = "L", ReferenceName = "Latundê"}, + new {Id = "lto", Scope = "I", Type = "L", ReferenceName = "Tsotso"}, + new {Id = "lts", Scope = "I", Type = "L", ReferenceName = "Tachoni"}, + new {Id = "ltu", Scope = "I", Type = "L", ReferenceName = "Latu"}, + new + { + Id = "ltz", + Part2B = "ltz", + Part2T = "ltz", + Part1 = "lb", + Scope = "I", + Type = "L", + ReferenceName = "Luxembourgish" + }, new + { + Id = "lua", + Part2B = "lua", + Part2T = "lua", + Scope = "I", + Type = "L", + ReferenceName = "Luba-Lulua" + }, new + { + Id = "lub", + Part2B = "lub", + Part2T = "lub", + Part1 = "lu", + Scope = "I", + Type = "L", + ReferenceName = "Luba-Katanga" + }, new {Id = "luc", Scope = "I", Type = "L", ReferenceName = "Aringa"}, + new {Id = "lud", Scope = "I", Type = "L", ReferenceName = "Ludian"}, + new {Id = "lue", Scope = "I", Type = "L", ReferenceName = "Luvale"}, + new {Id = "luf", Scope = "I", Type = "L", ReferenceName = "Laua"}, + new + { + Id = "lug", + Part2B = "lug", + Part2T = "lug", + Part1 = "lg", + Scope = "I", + Type = "L", + ReferenceName = "Ganda" + }, new + { + Id = "lui", + Part2B = "lui", + Part2T = "lui", + Scope = "I", + Type = "E", + ReferenceName = "Luiseno" + }, new {Id = "luj", Scope = "I", Type = "L", ReferenceName = "Luna"}, + new {Id = "luk", Scope = "I", Type = "L", ReferenceName = "Lunanakha"}, + new {Id = "lul", Scope = "I", Type = "L", ReferenceName = "Olu'bo"}, + new {Id = "lum", Scope = "I", Type = "L", ReferenceName = "Luimbi"}, + new + { + Id = "lun", + Part2B = "lun", + Part2T = "lun", + Scope = "I", + Type = "L", + ReferenceName = "Lunda" + }, new + { + Id = "luo", + Part2B = "luo", + Part2T = "luo", + Scope = "I", + Type = "L", + ReferenceName = "Luo (Kenya and Tanzania)" + }, new {Id = "lup", Scope = "I", Type = "L", ReferenceName = "Lumbu"}, + new {Id = "luq", Scope = "I", Type = "L", ReferenceName = "Lucumi"}, + new {Id = "lur", Scope = "I", Type = "L", ReferenceName = "Laura"}, + new + { + Id = "lus", + Part2B = "lus", + Part2T = "lus", + Scope = "I", + Type = "L", + ReferenceName = "Lushai" + }, new {Id = "lut", Scope = "I", Type = "L", ReferenceName = "Lushootseed"}, + new {Id = "luu", Scope = "I", Type = "L", ReferenceName = "Lumba-Yakkha"}, + new {Id = "luv", Scope = "I", Type = "L", ReferenceName = "Luwati"}, + new {Id = "luw", Scope = "I", Type = "L", ReferenceName = "Luo (Cameroon)"}, + new {Id = "luy", Scope = "M", Type = "L", ReferenceName = "Luyia"}, + new {Id = "luz", Scope = "I", Type = "L", ReferenceName = "Southern Luri"}, + new {Id = "lva", Scope = "I", Type = "L", ReferenceName = "Maku'a"}, + new {Id = "lvi", Scope = "I", Type = "L", ReferenceName = "Lavi"}, + new {Id = "lvk", Scope = "I", Type = "L", ReferenceName = "Lavukaleve"}, + new {Id = "lvs", Scope = "I", Type = "L", ReferenceName = "Standard Latvian"}, + new {Id = "lvu", Scope = "I", Type = "L", ReferenceName = "Levuka"}, + new {Id = "lwa", Scope = "I", Type = "L", ReferenceName = "Lwalu"}, + new {Id = "lwe", Scope = "I", Type = "L", ReferenceName = "Lewo Eleng"}, + new {Id = "lwg", Scope = "I", Type = "L", ReferenceName = "Wanga"}, + new {Id = "lwh", Scope = "I", Type = "L", ReferenceName = "White Lachi"}, + new {Id = "lwl", Scope = "I", Type = "L", ReferenceName = "Eastern Lawa"}, + new {Id = "lwm", Scope = "I", Type = "L", ReferenceName = "Laomian"}, + new {Id = "lwo", Scope = "I", Type = "L", ReferenceName = "Luwo"}, + new {Id = "lws", Scope = "I", Type = "L", ReferenceName = "Malawian Sign Language"}, + new {Id = "lwt", Scope = "I", Type = "L", ReferenceName = "Lewotobi"}, + new {Id = "lwu", Scope = "I", Type = "L", ReferenceName = "Lawu"}, + new {Id = "lww", Scope = "I", Type = "L", ReferenceName = "Lewo"}, + new {Id = "lya", Scope = "I", Type = "L", ReferenceName = "Layakha"}, + new {Id = "lyg", Scope = "I", Type = "L", ReferenceName = "Lyngngam"}, + new {Id = "lyn", Scope = "I", Type = "L", ReferenceName = "Luyana"}, + new {Id = "lzh", Scope = "I", Type = "H", ReferenceName = "Literary Chinese"}, + new {Id = "lzl", Scope = "I", Type = "L", ReferenceName = "Litzlitz"}, + new {Id = "lzn", Scope = "I", Type = "L", ReferenceName = "Leinong Naga"}, + new {Id = "lzz", Scope = "I", Type = "L", ReferenceName = "Laz"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/M.cs b/Cicm.Database/Seeders/Iso639Split/M.cs new file mode 100644 index 00000000..1171b146 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/M.cs @@ -0,0 +1,1052 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class M + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData( + new + { + Id = "maa", + Scope = "I", + Type = "L", + ReferenceName = "San Jerónimo Tecóatl Mazatec" + }, new {Id = "mab", Scope = "I", Type = "L", ReferenceName = "Yutanduchi Mixtec"}, + new + { + Id = "mad", + Part2B = "mad", + Part2T = "mad", + Scope = "I", + Type = "L", + ReferenceName = "Madurese" + }, new {Id = "mae", Scope = "I", Type = "L", ReferenceName = "Bo-Rukul"}, + new {Id = "maf", Scope = "I", Type = "L", ReferenceName = "Mafa"}, + new + { + Id = "mag", + Part2B = "mag", + Part2T = "mag", + Scope = "I", + Type = "L", + ReferenceName = "Magahi" + }, new + { + Id = "mah", + Part2B = "mah", + Part2T = "mah", + Part1 = "mh", + Scope = "I", + Type = "L", + ReferenceName = "Marshallese" + }, new + { + Id = "mai", + Part2B = "mai", + Part2T = "mai", + Scope = "I", + Type = "L", + ReferenceName = "Maithili" + }, new {Id = "maj", Scope = "I", Type = "L", ReferenceName = "Jalapa De Díaz Mazatec"}, + new + { + Id = "mak", + Part2B = "mak", + Part2T = "mak", + Scope = "I", + Type = "L", + ReferenceName = "Makasar" + }, new + { + Id = "mal", + Part2B = "mal", + Part2T = "mal", + Part1 = "ml", + Scope = "I", + Type = "L", + ReferenceName = "Malayalam" + }, new {Id = "mam", Scope = "I", Type = "L", ReferenceName = "Mam"}, + new + { + Id = "man", + Part2B = "man", + Part2T = "man", + Scope = "M", + Type = "L", + ReferenceName = "Mandingo" + }, new {Id = "maq", Scope = "I", Type = "L", ReferenceName = "Chiquihuitlán Mazatec"}, + new + { + Id = "mar", + Part2B = "mar", + Part2T = "mar", + Part1 = "mr", + Scope = "I", + Type = "L", + ReferenceName = "Marathi" + }, new + { + Id = "mas", + Part2B = "mas", + Part2T = "mas", + Scope = "I", + Type = "L", + ReferenceName = "Masai" + }, + new {Id = "mat", Scope = "I", Type = "L", ReferenceName = "San Francisco Matlatzinca"}, + new {Id = "mau", Scope = "I", Type = "L", ReferenceName = "Huautla Mazatec"}, + new {Id = "mav", Scope = "I", Type = "L", ReferenceName = "Sateré-Mawé"}, + new {Id = "maw", Scope = "I", Type = "L", ReferenceName = "Mampruli"}, + new {Id = "max", Scope = "I", Type = "L", ReferenceName = "North Moluccan Malay"}, + new {Id = "maz", Scope = "I", Type = "L", ReferenceName = "Central Mazahua"}, + new {Id = "mba", Scope = "I", Type = "L", ReferenceName = "Higaonon"}, + new {Id = "mbb", Scope = "I", Type = "L", ReferenceName = "Western Bukidnon Manobo"}, + new {Id = "mbc", Scope = "I", Type = "L", ReferenceName = "Macushi"}, + new {Id = "mbd", Scope = "I", Type = "L", ReferenceName = "Dibabawon Manobo"}, + new {Id = "mbe", Scope = "I", Type = "E", ReferenceName = "Molale"}, + new {Id = "mbf", Scope = "I", Type = "L", ReferenceName = "Baba Malay"}, + new {Id = "mbh", Scope = "I", Type = "L", ReferenceName = "Mangseng"}, + new {Id = "mbi", Scope = "I", Type = "L", ReferenceName = "Ilianen Manobo"}, + new {Id = "mbj", Scope = "I", Type = "L", ReferenceName = "Nadëb"}, + new {Id = "mbk", Scope = "I", Type = "L", ReferenceName = "Malol"}, + new {Id = "mbl", Scope = "I", Type = "L", ReferenceName = "Maxakalí"}, + new {Id = "mbm", Scope = "I", Type = "L", ReferenceName = "Ombamba"}, + new {Id = "mbn", Scope = "I", Type = "L", ReferenceName = "Macaguán"}, + new {Id = "mbo", Scope = "I", Type = "L", ReferenceName = "Mbo (Cameroon)"}, + new {Id = "mbp", Scope = "I", Type = "L", ReferenceName = "Malayo"}, + new {Id = "mbq", Scope = "I", Type = "L", ReferenceName = "Maisin"}, + new {Id = "mbr", Scope = "I", Type = "L", ReferenceName = "Nukak Makú"}, + new {Id = "mbs", Scope = "I", Type = "L", ReferenceName = "Sarangani Manobo"}, + new {Id = "mbt", Scope = "I", Type = "L", ReferenceName = "Matigsalug Manobo"}, + new {Id = "mbu", Scope = "I", Type = "L", ReferenceName = "Mbula-Bwazza"}, + new {Id = "mbv", Scope = "I", Type = "L", ReferenceName = "Mbulungish"}, + new {Id = "mbw", Scope = "I", Type = "L", ReferenceName = "Maring"}, + new + { + Id = "mbx", + Scope = "I", + Type = "L", + ReferenceName = "Mari (East Sepik Province)" + }, new {Id = "mby", Scope = "I", Type = "L", ReferenceName = "Memoni"}, + new {Id = "mbz", Scope = "I", Type = "L", ReferenceName = "Amoltepec Mixtec"}, + new {Id = "mca", Scope = "I", Type = "L", ReferenceName = "Maca"}, + new {Id = "mcb", Scope = "I", Type = "L", ReferenceName = "Machiguenga"}, + new {Id = "mcc", Scope = "I", Type = "L", ReferenceName = "Bitur"}, + new {Id = "mcd", Scope = "I", Type = "L", ReferenceName = "Sharanahua"}, + new {Id = "mce", Scope = "I", Type = "L", ReferenceName = "Itundujia Mixtec"}, + new {Id = "mcf", Scope = "I", Type = "L", ReferenceName = "Matsés"}, + new {Id = "mcg", Scope = "I", Type = "L", ReferenceName = "Mapoyo"}, + new {Id = "mch", Scope = "I", Type = "L", ReferenceName = "Maquiritari"}, + new {Id = "mci", Scope = "I", Type = "L", ReferenceName = "Mese"}, + new {Id = "mcj", Scope = "I", Type = "L", ReferenceName = "Mvanip"}, + new {Id = "mck", Scope = "I", Type = "L", ReferenceName = "Mbunda"}, + new {Id = "mcl", Scope = "I", Type = "E", ReferenceName = "Macaguaje"}, + new + { + Id = "mcm", + Scope = "I", + Type = "L", + ReferenceName = "Malaccan Creole Portuguese" + }, new {Id = "mcn", Scope = "I", Type = "L", ReferenceName = "Masana"}, + new {Id = "mco", Scope = "I", Type = "L", ReferenceName = "Coatlán Mixe"}, + new {Id = "mcp", Scope = "I", Type = "L", ReferenceName = "Makaa"}, + new {Id = "mcq", Scope = "I", Type = "L", ReferenceName = "Ese"}, + new {Id = "mcr", Scope = "I", Type = "L", ReferenceName = "Menya"}, + new {Id = "mcs", Scope = "I", Type = "L", ReferenceName = "Mambai"}, + new {Id = "mct", Scope = "I", Type = "L", ReferenceName = "Mengisa"}, + new {Id = "mcu", Scope = "I", Type = "L", ReferenceName = "Cameroon Mambila"}, + new {Id = "mcv", Scope = "I", Type = "L", ReferenceName = "Minanibai"}, + new {Id = "mcw", Scope = "I", Type = "L", ReferenceName = "Mawa (Chad)"}, + new {Id = "mcx", Scope = "I", Type = "L", ReferenceName = "Mpiemo"}, + new {Id = "mcy", Scope = "I", Type = "L", ReferenceName = "South Watut"}, + new {Id = "mcz", Scope = "I", Type = "L", ReferenceName = "Mawan"}, + new {Id = "mda", Scope = "I", Type = "L", ReferenceName = "Mada (Nigeria)"}, + new {Id = "mdb", Scope = "I", Type = "L", ReferenceName = "Morigi"}, + new + { + Id = "mdc", + Scope = "I", + Type = "L", + ReferenceName = "Male (Papua New Guinea)" + }, + new {Id = "mdd", Scope = "I", Type = "L", ReferenceName = "Mbum"}, + new {Id = "mde", Scope = "I", Type = "L", ReferenceName = "Maba (Chad)"}, + new + { + Id = "mdf", + Part2B = "mdf", + Part2T = "mdf", + Scope = "I", + Type = "L", + ReferenceName = "Moksha" + }, new {Id = "mdg", Scope = "I", Type = "L", ReferenceName = "Massalat"}, + new {Id = "mdh", Scope = "I", Type = "L", ReferenceName = "Maguindanaon"}, + new {Id = "mdi", Scope = "I", Type = "L", ReferenceName = "Mamvu"}, + new {Id = "mdj", Scope = "I", Type = "L", ReferenceName = "Mangbetu"}, + new {Id = "mdk", Scope = "I", Type = "L", ReferenceName = "Mangbutu"}, + new {Id = "mdl", Scope = "I", Type = "L", ReferenceName = "Maltese Sign Language"}, + new {Id = "mdm", Scope = "I", Type = "L", ReferenceName = "Mayogo"}, + new {Id = "mdn", Scope = "I", Type = "L", ReferenceName = "Mbati"}, + new {Id = "mdp", Scope = "I", Type = "L", ReferenceName = "Mbala"}, + new {Id = "mdq", Scope = "I", Type = "L", ReferenceName = "Mbole"}, + new + { + Id = "mdr", + Part2B = "mdr", + Part2T = "mdr", + Scope = "I", + Type = "L", + ReferenceName = "Mandar" + }, + new {Id = "mds", Scope = "I", Type = "L", ReferenceName = "Maria (Papua New Guinea)"}, + new {Id = "mdt", Scope = "I", Type = "L", ReferenceName = "Mbere"}, + new {Id = "mdu", Scope = "I", Type = "L", ReferenceName = "Mboko"}, + new + { + Id = "mdv", + Scope = "I", + Type = "L", + ReferenceName = "Santa Lucía Monteverde Mixtec" + }, new {Id = "mdw", Scope = "I", Type = "L", ReferenceName = "Mbosi"}, + new {Id = "mdx", Scope = "I", Type = "L", ReferenceName = "Dizin"}, + new {Id = "mdy", Scope = "I", Type = "L", ReferenceName = "Male (Ethiopia)"}, + new {Id = "mdz", Scope = "I", Type = "L", ReferenceName = "Suruí Do Pará"}, + new {Id = "mea", Scope = "I", Type = "L", ReferenceName = "Menka"}, + new {Id = "meb", Scope = "I", Type = "L", ReferenceName = "Ikobi"}, + new {Id = "mec", Scope = "I", Type = "L", ReferenceName = "Marra"}, + new {Id = "med", Scope = "I", Type = "L", ReferenceName = "Melpa"}, + new {Id = "mee", Scope = "I", Type = "L", ReferenceName = "Mengen"}, + new {Id = "mef", Scope = "I", Type = "L", ReferenceName = "Megam"}, + new + { + Id = "meh", + Scope = "I", + Type = "L", + ReferenceName = "Southwestern Tlaxiaco Mixtec" + }, new {Id = "mei", Scope = "I", Type = "L", ReferenceName = "Midob"}, + new {Id = "mej", Scope = "I", Type = "L", ReferenceName = "Meyah"}, + new {Id = "mek", Scope = "I", Type = "L", ReferenceName = "Mekeo"}, + new {Id = "mel", Scope = "I", Type = "L", ReferenceName = "Central Melanau"}, + new {Id = "mem", Scope = "I", Type = "E", ReferenceName = "Mangala"}, + new + { + Id = "men", + Part2B = "men", + Part2T = "men", + Scope = "I", + Type = "L", + ReferenceName = "Mende (Sierra Leone)" + }, new {Id = "meo", Scope = "I", Type = "L", ReferenceName = "Kedah Malay"}, + new {Id = "mep", Scope = "I", Type = "L", ReferenceName = "Miriwoong"}, + new {Id = "meq", Scope = "I", Type = "L", ReferenceName = "Merey"}, + new {Id = "mer", Scope = "I", Type = "L", ReferenceName = "Meru"}, + new {Id = "mes", Scope = "I", Type = "L", ReferenceName = "Masmaje"}, + new {Id = "met", Scope = "I", Type = "L", ReferenceName = "Mato"}, + new {Id = "meu", Scope = "I", Type = "L", ReferenceName = "Motu"}, + new {Id = "mev", Scope = "I", Type = "L", ReferenceName = "Mano"}, + new {Id = "mew", Scope = "I", Type = "L", ReferenceName = "Maaka"}, + new {Id = "mey", Scope = "I", Type = "L", ReferenceName = "Hassaniyya"}, + new {Id = "mez", Scope = "I", Type = "L", ReferenceName = "Menominee"}, + new {Id = "mfa", Scope = "I", Type = "L", ReferenceName = "Pattani Malay"}, + new {Id = "mfb", Scope = "I", Type = "L", ReferenceName = "Bangka"}, + new {Id = "mfc", Scope = "I", Type = "L", ReferenceName = "Mba"}, + new {Id = "mfd", Scope = "I", Type = "L", ReferenceName = "Mendankwe-Nkwen"}, + new {Id = "mfe", Scope = "I", Type = "L", ReferenceName = "Morisyen"}, + new {Id = "mff", Scope = "I", Type = "L", ReferenceName = "Naki"}, + new {Id = "mfg", Scope = "I", Type = "L", ReferenceName = "Mogofin"}, + new {Id = "mfh", Scope = "I", Type = "L", ReferenceName = "Matal"}, + new {Id = "mfi", Scope = "I", Type = "L", ReferenceName = "Wandala"}, + new {Id = "mfj", Scope = "I", Type = "L", ReferenceName = "Mefele"}, + new {Id = "mfk", Scope = "I", Type = "L", ReferenceName = "North Mofu"}, + new {Id = "mfl", Scope = "I", Type = "L", ReferenceName = "Putai"}, + new {Id = "mfm", Scope = "I", Type = "L", ReferenceName = "Marghi South"}, + new {Id = "mfn", Scope = "I", Type = "L", ReferenceName = "Cross River Mbembe"}, + new {Id = "mfo", Scope = "I", Type = "L", ReferenceName = "Mbe"}, + new {Id = "mfp", Scope = "I", Type = "L", ReferenceName = "Makassar Malay"}, + new {Id = "mfq", Scope = "I", Type = "L", ReferenceName = "Moba"}, + new {Id = "mfr", Scope = "I", Type = "L", ReferenceName = "Marrithiyel"}, + new {Id = "mfs", Scope = "I", Type = "L", ReferenceName = "Mexican Sign Language"}, + new {Id = "mft", Scope = "I", Type = "L", ReferenceName = "Mokerang"}, + new {Id = "mfu", Scope = "I", Type = "L", ReferenceName = "Mbwela"}, + new {Id = "mfv", Scope = "I", Type = "L", ReferenceName = "Mandjak"}, + new {Id = "mfw", Scope = "I", Type = "E", ReferenceName = "Mulaha"}, + new {Id = "mfx", Scope = "I", Type = "L", ReferenceName = "Melo"}, + new {Id = "mfy", Scope = "I", Type = "L", ReferenceName = "Mayo"}, + new {Id = "mfz", Scope = "I", Type = "L", ReferenceName = "Mabaan"}, + new + { + Id = "mga", + Part2B = "mga", + Part2T = "mga", + Scope = "I", + Type = "H", + ReferenceName = "Middle Irish (900-1200)" + }, new {Id = "mgb", Scope = "I", Type = "L", ReferenceName = "Mararit"}, + new {Id = "mgc", Scope = "I", Type = "L", ReferenceName = "Morokodo"}, + new {Id = "mgd", Scope = "I", Type = "L", ReferenceName = "Moru"}, + new {Id = "mge", Scope = "I", Type = "L", ReferenceName = "Mango"}, + new {Id = "mgf", Scope = "I", Type = "L", ReferenceName = "Maklew"}, + new {Id = "mgg", Scope = "I", Type = "L", ReferenceName = "Mpumpong"}, + new {Id = "mgh", Scope = "I", Type = "L", ReferenceName = "Makhuwa-Meetto"}, + new {Id = "mgi", Scope = "I", Type = "L", ReferenceName = "Lijili"}, + new {Id = "mgj", Scope = "I", Type = "L", ReferenceName = "Abureni"}, + new {Id = "mgk", Scope = "I", Type = "L", ReferenceName = "Mawes"}, + new {Id = "mgl", Scope = "I", Type = "L", ReferenceName = "Maleu-Kilenge"}, + new {Id = "mgm", Scope = "I", Type = "L", ReferenceName = "Mambae"}, + new {Id = "mgn", Scope = "I", Type = "L", ReferenceName = "Mbangi"}, + new {Id = "mgo", Scope = "I", Type = "L", ReferenceName = "Meta'"}, + new {Id = "mgp", Scope = "I", Type = "L", ReferenceName = "Eastern Magar"}, + new {Id = "mgq", Scope = "I", Type = "L", ReferenceName = "Malila"}, + new {Id = "mgr", Scope = "I", Type = "L", ReferenceName = "Mambwe-Lungu"}, + new {Id = "mgs", Scope = "I", Type = "L", ReferenceName = "Manda (Tanzania)"}, + new {Id = "mgt", Scope = "I", Type = "L", ReferenceName = "Mongol"}, + new {Id = "mgu", Scope = "I", Type = "L", ReferenceName = "Mailu"}, + new {Id = "mgv", Scope = "I", Type = "L", ReferenceName = "Matengo"}, + new {Id = "mgw", Scope = "I", Type = "L", ReferenceName = "Matumbi"}, + new {Id = "mgy", Scope = "I", Type = "L", ReferenceName = "Mbunga"}, + new {Id = "mgz", Scope = "I", Type = "L", ReferenceName = "Mbugwe"}, + new {Id = "mha", Scope = "I", Type = "L", ReferenceName = "Manda (India)"}, + new {Id = "mhb", Scope = "I", Type = "L", ReferenceName = "Mahongwe"}, + new {Id = "mhc", Scope = "I", Type = "L", ReferenceName = "Mocho"}, + new {Id = "mhd", Scope = "I", Type = "L", ReferenceName = "Mbugu"}, + new {Id = "mhe", Scope = "I", Type = "L", ReferenceName = "Besisi"}, + new {Id = "mhf", Scope = "I", Type = "L", ReferenceName = "Mamaa"}, + new {Id = "mhg", Scope = "I", Type = "L", ReferenceName = "Margu"}, + new {Id = "mhi", Scope = "I", Type = "L", ReferenceName = "Ma'di"}, + new {Id = "mhj", Scope = "I", Type = "L", ReferenceName = "Mogholi"}, + new {Id = "mhk", Scope = "I", Type = "L", ReferenceName = "Mungaka"}, + new {Id = "mhl", Scope = "I", Type = "L", ReferenceName = "Mauwake"}, + new {Id = "mhm", Scope = "I", Type = "L", ReferenceName = "Makhuwa-Moniga"}, + new {Id = "mhn", Scope = "I", Type = "L", ReferenceName = "Mócheno"}, + new {Id = "mho", Scope = "I", Type = "L", ReferenceName = "Mashi (Zambia)"}, + new {Id = "mhp", Scope = "I", Type = "L", ReferenceName = "Balinese Malay"}, + new {Id = "mhq", Scope = "I", Type = "L", ReferenceName = "Mandan"}, + new {Id = "mhr", Scope = "I", Type = "L", ReferenceName = "Eastern Mari"}, + new {Id = "mhs", Scope = "I", Type = "L", ReferenceName = "Buru (Indonesia)"}, + new {Id = "mht", Scope = "I", Type = "L", ReferenceName = "Mandahuaca"}, + new {Id = "mhu", Scope = "I", Type = "L", ReferenceName = "Digaro-Mishmi"}, + new {Id = "mhw", Scope = "I", Type = "L", ReferenceName = "Mbukushu"}, + new {Id = "mhx", Scope = "I", Type = "L", ReferenceName = "Maru"}, + new {Id = "mhy", Scope = "I", Type = "L", ReferenceName = "Ma'anyan"}, + new {Id = "mhz", Scope = "I", Type = "L", ReferenceName = "Mor (Mor Islands)"}, + new {Id = "mia", Scope = "I", Type = "L", ReferenceName = "Miami"}, + new {Id = "mib", Scope = "I", Type = "L", ReferenceName = "Atatláhuca Mixtec"}, + new + { + Id = "mic", + Part2B = "mic", + Part2T = "mic", + Scope = "I", + Type = "L", + ReferenceName = "Mi'kmaq" + }, new {Id = "mid", Scope = "I", Type = "L", ReferenceName = "Mandaic"}, + new {Id = "mie", Scope = "I", Type = "L", ReferenceName = "Ocotepec Mixtec"}, + new {Id = "mif", Scope = "I", Type = "L", ReferenceName = "Mofu-Gudur"}, + new + { + Id = "mig", + Scope = "I", + Type = "L", + ReferenceName = "San Miguel El Grande Mixtec" + }, new {Id = "mih", Scope = "I", Type = "L", ReferenceName = "Chayuco Mixtec"}, + new + { + Id = "mii", + Scope = "I", + Type = "L", + ReferenceName = "Chigmecatitlán Mixtec" + }, + new {Id = "mij", Scope = "I", Type = "L", ReferenceName = "Abar"}, + new {Id = "mik", Scope = "I", Type = "L", ReferenceName = "Mikasuki"}, + new {Id = "mil", Scope = "I", Type = "L", ReferenceName = "Peñoles Mixtec"}, + new + { + Id = "mim", + Scope = "I", + Type = "L", + ReferenceName = "Alacatlatzala Mixtec" + }, + new + { + Id = "min", + Part2B = "min", + Part2T = "min", + Scope = "I", + Type = "L", + ReferenceName = "Minangkabau" + }, + new {Id = "mio", Scope = "I", Type = "L", ReferenceName = "Pinotepa Nacional Mixtec"}, + new {Id = "mip", Scope = "I", Type = "L", ReferenceName = "Apasco-Apoala Mixtec"}, + new {Id = "miq", Scope = "I", Type = "L", ReferenceName = "Mískito"}, + new {Id = "mir", Scope = "I", Type = "L", ReferenceName = "Isthmus Mixe"}, + new + { + Id = "mis", + Part2B = "mis", + Part2T = "mis", + Scope = "S", + Type = "S", + ReferenceName = "Uncoded languages" + }, new {Id = "mit", Scope = "I", Type = "L", ReferenceName = "Southern Puebla Mixtec"}, + new {Id = "miu", Scope = "I", Type = "L", ReferenceName = "Cacaloxtepec Mixtec"}, + new {Id = "miw", Scope = "I", Type = "L", ReferenceName = "Akoye"}, + new {Id = "mix", Scope = "I", Type = "L", ReferenceName = "Mixtepec Mixtec"}, + new {Id = "miy", Scope = "I", Type = "L", ReferenceName = "Ayutla Mixtec"}, + new {Id = "miz", Scope = "I", Type = "L", ReferenceName = "Coatzospan Mixtec"}, + new {Id = "mjb", Scope = "I", Type = "L", ReferenceName = "Makalero"}, + new + { + Id = "mjc", + Scope = "I", + Type = "L", + ReferenceName = "San Juan Colorado Mixtec" + }, + new {Id = "mjd", Scope = "I", Type = "L", ReferenceName = "Northwest Maidu"}, + new {Id = "mje", Scope = "I", Type = "E", ReferenceName = "Muskum"}, + new {Id = "mjg", Scope = "I", Type = "L", ReferenceName = "Tu"}, + new {Id = "mjh", Scope = "I", Type = "L", ReferenceName = "Mwera (Nyasa)"}, + new {Id = "mji", Scope = "I", Type = "L", ReferenceName = "Kim Mun"}, + new {Id = "mjj", Scope = "I", Type = "L", ReferenceName = "Mawak"}, + new {Id = "mjk", Scope = "I", Type = "L", ReferenceName = "Matukar"}, + new {Id = "mjl", Scope = "I", Type = "L", ReferenceName = "Mandeali"}, + new {Id = "mjm", Scope = "I", Type = "L", ReferenceName = "Medebur"}, + new {Id = "mjn", Scope = "I", Type = "L", ReferenceName = "Ma (Papua New Guinea)"}, + new {Id = "mjo", Scope = "I", Type = "L", ReferenceName = "Malankuravan"}, + new {Id = "mjp", Scope = "I", Type = "L", ReferenceName = "Malapandaram"}, + new {Id = "mjq", Scope = "I", Type = "E", ReferenceName = "Malaryan"}, + new {Id = "mjr", Scope = "I", Type = "L", ReferenceName = "Malavedan"}, + new {Id = "mjs", Scope = "I", Type = "L", ReferenceName = "Miship"}, + new {Id = "mjt", Scope = "I", Type = "L", ReferenceName = "Sauria Paharia"}, + new {Id = "mju", Scope = "I", Type = "L", ReferenceName = "Manna-Dora"}, + new {Id = "mjv", Scope = "I", Type = "L", ReferenceName = "Mannan"}, + new {Id = "mjw", Scope = "I", Type = "L", ReferenceName = "Karbi"}, + new {Id = "mjx", Scope = "I", Type = "L", ReferenceName = "Mahali"}, + new {Id = "mjy", Scope = "I", Type = "E", ReferenceName = "Mahican"}, + new {Id = "mjz", Scope = "I", Type = "L", ReferenceName = "Majhi"}, + new {Id = "mka", Scope = "I", Type = "L", ReferenceName = "Mbre"}, + new {Id = "mkb", Scope = "I", Type = "L", ReferenceName = "Mal Paharia"}, + new {Id = "mkc", Scope = "I", Type = "L", ReferenceName = "Siliput"}, + new + { + Id = "mkd", + Part2B = "mac", + Part2T = "mkd", + Part1 = "mk", + Scope = "I", + Type = "L", + ReferenceName = "Macedonian" + }, new {Id = "mke", Scope = "I", Type = "L", ReferenceName = "Mawchi"}, + new {Id = "mkf", Scope = "I", Type = "L", ReferenceName = "Miya"}, + new {Id = "mkg", Scope = "I", Type = "L", ReferenceName = "Mak (China)"}, + new {Id = "mki", Scope = "I", Type = "L", ReferenceName = "Dhatki"}, + new {Id = "mkj", Scope = "I", Type = "L", ReferenceName = "Mokilese"}, + new {Id = "mkk", Scope = "I", Type = "L", ReferenceName = "Byep"}, + new {Id = "mkl", Scope = "I", Type = "L", ReferenceName = "Mokole"}, + new {Id = "mkm", Scope = "I", Type = "L", ReferenceName = "Moklen"}, + new {Id = "mkn", Scope = "I", Type = "L", ReferenceName = "Kupang Malay"}, + new {Id = "mko", Scope = "I", Type = "L", ReferenceName = "Mingang Doso"}, + new {Id = "mkp", Scope = "I", Type = "L", ReferenceName = "Moikodi"}, + new {Id = "mkq", Scope = "I", Type = "E", ReferenceName = "Bay Miwok"}, + new {Id = "mkr", Scope = "I", Type = "L", ReferenceName = "Malas"}, + new {Id = "mks", Scope = "I", Type = "L", ReferenceName = "Silacayoapan Mixtec"}, + new {Id = "mkt", Scope = "I", Type = "L", ReferenceName = "Vamale"}, + new {Id = "mku", Scope = "I", Type = "L", ReferenceName = "Konyanka Maninka"}, + new {Id = "mkv", Scope = "I", Type = "L", ReferenceName = "Mafea"}, + new {Id = "mkw", Scope = "I", Type = "L", ReferenceName = "Kituba (Congo)"}, + new {Id = "mkx", Scope = "I", Type = "L", ReferenceName = "Kinamiging Manobo"}, + new {Id = "mky", Scope = "I", Type = "L", ReferenceName = "East Makian"}, + new {Id = "mkz", Scope = "I", Type = "L", ReferenceName = "Makasae"}, + new {Id = "mla", Scope = "I", Type = "L", ReferenceName = "Malo"}, + new {Id = "mlb", Scope = "I", Type = "L", ReferenceName = "Mbule"}, + new {Id = "mlc", Scope = "I", Type = "L", ReferenceName = "Cao Lan"}, + new {Id = "mle", Scope = "I", Type = "L", ReferenceName = "Manambu"}, + new {Id = "mlf", Scope = "I", Type = "L", ReferenceName = "Mal"}, + new + { + Id = "mlg", + Part2B = "mlg", + Part2T = "mlg", + Part1 = "mg", + Scope = "M", + Type = "L", + ReferenceName = "Malagasy" + }, new {Id = "mlh", Scope = "I", Type = "L", ReferenceName = "Mape"}, + new {Id = "mli", Scope = "I", Type = "L", ReferenceName = "Malimpung"}, + new {Id = "mlj", Scope = "I", Type = "L", ReferenceName = "Miltu"}, + new {Id = "mlk", Scope = "I", Type = "L", ReferenceName = "Ilwana"}, + new {Id = "mll", Scope = "I", Type = "L", ReferenceName = "Malua Bay"}, + new {Id = "mlm", Scope = "I", Type = "L", ReferenceName = "Mulam"}, + new {Id = "mln", Scope = "I", Type = "L", ReferenceName = "Malango"}, + new {Id = "mlo", Scope = "I", Type = "L", ReferenceName = "Mlomp"}, + new {Id = "mlp", Scope = "I", Type = "L", ReferenceName = "Bargam"}, + new {Id = "mlq", Scope = "I", Type = "L", ReferenceName = "Western Maninkakan"}, + new {Id = "mlr", Scope = "I", Type = "L", ReferenceName = "Vame"}, + new {Id = "mls", Scope = "I", Type = "L", ReferenceName = "Masalit"}, + new + { + Id = "mlt", + Part2B = "mlt", + Part2T = "mlt", + Part1 = "mt", + Scope = "I", + Type = "L", + ReferenceName = "Maltese" + }, new {Id = "mlu", Scope = "I", Type = "L", ReferenceName = "To'abaita"}, + new {Id = "mlv", Scope = "I", Type = "L", ReferenceName = "Motlav"}, + new {Id = "mlw", Scope = "I", Type = "L", ReferenceName = "Moloko"}, + new {Id = "mlx", Scope = "I", Type = "L", ReferenceName = "Malfaxal"}, + new {Id = "mlz", Scope = "I", Type = "L", ReferenceName = "Malaynon"}, + new {Id = "mma", Scope = "I", Type = "L", ReferenceName = "Mama"}, + new {Id = "mmb", Scope = "I", Type = "L", ReferenceName = "Momina"}, + new {Id = "mmc", Scope = "I", Type = "L", ReferenceName = "Michoacán Mazahua"}, + new {Id = "mmd", Scope = "I", Type = "L", ReferenceName = "Maonan"}, + new {Id = "mme", Scope = "I", Type = "L", ReferenceName = "Mae"}, + new {Id = "mmf", Scope = "I", Type = "L", ReferenceName = "Mundat"}, + new {Id = "mmg", Scope = "I", Type = "L", ReferenceName = "North Ambrym"}, + new {Id = "mmh", Scope = "I", Type = "L", ReferenceName = "Mehináku"}, + new {Id = "mmi", Scope = "I", Type = "L", ReferenceName = "Musar"}, + new {Id = "mmj", Scope = "I", Type = "L", ReferenceName = "Majhwar"}, + new {Id = "mmk", Scope = "I", Type = "L", ReferenceName = "Mukha-Dora"}, + new {Id = "mml", Scope = "I", Type = "L", ReferenceName = "Man Met"}, + new {Id = "mmm", Scope = "I", Type = "L", ReferenceName = "Maii"}, + new {Id = "mmn", Scope = "I", Type = "L", ReferenceName = "Mamanwa"}, + new {Id = "mmo", Scope = "I", Type = "L", ReferenceName = "Mangga Buang"}, + new {Id = "mmp", Scope = "I", Type = "L", ReferenceName = "Siawi"}, + new {Id = "mmq", Scope = "I", Type = "L", ReferenceName = "Musak"}, + new {Id = "mmr", Scope = "I", Type = "L", ReferenceName = "Western Xiangxi Miao"}, + new {Id = "mmt", Scope = "I", Type = "L", ReferenceName = "Malalamai"}, + new {Id = "mmu", Scope = "I", Type = "L", ReferenceName = "Mmaala"}, + new {Id = "mmv", Scope = "I", Type = "E", ReferenceName = "Miriti"}, + new {Id = "mmw", Scope = "I", Type = "L", ReferenceName = "Emae"}, + new {Id = "mmx", Scope = "I", Type = "L", ReferenceName = "Madak"}, + new {Id = "mmy", Scope = "I", Type = "L", ReferenceName = "Migaama"}, + new {Id = "mmz", Scope = "I", Type = "L", ReferenceName = "Mabaale"}, + new {Id = "mna", Scope = "I", Type = "L", ReferenceName = "Mbula"}, + new {Id = "mnb", Scope = "I", Type = "L", ReferenceName = "Muna"}, + new + { + Id = "mnc", + Part2B = "mnc", + Part2T = "mnc", + Scope = "I", + Type = "L", + ReferenceName = "Manchu" + }, new {Id = "mnd", Scope = "I", Type = "L", ReferenceName = "Mondé"}, + new {Id = "mne", Scope = "I", Type = "L", ReferenceName = "Naba"}, + new {Id = "mnf", Scope = "I", Type = "L", ReferenceName = "Mundani"}, + new {Id = "mng", Scope = "I", Type = "L", ReferenceName = "Eastern Mnong"}, + new + { + Id = "mnh", + Scope = "I", + Type = "L", + ReferenceName = "Mono (Democratic Republic of Congo)" + }, new + { + Id = "mni", + Part2B = "mni", + Part2T = "mni", + Scope = "I", + Type = "L", + ReferenceName = "Manipuri" + }, new {Id = "mnj", Scope = "I", Type = "L", ReferenceName = "Munji"}, + new {Id = "mnk", Scope = "I", Type = "L", ReferenceName = "Mandinka"}, + new {Id = "mnl", Scope = "I", Type = "L", ReferenceName = "Tiale"}, + new {Id = "mnm", Scope = "I", Type = "L", ReferenceName = "Mapena"}, + new {Id = "mnn", Scope = "I", Type = "L", ReferenceName = "Southern Mnong"}, + new {Id = "mnp", Scope = "I", Type = "L", ReferenceName = "Min Bei Chinese"}, + new {Id = "mnq", Scope = "I", Type = "L", ReferenceName = "Minriq"}, + new {Id = "mnr", Scope = "I", Type = "L", ReferenceName = "Mono (USA)"}, + new {Id = "mns", Scope = "I", Type = "L", ReferenceName = "Mansi"}, + new {Id = "mnu", Scope = "I", Type = "L", ReferenceName = "Mer"}, + new {Id = "mnv", Scope = "I", Type = "L", ReferenceName = "Rennell-Bellona"}, + new {Id = "mnw", Scope = "I", Type = "L", ReferenceName = "Mon"}, + new {Id = "mnx", Scope = "I", Type = "L", ReferenceName = "Manikion"}, + new {Id = "mny", Scope = "I", Type = "L", ReferenceName = "Manyawa"}, + new {Id = "mnz", Scope = "I", Type = "L", ReferenceName = "Moni"}, + new {Id = "moa", Scope = "I", Type = "L", ReferenceName = "Mwan"}, + new {Id = "moc", Scope = "I", Type = "L", ReferenceName = "Mocoví"}, + new {Id = "mod", Scope = "I", Type = "E", ReferenceName = "Mobilian"}, + new {Id = "moe", Scope = "I", Type = "L", ReferenceName = "Montagnais"}, + new {Id = "mog", Scope = "I", Type = "L", ReferenceName = "Mongondow"}, + new + { + Id = "moh", + Part2B = "moh", + Part2T = "moh", + Scope = "I", + Type = "L", + ReferenceName = "Mohawk" + }, new {Id = "moi", Scope = "I", Type = "L", ReferenceName = "Mboi"}, + new {Id = "moj", Scope = "I", Type = "L", ReferenceName = "Monzombo"}, + new {Id = "mok", Scope = "I", Type = "L", ReferenceName = "Morori"}, + new {Id = "mom", Scope = "I", Type = "E", ReferenceName = "Mangue"}, + new + { + Id = "mon", + Part2B = "mon", + Part2T = "mon", + Part1 = "mn", + Scope = "M", + Type = "L", + ReferenceName = "Mongolian" + }, new {Id = "moo", Scope = "I", Type = "L", ReferenceName = "Monom"}, + new {Id = "mop", Scope = "I", Type = "L", ReferenceName = "Mopán Maya"}, + new + { + Id = "moq", + Scope = "I", + Type = "L", + ReferenceName = "Mor (Bomberai Peninsula)" + }, + new {Id = "mor", Scope = "I", Type = "L", ReferenceName = "Moro"}, + new + { + Id = "mos", + Part2B = "mos", + Part2T = "mos", + Scope = "I", + Type = "L", + ReferenceName = "Mossi" + }, new {Id = "mot", Scope = "I", Type = "L", ReferenceName = "Barí"}, + new {Id = "mou", Scope = "I", Type = "L", ReferenceName = "Mogum"}, + new {Id = "mov", Scope = "I", Type = "L", ReferenceName = "Mohave"}, + new {Id = "mow", Scope = "I", Type = "L", ReferenceName = "Moi (Congo)"}, + new {Id = "mox", Scope = "I", Type = "L", ReferenceName = "Molima"}, + new {Id = "moy", Scope = "I", Type = "L", ReferenceName = "Shekkacho"}, + new {Id = "moz", Scope = "I", Type = "L", ReferenceName = "Mukulu"}, + new {Id = "mpa", Scope = "I", Type = "L", ReferenceName = "Mpoto"}, + new {Id = "mpb", Scope = "I", Type = "L", ReferenceName = "Malak Malak"}, + new {Id = "mpc", Scope = "I", Type = "L", ReferenceName = "Mangarrayi"}, + new {Id = "mpd", Scope = "I", Type = "L", ReferenceName = "Machinere"}, + new {Id = "mpe", Scope = "I", Type = "L", ReferenceName = "Majang"}, + new {Id = "mpg", Scope = "I", Type = "L", ReferenceName = "Marba"}, + new {Id = "mph", Scope = "I", Type = "L", ReferenceName = "Maung"}, + new {Id = "mpi", Scope = "I", Type = "L", ReferenceName = "Mpade"}, + new {Id = "mpj", Scope = "I", Type = "L", ReferenceName = "Martu Wangka"}, + new {Id = "mpk", Scope = "I", Type = "L", ReferenceName = "Mbara (Chad)"}, + new {Id = "mpl", Scope = "I", Type = "L", ReferenceName = "Middle Watut"}, + new {Id = "mpm", Scope = "I", Type = "L", ReferenceName = "Yosondúa Mixtec"}, + new {Id = "mpn", Scope = "I", Type = "L", ReferenceName = "Mindiri"}, + new {Id = "mpo", Scope = "I", Type = "L", ReferenceName = "Miu"}, + new {Id = "mpp", Scope = "I", Type = "L", ReferenceName = "Migabac"}, + new {Id = "mpq", Scope = "I", Type = "L", ReferenceName = "Matís"}, + new {Id = "mpr", Scope = "I", Type = "L", ReferenceName = "Vangunu"}, + new {Id = "mps", Scope = "I", Type = "L", ReferenceName = "Dadibi"}, + new {Id = "mpt", Scope = "I", Type = "L", ReferenceName = "Mian"}, + new {Id = "mpu", Scope = "I", Type = "L", ReferenceName = "Makuráp"}, + new {Id = "mpv", Scope = "I", Type = "L", ReferenceName = "Mungkip"}, + new {Id = "mpw", Scope = "I", Type = "L", ReferenceName = "Mapidian"}, + new {Id = "mpx", Scope = "I", Type = "L", ReferenceName = "Misima-Panaeati"}, + new {Id = "mpy", Scope = "I", Type = "L", ReferenceName = "Mapia"}, + new {Id = "mpz", Scope = "I", Type = "L", ReferenceName = "Mpi"}, + new {Id = "mqa", Scope = "I", Type = "L", ReferenceName = "Maba (Indonesia)"}, + new {Id = "mqb", Scope = "I", Type = "L", ReferenceName = "Mbuko"}, + new {Id = "mqc", Scope = "I", Type = "L", ReferenceName = "Mangole"}, + new {Id = "mqe", Scope = "I", Type = "L", ReferenceName = "Matepi"}, + new {Id = "mqf", Scope = "I", Type = "L", ReferenceName = "Momuna"}, + new + { + Id = "mqg", + Scope = "I", + Type = "L", + ReferenceName = "Kota Bangun Kutai Malay" + }, + new {Id = "mqh", Scope = "I", Type = "L", ReferenceName = "Tlazoyaltepec Mixtec"}, + new {Id = "mqi", Scope = "I", Type = "L", ReferenceName = "Mariri"}, + new {Id = "mqj", Scope = "I", Type = "L", ReferenceName = "Mamasa"}, + new + { + Id = "mqk", + Scope = "I", + Type = "L", + ReferenceName = "Rajah Kabunsuwan Manobo" + }, + new {Id = "mql", Scope = "I", Type = "L", ReferenceName = "Mbelime"}, + new {Id = "mqm", Scope = "I", Type = "L", ReferenceName = "South Marquesan"}, + new {Id = "mqn", Scope = "I", Type = "L", ReferenceName = "Moronene"}, + new {Id = "mqo", Scope = "I", Type = "L", ReferenceName = "Modole"}, + new {Id = "mqp", Scope = "I", Type = "L", ReferenceName = "Manipa"}, + new {Id = "mqq", Scope = "I", Type = "L", ReferenceName = "Minokok"}, + new {Id = "mqr", Scope = "I", Type = "L", ReferenceName = "Mander"}, + new {Id = "mqs", Scope = "I", Type = "L", ReferenceName = "West Makian"}, + new {Id = "mqt", Scope = "I", Type = "L", ReferenceName = "Mok"}, + new {Id = "mqu", Scope = "I", Type = "L", ReferenceName = "Mandari"}, + new {Id = "mqv", Scope = "I", Type = "L", ReferenceName = "Mosimo"}, + new {Id = "mqw", Scope = "I", Type = "L", ReferenceName = "Murupi"}, + new {Id = "mqx", Scope = "I", Type = "L", ReferenceName = "Mamuju"}, + new {Id = "mqy", Scope = "I", Type = "L", ReferenceName = "Manggarai"}, + new {Id = "mqz", Scope = "I", Type = "L", ReferenceName = "Pano"}, + new {Id = "mra", Scope = "I", Type = "L", ReferenceName = "Mlabri"}, + new {Id = "mrb", Scope = "I", Type = "L", ReferenceName = "Marino"}, + new {Id = "mrc", Scope = "I", Type = "L", ReferenceName = "Maricopa"}, + new {Id = "mrd", Scope = "I", Type = "L", ReferenceName = "Western Magar"}, + new + { + Id = "mre", + Scope = "I", + Type = "E", + ReferenceName = "Martha's Vineyard Sign Language" + }, new {Id = "mrf", Scope = "I", Type = "L", ReferenceName = "Elseng"}, + new {Id = "mrg", Scope = "I", Type = "L", ReferenceName = "Mising"}, + new {Id = "mrh", Scope = "I", Type = "L", ReferenceName = "Mara Chin"}, + new + { + Id = "mri", + Part2B = "mao", + Part2T = "mri", + Part1 = "mi", + Scope = "I", + Type = "L", + ReferenceName = "Maori" + }, new {Id = "mrj", Scope = "I", Type = "L", ReferenceName = "Western Mari"}, + new {Id = "mrk", Scope = "I", Type = "L", ReferenceName = "Hmwaveke"}, + new {Id = "mrl", Scope = "I", Type = "L", ReferenceName = "Mortlockese"}, + new {Id = "mrm", Scope = "I", Type = "L", ReferenceName = "Merlav"}, + new {Id = "mrn", Scope = "I", Type = "L", ReferenceName = "Cheke Holo"}, + new {Id = "mro", Scope = "I", Type = "L", ReferenceName = "Mru"}, + new {Id = "mrp", Scope = "I", Type = "L", ReferenceName = "Morouas"}, + new {Id = "mrq", Scope = "I", Type = "L", ReferenceName = "North Marquesan"}, + new {Id = "mrr", Scope = "I", Type = "L", ReferenceName = "Maria (India)"}, + new {Id = "mrs", Scope = "I", Type = "L", ReferenceName = "Maragus"}, + new {Id = "mrt", Scope = "I", Type = "L", ReferenceName = "Marghi Central"}, + new {Id = "mru", Scope = "I", Type = "L", ReferenceName = "Mono (Cameroon)"}, + new {Id = "mrv", Scope = "I", Type = "L", ReferenceName = "Mangareva"}, + new {Id = "mrw", Scope = "I", Type = "L", ReferenceName = "Maranao"}, + new {Id = "mrx", Scope = "I", Type = "L", ReferenceName = "Maremgi"}, + new {Id = "mry", Scope = "I", Type = "L", ReferenceName = "Mandaya"}, + new {Id = "mrz", Scope = "I", Type = "L", ReferenceName = "Marind"}, + new + { + Id = "msa", + Part2B = "may", + Part2T = "msa", + Part1 = "ms", + Scope = "M", + Type = "L", + ReferenceName = "Malay (macrolanguage)" + }, new {Id = "msb", Scope = "I", Type = "L", ReferenceName = "Masbatenyo"}, + new {Id = "msc", Scope = "I", Type = "L", ReferenceName = "Sankaran Maninka"}, + new + { + Id = "msd", + Scope = "I", + Type = "L", + ReferenceName = "Yucatec Maya Sign Language" + }, new {Id = "mse", Scope = "I", Type = "L", ReferenceName = "Musey"}, + new {Id = "msf", Scope = "I", Type = "L", ReferenceName = "Mekwei"}, + new {Id = "msg", Scope = "I", Type = "L", ReferenceName = "Moraid"}, + new {Id = "msh", Scope = "I", Type = "L", ReferenceName = "Masikoro Malagasy"}, + new {Id = "msi", Scope = "I", Type = "L", ReferenceName = "Sabah Malay"}, + new + { + Id = "msj", + Scope = "I", + Type = "L", + ReferenceName = "Ma (Democratic Republic of Congo)" + }, new {Id = "msk", Scope = "I", Type = "L", ReferenceName = "Mansaka"}, + new {Id = "msl", Scope = "I", Type = "L", ReferenceName = "Molof"}, + new {Id = "msm", Scope = "I", Type = "L", ReferenceName = "Agusan Manobo"}, + new {Id = "msn", Scope = "I", Type = "L", ReferenceName = "Vurës"}, + new {Id = "mso", Scope = "I", Type = "L", ReferenceName = "Mombum"}, + new {Id = "msp", Scope = "I", Type = "E", ReferenceName = "Maritsauá"}, + new {Id = "msq", Scope = "I", Type = "L", ReferenceName = "Caac"}, + new + { + Id = "msr", + Scope = "I", + Type = "L", + ReferenceName = "Mongolian Sign Language" + }, + new {Id = "mss", Scope = "I", Type = "L", ReferenceName = "West Masela"}, + new {Id = "msu", Scope = "I", Type = "L", ReferenceName = "Musom"}, + new {Id = "msv", Scope = "I", Type = "L", ReferenceName = "Maslam"}, + new {Id = "msw", Scope = "I", Type = "L", ReferenceName = "Mansoanka"}, + new {Id = "msx", Scope = "I", Type = "L", ReferenceName = "Moresada"}, + new {Id = "msy", Scope = "I", Type = "L", ReferenceName = "Aruamu"}, + new {Id = "msz", Scope = "I", Type = "L", ReferenceName = "Momare"}, + new {Id = "mta", Scope = "I", Type = "L", ReferenceName = "Cotabato Manobo"}, + new {Id = "mtb", Scope = "I", Type = "L", ReferenceName = "Anyin Morofo"}, + new {Id = "mtc", Scope = "I", Type = "L", ReferenceName = "Munit"}, + new {Id = "mtd", Scope = "I", Type = "L", ReferenceName = "Mualang"}, + new + { + Id = "mte", + Scope = "I", + Type = "L", + ReferenceName = "Mono (Solomon Islands)" + }, + new + { + Id = "mtf", + Scope = "I", + Type = "L", + ReferenceName = "Murik (Papua New Guinea)" + }, + new {Id = "mtg", Scope = "I", Type = "L", ReferenceName = "Una"}, + new {Id = "mth", Scope = "I", Type = "L", ReferenceName = "Munggui"}, + new + { + Id = "mti", + Scope = "I", + Type = "L", + ReferenceName = "Maiwa (Papua New Guinea)" + }, + new {Id = "mtj", Scope = "I", Type = "L", ReferenceName = "Moskona"}, + new {Id = "mtk", Scope = "I", Type = "L", ReferenceName = "Mbe'"}, + new {Id = "mtl", Scope = "I", Type = "L", ReferenceName = "Montol"}, + new {Id = "mtm", Scope = "I", Type = "E", ReferenceName = "Mator"}, + new {Id = "mtn", Scope = "I", Type = "E", ReferenceName = "Matagalpa"}, + new {Id = "mto", Scope = "I", Type = "L", ReferenceName = "Totontepec Mixe"}, + new + { + Id = "mtp", + Scope = "I", + Type = "L", + ReferenceName = "Wichí Lhamtés Nocten" + }, + new {Id = "mtq", Scope = "I", Type = "L", ReferenceName = "Muong"}, + new {Id = "mtr", Scope = "I", Type = "L", ReferenceName = "Mewari"}, + new {Id = "mts", Scope = "I", Type = "L", ReferenceName = "Yora"}, + new {Id = "mtt", Scope = "I", Type = "L", ReferenceName = "Mota"}, + new {Id = "mtu", Scope = "I", Type = "L", ReferenceName = "Tututepec Mixtec"}, + new {Id = "mtv", Scope = "I", Type = "L", ReferenceName = "Asaro'o"}, + new + { + Id = "mtw", + Scope = "I", + Type = "L", + ReferenceName = "Southern Binukidnon" + }, + new {Id = "mtx", Scope = "I", Type = "L", ReferenceName = "Tidaá Mixtec"}, + new {Id = "mty", Scope = "I", Type = "L", ReferenceName = "Nabi"}, + new {Id = "mua", Scope = "I", Type = "L", ReferenceName = "Mundang"}, + new {Id = "mub", Scope = "I", Type = "L", ReferenceName = "Mubi"}, + new {Id = "muc", Scope = "I", Type = "L", ReferenceName = "Ajumbu"}, + new {Id = "mud", Scope = "I", Type = "L", ReferenceName = "Mednyj Aleut"}, + new {Id = "mue", Scope = "I", Type = "L", ReferenceName = "Media Lengua"}, + new {Id = "mug", Scope = "I", Type = "L", ReferenceName = "Musgu"}, + new {Id = "muh", Scope = "I", Type = "L", ReferenceName = "Mündü"}, + new {Id = "mui", Scope = "I", Type = "L", ReferenceName = "Musi"}, + new {Id = "muj", Scope = "I", Type = "L", ReferenceName = "Mabire"}, + new {Id = "muk", Scope = "I", Type = "L", ReferenceName = "Mugom"}, + new + { + Id = "mul", + Part2B = "mul", + Part2T = "mul", + Scope = "S", + Type = "S", + ReferenceName = "Multiple languages" + }, new {Id = "mum", Scope = "I", Type = "L", ReferenceName = "Maiwala"}, + new {Id = "muo", Scope = "I", Type = "L", ReferenceName = "Nyong"}, + new {Id = "mup", Scope = "I", Type = "L", ReferenceName = "Malvi"}, + new {Id = "muq", Scope = "I", Type = "L", ReferenceName = "Eastern Xiangxi Miao"}, + new {Id = "mur", Scope = "I", Type = "L", ReferenceName = "Murle"}, + new + { + Id = "mus", + Part2B = "mus", + Part2T = "mus", + Scope = "I", + Type = "L", + ReferenceName = "Creek" + }, new {Id = "mut", Scope = "I", Type = "L", ReferenceName = "Western Muria"}, + new {Id = "muu", Scope = "I", Type = "L", ReferenceName = "Yaaku"}, + new {Id = "muv", Scope = "I", Type = "L", ReferenceName = "Muthuvan"}, + new {Id = "mux", Scope = "I", Type = "L", ReferenceName = "Bo-Ung"}, + new {Id = "muy", Scope = "I", Type = "L", ReferenceName = "Muyang"}, + new {Id = "muz", Scope = "I", Type = "L", ReferenceName = "Mursi"}, + new {Id = "mva", Scope = "I", Type = "L", ReferenceName = "Manam"}, + new {Id = "mvb", Scope = "I", Type = "E", ReferenceName = "Mattole"}, + new {Id = "mvd", Scope = "I", Type = "L", ReferenceName = "Mamboru"}, + new {Id = "mve", Scope = "I", Type = "L", ReferenceName = "Marwari (Pakistan)"}, + new {Id = "mvf", Scope = "I", Type = "L", ReferenceName = "Peripheral Mongolian"}, + new {Id = "mvg", Scope = "I", Type = "L", ReferenceName = "Yucuañe Mixtec"}, + new {Id = "mvh", Scope = "I", Type = "L", ReferenceName = "Mulgi"}, + new {Id = "mvi", Scope = "I", Type = "L", ReferenceName = "Miyako"}, + new {Id = "mvk", Scope = "I", Type = "L", ReferenceName = "Mekmek"}, + new {Id = "mvl", Scope = "I", Type = "E", ReferenceName = "Mbara (Australia)"}, + new {Id = "mvm", Scope = "I", Type = "L", ReferenceName = "Muya"}, + new {Id = "mvn", Scope = "I", Type = "L", ReferenceName = "Minaveha"}, + new {Id = "mvo", Scope = "I", Type = "L", ReferenceName = "Marovo"}, + new {Id = "mvp", Scope = "I", Type = "L", ReferenceName = "Duri"}, + new {Id = "mvq", Scope = "I", Type = "L", ReferenceName = "Moere"}, + new {Id = "mvr", Scope = "I", Type = "L", ReferenceName = "Marau"}, + new {Id = "mvs", Scope = "I", Type = "L", ReferenceName = "Massep"}, + new {Id = "mvt", Scope = "I", Type = "L", ReferenceName = "Mpotovoro"}, + new {Id = "mvu", Scope = "I", Type = "L", ReferenceName = "Marfa"}, + new {Id = "mvv", Scope = "I", Type = "L", ReferenceName = "Tagal Murut"}, + new {Id = "mvw", Scope = "I", Type = "L", ReferenceName = "Machinga"}, + new {Id = "mvx", Scope = "I", Type = "L", ReferenceName = "Meoswar"}, + new {Id = "mvy", Scope = "I", Type = "L", ReferenceName = "Indus Kohistani"}, + new {Id = "mvz", Scope = "I", Type = "L", ReferenceName = "Mesqan"}, + new {Id = "mwa", Scope = "I", Type = "L", ReferenceName = "Mwatebu"}, + new {Id = "mwb", Scope = "I", Type = "L", ReferenceName = "Juwal"}, + new {Id = "mwc", Scope = "I", Type = "L", ReferenceName = "Are"}, + new {Id = "mwe", Scope = "I", Type = "L", ReferenceName = "Mwera (Chimwera)"}, + new {Id = "mwf", Scope = "I", Type = "L", ReferenceName = "Murrinh-Patha"}, + new {Id = "mwg", Scope = "I", Type = "L", ReferenceName = "Aiklep"}, + new {Id = "mwh", Scope = "I", Type = "L", ReferenceName = "Mouk-Aria"}, + new {Id = "mwi", Scope = "I", Type = "L", ReferenceName = "Labo"}, + new {Id = "mwk", Scope = "I", Type = "L", ReferenceName = "Kita Maninkakan"}, + new + { + Id = "mwl", + Part2B = "mwl", + Part2T = "mwl", + Scope = "I", + Type = "L", + ReferenceName = "Mirandese" + }, new {Id = "mwm", Scope = "I", Type = "L", ReferenceName = "Sar"}, + new {Id = "mwn", Scope = "I", Type = "L", ReferenceName = "Nyamwanga"}, + new {Id = "mwo", Scope = "I", Type = "L", ReferenceName = "Central Maewo"}, + new {Id = "mwp", Scope = "I", Type = "L", ReferenceName = "Kala Lagaw Ya"}, + new {Id = "mwq", Scope = "I", Type = "L", ReferenceName = "Mün Chin"}, + new + { + Id = "mwr", + Part2B = "mwr", + Part2T = "mwr", + Scope = "M", + Type = "L", + ReferenceName = "Marwari" + }, new {Id = "mws", Scope = "I", Type = "L", ReferenceName = "Mwimbi-Muthambi"}, + new {Id = "mwt", Scope = "I", Type = "L", ReferenceName = "Moken"}, + new {Id = "mwu", Scope = "I", Type = "E", ReferenceName = "Mittu"}, + new {Id = "mwv", Scope = "I", Type = "L", ReferenceName = "Mentawai"}, + new {Id = "mww", Scope = "I", Type = "L", ReferenceName = "Hmong Daw"}, + new {Id = "mwz", Scope = "I", Type = "L", ReferenceName = "Moingi"}, + new + { + Id = "mxa", + Scope = "I", + Type = "L", + ReferenceName = "Northwest Oaxaca Mixtec" + }, + new {Id = "mxb", Scope = "I", Type = "L", ReferenceName = "Tezoatlán Mixtec"}, + new {Id = "mxc", Scope = "I", Type = "L", ReferenceName = "Manyika"}, + new {Id = "mxd", Scope = "I", Type = "L", ReferenceName = "Modang"}, + new {Id = "mxe", Scope = "I", Type = "L", ReferenceName = "Mele-Fila"}, + new {Id = "mxf", Scope = "I", Type = "L", ReferenceName = "Malgbe"}, + new {Id = "mxg", Scope = "I", Type = "L", ReferenceName = "Mbangala"}, + new {Id = "mxh", Scope = "I", Type = "L", ReferenceName = "Mvuba"}, + new {Id = "mxi", Scope = "I", Type = "H", ReferenceName = "Mozarabic"}, + new {Id = "mxj", Scope = "I", Type = "L", ReferenceName = "Miju-Mishmi"}, + new {Id = "mxk", Scope = "I", Type = "L", ReferenceName = "Monumbo"}, + new {Id = "mxl", Scope = "I", Type = "L", ReferenceName = "Maxi Gbe"}, + new {Id = "mxm", Scope = "I", Type = "L", ReferenceName = "Meramera"}, + new {Id = "mxn", Scope = "I", Type = "L", ReferenceName = "Moi (Indonesia)"}, + new {Id = "mxo", Scope = "I", Type = "L", ReferenceName = "Mbowe"}, + new {Id = "mxp", Scope = "I", Type = "L", ReferenceName = "Tlahuitoltepec Mixe"}, + new {Id = "mxq", Scope = "I", Type = "L", ReferenceName = "Juquila Mixe"}, + new {Id = "mxr", Scope = "I", Type = "L", ReferenceName = "Murik (Malaysia)"}, + new {Id = "mxs", Scope = "I", Type = "L", ReferenceName = "Huitepec Mixtec"}, + new {Id = "mxt", Scope = "I", Type = "L", ReferenceName = "Jamiltepec Mixtec"}, + new {Id = "mxu", Scope = "I", Type = "L", ReferenceName = "Mada (Cameroon)"}, + new {Id = "mxv", Scope = "I", Type = "L", ReferenceName = "Metlatónoc Mixtec"}, + new {Id = "mxw", Scope = "I", Type = "L", ReferenceName = "Namo"}, + new {Id = "mxx", Scope = "I", Type = "L", ReferenceName = "Mahou"}, + new + { + Id = "mxy", + Scope = "I", + Type = "L", + ReferenceName = "Southeastern Nochixtlán Mixtec" + }, new {Id = "mxz", Scope = "I", Type = "L", ReferenceName = "Central Masela"}, + new + { + Id = "mya", + Part2B = "bur", + Part2T = "mya", + Part1 = "my", + Scope = "I", + Type = "L", + ReferenceName = "Burmese" + }, new {Id = "myb", Scope = "I", Type = "L", ReferenceName = "Mbay"}, + new {Id = "myc", Scope = "I", Type = "L", ReferenceName = "Mayeka"}, + new {Id = "mye", Scope = "I", Type = "L", ReferenceName = "Myene"}, + new {Id = "myf", Scope = "I", Type = "L", ReferenceName = "Bambassi"}, + new {Id = "myg", Scope = "I", Type = "L", ReferenceName = "Manta"}, + new {Id = "myh", Scope = "I", Type = "L", ReferenceName = "Makah"}, + new {Id = "myj", Scope = "I", Type = "L", ReferenceName = "Mangayat"}, + new {Id = "myk", Scope = "I", Type = "L", ReferenceName = "Mamara Senoufo"}, + new {Id = "myl", Scope = "I", Type = "L", ReferenceName = "Moma"}, + new {Id = "mym", Scope = "I", Type = "L", ReferenceName = "Me'en"}, + new {Id = "myo", Scope = "I", Type = "L", ReferenceName = "Anfillo"}, + new {Id = "myp", Scope = "I", Type = "L", ReferenceName = "Pirahã"}, + new {Id = "myr", Scope = "I", Type = "L", ReferenceName = "Muniche"}, + new {Id = "mys", Scope = "I", Type = "E", ReferenceName = "Mesmes"}, + new {Id = "myu", Scope = "I", Type = "L", ReferenceName = "Mundurukú"}, + new + { + Id = "myv", + Part2B = "myv", + Part2T = "myv", + Scope = "I", + Type = "L", + ReferenceName = "Erzya" + }, new {Id = "myw", Scope = "I", Type = "L", ReferenceName = "Muyuw"}, + new {Id = "myx", Scope = "I", Type = "L", ReferenceName = "Masaaba"}, + new {Id = "myy", Scope = "I", Type = "L", ReferenceName = "Macuna"}, + new {Id = "myz", Scope = "I", Type = "H", ReferenceName = "Classical Mandaic"}, + new + { + Id = "mza", + Scope = "I", + Type = "L", + ReferenceName = "Santa María Zacatepec Mixtec" + }, new {Id = "mzb", Scope = "I", Type = "L", ReferenceName = "Tumzabt"}, + new + { + Id = "mzc", + Scope = "I", + Type = "L", + ReferenceName = "Madagascar Sign Language" + }, + new {Id = "mzd", Scope = "I", Type = "L", ReferenceName = "Malimba"}, + new {Id = "mze", Scope = "I", Type = "L", ReferenceName = "Morawa"}, + new + { + Id = "mzg", + Scope = "I", + Type = "L", + ReferenceName = "Monastic Sign Language" + }, + new + { + Id = "mzh", + Scope = "I", + Type = "L", + ReferenceName = "Wichí Lhamtés Güisnay" + }, + new {Id = "mzi", Scope = "I", Type = "L", ReferenceName = "Ixcatlán Mazatec"}, + new {Id = "mzj", Scope = "I", Type = "L", ReferenceName = "Manya"}, + new {Id = "mzk", Scope = "I", Type = "L", ReferenceName = "Nigeria Mambila"}, + new {Id = "mzl", Scope = "I", Type = "L", ReferenceName = "Mazatlán Mixe"}, + new {Id = "mzm", Scope = "I", Type = "L", ReferenceName = "Mumuye"}, + new {Id = "mzn", Scope = "I", Type = "L", ReferenceName = "Mazanderani"}, + new {Id = "mzo", Scope = "I", Type = "E", ReferenceName = "Matipuhy"}, + new {Id = "mzp", Scope = "I", Type = "L", ReferenceName = "Movima"}, + new {Id = "mzq", Scope = "I", Type = "L", ReferenceName = "Mori Atas"}, + new {Id = "mzr", Scope = "I", Type = "L", ReferenceName = "Marúbo"}, + new {Id = "mzs", Scope = "I", Type = "L", ReferenceName = "Macanese"}, + new {Id = "mzt", Scope = "I", Type = "L", ReferenceName = "Mintil"}, + new {Id = "mzu", Scope = "I", Type = "L", ReferenceName = "Inapang"}, + new {Id = "mzv", Scope = "I", Type = "L", ReferenceName = "Manza"}, + new {Id = "mzw", Scope = "I", Type = "L", ReferenceName = "Deg"}, + new {Id = "mzx", Scope = "I", Type = "L", ReferenceName = "Mawayana"}, + new + { + Id = "mzy", + Scope = "I", + Type = "L", + ReferenceName = "Mozambican Sign Language" + }, + new {Id = "mzz", Scope = "I", Type = "L", ReferenceName = "Maiadomu"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/N.cs b/Cicm.Database/Seeders/Iso639Split/N.cs new file mode 100644 index 00000000..3882c181 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/N.cs @@ -0,0 +1,835 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class N + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "naa", Scope = "I", Type = "L", ReferenceName = "Namla"}, + new {Id = "nab", Scope = "I", Type = "L", ReferenceName = "Southern Nambikuára"}, + new {Id = "nac", Scope = "I", Type = "L", ReferenceName = "Narak"}, + new {Id = "nae", Scope = "I", Type = "E", ReferenceName = "Naka'ela"}, + new {Id = "naf", Scope = "I", Type = "L", ReferenceName = "Nabak"}, + new {Id = "nag", Scope = "I", Type = "L", ReferenceName = "Naga Pidgin"}, + new {Id = "naj", Scope = "I", Type = "L", ReferenceName = "Nalu"}, + new {Id = "nak", Scope = "I", Type = "L", ReferenceName = "Nakanai"}, + new {Id = "nal", Scope = "I", Type = "L", ReferenceName = "Nalik"}, + new {Id = "nam", Scope = "I", Type = "L", ReferenceName = "Ngan'gityemerri"}, + new {Id = "nan", Scope = "I", Type = "L", ReferenceName = "Min Nan Chinese"}, + new {Id = "nao", Scope = "I", Type = "L", ReferenceName = "Naaba"}, + new + { + Id = "nap", + Part2B = "nap", + Part2T = "nap", + Scope = "I", + Type = "L", + ReferenceName = "Neapolitan" + }, new {Id = "naq", Scope = "I", Type = "L", ReferenceName = "Khoekhoe"}, + new {Id = "nar", Scope = "I", Type = "L", ReferenceName = "Iguta"}, + new {Id = "nas", Scope = "I", Type = "L", ReferenceName = "Naasioi"}, + new {Id = "nat", Scope = "I", Type = "L", ReferenceName = "Ca̱hungwa̱rya̱"}, + new + { + Id = "nau", + Part2B = "nau", + Part2T = "nau", + Part1 = "na", + Scope = "I", + Type = "L", + ReferenceName = "Nauru" + }, new + { + Id = "nav", + Part2B = "nav", + Part2T = "nav", + Part1 = "nv", + Scope = "I", + Type = "L", + ReferenceName = "Navajo" + }, new {Id = "naw", Scope = "I", Type = "L", ReferenceName = "Nawuri"}, + new {Id = "nax", Scope = "I", Type = "L", ReferenceName = "Nakwi"}, + new {Id = "nay", Scope = "I", Type = "E", ReferenceName = "Ngarrindjeri"}, + new {Id = "naz", Scope = "I", Type = "L", ReferenceName = "Coatepec Nahuatl"}, + new {Id = "nba", Scope = "I", Type = "L", ReferenceName = "Nyemba"}, + new {Id = "nbb", Scope = "I", Type = "L", ReferenceName = "Ndoe"}, + new {Id = "nbc", Scope = "I", Type = "L", ReferenceName = "Chang Naga"}, + new {Id = "nbd", Scope = "I", Type = "L", ReferenceName = "Ngbinda"}, + new {Id = "nbe", Scope = "I", Type = "L", ReferenceName = "Konyak Naga"}, + new {Id = "nbg", Scope = "I", Type = "L", ReferenceName = "Nagarchal"}, + new {Id = "nbh", Scope = "I", Type = "L", ReferenceName = "Ngamo"}, + new {Id = "nbi", Scope = "I", Type = "L", ReferenceName = "Mao Naga"}, + new {Id = "nbj", Scope = "I", Type = "L", ReferenceName = "Ngarinyman"}, + new {Id = "nbk", Scope = "I", Type = "L", ReferenceName = "Nake"}, + new + { + Id = "nbl", + Part2B = "nbl", + Part2T = "nbl", + Part1 = "nr", + Scope = "I", + Type = "L", + ReferenceName = "South Ndebele" + }, new {Id = "nbm", Scope = "I", Type = "L", ReferenceName = "Ngbaka Ma'bo"}, + new {Id = "nbn", Scope = "I", Type = "L", ReferenceName = "Kuri"}, + new {Id = "nbo", Scope = "I", Type = "L", ReferenceName = "Nkukoli"}, + new {Id = "nbp", Scope = "I", Type = "L", ReferenceName = "Nnam"}, + new {Id = "nbq", Scope = "I", Type = "L", ReferenceName = "Nggem"}, + new {Id = "nbr", Scope = "I", Type = "L", ReferenceName = "Numana"}, + new {Id = "nbs", Scope = "I", Type = "L", ReferenceName = "Namibian Sign Language"}, + new {Id = "nbt", Scope = "I", Type = "L", ReferenceName = "Na"}, + new {Id = "nbu", Scope = "I", Type = "L", ReferenceName = "Rongmei Naga"}, + new {Id = "nbv", Scope = "I", Type = "L", ReferenceName = "Ngamambo"}, + new {Id = "nbw", Scope = "I", Type = "L", ReferenceName = "Southern Ngbandi"}, + new {Id = "nby", Scope = "I", Type = "L", ReferenceName = "Ningera"}, + new {Id = "nca", Scope = "I", Type = "L", ReferenceName = "Iyo"}, + new {Id = "ncb", Scope = "I", Type = "L", ReferenceName = "Central Nicobarese"}, + new {Id = "ncc", Scope = "I", Type = "L", ReferenceName = "Ponam"}, + new {Id = "ncd", Scope = "I", Type = "L", ReferenceName = "Nachering"}, + new {Id = "nce", Scope = "I", Type = "L", ReferenceName = "Yale"}, + new {Id = "ncf", Scope = "I", Type = "L", ReferenceName = "Notsi"}, + new {Id = "ncg", Scope = "I", Type = "L", ReferenceName = "Nisga'a"}, + new + { + Id = "nch", + Scope = "I", + Type = "L", + ReferenceName = "Central Huasteca Nahuatl" + }, + new {Id = "nci", Scope = "I", Type = "H", ReferenceName = "Classical Nahuatl"}, + new + { + Id = "ncj", + Scope = "I", + Type = "L", + ReferenceName = "Northern Puebla Nahuatl" + }, + new {Id = "nck", Scope = "I", Type = "L", ReferenceName = "Na-kara"}, + new {Id = "ncl", Scope = "I", Type = "L", ReferenceName = "Michoacán Nahuatl"}, + new {Id = "ncm", Scope = "I", Type = "L", ReferenceName = "Nambo"}, + new {Id = "ncn", Scope = "I", Type = "L", ReferenceName = "Nauna"}, + new {Id = "nco", Scope = "I", Type = "L", ReferenceName = "Sibe"}, + new {Id = "ncq", Scope = "I", Type = "L", ReferenceName = "Northern Katang"}, + new {Id = "ncr", Scope = "I", Type = "L", ReferenceName = "Ncane"}, + new + { + Id = "ncs", + Scope = "I", + Type = "L", + ReferenceName = "Nicaraguan Sign Language" + }, + new {Id = "nct", Scope = "I", Type = "L", ReferenceName = "Chothe Naga"}, + new {Id = "ncu", Scope = "I", Type = "L", ReferenceName = "Chumburung"}, + new {Id = "ncx", Scope = "I", Type = "L", ReferenceName = "Central Puebla Nahuatl"}, + new {Id = "ncz", Scope = "I", Type = "E", ReferenceName = "Natchez"}, + new {Id = "nda", Scope = "I", Type = "L", ReferenceName = "Ndasa"}, + new {Id = "ndb", Scope = "I", Type = "L", ReferenceName = "Kenswei Nsei"}, + new {Id = "ndc", Scope = "I", Type = "L", ReferenceName = "Ndau"}, + new {Id = "ndd", Scope = "I", Type = "L", ReferenceName = "Nde-Nsele-Nta"}, + new + { + Id = "nde", + Part2B = "nde", + Part2T = "nde", + Part1 = "nd", + Scope = "I", + Type = "L", + ReferenceName = "North Ndebele" + }, new {Id = "ndf", Scope = "I", Type = "H", ReferenceName = "Nadruvian"}, + new {Id = "ndg", Scope = "I", Type = "L", ReferenceName = "Ndengereko"}, + new {Id = "ndh", Scope = "I", Type = "L", ReferenceName = "Ndali"}, + new {Id = "ndi", Scope = "I", Type = "L", ReferenceName = "Samba Leko"}, + new {Id = "ndj", Scope = "I", Type = "L", ReferenceName = "Ndamba"}, + new {Id = "ndk", Scope = "I", Type = "L", ReferenceName = "Ndaka"}, + new {Id = "ndl", Scope = "I", Type = "L", ReferenceName = "Ndolo"}, + new {Id = "ndm", Scope = "I", Type = "L", ReferenceName = "Ndam"}, + new {Id = "ndn", Scope = "I", Type = "L", ReferenceName = "Ngundi"}, + new + { + Id = "ndo", + Part2B = "ndo", + Part2T = "ndo", + Part1 = "ng", + Scope = "I", + Type = "L", + ReferenceName = "Ndonga" + }, new {Id = "ndp", Scope = "I", Type = "L", ReferenceName = "Ndo"}, + new {Id = "ndq", Scope = "I", Type = "L", ReferenceName = "Ndombe"}, + new {Id = "ndr", Scope = "I", Type = "L", ReferenceName = "Ndoola"}, + new + { + Id = "nds", + Part2B = "nds", + Part2T = "nds", + Scope = "I", + Type = "L", + ReferenceName = "Low German" + }, new {Id = "ndt", Scope = "I", Type = "L", ReferenceName = "Ndunga"}, + new {Id = "ndu", Scope = "I", Type = "L", ReferenceName = "Dugun"}, + new {Id = "ndv", Scope = "I", Type = "L", ReferenceName = "Ndut"}, + new {Id = "ndw", Scope = "I", Type = "L", ReferenceName = "Ndobo"}, + new {Id = "ndx", Scope = "I", Type = "L", ReferenceName = "Nduga"}, + new {Id = "ndy", Scope = "I", Type = "L", ReferenceName = "Lutos"}, + new {Id = "ndz", Scope = "I", Type = "L", ReferenceName = "Ndogo"}, + new {Id = "nea", Scope = "I", Type = "L", ReferenceName = "Eastern Ngad'a"}, + new {Id = "neb", Scope = "I", Type = "L", ReferenceName = "Toura (Côte d'Ivoire)"}, + new {Id = "nec", Scope = "I", Type = "L", ReferenceName = "Nedebang"}, + new {Id = "ned", Scope = "I", Type = "L", ReferenceName = "Nde-Gbite"}, + new {Id = "nee", Scope = "I", Type = "L", ReferenceName = "Nêlêmwa-Nixumwak"}, + new {Id = "nef", Scope = "I", Type = "L", ReferenceName = "Nefamese"}, + new {Id = "neg", Scope = "I", Type = "L", ReferenceName = "Negidal"}, + new {Id = "neh", Scope = "I", Type = "L", ReferenceName = "Nyenkha"}, + new {Id = "nei", Scope = "I", Type = "A", ReferenceName = "Neo-Hittite"}, + new {Id = "nej", Scope = "I", Type = "L", ReferenceName = "Neko"}, + new {Id = "nek", Scope = "I", Type = "L", ReferenceName = "Neku"}, + new {Id = "nem", Scope = "I", Type = "L", ReferenceName = "Nemi"}, + new {Id = "nen", Scope = "I", Type = "L", ReferenceName = "Nengone"}, + new {Id = "neo", Scope = "I", Type = "L", ReferenceName = "Ná-Meo"}, + new + { + Id = "nep", + Part2B = "nep", + Part2T = "nep", + Part1 = "ne", + Scope = "M", + Type = "L", + ReferenceName = "Nepali (macrolanguage)" + }, new {Id = "neq", Scope = "I", Type = "L", ReferenceName = "North Central Mixe"}, + new {Id = "ner", Scope = "I", Type = "L", ReferenceName = "Yahadian"}, + new {Id = "nes", Scope = "I", Type = "L", ReferenceName = "Bhoti Kinnauri"}, + new {Id = "net", Scope = "I", Type = "L", ReferenceName = "Nete"}, + new {Id = "neu", Scope = "I", Type = "C", ReferenceName = "Neo"}, + new {Id = "nev", Scope = "I", Type = "L", ReferenceName = "Nyaheun"}, + new + { + Id = "new", + Part2B = "new", + Part2T = "new", + Scope = "I", + Type = "L", + ReferenceName = "Newari" + }, new {Id = "nex", Scope = "I", Type = "L", ReferenceName = "Neme"}, + new {Id = "ney", Scope = "I", Type = "L", ReferenceName = "Neyo"}, + new {Id = "nez", Scope = "I", Type = "L", ReferenceName = "Nez Perce"}, + new {Id = "nfa", Scope = "I", Type = "L", ReferenceName = "Dhao"}, + new {Id = "nfd", Scope = "I", Type = "L", ReferenceName = "Ahwai"}, + new {Id = "nfl", Scope = "I", Type = "L", ReferenceName = "Ayiwo"}, + new {Id = "nfr", Scope = "I", Type = "L", ReferenceName = "Nafaanra"}, + new {Id = "nfu", Scope = "I", Type = "L", ReferenceName = "Mfumte"}, + new {Id = "nga", Scope = "I", Type = "L", ReferenceName = "Ngbaka"}, + new {Id = "ngb", Scope = "I", Type = "L", ReferenceName = "Northern Ngbandi"}, + new + { + Id = "ngc", + Scope = "I", + Type = "L", + ReferenceName = "Ngombe (Democratic Republic of Congo)" + }, + new + { + Id = "ngd", + Scope = "I", + Type = "L", + ReferenceName = "Ngando (Central African Republic)" + }, new {Id = "nge", Scope = "I", Type = "L", ReferenceName = "Ngemba"}, + new {Id = "ngg", Scope = "I", Type = "L", ReferenceName = "Ngbaka Manza"}, + new {Id = "ngh", Scope = "I", Type = "L", ReferenceName = "Nǁng"}, + new {Id = "ngi", Scope = "I", Type = "L", ReferenceName = "Ngizim"}, + new {Id = "ngj", Scope = "I", Type = "L", ReferenceName = "Ngie"}, + new {Id = "ngk", Scope = "I", Type = "L", ReferenceName = "Dalabon"}, + new {Id = "ngl", Scope = "I", Type = "L", ReferenceName = "Lomwe"}, + new + { + Id = "ngm", + Scope = "I", + Type = "L", + ReferenceName = "Ngatik Men's Creole" + }, + new {Id = "ngn", Scope = "I", Type = "L", ReferenceName = "Ngwo"}, + new {Id = "ngo", Scope = "I", Type = "L", ReferenceName = "Ngoni"}, + new {Id = "ngp", Scope = "I", Type = "L", ReferenceName = "Ngulu"}, + new {Id = "ngq", Scope = "I", Type = "L", ReferenceName = "Ngurimi"}, + new {Id = "ngr", Scope = "I", Type = "L", ReferenceName = "Engdewu"}, + new {Id = "ngs", Scope = "I", Type = "L", ReferenceName = "Gvoko"}, + new {Id = "ngt", Scope = "I", Type = "L", ReferenceName = "Kriang"}, + new {Id = "ngu", Scope = "I", Type = "L", ReferenceName = "Guerrero Nahuatl"}, + new {Id = "ngv", Scope = "I", Type = "E", ReferenceName = "Nagumi"}, + new {Id = "ngw", Scope = "I", Type = "L", ReferenceName = "Ngwaba"}, + new {Id = "ngx", Scope = "I", Type = "L", ReferenceName = "Nggwahyi"}, + new {Id = "ngy", Scope = "I", Type = "L", ReferenceName = "Tibea"}, + new {Id = "ngz", Scope = "I", Type = "L", ReferenceName = "Ngungwel"}, + new {Id = "nha", Scope = "I", Type = "L", ReferenceName = "Nhanda"}, + new {Id = "nhb", Scope = "I", Type = "L", ReferenceName = "Beng"}, + new {Id = "nhc", Scope = "I", Type = "E", ReferenceName = "Tabasco Nahuatl"}, + new {Id = "nhd", Scope = "I", Type = "L", ReferenceName = "Chiripá"}, + new + { + Id = "nhe", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Huasteca Nahuatl" + }, + new {Id = "nhf", Scope = "I", Type = "L", ReferenceName = "Nhuwala"}, + new {Id = "nhg", Scope = "I", Type = "L", ReferenceName = "Tetelcingo Nahuatl"}, + new {Id = "nhh", Scope = "I", Type = "L", ReferenceName = "Nahari"}, + new + { + Id = "nhi", + Scope = "I", + Type = "L", + ReferenceName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl" + }, + new + { + Id = "nhk", + Scope = "I", + Type = "L", + ReferenceName = "Isthmus-Cosoleacaque Nahuatl" + }, new {Id = "nhm", Scope = "I", Type = "L", ReferenceName = "Morelos Nahuatl"}, + new {Id = "nhn", Scope = "I", Type = "L", ReferenceName = "Central Nahuatl"}, + new {Id = "nho", Scope = "I", Type = "L", ReferenceName = "Takuu"}, + new + { + Id = "nhp", + Scope = "I", + Type = "L", + ReferenceName = "Isthmus-Pajapan Nahuatl" + }, + new {Id = "nhq", Scope = "I", Type = "L", ReferenceName = "Huaxcaleca Nahuatl"}, + new {Id = "nhr", Scope = "I", Type = "L", ReferenceName = "Naro"}, + new {Id = "nht", Scope = "I", Type = "L", ReferenceName = "Ometepec Nahuatl"}, + new {Id = "nhu", Scope = "I", Type = "L", ReferenceName = "Noone"}, + new + { + Id = "nhv", + Scope = "I", + Type = "L", + ReferenceName = "Temascaltepec Nahuatl" + }, + new + { + Id = "nhw", + Scope = "I", + Type = "L", + ReferenceName = "Western Huasteca Nahuatl" + }, + new + { + Id = "nhx", + Scope = "I", + Type = "L", + ReferenceName = "Isthmus-Mecayapan Nahuatl" + }, + new + { + Id = "nhy", + Scope = "I", + Type = "L", + ReferenceName = "Northern Oaxaca Nahuatl" + }, + new + { + Id = "nhz", + Scope = "I", + Type = "L", + ReferenceName = "Santa María La Alta Nahuatl" + }, new + { + Id = "nia", + Part2B = "nia", + Part2T = "nia", + Scope = "I", + Type = "L", + ReferenceName = "Nias" + }, new {Id = "nib", Scope = "I", Type = "L", ReferenceName = "Nakame"}, + new {Id = "nid", Scope = "I", Type = "E", ReferenceName = "Ngandi"}, + new {Id = "nie", Scope = "I", Type = "L", ReferenceName = "Niellim"}, + new {Id = "nif", Scope = "I", Type = "L", ReferenceName = "Nek"}, + new {Id = "nig", Scope = "I", Type = "E", ReferenceName = "Ngalakgan"}, + new {Id = "nih", Scope = "I", Type = "L", ReferenceName = "Nyiha (Tanzania)"}, + new {Id = "nii", Scope = "I", Type = "L", ReferenceName = "Nii"}, + new {Id = "nij", Scope = "I", Type = "L", ReferenceName = "Ngaju"}, + new {Id = "nik", Scope = "I", Type = "L", ReferenceName = "Southern Nicobarese"}, + new {Id = "nil", Scope = "I", Type = "L", ReferenceName = "Nila"}, + new {Id = "nim", Scope = "I", Type = "L", ReferenceName = "Nilamba"}, + new {Id = "nin", Scope = "I", Type = "L", ReferenceName = "Ninzo"}, + new {Id = "nio", Scope = "I", Type = "L", ReferenceName = "Nganasan"}, + new {Id = "niq", Scope = "I", Type = "L", ReferenceName = "Nandi"}, + new {Id = "nir", Scope = "I", Type = "L", ReferenceName = "Nimboran"}, + new {Id = "nis", Scope = "I", Type = "L", ReferenceName = "Nimi"}, + new {Id = "nit", Scope = "I", Type = "L", ReferenceName = "Southeastern Kolami"}, + new + { + Id = "niu", + Part2B = "niu", + Part2T = "niu", + Scope = "I", + Type = "L", + ReferenceName = "Niuean" + }, new {Id = "niv", Scope = "I", Type = "L", ReferenceName = "Gilyak"}, + new {Id = "niw", Scope = "I", Type = "L", ReferenceName = "Nimo"}, + new {Id = "nix", Scope = "I", Type = "L", ReferenceName = "Hema"}, + new {Id = "niy", Scope = "I", Type = "L", ReferenceName = "Ngiti"}, + new {Id = "niz", Scope = "I", Type = "L", ReferenceName = "Ningil"}, + new {Id = "nja", Scope = "I", Type = "L", ReferenceName = "Nzanyi"}, + new {Id = "njb", Scope = "I", Type = "L", ReferenceName = "Nocte Naga"}, + new {Id = "njd", Scope = "I", Type = "L", ReferenceName = "Ndonde Hamba"}, + new {Id = "njh", Scope = "I", Type = "L", ReferenceName = "Lotha Naga"}, + new {Id = "nji", Scope = "I", Type = "L", ReferenceName = "Gudanji"}, + new {Id = "njj", Scope = "I", Type = "L", ReferenceName = "Njen"}, + new {Id = "njl", Scope = "I", Type = "L", ReferenceName = "Njalgulgule"}, + new {Id = "njm", Scope = "I", Type = "L", ReferenceName = "Angami Naga"}, + new {Id = "njn", Scope = "I", Type = "L", ReferenceName = "Liangmai Naga"}, + new {Id = "njo", Scope = "I", Type = "L", ReferenceName = "Ao Naga"}, + new {Id = "njr", Scope = "I", Type = "L", ReferenceName = "Njerep"}, + new {Id = "njs", Scope = "I", Type = "L", ReferenceName = "Nisa"}, + new {Id = "njt", Scope = "I", Type = "L", ReferenceName = "Ndyuka-Trio Pidgin"}, + new {Id = "nju", Scope = "I", Type = "L", ReferenceName = "Ngadjunmaya"}, + new {Id = "njx", Scope = "I", Type = "L", ReferenceName = "Kunyi"}, + new {Id = "njy", Scope = "I", Type = "L", ReferenceName = "Njyem"}, + new {Id = "njz", Scope = "I", Type = "L", ReferenceName = "Nyishi"}, + new {Id = "nka", Scope = "I", Type = "L", ReferenceName = "Nkoya"}, + new {Id = "nkb", Scope = "I", Type = "L", ReferenceName = "Khoibu Naga"}, + new {Id = "nkc", Scope = "I", Type = "L", ReferenceName = "Nkongho"}, + new {Id = "nkd", Scope = "I", Type = "L", ReferenceName = "Koireng"}, + new {Id = "nke", Scope = "I", Type = "L", ReferenceName = "Duke"}, + new {Id = "nkf", Scope = "I", Type = "L", ReferenceName = "Inpui Naga"}, + new {Id = "nkg", Scope = "I", Type = "L", ReferenceName = "Nekgini"}, + new {Id = "nkh", Scope = "I", Type = "L", ReferenceName = "Khezha Naga"}, + new {Id = "nki", Scope = "I", Type = "L", ReferenceName = "Thangal Naga"}, + new {Id = "nkj", Scope = "I", Type = "L", ReferenceName = "Nakai"}, + new {Id = "nkk", Scope = "I", Type = "L", ReferenceName = "Nokuku"}, + new {Id = "nkm", Scope = "I", Type = "L", ReferenceName = "Namat"}, + new {Id = "nkn", Scope = "I", Type = "L", ReferenceName = "Nkangala"}, + new {Id = "nko", Scope = "I", Type = "L", ReferenceName = "Nkonya"}, + new {Id = "nkp", Scope = "I", Type = "E", ReferenceName = "Niuatoputapu"}, + new {Id = "nkq", Scope = "I", Type = "L", ReferenceName = "Nkami"}, + new {Id = "nkr", Scope = "I", Type = "L", ReferenceName = "Nukuoro"}, + new {Id = "nks", Scope = "I", Type = "L", ReferenceName = "North Asmat"}, + new {Id = "nkt", Scope = "I", Type = "L", ReferenceName = "Nyika (Tanzania)"}, + new {Id = "nku", Scope = "I", Type = "L", ReferenceName = "Bouna Kulango"}, + new + { + Id = "nkv", + Scope = "I", + Type = "L", + ReferenceName = "Nyika (Malawi and Zambia)" + }, + new {Id = "nkw", Scope = "I", Type = "L", ReferenceName = "Nkutu"}, + new {Id = "nkx", Scope = "I", Type = "L", ReferenceName = "Nkoroo"}, + new {Id = "nkz", Scope = "I", Type = "L", ReferenceName = "Nkari"}, + new {Id = "nla", Scope = "I", Type = "L", ReferenceName = "Ngombale"}, + new {Id = "nlc", Scope = "I", Type = "L", ReferenceName = "Nalca"}, + new + { + Id = "nld", + Part2B = "dut", + Part2T = "nld", + Part1 = "nl", + Scope = "I", + Type = "L", + ReferenceName = "Dutch" + }, new {Id = "nle", Scope = "I", Type = "L", ReferenceName = "East Nyala"}, + new {Id = "nlg", Scope = "I", Type = "L", ReferenceName = "Gela"}, + new {Id = "nli", Scope = "I", Type = "L", ReferenceName = "Grangali"}, + new {Id = "nlj", Scope = "I", Type = "L", ReferenceName = "Nyali"}, + new {Id = "nlk", Scope = "I", Type = "L", ReferenceName = "Ninia Yali"}, + new {Id = "nll", Scope = "I", Type = "L", ReferenceName = "Nihali"}, + new {Id = "nlm", Scope = "I", Type = "L", ReferenceName = "Mankiyali"}, + new {Id = "nlo", Scope = "I", Type = "L", ReferenceName = "Ngul"}, + new {Id = "nlq", Scope = "I", Type = "L", ReferenceName = "Lao Naga"}, + new {Id = "nlu", Scope = "I", Type = "L", ReferenceName = "Nchumbulu"}, + new {Id = "nlv", Scope = "I", Type = "L", ReferenceName = "Orizaba Nahuatl"}, + new {Id = "nlw", Scope = "I", Type = "E", ReferenceName = "Walangama"}, + new {Id = "nlx", Scope = "I", Type = "L", ReferenceName = "Nahali"}, + new {Id = "nly", Scope = "I", Type = "L", ReferenceName = "Nyamal"}, + new {Id = "nlz", Scope = "I", Type = "L", ReferenceName = "Nalögo"}, + new {Id = "nma", Scope = "I", Type = "L", ReferenceName = "Maram Naga"}, + new {Id = "nmb", Scope = "I", Type = "L", ReferenceName = "Big Nambas"}, + new {Id = "nmc", Scope = "I", Type = "L", ReferenceName = "Ngam"}, + new {Id = "nmd", Scope = "I", Type = "L", ReferenceName = "Ndumu"}, + new {Id = "nme", Scope = "I", Type = "L", ReferenceName = "Mzieme Naga"}, + new {Id = "nmf", Scope = "I", Type = "L", ReferenceName = "Tangkhul Naga (India)"}, + new {Id = "nmg", Scope = "I", Type = "L", ReferenceName = "Kwasio"}, + new {Id = "nmh", Scope = "I", Type = "L", ReferenceName = "Monsang Naga"}, + new {Id = "nmi", Scope = "I", Type = "L", ReferenceName = "Nyam"}, + new + { + Id = "nmj", + Scope = "I", + Type = "L", + ReferenceName = "Ngombe (Central African Republic)" + }, new {Id = "nmk", Scope = "I", Type = "L", ReferenceName = "Namakura"}, + new {Id = "nml", Scope = "I", Type = "L", ReferenceName = "Ndemli"}, + new {Id = "nmm", Scope = "I", Type = "L", ReferenceName = "Manangba"}, + new {Id = "nmn", Scope = "I", Type = "L", ReferenceName = "ǃXóõ"}, + new {Id = "nmo", Scope = "I", Type = "L", ReferenceName = "Moyon Naga"}, + new {Id = "nmp", Scope = "I", Type = "E", ReferenceName = "Nimanbur"}, + new {Id = "nmq", Scope = "I", Type = "L", ReferenceName = "Nambya"}, + new {Id = "nmr", Scope = "I", Type = "E", ReferenceName = "Nimbari"}, + new {Id = "nms", Scope = "I", Type = "L", ReferenceName = "Letemboi"}, + new {Id = "nmt", Scope = "I", Type = "L", ReferenceName = "Namonuito"}, + new {Id = "nmu", Scope = "I", Type = "L", ReferenceName = "Northeast Maidu"}, + new {Id = "nmv", Scope = "I", Type = "E", ReferenceName = "Ngamini"}, + new {Id = "nmw", Scope = "I", Type = "L", ReferenceName = "Nimoa"}, + new + { + Id = "nmx", + Scope = "I", + Type = "L", + ReferenceName = "Nama (Papua New Guinea)" + }, + new {Id = "nmy", Scope = "I", Type = "L", ReferenceName = "Namuyi"}, + new {Id = "nmz", Scope = "I", Type = "L", ReferenceName = "Nawdm"}, + new {Id = "nna", Scope = "I", Type = "L", ReferenceName = "Nyangumarta"}, + new {Id = "nnb", Scope = "I", Type = "L", ReferenceName = "Nande"}, + new {Id = "nnc", Scope = "I", Type = "L", ReferenceName = "Nancere"}, + new {Id = "nnd", Scope = "I", Type = "L", ReferenceName = "West Ambae"}, + new {Id = "nne", Scope = "I", Type = "L", ReferenceName = "Ngandyera"}, + new {Id = "nnf", Scope = "I", Type = "L", ReferenceName = "Ngaing"}, + new {Id = "nng", Scope = "I", Type = "L", ReferenceName = "Maring Naga"}, + new {Id = "nnh", Scope = "I", Type = "L", ReferenceName = "Ngiemboon"}, + new {Id = "nni", Scope = "I", Type = "L", ReferenceName = "North Nuaulu"}, + new {Id = "nnj", Scope = "I", Type = "L", ReferenceName = "Nyangatom"}, + new {Id = "nnk", Scope = "I", Type = "L", ReferenceName = "Nankina"}, + new + { + Id = "nnl", + Scope = "I", + Type = "L", + ReferenceName = "Northern Rengma Naga" + }, + new {Id = "nnm", Scope = "I", Type = "L", ReferenceName = "Namia"}, + new {Id = "nnn", Scope = "I", Type = "L", ReferenceName = "Ngete"}, + new + { + Id = "nno", + Part2B = "nno", + Part2T = "nno", + Part1 = "nn", + Scope = "I", + Type = "L", + ReferenceName = "Norwegian Nynorsk" + }, new {Id = "nnp", Scope = "I", Type = "L", ReferenceName = "Wancho Naga"}, + new {Id = "nnq", Scope = "I", Type = "L", ReferenceName = "Ngindo"}, + new {Id = "nnr", Scope = "I", Type = "E", ReferenceName = "Narungga"}, + new {Id = "nnt", Scope = "I", Type = "E", ReferenceName = "Nanticoke"}, + new {Id = "nnu", Scope = "I", Type = "L", ReferenceName = "Dwang"}, + new {Id = "nnv", Scope = "I", Type = "E", ReferenceName = "Nugunu (Australia)"}, + new {Id = "nnw", Scope = "I", Type = "L", ReferenceName = "Southern Nuni"}, + new {Id = "nny", Scope = "I", Type = "E", ReferenceName = "Nyangga"}, + new {Id = "nnz", Scope = "I", Type = "L", ReferenceName = "Nda'nda'"}, + new {Id = "noa", Scope = "I", Type = "L", ReferenceName = "Woun Meu"}, + new + { + Id = "nob", + Part2B = "nob", + Part2T = "nob", + Part1 = "nb", + Scope = "I", + Type = "L", + ReferenceName = "Norwegian Bokmål" + }, new {Id = "noc", Scope = "I", Type = "L", ReferenceName = "Nuk"}, + new {Id = "nod", Scope = "I", Type = "L", ReferenceName = "Northern Thai"}, + new {Id = "noe", Scope = "I", Type = "L", ReferenceName = "Nimadi"}, + new {Id = "nof", Scope = "I", Type = "L", ReferenceName = "Nomane"}, + new + { + Id = "nog", + Part2B = "nog", + Part2T = "nog", + Scope = "I", + Type = "L", + ReferenceName = "Nogai" + }, new {Id = "noh", Scope = "I", Type = "L", ReferenceName = "Nomu"}, + new {Id = "noi", Scope = "I", Type = "L", ReferenceName = "Noiri"}, + new {Id = "noj", Scope = "I", Type = "L", ReferenceName = "Nonuya"}, + new {Id = "nok", Scope = "I", Type = "E", ReferenceName = "Nooksack"}, + new {Id = "nol", Scope = "I", Type = "E", ReferenceName = "Nomlaki"}, + new {Id = "nom", Scope = "I", Type = "E", ReferenceName = "Nocamán"}, + new + { + Id = "non", + Part2B = "non", + Part2T = "non", + Scope = "I", + Type = "H", + ReferenceName = "Old Norse" + }, new {Id = "nop", Scope = "I", Type = "L", ReferenceName = "Numanggang"}, + new {Id = "noq", Scope = "I", Type = "L", ReferenceName = "Ngongo"}, + new + { + Id = "nor", + Part2B = "nor", + Part2T = "nor", + Part1 = "no", + Scope = "M", + Type = "L", + ReferenceName = "Norwegian" + }, new {Id = "nos", Scope = "I", Type = "L", ReferenceName = "Eastern Nisu"}, + new {Id = "not", Scope = "I", Type = "L", ReferenceName = "Nomatsiguenga"}, + new {Id = "nou", Scope = "I", Type = "L", ReferenceName = "Ewage-Notu"}, + new {Id = "nov", Scope = "I", Type = "C", ReferenceName = "Novial"}, + new {Id = "now", Scope = "I", Type = "L", ReferenceName = "Nyambo"}, + new {Id = "noy", Scope = "I", Type = "L", ReferenceName = "Noy"}, + new {Id = "noz", Scope = "I", Type = "L", ReferenceName = "Nayi"}, + new {Id = "npa", Scope = "I", Type = "L", ReferenceName = "Nar Phu"}, + new {Id = "npb", Scope = "I", Type = "L", ReferenceName = "Nupbikha"}, + new {Id = "npg", Scope = "I", Type = "L", ReferenceName = "Ponyo-Gongwang Naga"}, + new {Id = "nph", Scope = "I", Type = "L", ReferenceName = "Phom Naga"}, + new + { + Id = "npi", + Scope = "I", + Type = "L", + ReferenceName = "Nepali (individual language)" + }, + new + { + Id = "npl", + Scope = "I", + Type = "L", + ReferenceName = "Southeastern Puebla Nahuatl" + }, new {Id = "npn", Scope = "I", Type = "L", ReferenceName = "Mondropolon"}, + new {Id = "npo", Scope = "I", Type = "L", ReferenceName = "Pochuri Naga"}, + new {Id = "nps", Scope = "I", Type = "L", ReferenceName = "Nipsan"}, + new {Id = "npu", Scope = "I", Type = "L", ReferenceName = "Puimei Naga"}, + new {Id = "npx", Scope = "I", Type = "L", ReferenceName = "Noipx"}, + new {Id = "npy", Scope = "I", Type = "L", ReferenceName = "Napu"}, + new {Id = "nqg", Scope = "I", Type = "L", ReferenceName = "Southern Nago"}, + new {Id = "nqk", Scope = "I", Type = "L", ReferenceName = "Kura Ede Nago"}, + new {Id = "nql", Scope = "I", Type = "L", ReferenceName = "Ngendelengo"}, + new {Id = "nqm", Scope = "I", Type = "L", ReferenceName = "Ndom"}, + new {Id = "nqn", Scope = "I", Type = "L", ReferenceName = "Nen"}, + new + { + Id = "nqo", + Part2B = "nqo", + Part2T = "nqo", + Scope = "I", + Type = "L", + ReferenceName = "N'Ko" + }, new {Id = "nqq", Scope = "I", Type = "L", ReferenceName = "Kyan-Karyaw Naga"}, + new {Id = "nqy", Scope = "I", Type = "L", ReferenceName = "Akyaung Ari Naga"}, + new {Id = "nra", Scope = "I", Type = "L", ReferenceName = "Ngom"}, + new {Id = "nrb", Scope = "I", Type = "L", ReferenceName = "Nara"}, + new {Id = "nrc", Scope = "I", Type = "A", ReferenceName = "Noric"}, + new {Id = "nre", Scope = "I", Type = "L", ReferenceName = "Southern Rengma Naga"}, + new {Id = "nrf", Scope = "I", Type = "L", ReferenceName = "Jèrriais"}, + new {Id = "nrg", Scope = "I", Type = "L", ReferenceName = "Narango"}, + new {Id = "nri", Scope = "I", Type = "L", ReferenceName = "Chokri Naga"}, + new {Id = "nrk", Scope = "I", Type = "L", ReferenceName = "Ngarla"}, + new {Id = "nrl", Scope = "I", Type = "L", ReferenceName = "Ngarluma"}, + new {Id = "nrm", Scope = "I", Type = "L", ReferenceName = "Narom"}, + new {Id = "nrn", Scope = "I", Type = "E", ReferenceName = "Norn"}, + new {Id = "nrp", Scope = "I", Type = "A", ReferenceName = "North Picene"}, + new {Id = "nrr", Scope = "I", Type = "E", ReferenceName = "Norra"}, + new {Id = "nrt", Scope = "I", Type = "E", ReferenceName = "Northern Kalapuya"}, + new {Id = "nru", Scope = "I", Type = "L", ReferenceName = "Narua"}, + new {Id = "nrx", Scope = "I", Type = "E", ReferenceName = "Ngurmbur"}, + new {Id = "nrz", Scope = "I", Type = "L", ReferenceName = "Lala"}, + new {Id = "nsa", Scope = "I", Type = "L", ReferenceName = "Sangtam Naga"}, + new {Id = "nsc", Scope = "I", Type = "L", ReferenceName = "Nshi"}, + new {Id = "nsd", Scope = "I", Type = "L", ReferenceName = "Southern Nisu"}, + new {Id = "nse", Scope = "I", Type = "L", ReferenceName = "Nsenga"}, + new {Id = "nsf", Scope = "I", Type = "L", ReferenceName = "Northwestern Nisu"}, + new {Id = "nsg", Scope = "I", Type = "L", ReferenceName = "Ngasa"}, + new {Id = "nsh", Scope = "I", Type = "L", ReferenceName = "Ngoshie"}, + new {Id = "nsi", Scope = "I", Type = "L", ReferenceName = "Nigerian Sign Language"}, + new {Id = "nsk", Scope = "I", Type = "L", ReferenceName = "Naskapi"}, + new + { + Id = "nsl", + Scope = "I", + Type = "L", + ReferenceName = "Norwegian Sign Language" + }, + new {Id = "nsm", Scope = "I", Type = "L", ReferenceName = "Sumi Naga"}, + new {Id = "nsn", Scope = "I", Type = "L", ReferenceName = "Nehan"}, + new + { + Id = "nso", + Part2B = "nso", + Part2T = "nso", + Scope = "I", + Type = "L", + ReferenceName = "Pedi" + }, new {Id = "nsp", Scope = "I", Type = "L", ReferenceName = "Nepalese Sign Language"}, + new {Id = "nsq", Scope = "I", Type = "L", ReferenceName = "Northern Sierra Miwok"}, + new {Id = "nsr", Scope = "I", Type = "L", ReferenceName = "Maritime Sign Language"}, + new {Id = "nss", Scope = "I", Type = "L", ReferenceName = "Nali"}, + new {Id = "nst", Scope = "I", Type = "L", ReferenceName = "Tase Naga"}, + new {Id = "nsu", Scope = "I", Type = "L", ReferenceName = "Sierra Negra Nahuatl"}, + new {Id = "nsv", Scope = "I", Type = "L", ReferenceName = "Southwestern Nisu"}, + new {Id = "nsw", Scope = "I", Type = "L", ReferenceName = "Navut"}, + new {Id = "nsx", Scope = "I", Type = "L", ReferenceName = "Nsongo"}, + new {Id = "nsy", Scope = "I", Type = "L", ReferenceName = "Nasal"}, + new {Id = "nsz", Scope = "I", Type = "L", ReferenceName = "Nisenan"}, + new {Id = "ntd", Scope = "I", Type = "L", ReferenceName = "Northern Tidung"}, + new {Id = "nte", Scope = "I", Type = "L", ReferenceName = "Nathembo"}, + new {Id = "ntg", Scope = "I", Type = "E", ReferenceName = "Ngantangarra"}, + new {Id = "nti", Scope = "I", Type = "L", ReferenceName = "Natioro"}, + new {Id = "ntj", Scope = "I", Type = "L", ReferenceName = "Ngaanyatjarra"}, + new {Id = "ntk", Scope = "I", Type = "L", ReferenceName = "Ikoma-Nata-Isenye"}, + new {Id = "ntm", Scope = "I", Type = "L", ReferenceName = "Nateni"}, + new {Id = "nto", Scope = "I", Type = "L", ReferenceName = "Ntomba"}, + new {Id = "ntp", Scope = "I", Type = "L", ReferenceName = "Northern Tepehuan"}, + new {Id = "ntr", Scope = "I", Type = "L", ReferenceName = "Delo"}, + new {Id = "ntu", Scope = "I", Type = "L", ReferenceName = "Natügu"}, + new {Id = "ntw", Scope = "I", Type = "E", ReferenceName = "Nottoway"}, + new + { + Id = "ntx", + Scope = "I", + Type = "L", + ReferenceName = "Tangkhul Naga (Myanmar)" + }, + new {Id = "nty", Scope = "I", Type = "L", ReferenceName = "Mantsi"}, + new {Id = "ntz", Scope = "I", Type = "L", ReferenceName = "Natanzi"}, + new {Id = "nua", Scope = "I", Type = "L", ReferenceName = "Yuanga"}, + new {Id = "nuc", Scope = "I", Type = "E", ReferenceName = "Nukuini"}, + new {Id = "nud", Scope = "I", Type = "L", ReferenceName = "Ngala"}, + new {Id = "nue", Scope = "I", Type = "L", ReferenceName = "Ngundu"}, + new {Id = "nuf", Scope = "I", Type = "L", ReferenceName = "Nusu"}, + new {Id = "nug", Scope = "I", Type = "E", ReferenceName = "Nungali"}, + new {Id = "nuh", Scope = "I", Type = "L", ReferenceName = "Ndunda"}, + new {Id = "nui", Scope = "I", Type = "L", ReferenceName = "Ngumbi"}, + new {Id = "nuj", Scope = "I", Type = "L", ReferenceName = "Nyole"}, + new {Id = "nuk", Scope = "I", Type = "L", ReferenceName = "Nuu-chah-nulth"}, + new {Id = "nul", Scope = "I", Type = "E", ReferenceName = "Nusa Laut"}, + new {Id = "num", Scope = "I", Type = "L", ReferenceName = "Niuafo'ou"}, + new {Id = "nun", Scope = "I", Type = "L", ReferenceName = "Anong"}, + new {Id = "nuo", Scope = "I", Type = "L", ReferenceName = "Nguôn"}, + new {Id = "nup", Scope = "I", Type = "L", ReferenceName = "Nupe-Nupe-Tako"}, + new {Id = "nuq", Scope = "I", Type = "L", ReferenceName = "Nukumanu"}, + new {Id = "nur", Scope = "I", Type = "L", ReferenceName = "Nukuria"}, + new {Id = "nus", Scope = "I", Type = "L", ReferenceName = "Nuer"}, + new {Id = "nut", Scope = "I", Type = "L", ReferenceName = "Nung (Viet Nam)"}, + new {Id = "nuu", Scope = "I", Type = "L", ReferenceName = "Ngbundu"}, + new {Id = "nuv", Scope = "I", Type = "L", ReferenceName = "Northern Nuni"}, + new {Id = "nuw", Scope = "I", Type = "L", ReferenceName = "Nguluwan"}, + new {Id = "nux", Scope = "I", Type = "L", ReferenceName = "Mehek"}, + new {Id = "nuy", Scope = "I", Type = "L", ReferenceName = "Nunggubuyu"}, + new {Id = "nuz", Scope = "I", Type = "L", ReferenceName = "Tlamacazapa Nahuatl"}, + new {Id = "nvh", Scope = "I", Type = "L", ReferenceName = "Nasarian"}, + new {Id = "nvm", Scope = "I", Type = "L", ReferenceName = "Namiae"}, + new {Id = "nvo", Scope = "I", Type = "L", ReferenceName = "Nyokon"}, + new {Id = "nwa", Scope = "I", Type = "E", ReferenceName = "Nawathinehena"}, + new {Id = "nwb", Scope = "I", Type = "L", ReferenceName = "Nyabwa"}, + new + { + Id = "nwc", + Part2B = "nwc", + Part2T = "nwc", + Scope = "I", + Type = "H", + ReferenceName = "Classical Newari" + }, new {Id = "nwe", Scope = "I", Type = "L", ReferenceName = "Ngwe"}, + new {Id = "nwg", Scope = "I", Type = "E", ReferenceName = "Ngayawung"}, + new {Id = "nwi", Scope = "I", Type = "L", ReferenceName = "Southwest Tanna"}, + new {Id = "nwm", Scope = "I", Type = "L", ReferenceName = "Nyamusa-Molo"}, + new {Id = "nwo", Scope = "I", Type = "E", ReferenceName = "Nauo"}, + new {Id = "nwr", Scope = "I", Type = "L", ReferenceName = "Nawaru"}, + new {Id = "nwx", Scope = "I", Type = "H", ReferenceName = "Middle Newar"}, + new {Id = "nwy", Scope = "I", Type = "E", ReferenceName = "Nottoway-Meherrin"}, + new {Id = "nxa", Scope = "I", Type = "L", ReferenceName = "Nauete"}, + new + { + Id = "nxd", + Scope = "I", + Type = "L", + ReferenceName = "Ngando (Democratic Republic of Congo)" + }, new {Id = "nxe", Scope = "I", Type = "L", ReferenceName = "Nage"}, + new {Id = "nxg", Scope = "I", Type = "L", ReferenceName = "Ngad'a"}, + new {Id = "nxi", Scope = "I", Type = "L", ReferenceName = "Nindi"}, + new {Id = "nxk", Scope = "I", Type = "L", ReferenceName = "Koki Naga"}, + new {Id = "nxl", Scope = "I", Type = "L", ReferenceName = "South Nuaulu"}, + new {Id = "nxm", Scope = "I", Type = "A", ReferenceName = "Numidian"}, + new {Id = "nxn", Scope = "I", Type = "E", ReferenceName = "Ngawun"}, + new {Id = "nxo", Scope = "I", Type = "L", ReferenceName = "Ndambomo"}, + new {Id = "nxq", Scope = "I", Type = "L", ReferenceName = "Naxi"}, + new {Id = "nxr", Scope = "I", Type = "L", ReferenceName = "Ninggerum"}, + new {Id = "nxu", Scope = "I", Type = "E", ReferenceName = "Narau"}, + new {Id = "nxx", Scope = "I", Type = "L", ReferenceName = "Nafri"}, + new + { + Id = "nya", + Part2B = "nya", + Part2T = "nya", + Part1 = "ny", + Scope = "I", + Type = "L", + ReferenceName = "Nyanja" + }, new {Id = "nyb", Scope = "I", Type = "L", ReferenceName = "Nyangbo"}, + new {Id = "nyc", Scope = "I", Type = "L", ReferenceName = "Nyanga-li"}, + new {Id = "nyd", Scope = "I", Type = "L", ReferenceName = "Nyore"}, + new {Id = "nye", Scope = "I", Type = "L", ReferenceName = "Nyengo"}, + new {Id = "nyf", Scope = "I", Type = "L", ReferenceName = "Giryama"}, + new {Id = "nyg", Scope = "I", Type = "L", ReferenceName = "Nyindu"}, + new {Id = "nyh", Scope = "I", Type = "L", ReferenceName = "Nyikina"}, + new {Id = "nyi", Scope = "I", Type = "L", ReferenceName = "Ama (Sudan)"}, + new {Id = "nyj", Scope = "I", Type = "L", ReferenceName = "Nyanga"}, + new {Id = "nyk", Scope = "I", Type = "L", ReferenceName = "Nyaneka"}, + new {Id = "nyl", Scope = "I", Type = "L", ReferenceName = "Nyeu"}, + new + { + Id = "nym", + Part2B = "nym", + Part2T = "nym", + Scope = "I", + Type = "L", + ReferenceName = "Nyamwezi" + }, new + { + Id = "nyn", + Part2B = "nyn", + Part2T = "nyn", + Scope = "I", + Type = "L", + ReferenceName = "Nyankole" + }, new + { + Id = "nyo", + Part2B = "nyo", + Part2T = "nyo", + Scope = "I", + Type = "L", + ReferenceName = "Nyoro" + }, new {Id = "nyp", Scope = "I", Type = "E", ReferenceName = "Nyang'i"}, + new {Id = "nyq", Scope = "I", Type = "L", ReferenceName = "Nayini"}, + new {Id = "nyr", Scope = "I", Type = "L", ReferenceName = "Nyiha (Malawi)"}, + new {Id = "nys", Scope = "I", Type = "L", ReferenceName = "Nyungar"}, + new {Id = "nyt", Scope = "I", Type = "E", ReferenceName = "Nyawaygi"}, + new {Id = "nyu", Scope = "I", Type = "L", ReferenceName = "Nyungwe"}, + new {Id = "nyv", Scope = "I", Type = "E", ReferenceName = "Nyulnyul"}, + new {Id = "nyw", Scope = "I", Type = "L", ReferenceName = "Nyaw"}, + new {Id = "nyx", Scope = "I", Type = "E", ReferenceName = "Nganyaywana"}, + new {Id = "nyy", Scope = "I", Type = "L", ReferenceName = "Nyakyusa-Ngonde"}, + new {Id = "nza", Scope = "I", Type = "L", ReferenceName = "Tigon Mbembe"}, + new {Id = "nzb", Scope = "I", Type = "L", ReferenceName = "Njebi"}, + new {Id = "nzd", Scope = "I", Type = "L", ReferenceName = "Nzadi"}, + new + { + Id = "nzi", + Part2B = "nzi", + Part2T = "nzi", + Scope = "I", + Type = "L", + ReferenceName = "Nzima" + }, new {Id = "nzk", Scope = "I", Type = "L", ReferenceName = "Nzakara"}, + new {Id = "nzm", Scope = "I", Type = "L", ReferenceName = "Zeme Naga"}, + new + { + Id = "nzs", + Scope = "I", + Type = "L", + ReferenceName = "New Zealand Sign Language" + }, + new {Id = "nzu", Scope = "I", Type = "L", ReferenceName = "Teke-Nzikou"}, + new {Id = "nzy", Scope = "I", Type = "L", ReferenceName = "Nzakambay"}, + new {Id = "nzz", Scope = "I", Type = "L", ReferenceName = "Nanga Dama Dogon"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/O.cs b/Cicm.Database/Seeders/Iso639Split/O.cs new file mode 100644 index 00000000..d0d0854b --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/O.cs @@ -0,0 +1,268 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class O + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "oaa", Scope = "I", Type = "L", ReferenceName = "Orok"}, + new {Id = "oac", Scope = "I", Type = "L", ReferenceName = "Oroch"}, + new + { + Id = "oar", + Scope = "I", + Type = "A", + ReferenceName = "Old Aramaic (up to 700 BCE)" + }, new {Id = "oav", Scope = "I", Type = "H", ReferenceName = "Old Avar"}, + new {Id = "obi", Scope = "I", Type = "E", ReferenceName = "Obispeño"}, + new {Id = "obk", Scope = "I", Type = "L", ReferenceName = "Southern Bontok"}, + new {Id = "obl", Scope = "I", Type = "L", ReferenceName = "Oblo"}, + new {Id = "obm", Scope = "I", Type = "A", ReferenceName = "Moabite"}, + new {Id = "obo", Scope = "I", Type = "L", ReferenceName = "Obo Manobo"}, + new {Id = "obr", Scope = "I", Type = "H", ReferenceName = "Old Burmese"}, + new {Id = "obt", Scope = "I", Type = "H", ReferenceName = "Old Breton"}, + new {Id = "obu", Scope = "I", Type = "L", ReferenceName = "Obulom"}, + new {Id = "oca", Scope = "I", Type = "L", ReferenceName = "Ocaina"}, + new {Id = "och", Scope = "I", Type = "A", ReferenceName = "Old Chinese"}, + new + { + Id = "oci", + Part2B = "oci", + Part2T = "oci", + Part1 = "oc", + Scope = "I", + Type = "L", + ReferenceName = "Occitan (post 1500)" + }, new {Id = "oco", Scope = "I", Type = "H", ReferenceName = "Old Cornish"}, + new {Id = "ocu", Scope = "I", Type = "L", ReferenceName = "Atzingo Matlatzinca"}, + new {Id = "oda", Scope = "I", Type = "L", ReferenceName = "Odut"}, + new {Id = "odk", Scope = "I", Type = "L", ReferenceName = "Od"}, + new {Id = "odt", Scope = "I", Type = "H", ReferenceName = "Old Dutch"}, + new {Id = "odu", Scope = "I", Type = "L", ReferenceName = "Odual"}, + new {Id = "ofo", Scope = "I", Type = "E", ReferenceName = "Ofo"}, + new {Id = "ofs", Scope = "I", Type = "H", ReferenceName = "Old Frisian"}, + new {Id = "ofu", Scope = "I", Type = "L", ReferenceName = "Efutop"}, + new {Id = "ogb", Scope = "I", Type = "L", ReferenceName = "Ogbia"}, + new {Id = "ogc", Scope = "I", Type = "L", ReferenceName = "Ogbah"}, + new {Id = "oge", Scope = "I", Type = "H", ReferenceName = "Old Georgian"}, + new {Id = "ogg", Scope = "I", Type = "L", ReferenceName = "Ogbogolo"}, + new {Id = "ogo", Scope = "I", Type = "L", ReferenceName = "Khana"}, + new {Id = "ogu", Scope = "I", Type = "L", ReferenceName = "Ogbronuagum"}, + new {Id = "oht", Scope = "I", Type = "A", ReferenceName = "Old Hittite"}, + new {Id = "ohu", Scope = "I", Type = "H", ReferenceName = "Old Hungarian"}, + new {Id = "oia", Scope = "I", Type = "L", ReferenceName = "Oirata"}, + new {Id = "oin", Scope = "I", Type = "L", ReferenceName = "Inebu One"}, + new {Id = "ojb", Scope = "I", Type = "L", ReferenceName = "Northwestern Ojibwa"}, + new {Id = "ojc", Scope = "I", Type = "L", ReferenceName = "Central Ojibwa"}, + new {Id = "ojg", Scope = "I", Type = "L", ReferenceName = "Eastern Ojibwa"}, + new + { + Id = "oji", + Part2B = "oji", + Part2T = "oji", + Part1 = "oj", + Scope = "M", + Type = "L", + ReferenceName = "Ojibwa" + }, new {Id = "ojp", Scope = "I", Type = "H", ReferenceName = "Old Japanese"}, + new {Id = "ojs", Scope = "I", Type = "L", ReferenceName = "Severn Ojibwa"}, + new {Id = "ojv", Scope = "I", Type = "L", ReferenceName = "Ontong Java"}, + new {Id = "ojw", Scope = "I", Type = "L", ReferenceName = "Western Ojibwa"}, + new {Id = "oka", Scope = "I", Type = "L", ReferenceName = "Okanagan"}, + new {Id = "okb", Scope = "I", Type = "L", ReferenceName = "Okobo"}, + new {Id = "okd", Scope = "I", Type = "L", ReferenceName = "Okodia"}, + new + { + Id = "oke", + Scope = "I", + Type = "L", + ReferenceName = "Okpe (Southwestern Edo)" + }, + new {Id = "okg", Scope = "I", Type = "E", ReferenceName = "Koko Babangk"}, + new {Id = "okh", Scope = "I", Type = "L", ReferenceName = "Koresh-e Rostam"}, + new {Id = "oki", Scope = "I", Type = "L", ReferenceName = "Okiek"}, + new {Id = "okj", Scope = "I", Type = "E", ReferenceName = "Oko-Juwoi"}, + new {Id = "okk", Scope = "I", Type = "L", ReferenceName = "Kwamtim One"}, + new + { + Id = "okl", + Scope = "I", + Type = "E", + ReferenceName = "Old Kentish Sign Language" + }, + new + { + Id = "okm", + Scope = "I", + Type = "H", + ReferenceName = "Middle Korean (10th-16th cent.)" + }, new {Id = "okn", Scope = "I", Type = "L", ReferenceName = "Oki-No-Erabu"}, + new + { + Id = "oko", + Scope = "I", + Type = "H", + ReferenceName = "Old Korean (3rd-9th cent.)" + }, new {Id = "okr", Scope = "I", Type = "L", ReferenceName = "Kirike"}, + new {Id = "oks", Scope = "I", Type = "L", ReferenceName = "Oko-Eni-Osayen"}, + new {Id = "oku", Scope = "I", Type = "L", ReferenceName = "Oku"}, + new {Id = "okv", Scope = "I", Type = "L", ReferenceName = "Orokaiva"}, + new + { + Id = "okx", + Scope = "I", + Type = "L", + ReferenceName = "Okpe (Northwestern Edo)" + }, + new {Id = "ola", Scope = "I", Type = "L", ReferenceName = "Walungge"}, + new {Id = "old", Scope = "I", Type = "L", ReferenceName = "Mochi"}, + new {Id = "ole", Scope = "I", Type = "L", ReferenceName = "Olekha"}, + new {Id = "olk", Scope = "I", Type = "E", ReferenceName = "Olkol"}, + new {Id = "olm", Scope = "I", Type = "L", ReferenceName = "Oloma"}, + new {Id = "olo", Scope = "I", Type = "L", ReferenceName = "Livvi"}, + new {Id = "olr", Scope = "I", Type = "L", ReferenceName = "Olrat"}, + new {Id = "olt", Scope = "I", Type = "H", ReferenceName = "Old Lithuanian"}, + new {Id = "olu", Scope = "I", Type = "L", ReferenceName = "Kuvale"}, + new {Id = "oma", Scope = "I", Type = "L", ReferenceName = "Omaha-Ponca"}, + new {Id = "omb", Scope = "I", Type = "L", ReferenceName = "East Ambae"}, + new {Id = "omc", Scope = "I", Type = "E", ReferenceName = "Mochica"}, + new {Id = "omg", Scope = "I", Type = "L", ReferenceName = "Omagua"}, + new {Id = "omi", Scope = "I", Type = "L", ReferenceName = "Omi"}, + new {Id = "omk", Scope = "I", Type = "E", ReferenceName = "Omok"}, + new {Id = "oml", Scope = "I", Type = "L", ReferenceName = "Ombo"}, + new {Id = "omn", Scope = "I", Type = "A", ReferenceName = "Minoan"}, + new {Id = "omo", Scope = "I", Type = "L", ReferenceName = "Utarmbung"}, + new {Id = "omp", Scope = "I", Type = "H", ReferenceName = "Old Manipuri"}, + new {Id = "omr", Scope = "I", Type = "H", ReferenceName = "Old Marathi"}, + new {Id = "omt", Scope = "I", Type = "L", ReferenceName = "Omotik"}, + new {Id = "omu", Scope = "I", Type = "E", ReferenceName = "Omurano"}, + new {Id = "omw", Scope = "I", Type = "L", ReferenceName = "South Tairora"}, + new {Id = "omx", Scope = "I", Type = "H", ReferenceName = "Old Mon"}, + new {Id = "ona", Scope = "I", Type = "L", ReferenceName = "Ona"}, + new {Id = "onb", Scope = "I", Type = "L", ReferenceName = "Lingao"}, + new {Id = "one", Scope = "I", Type = "L", ReferenceName = "Oneida"}, + new {Id = "ong", Scope = "I", Type = "L", ReferenceName = "Olo"}, + new {Id = "oni", Scope = "I", Type = "L", ReferenceName = "Onin"}, + new {Id = "onj", Scope = "I", Type = "L", ReferenceName = "Onjob"}, + new {Id = "onk", Scope = "I", Type = "L", ReferenceName = "Kabore One"}, + new {Id = "onn", Scope = "I", Type = "L", ReferenceName = "Onobasulu"}, + new {Id = "ono", Scope = "I", Type = "L", ReferenceName = "Onondaga"}, + new {Id = "onp", Scope = "I", Type = "L", ReferenceName = "Sartang"}, + new {Id = "onr", Scope = "I", Type = "L", ReferenceName = "Northern One"}, + new {Id = "ons", Scope = "I", Type = "L", ReferenceName = "Ono"}, + new {Id = "ont", Scope = "I", Type = "L", ReferenceName = "Ontenu"}, + new {Id = "onu", Scope = "I", Type = "L", ReferenceName = "Unua"}, + new {Id = "onw", Scope = "I", Type = "H", ReferenceName = "Old Nubian"}, + new {Id = "onx", Scope = "I", Type = "L", ReferenceName = "Onin Based Pidgin"}, + new {Id = "ood", Scope = "I", Type = "L", ReferenceName = "Tohono O'odham"}, + new {Id = "oog", Scope = "I", Type = "L", ReferenceName = "Ong"}, + new {Id = "oon", Scope = "I", Type = "L", ReferenceName = "Önge"}, + new {Id = "oor", Scope = "I", Type = "L", ReferenceName = "Oorlams"}, + new {Id = "oos", Scope = "I", Type = "A", ReferenceName = "Old Ossetic"}, + new {Id = "opa", Scope = "I", Type = "L", ReferenceName = "Okpamheri"}, + new {Id = "opk", Scope = "I", Type = "L", ReferenceName = "Kopkaka"}, + new {Id = "opm", Scope = "I", Type = "L", ReferenceName = "Oksapmin"}, + new {Id = "opo", Scope = "I", Type = "L", ReferenceName = "Opao"}, + new {Id = "opt", Scope = "I", Type = "E", ReferenceName = "Opata"}, + new {Id = "opy", Scope = "I", Type = "L", ReferenceName = "Ofayé"}, + new {Id = "ora", Scope = "I", Type = "L", ReferenceName = "Oroha"}, + new {Id = "orc", Scope = "I", Type = "L", ReferenceName = "Orma"}, + new {Id = "ore", Scope = "I", Type = "L", ReferenceName = "Orejón"}, + new {Id = "org", Scope = "I", Type = "L", ReferenceName = "Oring"}, + new {Id = "orh", Scope = "I", Type = "L", ReferenceName = "Oroqen"}, + new + { + Id = "ori", + Part2B = "ori", + Part2T = "ori", + Part1 = "or", + Scope = "M", + Type = "L", + ReferenceName = "Oriya (macrolanguage)" + }, new + { + Id = "orm", + Part2B = "orm", + Part2T = "orm", + Part1 = "om", + Scope = "M", + Type = "L", + ReferenceName = "Oromo" + }, new {Id = "orn", Scope = "I", Type = "L", ReferenceName = "Orang Kanaq"}, + new {Id = "oro", Scope = "I", Type = "L", ReferenceName = "Orokolo"}, + new {Id = "orr", Scope = "I", Type = "L", ReferenceName = "Oruma"}, + new {Id = "ors", Scope = "I", Type = "L", ReferenceName = "Orang Seletar"}, + new {Id = "ort", Scope = "I", Type = "L", ReferenceName = "Adivasi Oriya"}, + new {Id = "oru", Scope = "I", Type = "L", ReferenceName = "Ormuri"}, + new {Id = "orv", Scope = "I", Type = "H", ReferenceName = "Old Russian"}, + new {Id = "orw", Scope = "I", Type = "L", ReferenceName = "Oro Win"}, + new {Id = "orx", Scope = "I", Type = "L", ReferenceName = "Oro"}, + new {Id = "ory", Scope = "I", Type = "L", ReferenceName = "Odia"}, + new {Id = "orz", Scope = "I", Type = "L", ReferenceName = "Ormu"}, + new + { + Id = "osa", + Part2B = "osa", + Part2T = "osa", + Scope = "I", + Type = "L", + ReferenceName = "Osage" + }, new {Id = "osc", Scope = "I", Type = "A", ReferenceName = "Oscan"}, + new {Id = "osi", Scope = "I", Type = "L", ReferenceName = "Osing"}, + new {Id = "oso", Scope = "I", Type = "L", ReferenceName = "Ososo"}, + new {Id = "osp", Scope = "I", Type = "H", ReferenceName = "Old Spanish"}, + new + { + Id = "oss", + Part2B = "oss", + Part2T = "oss", + Part1 = "os", + Scope = "I", + Type = "L", + ReferenceName = "Ossetian" + }, new {Id = "ost", Scope = "I", Type = "L", ReferenceName = "Osatu"}, + new {Id = "osu", Scope = "I", Type = "L", ReferenceName = "Southern One"}, + new {Id = "osx", Scope = "I", Type = "H", ReferenceName = "Old Saxon"}, + new + { + Id = "ota", + Part2B = "ota", + Part2T = "ota", + Scope = "I", + Type = "H", + ReferenceName = "Ottoman Turkish (1500-1928)" + }, new {Id = "otb", Scope = "I", Type = "H", ReferenceName = "Old Tibetan"}, + new {Id = "otd", Scope = "I", Type = "L", ReferenceName = "Ot Danum"}, + new {Id = "ote", Scope = "I", Type = "L", ReferenceName = "Mezquital Otomi"}, + new {Id = "oti", Scope = "I", Type = "E", ReferenceName = "Oti"}, + new {Id = "otk", Scope = "I", Type = "H", ReferenceName = "Old Turkish"}, + new {Id = "otl", Scope = "I", Type = "L", ReferenceName = "Tilapa Otomi"}, + new {Id = "otm", Scope = "I", Type = "L", ReferenceName = "Eastern Highland Otomi"}, + new {Id = "otn", Scope = "I", Type = "L", ReferenceName = "Tenango Otomi"}, + new {Id = "otq", Scope = "I", Type = "L", ReferenceName = "Querétaro Otomi"}, + new {Id = "otr", Scope = "I", Type = "L", ReferenceName = "Otoro"}, + new {Id = "ots", Scope = "I", Type = "L", ReferenceName = "Estado de México Otomi"}, + new {Id = "ott", Scope = "I", Type = "L", ReferenceName = "Temoaya Otomi"}, + new {Id = "otu", Scope = "I", Type = "E", ReferenceName = "Otuke"}, + new {Id = "otw", Scope = "I", Type = "L", ReferenceName = "Ottawa"}, + new {Id = "otx", Scope = "I", Type = "L", ReferenceName = "Texcatepec Otomi"}, + new {Id = "oty", Scope = "I", Type = "A", ReferenceName = "Old Tamil"}, + new {Id = "otz", Scope = "I", Type = "L", ReferenceName = "Ixtenco Otomi"}, + new {Id = "oua", Scope = "I", Type = "L", ReferenceName = "Tagargrent"}, + new {Id = "oub", Scope = "I", Type = "L", ReferenceName = "Glio-Oubi"}, + new {Id = "oue", Scope = "I", Type = "L", ReferenceName = "Oune"}, + new {Id = "oui", Scope = "I", Type = "H", ReferenceName = "Old Uighur"}, + new {Id = "oum", Scope = "I", Type = "E", ReferenceName = "Ouma"}, + new {Id = "ovd", Scope = "I", Type = "L", ReferenceName = "Elfdalian"}, + new {Id = "owi", Scope = "I", Type = "L", ReferenceName = "Owiniga"}, + new {Id = "owl", Scope = "I", Type = "H", ReferenceName = "Old Welsh"}, + new {Id = "oyb", Scope = "I", Type = "L", ReferenceName = "Oy"}, + new {Id = "oyd", Scope = "I", Type = "L", ReferenceName = "Oyda"}, + new {Id = "oym", Scope = "I", Type = "L", ReferenceName = "Wayampi"}, + new {Id = "oyy", Scope = "I", Type = "L", ReferenceName = "Oya'oya"}, + new {Id = "ozm", Scope = "I", Type = "L", ReferenceName = "Koonzime"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/P.cs b/Cicm.Database/Seeders/Iso639Split/P.cs new file mode 100644 index 00000000..e2d06aa2 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/P.cs @@ -0,0 +1,588 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class P + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "pab", Scope = "I", Type = "L", ReferenceName = "Parecís"}, + new {Id = "pac", Scope = "I", Type = "L", ReferenceName = "Pacoh"}, + new {Id = "pad", Scope = "I", Type = "L", ReferenceName = "Paumarí"}, + new {Id = "pae", Scope = "I", Type = "L", ReferenceName = "Pagibete"}, + new {Id = "paf", Scope = "I", Type = "E", ReferenceName = "Paranawát"}, + new + { + Id = "pag", + Part2B = "pag", + Part2T = "pag", + Scope = "I", + Type = "L", + ReferenceName = "Pangasinan" + }, new {Id = "pah", Scope = "I", Type = "L", ReferenceName = "Tenharim"}, + new {Id = "pai", Scope = "I", Type = "L", ReferenceName = "Pe"}, + new {Id = "pak", Scope = "I", Type = "L", ReferenceName = "Parakanã"}, + new + { + Id = "pal", + Part2B = "pal", + Part2T = "pal", + Scope = "I", + Type = "A", + ReferenceName = "Pahlavi" + }, new + { + Id = "pam", + Part2B = "pam", + Part2T = "pam", + Scope = "I", + Type = "L", + ReferenceName = "Pampanga" + }, new + { + Id = "pan", + Part2B = "pan", + Part2T = "pan", + Part1 = "pa", + Scope = "I", + Type = "L", + ReferenceName = "Panjabi" + }, new {Id = "pao", Scope = "I", Type = "L", ReferenceName = "Northern Paiute"}, + new + { + Id = "pap", + Part2B = "pap", + Part2T = "pap", + Scope = "I", + Type = "L", + ReferenceName = "Papiamento" + }, new {Id = "paq", Scope = "I", Type = "L", ReferenceName = "Parya"}, + new {Id = "par", Scope = "I", Type = "L", ReferenceName = "Panamint"}, + new {Id = "pas", Scope = "I", Type = "L", ReferenceName = "Papasena"}, + new {Id = "pat", Scope = "I", Type = "L", ReferenceName = "Papitalai"}, + new + { + Id = "pau", + Part2B = "pau", + Part2T = "pau", + Scope = "I", + Type = "L", + ReferenceName = "Palauan" + }, new {Id = "pav", Scope = "I", Type = "L", ReferenceName = "Pakaásnovos"}, + new {Id = "paw", Scope = "I", Type = "L", ReferenceName = "Pawnee"}, + new {Id = "pax", Scope = "I", Type = "E", ReferenceName = "Pankararé"}, + new {Id = "pay", Scope = "I", Type = "L", ReferenceName = "Pech"}, + new {Id = "paz", Scope = "I", Type = "E", ReferenceName = "Pankararú"}, + new {Id = "pbb", Scope = "I", Type = "L", ReferenceName = "Páez"}, + new {Id = "pbc", Scope = "I", Type = "L", ReferenceName = "Patamona"}, + new {Id = "pbe", Scope = "I", Type = "L", ReferenceName = "Mezontla Popoloca"}, + new {Id = "pbf", Scope = "I", Type = "L", ReferenceName = "Coyotepec Popoloca"}, + new {Id = "pbg", Scope = "I", Type = "E", ReferenceName = "Paraujano"}, + new {Id = "pbh", Scope = "I", Type = "L", ReferenceName = "E'ñapa Woromaipu"}, + new {Id = "pbi", Scope = "I", Type = "L", ReferenceName = "Parkwa"}, + new {Id = "pbl", Scope = "I", Type = "L", ReferenceName = "Mak (Nigeria)"}, + new {Id = "pbm", Scope = "I", Type = "L", ReferenceName = "Puebla Mazatec"}, + new {Id = "pbn", Scope = "I", Type = "L", ReferenceName = "Kpasam"}, + new {Id = "pbo", Scope = "I", Type = "L", ReferenceName = "Papel"}, + new {Id = "pbp", Scope = "I", Type = "L", ReferenceName = "Badyara"}, + new {Id = "pbr", Scope = "I", Type = "L", ReferenceName = "Pangwa"}, + new {Id = "pbs", Scope = "I", Type = "L", ReferenceName = "Central Pame"}, + new {Id = "pbt", Scope = "I", Type = "L", ReferenceName = "Southern Pashto"}, + new {Id = "pbu", Scope = "I", Type = "L", ReferenceName = "Northern Pashto"}, + new {Id = "pbv", Scope = "I", Type = "L", ReferenceName = "Pnar"}, + new {Id = "pby", Scope = "I", Type = "L", ReferenceName = "Pyu (Papua New Guinea)"}, + new + { + Id = "pca", + Scope = "I", + Type = "L", + ReferenceName = "Santa Inés Ahuatempan Popoloca" + }, new {Id = "pcb", Scope = "I", Type = "L", ReferenceName = "Pear"}, + new {Id = "pcc", Scope = "I", Type = "L", ReferenceName = "Bouyei"}, + new {Id = "pcd", Scope = "I", Type = "L", ReferenceName = "Picard"}, + new {Id = "pce", Scope = "I", Type = "L", ReferenceName = "Ruching Palaung"}, + new {Id = "pcf", Scope = "I", Type = "L", ReferenceName = "Paliyan"}, + new {Id = "pcg", Scope = "I", Type = "L", ReferenceName = "Paniya"}, + new {Id = "pch", Scope = "I", Type = "L", ReferenceName = "Pardhan"}, + new {Id = "pci", Scope = "I", Type = "L", ReferenceName = "Duruwa"}, + new {Id = "pcj", Scope = "I", Type = "L", ReferenceName = "Parenga"}, + new {Id = "pck", Scope = "I", Type = "L", ReferenceName = "Paite Chin"}, + new {Id = "pcl", Scope = "I", Type = "L", ReferenceName = "Pardhi"}, + new {Id = "pcm", Scope = "I", Type = "L", ReferenceName = "Nigerian Pidgin"}, + new {Id = "pcn", Scope = "I", Type = "L", ReferenceName = "Piti"}, + new {Id = "pcp", Scope = "I", Type = "L", ReferenceName = "Pacahuara"}, + new {Id = "pcw", Scope = "I", Type = "L", ReferenceName = "Pyapun"}, + new {Id = "pda", Scope = "I", Type = "L", ReferenceName = "Anam"}, + new + { + Id = "pdc", + Scope = "I", + Type = "L", + ReferenceName = "Pennsylvania German" + }, + new {Id = "pdi", Scope = "I", Type = "L", ReferenceName = "Pa Di"}, + new {Id = "pdn", Scope = "I", Type = "L", ReferenceName = "Podena"}, + new {Id = "pdo", Scope = "I", Type = "L", ReferenceName = "Padoe"}, + new {Id = "pdt", Scope = "I", Type = "L", ReferenceName = "Plautdietsch"}, + new {Id = "pdu", Scope = "I", Type = "L", ReferenceName = "Kayan"}, + new + { + Id = "pea", + Scope = "I", + Type = "L", + ReferenceName = "Peranakan Indonesian" + }, + new {Id = "peb", Scope = "I", Type = "E", ReferenceName = "Eastern Pomo"}, + new + { + Id = "ped", + Scope = "I", + Type = "L", + ReferenceName = "Mala (Papua New Guinea)" + }, + new {Id = "pee", Scope = "I", Type = "L", ReferenceName = "Taje"}, + new {Id = "pef", Scope = "I", Type = "E", ReferenceName = "Northeastern Pomo"}, + new {Id = "peg", Scope = "I", Type = "L", ReferenceName = "Pengo"}, + new {Id = "peh", Scope = "I", Type = "L", ReferenceName = "Bonan"}, + new {Id = "pei", Scope = "I", Type = "L", ReferenceName = "Chichimeca-Jonaz"}, + new {Id = "pej", Scope = "I", Type = "E", ReferenceName = "Northern Pomo"}, + new {Id = "pek", Scope = "I", Type = "L", ReferenceName = "Penchal"}, + new {Id = "pel", Scope = "I", Type = "L", ReferenceName = "Pekal"}, + new {Id = "pem", Scope = "I", Type = "L", ReferenceName = "Phende"}, + new + { + Id = "peo", + Part2B = "peo", + Part2T = "peo", + Scope = "I", + Type = "H", + ReferenceName = "Old Persian (ca. 600-400 B.C.)" + }, new {Id = "pep", Scope = "I", Type = "L", ReferenceName = "Kunja"}, + new {Id = "peq", Scope = "I", Type = "L", ReferenceName = "Southern Pomo"}, + new {Id = "pes", Scope = "I", Type = "L", ReferenceName = "Iranian Persian"}, + new {Id = "pev", Scope = "I", Type = "L", ReferenceName = "Pémono"}, + new {Id = "pex", Scope = "I", Type = "L", ReferenceName = "Petats"}, + new {Id = "pey", Scope = "I", Type = "L", ReferenceName = "Petjo"}, + new {Id = "pez", Scope = "I", Type = "L", ReferenceName = "Eastern Penan"}, + new {Id = "pfa", Scope = "I", Type = "L", ReferenceName = "Pááfang"}, + new {Id = "pfe", Scope = "I", Type = "L", ReferenceName = "Peere"}, + new {Id = "pfl", Scope = "I", Type = "L", ReferenceName = "Pfaelzisch"}, + new {Id = "pga", Scope = "I", Type = "L", ReferenceName = "Sudanese Creole Arabic"}, + new {Id = "pgd", Scope = "I", Type = "H", ReferenceName = "Gāndhārī"}, + new {Id = "pgg", Scope = "I", Type = "L", ReferenceName = "Pangwali"}, + new {Id = "pgi", Scope = "I", Type = "L", ReferenceName = "Pagi"}, + new {Id = "pgk", Scope = "I", Type = "L", ReferenceName = "Rerep"}, + new {Id = "pgl", Scope = "I", Type = "A", ReferenceName = "Primitive Irish"}, + new {Id = "pgn", Scope = "I", Type = "A", ReferenceName = "Paelignian"}, + new {Id = "pgs", Scope = "I", Type = "L", ReferenceName = "Pangseng"}, + new {Id = "pgu", Scope = "I", Type = "L", ReferenceName = "Pagu"}, + new + { + Id = "pgz", + Scope = "I", + Type = "L", + ReferenceName = "Papua New Guinean Sign Language" + }, new {Id = "pha", Scope = "I", Type = "L", ReferenceName = "Pa-Hng"}, + new {Id = "phd", Scope = "I", Type = "L", ReferenceName = "Phudagi"}, + new {Id = "phg", Scope = "I", Type = "L", ReferenceName = "Phuong"}, + new {Id = "phh", Scope = "I", Type = "L", ReferenceName = "Phukha"}, + new {Id = "phk", Scope = "I", Type = "L", ReferenceName = "Phake"}, + new {Id = "phl", Scope = "I", Type = "L", ReferenceName = "Phalura"}, + new {Id = "phm", Scope = "I", Type = "L", ReferenceName = "Phimbi"}, + new + { + Id = "phn", + Part2B = "phn", + Part2T = "phn", + Scope = "I", + Type = "A", + ReferenceName = "Phoenician" + }, new {Id = "pho", Scope = "I", Type = "L", ReferenceName = "Phunoi"}, + new {Id = "phq", Scope = "I", Type = "L", ReferenceName = "Phana'"}, + new {Id = "phr", Scope = "I", Type = "L", ReferenceName = "Pahari-Potwari"}, + new {Id = "pht", Scope = "I", Type = "L", ReferenceName = "Phu Thai"}, + new {Id = "phu", Scope = "I", Type = "L", ReferenceName = "Phuan"}, + new {Id = "phv", Scope = "I", Type = "L", ReferenceName = "Pahlavani"}, + new {Id = "phw", Scope = "I", Type = "L", ReferenceName = "Phangduwali"}, + new {Id = "pia", Scope = "I", Type = "L", ReferenceName = "Pima Bajo"}, + new {Id = "pib", Scope = "I", Type = "L", ReferenceName = "Yine"}, + new {Id = "pic", Scope = "I", Type = "L", ReferenceName = "Pinji"}, + new {Id = "pid", Scope = "I", Type = "L", ReferenceName = "Piaroa"}, + new {Id = "pie", Scope = "I", Type = "E", ReferenceName = "Piro"}, + new {Id = "pif", Scope = "I", Type = "L", ReferenceName = "Pingelapese"}, + new {Id = "pig", Scope = "I", Type = "L", ReferenceName = "Pisabo"}, + new {Id = "pih", Scope = "I", Type = "L", ReferenceName = "Pitcairn-Norfolk"}, + new {Id = "pii", Scope = "I", Type = "L", ReferenceName = "Pini"}, + new {Id = "pij", Scope = "I", Type = "E", ReferenceName = "Pijao"}, + new {Id = "pil", Scope = "I", Type = "L", ReferenceName = "Yom"}, + new {Id = "pim", Scope = "I", Type = "E", ReferenceName = "Powhatan"}, + new {Id = "pin", Scope = "I", Type = "L", ReferenceName = "Piame"}, + new {Id = "pio", Scope = "I", Type = "L", ReferenceName = "Piapoco"}, + new {Id = "pip", Scope = "I", Type = "L", ReferenceName = "Pero"}, + new {Id = "pir", Scope = "I", Type = "L", ReferenceName = "Piratapuyo"}, + new {Id = "pis", Scope = "I", Type = "L", ReferenceName = "Pijin"}, + new {Id = "pit", Scope = "I", Type = "E", ReferenceName = "Pitta Pitta"}, + new {Id = "piu", Scope = "I", Type = "L", ReferenceName = "Pintupi-Luritja"}, + new {Id = "piv", Scope = "I", Type = "L", ReferenceName = "Pileni"}, + new {Id = "piw", Scope = "I", Type = "L", ReferenceName = "Pimbwe"}, + new {Id = "pix", Scope = "I", Type = "L", ReferenceName = "Piu"}, + new {Id = "piy", Scope = "I", Type = "L", ReferenceName = "Piya-Kwonci"}, + new {Id = "piz", Scope = "I", Type = "L", ReferenceName = "Pije"}, + new {Id = "pjt", Scope = "I", Type = "L", ReferenceName = "Pitjantjatjara"}, + new {Id = "pka", Scope = "I", Type = "H", ReferenceName = "Ardhamāgadhī Prākrit"}, + new {Id = "pkb", Scope = "I", Type = "L", ReferenceName = "Pokomo"}, + new {Id = "pkc", Scope = "I", Type = "A", ReferenceName = "Paekche"}, + new {Id = "pkg", Scope = "I", Type = "L", ReferenceName = "Pak-Tong"}, + new {Id = "pkh", Scope = "I", Type = "L", ReferenceName = "Pankhu"}, + new {Id = "pkn", Scope = "I", Type = "L", ReferenceName = "Pakanha"}, + new {Id = "pko", Scope = "I", Type = "L", ReferenceName = "Pökoot"}, + new {Id = "pkp", Scope = "I", Type = "L", ReferenceName = "Pukapuka"}, + new {Id = "pkr", Scope = "I", Type = "L", ReferenceName = "Attapady Kurumba"}, + new {Id = "pks", Scope = "I", Type = "L", ReferenceName = "Pakistan Sign Language"}, + new {Id = "pkt", Scope = "I", Type = "L", ReferenceName = "Maleng"}, + new {Id = "pku", Scope = "I", Type = "L", ReferenceName = "Paku"}, + new {Id = "pla", Scope = "I", Type = "L", ReferenceName = "Miani"}, + new {Id = "plb", Scope = "I", Type = "L", ReferenceName = "Polonombauk"}, + new {Id = "plc", Scope = "I", Type = "L", ReferenceName = "Central Palawano"}, + new {Id = "pld", Scope = "I", Type = "L", ReferenceName = "Polari"}, + new {Id = "ple", Scope = "I", Type = "L", ReferenceName = "Palu'e"}, + new {Id = "plg", Scope = "I", Type = "L", ReferenceName = "Pilagá"}, + new {Id = "plh", Scope = "I", Type = "L", ReferenceName = "Paulohi"}, + new + { + Id = "pli", + Part2B = "pli", + Part2T = "pli", + Part1 = "pi", + Scope = "I", + Type = "A", + ReferenceName = "Pali" + }, new {Id = "plj", Scope = "I", Type = "L", ReferenceName = "Polci"}, + new {Id = "plk", Scope = "I", Type = "L", ReferenceName = "Kohistani Shina"}, + new {Id = "pll", Scope = "I", Type = "L", ReferenceName = "Shwe Palaung"}, + new {Id = "pln", Scope = "I", Type = "L", ReferenceName = "Palenquero"}, + new {Id = "plo", Scope = "I", Type = "L", ReferenceName = "Oluta Popoluca"}, + new {Id = "plp", Scope = "I", Type = "L", ReferenceName = "Palpa"}, + new {Id = "plq", Scope = "I", Type = "A", ReferenceName = "Palaic"}, + new {Id = "plr", Scope = "I", Type = "L", ReferenceName = "Palaka Senoufo"}, + new + { + Id = "pls", + Scope = "I", + Type = "L", + ReferenceName = "San Marcos Tlacoyalco Popoloca" + }, new {Id = "plt", Scope = "I", Type = "L", ReferenceName = "Plateau Malagasy"}, + new {Id = "plu", Scope = "I", Type = "L", ReferenceName = "Palikúr"}, + new {Id = "plv", Scope = "I", Type = "L", ReferenceName = "Southwest Palawano"}, + new + { + Id = "plw", + Scope = "I", + Type = "L", + ReferenceName = "Brooke's Point Palawano" + }, + new {Id = "ply", Scope = "I", Type = "L", ReferenceName = "Bolyu"}, + new {Id = "plz", Scope = "I", Type = "L", ReferenceName = "Paluan"}, + new {Id = "pma", Scope = "I", Type = "L", ReferenceName = "Paama"}, + new {Id = "pmb", Scope = "I", Type = "L", ReferenceName = "Pambia"}, + new {Id = "pmd", Scope = "I", Type = "E", ReferenceName = "Pallanganmiddang"}, + new {Id = "pme", Scope = "I", Type = "L", ReferenceName = "Pwaamei"}, + new {Id = "pmf", Scope = "I", Type = "L", ReferenceName = "Pamona"}, + new {Id = "pmh", Scope = "I", Type = "H", ReferenceName = "Māhārāṣṭri Prākrit"}, + new {Id = "pmi", Scope = "I", Type = "L", ReferenceName = "Northern Pumi"}, + new {Id = "pmj", Scope = "I", Type = "L", ReferenceName = "Southern Pumi"}, + new {Id = "pmk", Scope = "I", Type = "E", ReferenceName = "Pamlico"}, + new {Id = "pml", Scope = "I", Type = "E", ReferenceName = "Lingua Franca"}, + new {Id = "pmm", Scope = "I", Type = "L", ReferenceName = "Pomo"}, + new {Id = "pmn", Scope = "I", Type = "L", ReferenceName = "Pam"}, + new {Id = "pmo", Scope = "I", Type = "L", ReferenceName = "Pom"}, + new {Id = "pmq", Scope = "I", Type = "L", ReferenceName = "Northern Pame"}, + new {Id = "pmr", Scope = "I", Type = "L", ReferenceName = "Paynamar"}, + new {Id = "pms", Scope = "I", Type = "L", ReferenceName = "Piemontese"}, + new {Id = "pmt", Scope = "I", Type = "L", ReferenceName = "Tuamotuan"}, + new {Id = "pmw", Scope = "I", Type = "L", ReferenceName = "Plains Miwok"}, + new {Id = "pmx", Scope = "I", Type = "L", ReferenceName = "Poumei Naga"}, + new {Id = "pmy", Scope = "I", Type = "L", ReferenceName = "Papuan Malay"}, + new {Id = "pmz", Scope = "I", Type = "E", ReferenceName = "Southern Pame"}, + new {Id = "pna", Scope = "I", Type = "L", ReferenceName = "Punan Bah-Biau"}, + new {Id = "pnb", Scope = "I", Type = "L", ReferenceName = "Western Panjabi"}, + new {Id = "pnc", Scope = "I", Type = "L", ReferenceName = "Pannei"}, + new {Id = "pnd", Scope = "I", Type = "L", ReferenceName = "Mpinda"}, + new {Id = "pne", Scope = "I", Type = "L", ReferenceName = "Western Penan"}, + new {Id = "png", Scope = "I", Type = "L", ReferenceName = "Pongu"}, + new {Id = "pnh", Scope = "I", Type = "L", ReferenceName = "Penrhyn"}, + new {Id = "pni", Scope = "I", Type = "L", ReferenceName = "Aoheng"}, + new {Id = "pnj", Scope = "I", Type = "E", ReferenceName = "Pinjarup"}, + new {Id = "pnk", Scope = "I", Type = "L", ReferenceName = "Paunaka"}, + new {Id = "pnl", Scope = "I", Type = "L", ReferenceName = "Paleni"}, + new {Id = "pnm", Scope = "I", Type = "L", ReferenceName = "Punan Batu 1"}, + new {Id = "pnn", Scope = "I", Type = "L", ReferenceName = "Pinai-Hagahai"}, + new {Id = "pno", Scope = "I", Type = "E", ReferenceName = "Panobo"}, + new {Id = "pnp", Scope = "I", Type = "L", ReferenceName = "Pancana"}, + new + { + Id = "pnq", + Scope = "I", + Type = "L", + ReferenceName = "Pana (Burkina Faso)" + }, + new {Id = "pnr", Scope = "I", Type = "L", ReferenceName = "Panim"}, + new {Id = "pns", Scope = "I", Type = "L", ReferenceName = "Ponosakan"}, + new {Id = "pnt", Scope = "I", Type = "L", ReferenceName = "Pontic"}, + new {Id = "pnu", Scope = "I", Type = "L", ReferenceName = "Jiongnai Bunu"}, + new {Id = "pnv", Scope = "I", Type = "L", ReferenceName = "Pinigura"}, + new {Id = "pnw", Scope = "I", Type = "L", ReferenceName = "Banyjima"}, + new {Id = "pnx", Scope = "I", Type = "L", ReferenceName = "Phong-Kniang"}, + new {Id = "pny", Scope = "I", Type = "L", ReferenceName = "Pinyin"}, + new + { + Id = "pnz", + Scope = "I", + Type = "L", + ReferenceName = "Pana (Central African Republic)" + }, new {Id = "poc", Scope = "I", Type = "L", ReferenceName = "Poqomam"}, + new + { + Id = "poe", + Scope = "I", + Type = "L", + ReferenceName = "San Juan Atzingo Popoloca" + }, + new {Id = "pof", Scope = "I", Type = "L", ReferenceName = "Poke"}, + new {Id = "pog", Scope = "I", Type = "E", ReferenceName = "Potiguára"}, + new {Id = "poh", Scope = "I", Type = "L", ReferenceName = "Poqomchi'"}, + new {Id = "poi", Scope = "I", Type = "L", ReferenceName = "Highland Popoluca"}, + new {Id = "pok", Scope = "I", Type = "L", ReferenceName = "Pokangá"}, + new + { + Id = "pol", + Part2B = "pol", + Part2T = "pol", + Part1 = "pl", + Scope = "I", + Type = "L", + ReferenceName = "Polish" + }, new {Id = "pom", Scope = "I", Type = "L", ReferenceName = "Southeastern Pomo"}, + new + { + Id = "pon", + Part2B = "pon", + Part2T = "pon", + Scope = "I", + Type = "L", + ReferenceName = "Pohnpeian" + }, new {Id = "poo", Scope = "I", Type = "E", ReferenceName = "Central Pomo"}, + new {Id = "pop", Scope = "I", Type = "L", ReferenceName = "Pwapwâ"}, + new {Id = "poq", Scope = "I", Type = "L", ReferenceName = "Texistepec Popoluca"}, + new + { + Id = "por", + Part2B = "por", + Part2T = "por", + Part1 = "pt", + Scope = "I", + Type = "L", + ReferenceName = "Portuguese" + }, new {Id = "pos", Scope = "I", Type = "L", ReferenceName = "Sayula Popoluca"}, + new {Id = "pot", Scope = "I", Type = "L", ReferenceName = "Potawatomi"}, + new {Id = "pov", Scope = "I", Type = "L", ReferenceName = "Upper Guinea Crioulo"}, + new + { + Id = "pow", + Scope = "I", + Type = "L", + ReferenceName = "San Felipe Otlaltepec Popoloca" + }, new {Id = "pox", Scope = "I", Type = "E", ReferenceName = "Polabian"}, + new {Id = "poy", Scope = "I", Type = "L", ReferenceName = "Pogolo"}, + new {Id = "ppe", Scope = "I", Type = "L", ReferenceName = "Papi"}, + new {Id = "ppi", Scope = "I", Type = "L", ReferenceName = "Paipai"}, + new {Id = "ppk", Scope = "I", Type = "L", ReferenceName = "Uma"}, + new {Id = "ppl", Scope = "I", Type = "L", ReferenceName = "Pipil"}, + new {Id = "ppm", Scope = "I", Type = "L", ReferenceName = "Papuma"}, + new {Id = "ppn", Scope = "I", Type = "L", ReferenceName = "Papapana"}, + new {Id = "ppo", Scope = "I", Type = "L", ReferenceName = "Folopa"}, + new {Id = "ppp", Scope = "I", Type = "L", ReferenceName = "Pelende"}, + new {Id = "ppq", Scope = "I", Type = "L", ReferenceName = "Pei"}, + new + { + Id = "pps", + Scope = "I", + Type = "L", + ReferenceName = "San Luís Temalacayuca Popoloca" + }, new {Id = "ppt", Scope = "I", Type = "L", ReferenceName = "Pare"}, + new {Id = "ppu", Scope = "I", Type = "E", ReferenceName = "Papora"}, + new {Id = "pqa", Scope = "I", Type = "L", ReferenceName = "Pa'a"}, + new + { + Id = "pqm", + Scope = "I", + Type = "L", + ReferenceName = "Malecite-Passamaquoddy" + }, + new {Id = "prc", Scope = "I", Type = "L", ReferenceName = "Parachi"}, + new {Id = "prd", Scope = "I", Type = "L", ReferenceName = "Parsi-Dari"}, + new {Id = "pre", Scope = "I", Type = "L", ReferenceName = "Principense"}, + new {Id = "prf", Scope = "I", Type = "L", ReferenceName = "Paranan"}, + new {Id = "prg", Scope = "I", Type = "L", ReferenceName = "Prussian"}, + new {Id = "prh", Scope = "I", Type = "L", ReferenceName = "Porohanon"}, + new {Id = "pri", Scope = "I", Type = "L", ReferenceName = "Paicî"}, + new {Id = "prk", Scope = "I", Type = "L", ReferenceName = "Parauk"}, + new + { + Id = "prl", + Scope = "I", + Type = "L", + ReferenceName = "Peruvian Sign Language" + }, + new {Id = "prm", Scope = "I", Type = "L", ReferenceName = "Kibiri"}, + new {Id = "prn", Scope = "I", Type = "L", ReferenceName = "Prasuni"}, + new + { + Id = "pro", + Part2B = "pro", + Part2T = "pro", + Scope = "I", + Type = "H", + ReferenceName = "Old Provençal (to 1500)" + }, new {Id = "prp", Scope = "I", Type = "L", ReferenceName = "Parsi"}, + new {Id = "prq", Scope = "I", Type = "L", ReferenceName = "Ashéninka Perené"}, + new {Id = "prr", Scope = "I", Type = "E", ReferenceName = "Puri"}, + new {Id = "prs", Scope = "I", Type = "L", ReferenceName = "Dari"}, + new {Id = "prt", Scope = "I", Type = "L", ReferenceName = "Phai"}, + new {Id = "pru", Scope = "I", Type = "L", ReferenceName = "Puragi"}, + new {Id = "prw", Scope = "I", Type = "L", ReferenceName = "Parawen"}, + new {Id = "prx", Scope = "I", Type = "L", ReferenceName = "Purik"}, + new + { + Id = "prz", + Scope = "I", + Type = "L", + ReferenceName = "Providencia Sign Language" + }, + new {Id = "psa", Scope = "I", Type = "L", ReferenceName = "Asue Awyu"}, + new {Id = "psc", Scope = "I", Type = "L", ReferenceName = "Persian Sign Language"}, + new + { + Id = "psd", + Scope = "I", + Type = "L", + ReferenceName = "Plains Indian Sign Language" + }, new {Id = "pse", Scope = "I", Type = "L", ReferenceName = "Central Malay"}, + new + { + Id = "psg", + Scope = "I", + Type = "L", + ReferenceName = "Penang Sign Language" + }, + new {Id = "psh", Scope = "I", Type = "L", ReferenceName = "Southwest Pashai"}, + new {Id = "psi", Scope = "I", Type = "L", ReferenceName = "Southeast Pashai"}, + new + { + Id = "psl", + Scope = "I", + Type = "L", + ReferenceName = "Puerto Rican Sign Language" + }, new {Id = "psm", Scope = "I", Type = "E", ReferenceName = "Pauserna"}, + new {Id = "psn", Scope = "I", Type = "L", ReferenceName = "Panasuan"}, + new + { + Id = "pso", + Scope = "I", + Type = "L", + ReferenceName = "Polish Sign Language" + }, + new + { + Id = "psp", + Scope = "I", + Type = "L", + ReferenceName = "Philippine Sign Language" + }, + new {Id = "psq", Scope = "I", Type = "L", ReferenceName = "Pasi"}, + new + { + Id = "psr", + Scope = "I", + Type = "L", + ReferenceName = "Portuguese Sign Language" + }, + new {Id = "pss", Scope = "I", Type = "L", ReferenceName = "Kaulong"}, + new {Id = "pst", Scope = "I", Type = "L", ReferenceName = "Central Pashto"}, + new {Id = "psu", Scope = "I", Type = "H", ReferenceName = "Sauraseni Prākrit"}, + new {Id = "psw", Scope = "I", Type = "L", ReferenceName = "Port Sandwich"}, + new {Id = "psy", Scope = "I", Type = "E", ReferenceName = "Piscataway"}, + new {Id = "pta", Scope = "I", Type = "L", ReferenceName = "Pai Tavytera"}, + new {Id = "pth", Scope = "I", Type = "E", ReferenceName = "Pataxó Hã-Ha-Hãe"}, + new {Id = "pti", Scope = "I", Type = "L", ReferenceName = "Pindiini"}, + new {Id = "ptn", Scope = "I", Type = "L", ReferenceName = "Patani"}, + new {Id = "pto", Scope = "I", Type = "L", ReferenceName = "Zo'é"}, + new {Id = "ptp", Scope = "I", Type = "L", ReferenceName = "Patep"}, + new {Id = "ptq", Scope = "I", Type = "L", ReferenceName = "Pattapu"}, + new {Id = "ptr", Scope = "I", Type = "L", ReferenceName = "Piamatsina"}, + new {Id = "ptt", Scope = "I", Type = "L", ReferenceName = "Enrekang"}, + new {Id = "ptu", Scope = "I", Type = "L", ReferenceName = "Bambam"}, + new {Id = "ptv", Scope = "I", Type = "L", ReferenceName = "Port Vato"}, + new {Id = "ptw", Scope = "I", Type = "E", ReferenceName = "Pentlatch"}, + new {Id = "pty", Scope = "I", Type = "L", ReferenceName = "Pathiya"}, + new + { + Id = "pua", + Scope = "I", + Type = "L", + ReferenceName = "Western Highland Purepecha" + }, new {Id = "pub", Scope = "I", Type = "L", ReferenceName = "Purum"}, + new {Id = "puc", Scope = "I", Type = "L", ReferenceName = "Punan Merap"}, + new {Id = "pud", Scope = "I", Type = "L", ReferenceName = "Punan Aput"}, + new {Id = "pue", Scope = "I", Type = "E", ReferenceName = "Puelche"}, + new {Id = "puf", Scope = "I", Type = "L", ReferenceName = "Punan Merah"}, + new {Id = "pug", Scope = "I", Type = "L", ReferenceName = "Phuie"}, + new {Id = "pui", Scope = "I", Type = "L", ReferenceName = "Puinave"}, + new {Id = "puj", Scope = "I", Type = "L", ReferenceName = "Punan Tubu"}, + new {Id = "pum", Scope = "I", Type = "L", ReferenceName = "Puma"}, + new {Id = "puo", Scope = "I", Type = "L", ReferenceName = "Puoc"}, + new {Id = "pup", Scope = "I", Type = "L", ReferenceName = "Pulabu"}, + new {Id = "puq", Scope = "I", Type = "E", ReferenceName = "Puquina"}, + new {Id = "pur", Scope = "I", Type = "L", ReferenceName = "Puruborá"}, + new + { + Id = "pus", + Part2B = "pus", + Part2T = "pus", + Part1 = "ps", + Scope = "M", + Type = "L", + ReferenceName = "Pushto" + }, new {Id = "put", Scope = "I", Type = "L", ReferenceName = "Putoh"}, + new {Id = "puu", Scope = "I", Type = "L", ReferenceName = "Punu"}, + new {Id = "puw", Scope = "I", Type = "L", ReferenceName = "Puluwatese"}, + new {Id = "pux", Scope = "I", Type = "L", ReferenceName = "Puare"}, + new {Id = "puy", Scope = "I", Type = "E", ReferenceName = "Purisimeño"}, + new {Id = "pwa", Scope = "I", Type = "L", ReferenceName = "Pawaia"}, + new {Id = "pwb", Scope = "I", Type = "L", ReferenceName = "Panawa"}, + new {Id = "pwg", Scope = "I", Type = "L", ReferenceName = "Gapapaiwa"}, + new {Id = "pwi", Scope = "I", Type = "E", ReferenceName = "Patwin"}, + new {Id = "pwm", Scope = "I", Type = "L", ReferenceName = "Molbog"}, + new {Id = "pwn", Scope = "I", Type = "L", ReferenceName = "Paiwan"}, + new {Id = "pwo", Scope = "I", Type = "L", ReferenceName = "Pwo Western Karen"}, + new {Id = "pwr", Scope = "I", Type = "L", ReferenceName = "Powari"}, + new {Id = "pww", Scope = "I", Type = "L", ReferenceName = "Pwo Northern Karen"}, + new {Id = "pxm", Scope = "I", Type = "L", ReferenceName = "Quetzaltepec Mixe"}, + new {Id = "pye", Scope = "I", Type = "L", ReferenceName = "Pye Krumen"}, + new {Id = "pym", Scope = "I", Type = "L", ReferenceName = "Fyam"}, + new {Id = "pyn", Scope = "I", Type = "L", ReferenceName = "Poyanáwa"}, + new + { + Id = "pys", + Scope = "I", + Type = "L", + ReferenceName = "Paraguayan Sign Language" + }, + new {Id = "pyu", Scope = "I", Type = "L", ReferenceName = "Puyuma"}, + new {Id = "pyx", Scope = "I", Type = "A", ReferenceName = "Pyu (Myanmar)"}, + new {Id = "pyy", Scope = "I", Type = "L", ReferenceName = "Pyen"}, + new {Id = "pzn", Scope = "I", Type = "L", ReferenceName = "Para Naga"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/Q.cs b/Cicm.Database/Seeders/Iso639Split/Q.cs new file mode 100644 index 00000000..97fadd9a --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/Q.cs @@ -0,0 +1,142 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class Q + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "qua", Scope = "I", Type = "L", ReferenceName = "Quapaw"}, + new {Id = "qub", Scope = "I", Type = "L", ReferenceName = "Huallaga Huánuco Quechua"}, + new {Id = "quc", Scope = "I", Type = "L", ReferenceName = "K'iche'"}, + new {Id = "qud", Scope = "I", Type = "L", ReferenceName = "Calderón Highland Quichua"}, + new + { + Id = "que", + Part2B = "que", + Part2T = "que", + Part1 = "qu", + Scope = "M", + Type = "L", + ReferenceName = "Quechua" + }, new {Id = "quf", Scope = "I", Type = "L", ReferenceName = "Lambayeque Quechua"}, + new + { + Id = "qug", + Scope = "I", + Type = "L", + ReferenceName = "Chimborazo Highland Quichua" + }, + new {Id = "quh", Scope = "I", Type = "L", ReferenceName = "South Bolivian Quechua"}, + new {Id = "qui", Scope = "I", Type = "L", ReferenceName = "Quileute"}, + new {Id = "quk", Scope = "I", Type = "L", ReferenceName = "Chachapoyas Quechua"}, + new {Id = "qul", Scope = "I", Type = "L", ReferenceName = "North Bolivian Quechua"}, + new {Id = "qum", Scope = "I", Type = "L", ReferenceName = "Sipacapense"}, + new {Id = "qun", Scope = "I", Type = "E", ReferenceName = "Quinault"}, + new {Id = "qup", Scope = "I", Type = "L", ReferenceName = "Southern Pastaza Quechua"}, + new {Id = "quq", Scope = "I", Type = "L", ReferenceName = "Quinqui"}, + new {Id = "qur", Scope = "I", Type = "L", ReferenceName = "Yanahuanca Pasco Quechua"}, + new + { + Id = "qus", + Scope = "I", + Type = "L", + ReferenceName = "Santiago del Estero Quichua" + }, new {Id = "quv", Scope = "I", Type = "L", ReferenceName = "Sacapulteco"}, + new + { + Id = "quw", + Scope = "I", + Type = "L", + ReferenceName = "Tena Lowland Quichua" + }, + new {Id = "qux", Scope = "I", Type = "L", ReferenceName = "Yauyos Quechua"}, + new {Id = "quy", Scope = "I", Type = "L", ReferenceName = "Ayacucho Quechua"}, + new {Id = "quz", Scope = "I", Type = "L", ReferenceName = "Cusco Quechua"}, + new {Id = "qva", Scope = "I", Type = "L", ReferenceName = "Ambo-Pasco Quechua"}, + new {Id = "qvc", Scope = "I", Type = "L", ReferenceName = "Cajamarca Quechua"}, + new + { + Id = "qve", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Apurímac Quechua" + }, + new + { + Id = "qvh", + Scope = "I", + Type = "L", + ReferenceName = "Huamalíes-Dos de Mayo Huánuco Quechua" + }, + new {Id = "qvi", Scope = "I", Type = "L", ReferenceName = "Imbabura Highland Quichua"}, + new {Id = "qvj", Scope = "I", Type = "L", ReferenceName = "Loja Highland Quichua"}, + new + { + Id = "qvl", + Scope = "I", + Type = "L", + ReferenceName = "Cajatambo North Lima Quechua" + }, + new + { + Id = "qvm", + Scope = "I", + Type = "L", + ReferenceName = "Margos-Yarowilca-Lauricocha Quechua" + }, + new {Id = "qvn", Scope = "I", Type = "L", ReferenceName = "North Junín Quechua"}, + new {Id = "qvo", Scope = "I", Type = "L", ReferenceName = "Napo Lowland Quechua"}, + new {Id = "qvp", Scope = "I", Type = "L", ReferenceName = "Pacaraos Quechua"}, + new {Id = "qvs", Scope = "I", Type = "L", ReferenceName = "San Martín Quechua"}, + new {Id = "qvw", Scope = "I", Type = "L", ReferenceName = "Huaylla Wanca Quechua"}, + new {Id = "qvy", Scope = "I", Type = "L", ReferenceName = "Queyu"}, + new {Id = "qvz", Scope = "I", Type = "L", ReferenceName = "Northern Pastaza Quichua"}, + new {Id = "qwa", Scope = "I", Type = "L", ReferenceName = "Corongo Ancash Quechua"}, + new {Id = "qwc", Scope = "I", Type = "H", ReferenceName = "Classical Quechua"}, + new {Id = "qwh", Scope = "I", Type = "L", ReferenceName = "Huaylas Ancash Quechua"}, + new {Id = "qwm", Scope = "I", Type = "E", ReferenceName = "Kuman (Russia)"}, + new {Id = "qws", Scope = "I", Type = "L", ReferenceName = "Sihuas Ancash Quechua"}, + new {Id = "qwt", Scope = "I", Type = "E", ReferenceName = "Kwalhioqua-Tlatskanai"}, + new {Id = "qxa", Scope = "I", Type = "L", ReferenceName = "Chiquián Ancash Quechua"}, + new {Id = "qxc", Scope = "I", Type = "L", ReferenceName = "Chincha Quechua"}, + new {Id = "qxh", Scope = "I", Type = "L", ReferenceName = "Panao Huánuco Quechua"}, + new {Id = "qxl", Scope = "I", Type = "L", ReferenceName = "Salasaca Highland Quichua"}, + new + { + Id = "qxn", + Scope = "I", + Type = "L", + ReferenceName = "Northern Conchucos Ancash Quechua" + }, + new + { + Id = "qxo", + Scope = "I", + Type = "L", + ReferenceName = "Southern Conchucos Ancash Quechua" + }, new {Id = "qxp", Scope = "I", Type = "L", ReferenceName = "Puno Quechua"}, + new {Id = "qxq", Scope = "I", Type = "L", ReferenceName = "Qashqa'i"}, + new + { + Id = "qxr", + Scope = "I", + Type = "L", + ReferenceName = "Cañar Highland Quichua" + }, + new {Id = "qxs", Scope = "I", Type = "L", ReferenceName = "Southern Qiang"}, + new + { + Id = "qxt", + Scope = "I", + Type = "L", + ReferenceName = "Santa Ana de Tusi Pasco Quechua" + }, + new {Id = "qxu", Scope = "I", Type = "L", ReferenceName = "Arequipa-La Unión Quechua"}, + new {Id = "qxw", Scope = "I", Type = "L", ReferenceName = "Jauja Wanca Quechua"}, + new {Id = "qya", Scope = "I", Type = "C", ReferenceName = "Quenya"}, + new {Id = "qyp", Scope = "I", Type = "E", ReferenceName = "Quiripi"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/R.cs b/Cicm.Database/Seeders/Iso639Split/R.cs new file mode 100644 index 00000000..3bb7a682 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/R.cs @@ -0,0 +1,243 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class R + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "raa", Scope = "I", Type = "L", ReferenceName = "Dungmali"}, + new {Id = "rab", Scope = "I", Type = "L", ReferenceName = "Camling"}, + new {Id = "rac", Scope = "I", Type = "L", ReferenceName = "Rasawa"}, + new {Id = "rad", Scope = "I", Type = "L", ReferenceName = "Rade"}, + new {Id = "raf", Scope = "I", Type = "L", ReferenceName = "Western Meohang"}, + new {Id = "rag", Scope = "I", Type = "L", ReferenceName = "Logooli"}, + new {Id = "rah", Scope = "I", Type = "L", ReferenceName = "Rabha"}, + new {Id = "rai", Scope = "I", Type = "L", ReferenceName = "Ramoaaina"}, + new + { + Id = "raj", + Part2B = "raj", + Part2T = "raj", + Scope = "M", + Type = "L", + ReferenceName = "Rajasthani" + }, new {Id = "rak", Scope = "I", Type = "L", ReferenceName = "Tulu-Bohuai"}, + new {Id = "ral", Scope = "I", Type = "L", ReferenceName = "Ralte"}, + new {Id = "ram", Scope = "I", Type = "L", ReferenceName = "Canela"}, + new {Id = "ran", Scope = "I", Type = "L", ReferenceName = "Riantana"}, + new {Id = "rao", Scope = "I", Type = "L", ReferenceName = "Rao"}, + new + { + Id = "rap", + Part2B = "rap", + Part2T = "rap", + Scope = "I", + Type = "L", + ReferenceName = "Rapanui" + }, new {Id = "raq", Scope = "I", Type = "L", ReferenceName = "Saam"}, + new + { + Id = "rar", + Part2B = "rar", + Part2T = "rar", + Scope = "I", + Type = "L", + ReferenceName = "Rarotongan" + }, new {Id = "ras", Scope = "I", Type = "L", ReferenceName = "Tegali"}, + new {Id = "rat", Scope = "I", Type = "L", ReferenceName = "Razajerdi"}, + new {Id = "rau", Scope = "I", Type = "L", ReferenceName = "Raute"}, + new {Id = "rav", Scope = "I", Type = "L", ReferenceName = "Sampang"}, + new {Id = "raw", Scope = "I", Type = "L", ReferenceName = "Rawang"}, + new {Id = "rax", Scope = "I", Type = "L", ReferenceName = "Rang"}, + new {Id = "ray", Scope = "I", Type = "L", ReferenceName = "Rapa"}, + new {Id = "raz", Scope = "I", Type = "L", ReferenceName = "Rahambuu"}, + new {Id = "rbb", Scope = "I", Type = "L", ReferenceName = "Rumai Palaung"}, + new {Id = "rbk", Scope = "I", Type = "L", ReferenceName = "Northern Bontok"}, + new {Id = "rbl", Scope = "I", Type = "L", ReferenceName = "Miraya Bikol"}, + new {Id = "rbp", Scope = "I", Type = "E", ReferenceName = "Barababaraba"}, + new {Id = "rcf", Scope = "I", Type = "L", ReferenceName = "Réunion Creole French"}, + new {Id = "rdb", Scope = "I", Type = "L", ReferenceName = "Rudbari"}, + new {Id = "rea", Scope = "I", Type = "L", ReferenceName = "Rerau"}, + new {Id = "reb", Scope = "I", Type = "L", ReferenceName = "Rembong"}, + new {Id = "ree", Scope = "I", Type = "L", ReferenceName = "Rejang Kayan"}, + new {Id = "reg", Scope = "I", Type = "L", ReferenceName = "Kara (Tanzania)"}, + new {Id = "rei", Scope = "I", Type = "L", ReferenceName = "Reli"}, + new {Id = "rej", Scope = "I", Type = "L", ReferenceName = "Rejang"}, + new {Id = "rel", Scope = "I", Type = "L", ReferenceName = "Rendille"}, + new {Id = "rem", Scope = "I", Type = "E", ReferenceName = "Remo"}, + new {Id = "ren", Scope = "I", Type = "L", ReferenceName = "Rengao"}, + new {Id = "rer", Scope = "I", Type = "E", ReferenceName = "Rer Bare"}, + new {Id = "res", Scope = "I", Type = "L", ReferenceName = "Reshe"}, + new {Id = "ret", Scope = "I", Type = "L", ReferenceName = "Retta"}, + new {Id = "rey", Scope = "I", Type = "L", ReferenceName = "Reyesano"}, + new {Id = "rga", Scope = "I", Type = "L", ReferenceName = "Roria"}, + new {Id = "rge", Scope = "I", Type = "L", ReferenceName = "Romano-Greek"}, + new {Id = "rgk", Scope = "I", Type = "E", ReferenceName = "Rangkas"}, + new {Id = "rgn", Scope = "I", Type = "L", ReferenceName = "Romagnol"}, + new {Id = "rgr", Scope = "I", Type = "L", ReferenceName = "Resígaro"}, + new {Id = "rgs", Scope = "I", Type = "L", ReferenceName = "Southern Roglai"}, + new {Id = "rgu", Scope = "I", Type = "L", ReferenceName = "Ringgou"}, + new {Id = "rhg", Scope = "I", Type = "L", ReferenceName = "Rohingya"}, + new {Id = "rhp", Scope = "I", Type = "L", ReferenceName = "Yahang"}, + new {Id = "ria", Scope = "I", Type = "L", ReferenceName = "Riang (India)"}, + new {Id = "rif", Scope = "I", Type = "L", ReferenceName = "Tarifit"}, + new {Id = "ril", Scope = "I", Type = "L", ReferenceName = "Riang Lang"}, + new {Id = "rim", Scope = "I", Type = "L", ReferenceName = "Nyaturu"}, + new {Id = "rin", Scope = "I", Type = "L", ReferenceName = "Nungu"}, + new {Id = "rir", Scope = "I", Type = "L", ReferenceName = "Ribun"}, + new {Id = "rit", Scope = "I", Type = "L", ReferenceName = "Ritharrngu"}, + new {Id = "riu", Scope = "I", Type = "L", ReferenceName = "Riung"}, + new {Id = "rjg", Scope = "I", Type = "L", ReferenceName = "Rajong"}, + new {Id = "rji", Scope = "I", Type = "L", ReferenceName = "Raji"}, + new {Id = "rjs", Scope = "I", Type = "L", ReferenceName = "Rajbanshi"}, + new {Id = "rka", Scope = "I", Type = "L", ReferenceName = "Kraol"}, + new {Id = "rkb", Scope = "I", Type = "L", ReferenceName = "Rikbaktsa"}, + new {Id = "rkh", Scope = "I", Type = "L", ReferenceName = "Rakahanga-Manihiki"}, + new {Id = "rki", Scope = "I", Type = "L", ReferenceName = "Rakhine"}, + new {Id = "rkm", Scope = "I", Type = "L", ReferenceName = "Marka"}, + new {Id = "rkt", Scope = "I", Type = "L", ReferenceName = "Rangpuri"}, + new {Id = "rkw", Scope = "I", Type = "E", ReferenceName = "Arakwal"}, + new {Id = "rma", Scope = "I", Type = "L", ReferenceName = "Rama"}, + new {Id = "rmb", Scope = "I", Type = "L", ReferenceName = "Rembarrnga"}, + new {Id = "rmc", Scope = "I", Type = "L", ReferenceName = "Carpathian Romani"}, + new {Id = "rmd", Scope = "I", Type = "E", ReferenceName = "Traveller Danish"}, + new {Id = "rme", Scope = "I", Type = "L", ReferenceName = "Angloromani"}, + new {Id = "rmf", Scope = "I", Type = "L", ReferenceName = "Kalo Finnish Romani"}, + new {Id = "rmg", Scope = "I", Type = "L", ReferenceName = "Traveller Norwegian"}, + new {Id = "rmh", Scope = "I", Type = "L", ReferenceName = "Murkim"}, + new {Id = "rmi", Scope = "I", Type = "L", ReferenceName = "Lomavren"}, + new {Id = "rmk", Scope = "I", Type = "L", ReferenceName = "Romkun"}, + new {Id = "rml", Scope = "I", Type = "L", ReferenceName = "Baltic Romani"}, + new {Id = "rmm", Scope = "I", Type = "L", ReferenceName = "Roma"}, + new {Id = "rmn", Scope = "I", Type = "L", ReferenceName = "Balkan Romani"}, + new {Id = "rmo", Scope = "I", Type = "L", ReferenceName = "Sinte Romani"}, + new {Id = "rmp", Scope = "I", Type = "L", ReferenceName = "Rempi"}, + new {Id = "rmq", Scope = "I", Type = "L", ReferenceName = "Caló"}, + new {Id = "rms", Scope = "I", Type = "L", ReferenceName = "Romanian Sign Language"}, + new {Id = "rmt", Scope = "I", Type = "L", ReferenceName = "Domari"}, + new {Id = "rmu", Scope = "I", Type = "L", ReferenceName = "Tavringer Romani"}, + new {Id = "rmv", Scope = "I", Type = "C", ReferenceName = "Romanova"}, + new {Id = "rmw", Scope = "I", Type = "L", ReferenceName = "Welsh Romani"}, + new {Id = "rmx", Scope = "I", Type = "L", ReferenceName = "Romam"}, + new {Id = "rmy", Scope = "I", Type = "L", ReferenceName = "Vlax Romani"}, + new {Id = "rmz", Scope = "I", Type = "L", ReferenceName = "Marma"}, + new {Id = "rnd", Scope = "I", Type = "L", ReferenceName = "Ruund"}, + new {Id = "rng", Scope = "I", Type = "L", ReferenceName = "Ronga"}, + new {Id = "rnl", Scope = "I", Type = "L", ReferenceName = "Ranglong"}, + new {Id = "rnn", Scope = "I", Type = "L", ReferenceName = "Roon"}, + new {Id = "rnp", Scope = "I", Type = "L", ReferenceName = "Rongpo"}, + new {Id = "rnr", Scope = "I", Type = "E", ReferenceName = "Nari Nari"}, + new {Id = "rnw", Scope = "I", Type = "L", ReferenceName = "Rungwa"}, + new {Id = "rob", Scope = "I", Type = "L", ReferenceName = "Tae'"}, + new {Id = "roc", Scope = "I", Type = "L", ReferenceName = "Cacgia Roglai"}, + new {Id = "rod", Scope = "I", Type = "L", ReferenceName = "Rogo"}, + new {Id = "roe", Scope = "I", Type = "L", ReferenceName = "Ronji"}, + new {Id = "rof", Scope = "I", Type = "L", ReferenceName = "Rombo"}, + new {Id = "rog", Scope = "I", Type = "L", ReferenceName = "Northern Roglai"}, + new + { + Id = "roh", + Part2B = "roh", + Part2T = "roh", + Part1 = "rm", + Scope = "I", + Type = "L", + ReferenceName = "Romansh" + }, new {Id = "rol", Scope = "I", Type = "L", ReferenceName = "Romblomanon"}, + new + { + Id = "rom", + Part2B = "rom", + Part2T = "rom", + Scope = "M", + Type = "L", + ReferenceName = "Romany" + }, new + { + Id = "ron", + Part2B = "rum", + Part2T = "ron", + Part1 = "ro", + Scope = "I", + Type = "L", + ReferenceName = "Romanian" + }, new {Id = "roo", Scope = "I", Type = "L", ReferenceName = "Rotokas"}, + new {Id = "rop", Scope = "I", Type = "L", ReferenceName = "Kriol"}, + new {Id = "ror", Scope = "I", Type = "L", ReferenceName = "Rongga"}, + new {Id = "rou", Scope = "I", Type = "L", ReferenceName = "Runga"}, + new {Id = "row", Scope = "I", Type = "L", ReferenceName = "Dela-Oenale"}, + new {Id = "rpn", Scope = "I", Type = "L", ReferenceName = "Repanbitip"}, + new {Id = "rpt", Scope = "I", Type = "L", ReferenceName = "Rapting"}, + new {Id = "rri", Scope = "I", Type = "L", ReferenceName = "Ririo"}, + new {Id = "rro", Scope = "I", Type = "L", ReferenceName = "Waima"}, + new {Id = "rrt", Scope = "I", Type = "E", ReferenceName = "Arritinngithigh"}, + new {Id = "rsb", Scope = "I", Type = "L", ReferenceName = "Romano-Serbian"}, + new {Id = "rsl", Scope = "I", Type = "L", ReferenceName = "Russian Sign Language"}, + new + { + Id = "rsm", + Scope = "I", + Type = "L", + ReferenceName = "Miriwoong Sign Language" + }, + new {Id = "rtc", Scope = "I", Type = "L", ReferenceName = "Rungtu Chin"}, + new {Id = "rth", Scope = "I", Type = "L", ReferenceName = "Ratahan"}, + new {Id = "rtm", Scope = "I", Type = "L", ReferenceName = "Rotuman"}, + new {Id = "rts", Scope = "I", Type = "E", ReferenceName = "Yurats"}, + new {Id = "rtw", Scope = "I", Type = "L", ReferenceName = "Rathawi"}, + new {Id = "rub", Scope = "I", Type = "L", ReferenceName = "Gungu"}, + new {Id = "ruc", Scope = "I", Type = "L", ReferenceName = "Ruuli"}, + new {Id = "rue", Scope = "I", Type = "L", ReferenceName = "Rusyn"}, + new {Id = "ruf", Scope = "I", Type = "L", ReferenceName = "Luguru"}, + new {Id = "rug", Scope = "I", Type = "L", ReferenceName = "Roviana"}, + new {Id = "ruh", Scope = "I", Type = "L", ReferenceName = "Ruga"}, + new {Id = "rui", Scope = "I", Type = "L", ReferenceName = "Rufiji"}, + new {Id = "ruk", Scope = "I", Type = "L", ReferenceName = "Che"}, + new + { + Id = "run", + Part2B = "run", + Part2T = "run", + Part1 = "rn", + Scope = "I", + Type = "L", + ReferenceName = "Rundi" + }, new {Id = "ruo", Scope = "I", Type = "L", ReferenceName = "Istro Romanian"}, + new + { + Id = "rup", + Part2B = "rup", + Part2T = "rup", + Scope = "I", + Type = "L", + ReferenceName = "Macedo-Romanian" + }, new {Id = "ruq", Scope = "I", Type = "L", ReferenceName = "Megleno Romanian"}, + new + { + Id = "rus", + Part2B = "rus", + Part2T = "rus", + Part1 = "ru", + Scope = "I", + Type = "L", + ReferenceName = "Russian" + }, new {Id = "rut", Scope = "I", Type = "L", ReferenceName = "Rutul"}, + new {Id = "ruu", Scope = "I", Type = "L", ReferenceName = "Lanas Lobu"}, + new {Id = "ruy", Scope = "I", Type = "L", ReferenceName = "Mala (Nigeria)"}, + new {Id = "ruz", Scope = "I", Type = "L", ReferenceName = "Ruma"}, + new {Id = "rwa", Scope = "I", Type = "L", ReferenceName = "Rawo"}, + new {Id = "rwk", Scope = "I", Type = "L", ReferenceName = "Rwa"}, + new {Id = "rwm", Scope = "I", Type = "L", ReferenceName = "Amba (Uganda)"}, + new {Id = "rwo", Scope = "I", Type = "L", ReferenceName = "Rawa"}, + new {Id = "rwr", Scope = "I", Type = "L", ReferenceName = "Marwari (India)"}, + new {Id = "rxd", Scope = "I", Type = "L", ReferenceName = "Ngardi"}, + new {Id = "rxw", Scope = "I", Type = "E", ReferenceName = "Karuwali"}, + new {Id = "ryn", Scope = "I", Type = "L", ReferenceName = "Northern Amami-Oshima"}, + new {Id = "rys", Scope = "I", Type = "L", ReferenceName = "Yaeyama"}, + new {Id = "ryu", Scope = "I", Type = "L", ReferenceName = "Central Okinawan"}, + new {Id = "rzh", Scope = "I", Type = "L", ReferenceName = "Rāziḥī"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/S.cs b/Cicm.Database/Seeders/Iso639Split/S.cs new file mode 100644 index 00000000..ec68c29b --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/S.cs @@ -0,0 +1,992 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class S + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "saa", Scope = "I", Type = "L", ReferenceName = "Saba"}, + new {Id = "sab", Scope = "I", Type = "L", ReferenceName = "Buglere"}, + new {Id = "sac", Scope = "I", Type = "L", ReferenceName = "Meskwaki"}, + new + { + Id = "sad", + Part2B = "sad", + Part2T = "sad", + Scope = "I", + Type = "L", + ReferenceName = "Sandawe" + }, new {Id = "sae", Scope = "I", Type = "L", ReferenceName = "Sabanê"}, + new {Id = "saf", Scope = "I", Type = "L", ReferenceName = "Safaliba"}, + new + { + Id = "sag", + Part2B = "sag", + Part2T = "sag", + Part1 = "sg", + Scope = "I", + Type = "L", + ReferenceName = "Sango" + }, new + { + Id = "sah", + Part2B = "sah", + Part2T = "sah", + Scope = "I", + Type = "L", + ReferenceName = "Yakut" + }, new {Id = "saj", Scope = "I", Type = "L", ReferenceName = "Sahu"}, + new {Id = "sak", Scope = "I", Type = "L", ReferenceName = "Sake"}, + new + { + Id = "sam", + Part2B = "sam", + Part2T = "sam", + Scope = "I", + Type = "E", + ReferenceName = "Samaritan Aramaic" + }, new + { + Id = "san", + Part2B = "san", + Part2T = "san", + Part1 = "sa", + Scope = "I", + Type = "A", + ReferenceName = "Sanskrit" + }, new {Id = "sao", Scope = "I", Type = "L", ReferenceName = "Sause"}, + new {Id = "saq", Scope = "I", Type = "L", ReferenceName = "Samburu"}, + new {Id = "sar", Scope = "I", Type = "E", ReferenceName = "Saraveca"}, + new + { + Id = "sas", + Part2B = "sas", + Part2T = "sas", + Scope = "I", + Type = "L", + ReferenceName = "Sasak" + }, new + { + Id = "sat", + Part2B = "sat", + Part2T = "sat", + Scope = "I", + Type = "L", + ReferenceName = "Santali" + }, new {Id = "sau", Scope = "I", Type = "L", ReferenceName = "Saleman"}, + new {Id = "sav", Scope = "I", Type = "L", ReferenceName = "Saafi-Saafi"}, + new {Id = "saw", Scope = "I", Type = "L", ReferenceName = "Sawi"}, + new {Id = "sax", Scope = "I", Type = "L", ReferenceName = "Sa"}, + new {Id = "say", Scope = "I", Type = "L", ReferenceName = "Saya"}, + new {Id = "saz", Scope = "I", Type = "L", ReferenceName = "Saurashtra"}, + new {Id = "sba", Scope = "I", Type = "L", ReferenceName = "Ngambay"}, + new {Id = "sbb", Scope = "I", Type = "L", ReferenceName = "Simbo"}, + new + { + Id = "sbc", + Scope = "I", + Type = "L", + ReferenceName = "Kele (Papua New Guinea)" + }, + new {Id = "sbd", Scope = "I", Type = "L", ReferenceName = "Southern Samo"}, + new {Id = "sbe", Scope = "I", Type = "L", ReferenceName = "Saliba"}, + new {Id = "sbf", Scope = "I", Type = "L", ReferenceName = "Chabu"}, + new {Id = "sbg", Scope = "I", Type = "L", ReferenceName = "Seget"}, + new {Id = "sbh", Scope = "I", Type = "L", ReferenceName = "Sori-Harengan"}, + new {Id = "sbi", Scope = "I", Type = "L", ReferenceName = "Seti"}, + new {Id = "sbj", Scope = "I", Type = "L", ReferenceName = "Surbakhal"}, + new {Id = "sbk", Scope = "I", Type = "L", ReferenceName = "Safwa"}, + new {Id = "sbl", Scope = "I", Type = "L", ReferenceName = "Botolan Sambal"}, + new {Id = "sbm", Scope = "I", Type = "L", ReferenceName = "Sagala"}, + new {Id = "sbn", Scope = "I", Type = "L", ReferenceName = "Sindhi Bhil"}, + new {Id = "sbo", Scope = "I", Type = "L", ReferenceName = "Sabüm"}, + new {Id = "sbp", Scope = "I", Type = "L", ReferenceName = "Sangu (Tanzania)"}, + new {Id = "sbq", Scope = "I", Type = "L", ReferenceName = "Sileibi"}, + new {Id = "sbr", Scope = "I", Type = "L", ReferenceName = "Sembakung Murut"}, + new {Id = "sbs", Scope = "I", Type = "L", ReferenceName = "Subiya"}, + new {Id = "sbt", Scope = "I", Type = "L", ReferenceName = "Kimki"}, + new {Id = "sbu", Scope = "I", Type = "L", ReferenceName = "Stod Bhoti"}, + new {Id = "sbv", Scope = "I", Type = "A", ReferenceName = "Sabine"}, + new {Id = "sbw", Scope = "I", Type = "L", ReferenceName = "Simba"}, + new {Id = "sbx", Scope = "I", Type = "L", ReferenceName = "Seberuang"}, + new {Id = "sby", Scope = "I", Type = "L", ReferenceName = "Soli"}, + new {Id = "sbz", Scope = "I", Type = "L", ReferenceName = "Sara Kaba"}, + new {Id = "scb", Scope = "I", Type = "L", ReferenceName = "Chut"}, + new {Id = "sce", Scope = "I", Type = "L", ReferenceName = "Dongxiang"}, + new + { + Id = "scf", + Scope = "I", + Type = "L", + ReferenceName = "San Miguel Creole French" + }, + new {Id = "scg", Scope = "I", Type = "L", ReferenceName = "Sanggau"}, + new {Id = "sch", Scope = "I", Type = "L", ReferenceName = "Sakachep"}, + new + { + Id = "sci", + Scope = "I", + Type = "L", + ReferenceName = "Sri Lankan Creole Malay" + }, + new {Id = "sck", Scope = "I", Type = "L", ReferenceName = "Sadri"}, + new {Id = "scl", Scope = "I", Type = "L", ReferenceName = "Shina"}, + new + { + Id = "scn", + Part2B = "scn", + Part2T = "scn", + Scope = "I", + Type = "L", + ReferenceName = "Sicilian" + }, new + { + Id = "sco", + Part2B = "sco", + Part2T = "sco", + Scope = "I", + Type = "L", + ReferenceName = "Scots" + }, new {Id = "scp", Scope = "I", Type = "L", ReferenceName = "Hyolmo"}, + new {Id = "scq", Scope = "I", Type = "L", ReferenceName = "Sa'och"}, + new {Id = "scs", Scope = "I", Type = "L", ReferenceName = "North Slavey"}, + new {Id = "sct", Scope = "I", Type = "L", ReferenceName = "Southern Katang"}, + new {Id = "scu", Scope = "I", Type = "L", ReferenceName = "Shumcho"}, + new {Id = "scv", Scope = "I", Type = "L", ReferenceName = "Sheni"}, + new {Id = "scw", Scope = "I", Type = "L", ReferenceName = "Sha"}, + new {Id = "scx", Scope = "I", Type = "A", ReferenceName = "Sicel"}, + new {Id = "sda", Scope = "I", Type = "L", ReferenceName = "Toraja-Sa'dan"}, + new {Id = "sdb", Scope = "I", Type = "L", ReferenceName = "Shabak"}, + new {Id = "sdc", Scope = "I", Type = "L", ReferenceName = "Sassarese Sardinian"}, + new {Id = "sde", Scope = "I", Type = "L", ReferenceName = "Surubu"}, + new {Id = "sdf", Scope = "I", Type = "L", ReferenceName = "Sarli"}, + new {Id = "sdg", Scope = "I", Type = "L", ReferenceName = "Savi"}, + new {Id = "sdh", Scope = "I", Type = "L", ReferenceName = "Southern Kurdish"}, + new {Id = "sdj", Scope = "I", Type = "L", ReferenceName = "Suundi"}, + new {Id = "sdk", Scope = "I", Type = "L", ReferenceName = "Sos Kundi"}, + new + { + Id = "sdl", + Scope = "I", + Type = "L", + ReferenceName = "Saudi Arabian Sign Language" + }, new {Id = "sdm", Scope = "I", Type = "L", ReferenceName = "Semandang"}, + new + { + Id = "sdn", + Scope = "I", + Type = "L", + ReferenceName = "Gallurese Sardinian" + }, + new + { + Id = "sdo", + Scope = "I", + Type = "L", + ReferenceName = "Bukar-Sadung Bidayuh" + }, + new {Id = "sdp", Scope = "I", Type = "L", ReferenceName = "Sherdukpen"}, + new {Id = "sdr", Scope = "I", Type = "L", ReferenceName = "Oraon Sadri"}, + new {Id = "sds", Scope = "I", Type = "E", ReferenceName = "Sened"}, + new {Id = "sdt", Scope = "I", Type = "E", ReferenceName = "Shuadit"}, + new {Id = "sdu", Scope = "I", Type = "L", ReferenceName = "Sarudu"}, + new {Id = "sdx", Scope = "I", Type = "L", ReferenceName = "Sibu Melanau"}, + new {Id = "sdz", Scope = "I", Type = "L", ReferenceName = "Sallands"}, + new {Id = "sea", Scope = "I", Type = "L", ReferenceName = "Semai"}, + new {Id = "seb", Scope = "I", Type = "L", ReferenceName = "Shempire Senoufo"}, + new {Id = "sec", Scope = "I", Type = "L", ReferenceName = "Sechelt"}, + new {Id = "sed", Scope = "I", Type = "L", ReferenceName = "Sedang"}, + new {Id = "see", Scope = "I", Type = "L", ReferenceName = "Seneca"}, + new {Id = "sef", Scope = "I", Type = "L", ReferenceName = "Cebaara Senoufo"}, + new {Id = "seg", Scope = "I", Type = "L", ReferenceName = "Segeju"}, + new {Id = "seh", Scope = "I", Type = "L", ReferenceName = "Sena"}, + new {Id = "sei", Scope = "I", Type = "L", ReferenceName = "Seri"}, + new {Id = "sej", Scope = "I", Type = "L", ReferenceName = "Sene"}, + new {Id = "sek", Scope = "I", Type = "L", ReferenceName = "Sekani"}, + new + { + Id = "sel", + Part2B = "sel", + Part2T = "sel", + Scope = "I", + Type = "L", + ReferenceName = "Selkup" + }, new {Id = "sen", Scope = "I", Type = "L", ReferenceName = "Nanerigé Sénoufo"}, + new {Id = "seo", Scope = "I", Type = "L", ReferenceName = "Suarmin"}, + new {Id = "sep", Scope = "I", Type = "L", ReferenceName = "Sìcìté Sénoufo"}, + new {Id = "seq", Scope = "I", Type = "L", ReferenceName = "Senara Sénoufo"}, + new {Id = "ser", Scope = "I", Type = "L", ReferenceName = "Serrano"}, + new + { + Id = "ses", + Scope = "I", + Type = "L", + ReferenceName = "Koyraboro Senni Songhai" + }, + new {Id = "set", Scope = "I", Type = "L", ReferenceName = "Sentani"}, + new {Id = "seu", Scope = "I", Type = "L", ReferenceName = "Serui-Laut"}, + new {Id = "sev", Scope = "I", Type = "L", ReferenceName = "Nyarafolo Senoufo"}, + new {Id = "sew", Scope = "I", Type = "L", ReferenceName = "Sewa Bay"}, + new {Id = "sey", Scope = "I", Type = "L", ReferenceName = "Secoya"}, + new {Id = "sez", Scope = "I", Type = "L", ReferenceName = "Senthang Chin"}, + new + { + Id = "sfb", + Scope = "I", + Type = "L", + ReferenceName = "Langue des signes de Belgique Francophone" + }, new {Id = "sfe", Scope = "I", Type = "L", ReferenceName = "Eastern Subanen"}, + new {Id = "sfm", Scope = "I", Type = "L", ReferenceName = "Small Flowery Miao"}, + new + { + Id = "sfs", + Scope = "I", + Type = "L", + ReferenceName = "South African Sign Language" + }, new {Id = "sfw", Scope = "I", Type = "L", ReferenceName = "Sehwi"}, + new + { + Id = "sga", + Part2B = "sga", + Part2T = "sga", + Scope = "I", + Type = "H", + ReferenceName = "Old Irish (to 900)" + }, new {Id = "sgb", Scope = "I", Type = "L", ReferenceName = "Mag-antsi Ayta"}, + new {Id = "sgc", Scope = "I", Type = "L", ReferenceName = "Kipsigis"}, + new {Id = "sgd", Scope = "I", Type = "L", ReferenceName = "Surigaonon"}, + new {Id = "sge", Scope = "I", Type = "L", ReferenceName = "Segai"}, + new + { + Id = "sgg", + Scope = "I", + Type = "L", + ReferenceName = "Swiss-German Sign Language" + }, new {Id = "sgh", Scope = "I", Type = "L", ReferenceName = "Shughni"}, + new {Id = "sgi", Scope = "I", Type = "L", ReferenceName = "Suga"}, + new {Id = "sgj", Scope = "I", Type = "L", ReferenceName = "Surgujia"}, + new {Id = "sgk", Scope = "I", Type = "L", ReferenceName = "Sangkong"}, + new {Id = "sgm", Scope = "I", Type = "E", ReferenceName = "Singa"}, + new {Id = "sgp", Scope = "I", Type = "L", ReferenceName = "Singpho"}, + new {Id = "sgr", Scope = "I", Type = "L", ReferenceName = "Sangisari"}, + new {Id = "sgs", Scope = "I", Type = "L", ReferenceName = "Samogitian"}, + new {Id = "sgt", Scope = "I", Type = "L", ReferenceName = "Brokpake"}, + new {Id = "sgu", Scope = "I", Type = "L", ReferenceName = "Salas"}, + new {Id = "sgw", Scope = "I", Type = "L", ReferenceName = "Sebat Bet Gurage"}, + new + { + Id = "sgx", + Scope = "I", + Type = "L", + ReferenceName = "Sierra Leone Sign Language" + }, new {Id = "sgy", Scope = "I", Type = "L", ReferenceName = "Sanglechi"}, + new {Id = "sgz", Scope = "I", Type = "L", ReferenceName = "Sursurunga"}, + new {Id = "sha", Scope = "I", Type = "L", ReferenceName = "Shall-Zwall"}, + new {Id = "shb", Scope = "I", Type = "L", ReferenceName = "Ninam"}, + new {Id = "shc", Scope = "I", Type = "L", ReferenceName = "Sonde"}, + new {Id = "shd", Scope = "I", Type = "L", ReferenceName = "Kundal Shahi"}, + new {Id = "she", Scope = "I", Type = "L", ReferenceName = "Sheko"}, + new {Id = "shg", Scope = "I", Type = "L", ReferenceName = "Shua"}, + new {Id = "shh", Scope = "I", Type = "L", ReferenceName = "Shoshoni"}, + new {Id = "shi", Scope = "I", Type = "L", ReferenceName = "Tachelhit"}, + new {Id = "shj", Scope = "I", Type = "L", ReferenceName = "Shatt"}, + new {Id = "shk", Scope = "I", Type = "L", ReferenceName = "Shilluk"}, + new {Id = "shl", Scope = "I", Type = "L", ReferenceName = "Shendu"}, + new {Id = "shm", Scope = "I", Type = "L", ReferenceName = "Shahrudi"}, + new + { + Id = "shn", + Part2B = "shn", + Part2T = "shn", + Scope = "I", + Type = "L", + ReferenceName = "Shan" + }, new {Id = "sho", Scope = "I", Type = "L", ReferenceName = "Shanga"}, + new {Id = "shp", Scope = "I", Type = "L", ReferenceName = "Shipibo-Conibo"}, + new {Id = "shq", Scope = "I", Type = "L", ReferenceName = "Sala"}, + new {Id = "shr", Scope = "I", Type = "L", ReferenceName = "Shi"}, + new {Id = "shs", Scope = "I", Type = "L", ReferenceName = "Shuswap"}, + new {Id = "sht", Scope = "I", Type = "E", ReferenceName = "Shasta"}, + new {Id = "shu", Scope = "I", Type = "L", ReferenceName = "Chadian Arabic"}, + new {Id = "shv", Scope = "I", Type = "L", ReferenceName = "Shehri"}, + new {Id = "shw", Scope = "I", Type = "L", ReferenceName = "Shwai"}, + new {Id = "shx", Scope = "I", Type = "L", ReferenceName = "She"}, + new {Id = "shy", Scope = "I", Type = "L", ReferenceName = "Tachawit"}, + new {Id = "shz", Scope = "I", Type = "L", ReferenceName = "Syenara Senoufo"}, + new {Id = "sia", Scope = "I", Type = "E", ReferenceName = "Akkala Sami"}, + new {Id = "sib", Scope = "I", Type = "L", ReferenceName = "Sebop"}, + new + { + Id = "sid", + Part2B = "sid", + Part2T = "sid", + Scope = "I", + Type = "L", + ReferenceName = "Sidamo" + }, new {Id = "sie", Scope = "I", Type = "L", ReferenceName = "Simaa"}, + new {Id = "sif", Scope = "I", Type = "L", ReferenceName = "Siamou"}, + new {Id = "sig", Scope = "I", Type = "L", ReferenceName = "Paasaal"}, + new {Id = "sih", Scope = "I", Type = "L", ReferenceName = "Zire"}, + new {Id = "sii", Scope = "I", Type = "L", ReferenceName = "Shom Peng"}, + new {Id = "sij", Scope = "I", Type = "L", ReferenceName = "Numbami"}, + new {Id = "sik", Scope = "I", Type = "L", ReferenceName = "Sikiana"}, + new {Id = "sil", Scope = "I", Type = "L", ReferenceName = "Tumulung Sisaala"}, + new + { + Id = "sim", + Scope = "I", + Type = "L", + ReferenceName = "Mende (Papua New Guinea)" + }, + new + { + Id = "sin", + Part2B = "sin", + Part2T = "sin", + Part1 = "si", + Scope = "I", + Type = "L", + ReferenceName = "Sinhala" + }, new {Id = "sip", Scope = "I", Type = "L", ReferenceName = "Sikkimese"}, + new {Id = "siq", Scope = "I", Type = "L", ReferenceName = "Sonia"}, + new {Id = "sir", Scope = "I", Type = "L", ReferenceName = "Siri"}, + new {Id = "sis", Scope = "I", Type = "E", ReferenceName = "Siuslaw"}, + new {Id = "siu", Scope = "I", Type = "L", ReferenceName = "Sinagen"}, + new {Id = "siv", Scope = "I", Type = "L", ReferenceName = "Sumariup"}, + new {Id = "siw", Scope = "I", Type = "L", ReferenceName = "Siwai"}, + new {Id = "six", Scope = "I", Type = "L", ReferenceName = "Sumau"}, + new {Id = "siy", Scope = "I", Type = "L", ReferenceName = "Sivandi"}, + new {Id = "siz", Scope = "I", Type = "L", ReferenceName = "Siwi"}, + new {Id = "sja", Scope = "I", Type = "L", ReferenceName = "Epena"}, + new {Id = "sjb", Scope = "I", Type = "L", ReferenceName = "Sajau Basap"}, + new {Id = "sjd", Scope = "I", Type = "L", ReferenceName = "Kildin Sami"}, + new {Id = "sje", Scope = "I", Type = "L", ReferenceName = "Pite Sami"}, + new {Id = "sjg", Scope = "I", Type = "L", ReferenceName = "Assangori"}, + new {Id = "sjk", Scope = "I", Type = "E", ReferenceName = "Kemi Sami"}, + new {Id = "sjl", Scope = "I", Type = "L", ReferenceName = "Sajalong"}, + new {Id = "sjm", Scope = "I", Type = "L", ReferenceName = "Mapun"}, + new {Id = "sjn", Scope = "I", Type = "C", ReferenceName = "Sindarin"}, + new {Id = "sjo", Scope = "I", Type = "L", ReferenceName = "Xibe"}, + new {Id = "sjp", Scope = "I", Type = "L", ReferenceName = "Surjapuri"}, + new {Id = "sjr", Scope = "I", Type = "L", ReferenceName = "Siar-Lak"}, + new {Id = "sjs", Scope = "I", Type = "E", ReferenceName = "Senhaja De Srair"}, + new {Id = "sjt", Scope = "I", Type = "L", ReferenceName = "Ter Sami"}, + new {Id = "sju", Scope = "I", Type = "L", ReferenceName = "Ume Sami"}, + new {Id = "sjw", Scope = "I", Type = "L", ReferenceName = "Shawnee"}, + new {Id = "ska", Scope = "I", Type = "L", ReferenceName = "Skagit"}, + new {Id = "skb", Scope = "I", Type = "L", ReferenceName = "Saek"}, + new {Id = "skc", Scope = "I", Type = "L", ReferenceName = "Ma Manda"}, + new {Id = "skd", Scope = "I", Type = "L", ReferenceName = "Southern Sierra Miwok"}, + new {Id = "ske", Scope = "I", Type = "L", ReferenceName = "Seke (Vanuatu)"}, + new {Id = "skf", Scope = "I", Type = "L", ReferenceName = "Sakirabiá"}, + new {Id = "skg", Scope = "I", Type = "L", ReferenceName = "Sakalava Malagasy"}, + new {Id = "skh", Scope = "I", Type = "L", ReferenceName = "Sikule"}, + new {Id = "ski", Scope = "I", Type = "L", ReferenceName = "Sika"}, + new {Id = "skj", Scope = "I", Type = "L", ReferenceName = "Seke (Nepal)"}, + new {Id = "skm", Scope = "I", Type = "L", ReferenceName = "Kutong"}, + new {Id = "skn", Scope = "I", Type = "L", ReferenceName = "Kolibugan Subanon"}, + new {Id = "sko", Scope = "I", Type = "L", ReferenceName = "Seko Tengah"}, + new {Id = "skp", Scope = "I", Type = "L", ReferenceName = "Sekapan"}, + new {Id = "skq", Scope = "I", Type = "L", ReferenceName = "Sininkere"}, + new {Id = "skr", Scope = "I", Type = "L", ReferenceName = "Saraiki"}, + new {Id = "sks", Scope = "I", Type = "L", ReferenceName = "Maia"}, + new {Id = "skt", Scope = "I", Type = "L", ReferenceName = "Sakata"}, + new {Id = "sku", Scope = "I", Type = "L", ReferenceName = "Sakao"}, + new {Id = "skv", Scope = "I", Type = "L", ReferenceName = "Skou"}, + new {Id = "skw", Scope = "I", Type = "E", ReferenceName = "Skepi Creole Dutch"}, + new {Id = "skx", Scope = "I", Type = "L", ReferenceName = "Seko Padang"}, + new {Id = "sky", Scope = "I", Type = "L", ReferenceName = "Sikaiana"}, + new {Id = "skz", Scope = "I", Type = "L", ReferenceName = "Sekar"}, + new {Id = "slc", Scope = "I", Type = "L", ReferenceName = "Sáliba"}, + new {Id = "sld", Scope = "I", Type = "L", ReferenceName = "Sissala"}, + new {Id = "sle", Scope = "I", Type = "L", ReferenceName = "Sholaga"}, + new + { + Id = "slf", + Scope = "I", + Type = "L", + ReferenceName = "Swiss-Italian Sign Language" + }, new {Id = "slg", Scope = "I", Type = "L", ReferenceName = "Selungai Murut"}, + new + { + Id = "slh", + Scope = "I", + Type = "L", + ReferenceName = "Southern Puget Sound Salish" + }, new {Id = "sli", Scope = "I", Type = "L", ReferenceName = "Lower Silesian"}, + new {Id = "slj", Scope = "I", Type = "L", ReferenceName = "Salumá"}, + new + { + Id = "slk", + Part2B = "slo", + Part2T = "slk", + Part1 = "sk", + Scope = "I", + Type = "L", + ReferenceName = "Slovak" + }, new {Id = "sll", Scope = "I", Type = "L", ReferenceName = "Salt-Yui"}, + new {Id = "slm", Scope = "I", Type = "L", ReferenceName = "Pangutaran Sama"}, + new {Id = "sln", Scope = "I", Type = "E", ReferenceName = "Salinan"}, + new {Id = "slp", Scope = "I", Type = "L", ReferenceName = "Lamaholot"}, + new {Id = "slq", Scope = "I", Type = "E", ReferenceName = "Salchuq"}, + new {Id = "slr", Scope = "I", Type = "L", ReferenceName = "Salar"}, + new + { + Id = "sls", + Scope = "I", + Type = "L", + ReferenceName = "Singapore Sign Language" + }, + new {Id = "slt", Scope = "I", Type = "L", ReferenceName = "Sila"}, + new {Id = "slu", Scope = "I", Type = "L", ReferenceName = "Selaru"}, + new + { + Id = "slv", + Part2B = "slv", + Part2T = "slv", + Part1 = "sl", + Scope = "I", + Type = "L", + ReferenceName = "Slovenian" + }, new {Id = "slw", Scope = "I", Type = "L", ReferenceName = "Sialum"}, + new {Id = "slx", Scope = "I", Type = "L", ReferenceName = "Salampasu"}, + new {Id = "sly", Scope = "I", Type = "L", ReferenceName = "Selayar"}, + new {Id = "slz", Scope = "I", Type = "L", ReferenceName = "Ma'ya"}, + new + { + Id = "sma", + Part2B = "sma", + Part2T = "sma", + Scope = "I", + Type = "L", + ReferenceName = "Southern Sami" + }, new {Id = "smb", Scope = "I", Type = "L", ReferenceName = "Simbari"}, + new {Id = "smc", Scope = "I", Type = "E", ReferenceName = "Som"}, + new {Id = "smd", Scope = "I", Type = "L", ReferenceName = "Sama"}, + new + { + Id = "sme", + Part2B = "sme", + Part2T = "sme", + Part1 = "se", + Scope = "I", + Type = "L", + ReferenceName = "Northern Sami" + }, new {Id = "smf", Scope = "I", Type = "L", ReferenceName = "Auwe"}, + new {Id = "smg", Scope = "I", Type = "L", ReferenceName = "Simbali"}, + new {Id = "smh", Scope = "I", Type = "L", ReferenceName = "Samei"}, + new + { + Id = "smj", + Part2B = "smj", + Part2T = "smj", + Scope = "I", + Type = "L", + ReferenceName = "Lule Sami" + }, new {Id = "smk", Scope = "I", Type = "L", ReferenceName = "Bolinao"}, + new {Id = "sml", Scope = "I", Type = "L", ReferenceName = "Central Sama"}, + new {Id = "smm", Scope = "I", Type = "L", ReferenceName = "Musasa"}, + new + { + Id = "smn", + Part2B = "smn", + Part2T = "smn", + Scope = "I", + Type = "L", + ReferenceName = "Inari Sami" + }, new + { + Id = "smo", + Part2B = "smo", + Part2T = "smo", + Part1 = "sm", + Scope = "I", + Type = "L", + ReferenceName = "Samoan" + }, new {Id = "smp", Scope = "I", Type = "E", ReferenceName = "Samaritan"}, + new {Id = "smq", Scope = "I", Type = "L", ReferenceName = "Samo"}, + new {Id = "smr", Scope = "I", Type = "L", ReferenceName = "Simeulue"}, + new + { + Id = "sms", + Part2B = "sms", + Part2T = "sms", + Scope = "I", + Type = "L", + ReferenceName = "Skolt Sami" + }, new {Id = "smt", Scope = "I", Type = "L", ReferenceName = "Simte"}, + new {Id = "smu", Scope = "I", Type = "E", ReferenceName = "Somray"}, + new {Id = "smv", Scope = "I", Type = "L", ReferenceName = "Samvedi"}, + new {Id = "smw", Scope = "I", Type = "L", ReferenceName = "Sumbawa"}, + new {Id = "smx", Scope = "I", Type = "L", ReferenceName = "Samba"}, + new {Id = "smy", Scope = "I", Type = "L", ReferenceName = "Semnani"}, + new {Id = "smz", Scope = "I", Type = "L", ReferenceName = "Simeku"}, + new + { + Id = "sna", + Part2B = "sna", + Part2T = "sna", + Part1 = "sn", + Scope = "I", + Type = "L", + ReferenceName = "Shona" + }, new {Id = "snb", Scope = "I", Type = "L", ReferenceName = "Sebuyau"}, + new {Id = "snc", Scope = "I", Type = "L", ReferenceName = "Sinaugoro"}, + new + { + Id = "snd", + Part2B = "snd", + Part2T = "snd", + Part1 = "sd", + Scope = "I", + Type = "L", + ReferenceName = "Sindhi" + }, new {Id = "sne", Scope = "I", Type = "L", ReferenceName = "Bau Bidayuh"}, + new {Id = "snf", Scope = "I", Type = "L", ReferenceName = "Noon"}, + new + { + Id = "sng", + Scope = "I", + Type = "L", + ReferenceName = "Sanga (Democratic Republic of Congo)" + }, new {Id = "sni", Scope = "I", Type = "E", ReferenceName = "Sensi"}, + new {Id = "snj", Scope = "I", Type = "L", ReferenceName = "Riverain Sango"}, + new + { + Id = "snk", + Part2B = "snk", + Part2T = "snk", + Scope = "I", + Type = "L", + ReferenceName = "Soninke" + }, new {Id = "snl", Scope = "I", Type = "L", ReferenceName = "Sangil"}, + new {Id = "snm", Scope = "I", Type = "L", ReferenceName = "Southern Ma'di"}, + new {Id = "snn", Scope = "I", Type = "L", ReferenceName = "Siona"}, + new {Id = "sno", Scope = "I", Type = "L", ReferenceName = "Snohomish"}, + new {Id = "snp", Scope = "I", Type = "L", ReferenceName = "Siane"}, + new {Id = "snq", Scope = "I", Type = "L", ReferenceName = "Sangu (Gabon)"}, + new {Id = "snr", Scope = "I", Type = "L", ReferenceName = "Sihan"}, + new {Id = "sns", Scope = "I", Type = "L", ReferenceName = "South West Bay"}, + new {Id = "snu", Scope = "I", Type = "L", ReferenceName = "Senggi"}, + new {Id = "snv", Scope = "I", Type = "L", ReferenceName = "Sa'ban"}, + new {Id = "snw", Scope = "I", Type = "L", ReferenceName = "Selee"}, + new {Id = "snx", Scope = "I", Type = "L", ReferenceName = "Sam"}, + new {Id = "sny", Scope = "I", Type = "L", ReferenceName = "Saniyo-Hiyewe"}, + new {Id = "snz", Scope = "I", Type = "L", ReferenceName = "Kou"}, + new {Id = "soa", Scope = "I", Type = "L", ReferenceName = "Thai Song"}, + new {Id = "sob", Scope = "I", Type = "L", ReferenceName = "Sobei"}, + new + { + Id = "soc", + Scope = "I", + Type = "L", + ReferenceName = "So (Democratic Republic of Congo)" + }, new {Id = "sod", Scope = "I", Type = "L", ReferenceName = "Songoora"}, + new {Id = "soe", Scope = "I", Type = "L", ReferenceName = "Songomeno"}, + new + { + Id = "sog", + Part2B = "sog", + Part2T = "sog", + Scope = "I", + Type = "A", + ReferenceName = "Sogdian" + }, new {Id = "soh", Scope = "I", Type = "L", ReferenceName = "Aka"}, + new {Id = "soi", Scope = "I", Type = "L", ReferenceName = "Sonha"}, + new {Id = "soj", Scope = "I", Type = "L", ReferenceName = "Soi"}, + new {Id = "sok", Scope = "I", Type = "L", ReferenceName = "Sokoro"}, + new {Id = "sol", Scope = "I", Type = "L", ReferenceName = "Solos"}, + new + { + Id = "som", + Part2B = "som", + Part2T = "som", + Part1 = "so", + Scope = "I", + Type = "L", + ReferenceName = "Somali" + }, new {Id = "soo", Scope = "I", Type = "L", ReferenceName = "Songo"}, + new {Id = "sop", Scope = "I", Type = "L", ReferenceName = "Songe"}, + new {Id = "soq", Scope = "I", Type = "L", ReferenceName = "Kanasi"}, + new {Id = "sor", Scope = "I", Type = "L", ReferenceName = "Somrai"}, + new {Id = "sos", Scope = "I", Type = "L", ReferenceName = "Seeku"}, + new + { + Id = "sot", + Part2B = "sot", + Part2T = "sot", + Part1 = "st", + Scope = "I", + Type = "L", + ReferenceName = "Southern Sotho" + }, new {Id = "sou", Scope = "I", Type = "L", ReferenceName = "Southern Thai"}, + new {Id = "sov", Scope = "I", Type = "L", ReferenceName = "Sonsorol"}, + new {Id = "sow", Scope = "I", Type = "L", ReferenceName = "Sowanda"}, + new {Id = "sox", Scope = "I", Type = "L", ReferenceName = "Swo"}, + new {Id = "soy", Scope = "I", Type = "L", ReferenceName = "Miyobe"}, + new {Id = "soz", Scope = "I", Type = "L", ReferenceName = "Temi"}, + new + { + Id = "spa", + Part2B = "spa", + Part2T = "spa", + Part1 = "es", + Scope = "I", + Type = "L", + ReferenceName = "Spanish" + }, new {Id = "spb", Scope = "I", Type = "L", ReferenceName = "Sepa (Indonesia)"}, + new {Id = "spc", Scope = "I", Type = "L", ReferenceName = "Sapé"}, + new {Id = "spd", Scope = "I", Type = "L", ReferenceName = "Saep"}, + new + { + Id = "spe", + Scope = "I", + Type = "L", + ReferenceName = "Sepa (Papua New Guinea)" + }, + new {Id = "spg", Scope = "I", Type = "L", ReferenceName = "Sian"}, + new {Id = "spi", Scope = "I", Type = "L", ReferenceName = "Saponi"}, + new {Id = "spk", Scope = "I", Type = "L", ReferenceName = "Sengo"}, + new {Id = "spl", Scope = "I", Type = "L", ReferenceName = "Selepet"}, + new {Id = "spm", Scope = "I", Type = "L", ReferenceName = "Akukem"}, + new {Id = "spn", Scope = "I", Type = "L", ReferenceName = "Sanapaná"}, + new {Id = "spo", Scope = "I", Type = "L", ReferenceName = "Spokane"}, + new {Id = "spp", Scope = "I", Type = "L", ReferenceName = "Supyire Senoufo"}, + new {Id = "spq", Scope = "I", Type = "L", ReferenceName = "Loreto-Ucayali Spanish"}, + new {Id = "spr", Scope = "I", Type = "L", ReferenceName = "Saparua"}, + new {Id = "sps", Scope = "I", Type = "L", ReferenceName = "Saposa"}, + new {Id = "spt", Scope = "I", Type = "L", ReferenceName = "Spiti Bhoti"}, + new {Id = "spu", Scope = "I", Type = "L", ReferenceName = "Sapuan"}, + new {Id = "spv", Scope = "I", Type = "L", ReferenceName = "Sambalpuri"}, + new {Id = "spx", Scope = "I", Type = "A", ReferenceName = "South Picene"}, + new {Id = "spy", Scope = "I", Type = "L", ReferenceName = "Sabaot"}, + new {Id = "sqa", Scope = "I", Type = "L", ReferenceName = "Shama-Sambuga"}, + new {Id = "sqh", Scope = "I", Type = "L", ReferenceName = "Shau"}, + new + { + Id = "sqi", + Part2B = "alb", + Part2T = "sqi", + Part1 = "sq", + Scope = "M", + Type = "L", + ReferenceName = "Albanian" + }, new {Id = "sqk", Scope = "I", Type = "L", ReferenceName = "Albanian Sign Language"}, + new {Id = "sqm", Scope = "I", Type = "L", ReferenceName = "Suma"}, + new {Id = "sqn", Scope = "I", Type = "E", ReferenceName = "Susquehannock"}, + new {Id = "sqo", Scope = "I", Type = "L", ReferenceName = "Sorkhei"}, + new {Id = "sqq", Scope = "I", Type = "L", ReferenceName = "Sou"}, + new {Id = "sqr", Scope = "I", Type = "H", ReferenceName = "Siculo Arabic"}, + new + { + Id = "sqs", + Scope = "I", + Type = "L", + ReferenceName = "Sri Lankan Sign Language" + }, + new {Id = "sqt", Scope = "I", Type = "L", ReferenceName = "Soqotri"}, + new {Id = "squ", Scope = "I", Type = "L", ReferenceName = "Squamish"}, + new {Id = "sra", Scope = "I", Type = "L", ReferenceName = "Saruga"}, + new {Id = "srb", Scope = "I", Type = "L", ReferenceName = "Sora"}, + new {Id = "src", Scope = "I", Type = "L", ReferenceName = "Logudorese Sardinian"}, + new + { + Id = "srd", + Part2B = "srd", + Part2T = "srd", + Part1 = "sc", + Scope = "M", + Type = "L", + ReferenceName = "Sardinian" + }, new {Id = "sre", Scope = "I", Type = "L", ReferenceName = "Sara"}, + new {Id = "srf", Scope = "I", Type = "L", ReferenceName = "Nafi"}, + new {Id = "srg", Scope = "I", Type = "L", ReferenceName = "Sulod"}, + new {Id = "srh", Scope = "I", Type = "L", ReferenceName = "Sarikoli"}, + new {Id = "sri", Scope = "I", Type = "L", ReferenceName = "Siriano"}, + new {Id = "srk", Scope = "I", Type = "L", ReferenceName = "Serudung Murut"}, + new {Id = "srl", Scope = "I", Type = "L", ReferenceName = "Isirawa"}, + new {Id = "srm", Scope = "I", Type = "L", ReferenceName = "Saramaccan"}, + new + { + Id = "srn", + Part2B = "srn", + Part2T = "srn", + Scope = "I", + Type = "L", + ReferenceName = "Sranan Tongo" + }, new {Id = "sro", Scope = "I", Type = "L", ReferenceName = "Campidanese Sardinian"}, + new + { + Id = "srp", + Part2B = "srp", + Part2T = "srp", + Part1 = "sr", + Scope = "I", + Type = "L", + ReferenceName = "Serbian" + }, new {Id = "srq", Scope = "I", Type = "L", ReferenceName = "Sirionó"}, + new + { + Id = "srr", + Part2B = "srr", + Part2T = "srr", + Scope = "I", + Type = "L", + ReferenceName = "Serer" + }, new {Id = "srs", Scope = "I", Type = "L", ReferenceName = "Sarsi"}, + new {Id = "srt", Scope = "I", Type = "L", ReferenceName = "Sauri"}, + new {Id = "sru", Scope = "I", Type = "L", ReferenceName = "Suruí"}, + new {Id = "srv", Scope = "I", Type = "L", ReferenceName = "Southern Sorsoganon"}, + new {Id = "srw", Scope = "I", Type = "L", ReferenceName = "Serua"}, + new {Id = "srx", Scope = "I", Type = "L", ReferenceName = "Sirmauri"}, + new {Id = "sry", Scope = "I", Type = "L", ReferenceName = "Sera"}, + new {Id = "srz", Scope = "I", Type = "L", ReferenceName = "Shahmirzadi"}, + new {Id = "ssb", Scope = "I", Type = "L", ReferenceName = "Southern Sama"}, + new {Id = "ssc", Scope = "I", Type = "L", ReferenceName = "Suba-Simbiti"}, + new {Id = "ssd", Scope = "I", Type = "L", ReferenceName = "Siroi"}, + new {Id = "sse", Scope = "I", Type = "L", ReferenceName = "Balangingi"}, + new {Id = "ssf", Scope = "I", Type = "E", ReferenceName = "Thao"}, + new {Id = "ssg", Scope = "I", Type = "L", ReferenceName = "Seimat"}, + new {Id = "ssh", Scope = "I", Type = "L", ReferenceName = "Shihhi Arabic"}, + new {Id = "ssi", Scope = "I", Type = "L", ReferenceName = "Sansi"}, + new {Id = "ssj", Scope = "I", Type = "L", ReferenceName = "Sausi"}, + new {Id = "ssk", Scope = "I", Type = "L", ReferenceName = "Sunam"}, + new {Id = "ssl", Scope = "I", Type = "L", ReferenceName = "Western Sisaala"}, + new {Id = "ssm", Scope = "I", Type = "L", ReferenceName = "Semnam"}, + new {Id = "ssn", Scope = "I", Type = "L", ReferenceName = "Waata"}, + new {Id = "sso", Scope = "I", Type = "L", ReferenceName = "Sissano"}, + new {Id = "ssp", Scope = "I", Type = "L", ReferenceName = "Spanish Sign Language"}, + new {Id = "ssq", Scope = "I", Type = "L", ReferenceName = "So'a"}, + new + { + Id = "ssr", + Scope = "I", + Type = "L", + ReferenceName = "Swiss-French Sign Language" + }, new {Id = "sss", Scope = "I", Type = "L", ReferenceName = "Sô"}, + new {Id = "sst", Scope = "I", Type = "L", ReferenceName = "Sinasina"}, + new {Id = "ssu", Scope = "I", Type = "L", ReferenceName = "Susuami"}, + new {Id = "ssv", Scope = "I", Type = "L", ReferenceName = "Shark Bay"}, + new + { + Id = "ssw", + Part2B = "ssw", + Part2T = "ssw", + Part1 = "ss", + Scope = "I", + Type = "L", + ReferenceName = "Swati" + }, new {Id = "ssx", Scope = "I", Type = "L", ReferenceName = "Samberigi"}, + new {Id = "ssy", Scope = "I", Type = "L", ReferenceName = "Saho"}, + new {Id = "ssz", Scope = "I", Type = "L", ReferenceName = "Sengseng"}, + new {Id = "sta", Scope = "I", Type = "L", ReferenceName = "Settla"}, + new {Id = "stb", Scope = "I", Type = "L", ReferenceName = "Northern Subanen"}, + new {Id = "std", Scope = "I", Type = "L", ReferenceName = "Sentinel"}, + new {Id = "ste", Scope = "I", Type = "L", ReferenceName = "Liana-Seti"}, + new {Id = "stf", Scope = "I", Type = "L", ReferenceName = "Seta"}, + new {Id = "stg", Scope = "I", Type = "L", ReferenceName = "Trieng"}, + new {Id = "sth", Scope = "I", Type = "L", ReferenceName = "Shelta"}, + new {Id = "sti", Scope = "I", Type = "L", ReferenceName = "Bulo Stieng"}, + new {Id = "stj", Scope = "I", Type = "L", ReferenceName = "Matya Samo"}, + new {Id = "stk", Scope = "I", Type = "L", ReferenceName = "Arammba"}, + new {Id = "stl", Scope = "I", Type = "L", ReferenceName = "Stellingwerfs"}, + new {Id = "stm", Scope = "I", Type = "L", ReferenceName = "Setaman"}, + new {Id = "stn", Scope = "I", Type = "L", ReferenceName = "Owa"}, + new {Id = "sto", Scope = "I", Type = "L", ReferenceName = "Stoney"}, + new {Id = "stp", Scope = "I", Type = "L", ReferenceName = "Southeastern Tepehuan"}, + new {Id = "stq", Scope = "I", Type = "L", ReferenceName = "Saterfriesisch"}, + new {Id = "str", Scope = "I", Type = "L", ReferenceName = "Straits Salish"}, + new {Id = "sts", Scope = "I", Type = "L", ReferenceName = "Shumashti"}, + new {Id = "stt", Scope = "I", Type = "L", ReferenceName = "Budeh Stieng"}, + new {Id = "stu", Scope = "I", Type = "L", ReferenceName = "Samtao"}, + new {Id = "stv", Scope = "I", Type = "L", ReferenceName = "Silt'e"}, + new {Id = "stw", Scope = "I", Type = "L", ReferenceName = "Satawalese"}, + new {Id = "sty", Scope = "I", Type = "L", ReferenceName = "Siberian Tatar"}, + new {Id = "sua", Scope = "I", Type = "L", ReferenceName = "Sulka"}, + new {Id = "sub", Scope = "I", Type = "L", ReferenceName = "Suku"}, + new {Id = "suc", Scope = "I", Type = "L", ReferenceName = "Western Subanon"}, + new {Id = "sue", Scope = "I", Type = "L", ReferenceName = "Suena"}, + new {Id = "sug", Scope = "I", Type = "L", ReferenceName = "Suganga"}, + new {Id = "sui", Scope = "I", Type = "L", ReferenceName = "Suki"}, + new {Id = "suj", Scope = "I", Type = "L", ReferenceName = "Shubi"}, + new + { + Id = "suk", + Part2B = "suk", + Part2T = "suk", + Scope = "I", + Type = "L", + ReferenceName = "Sukuma" + }, new + { + Id = "sun", + Part2B = "sun", + Part2T = "sun", + Part1 = "su", + Scope = "I", + Type = "L", + ReferenceName = "Sundanese" + }, new {Id = "suq", Scope = "I", Type = "L", ReferenceName = "Suri"}, + new {Id = "sur", Scope = "I", Type = "L", ReferenceName = "Mwaghavul"}, + new + { + Id = "sus", + Part2B = "sus", + Part2T = "sus", + Scope = "I", + Type = "L", + ReferenceName = "Susu" + }, new {Id = "sut", Scope = "I", Type = "E", ReferenceName = "Subtiaba"}, + new {Id = "suv", Scope = "I", Type = "L", ReferenceName = "Puroik"}, + new {Id = "suw", Scope = "I", Type = "L", ReferenceName = "Sumbwa"}, + new + { + Id = "sux", + Part2B = "sux", + Part2T = "sux", + Scope = "I", + Type = "A", + ReferenceName = "Sumerian" + }, new {Id = "suy", Scope = "I", Type = "L", ReferenceName = "Suyá"}, + new {Id = "suz", Scope = "I", Type = "L", ReferenceName = "Sunwar"}, + new {Id = "sva", Scope = "I", Type = "L", ReferenceName = "Svan"}, + new {Id = "svb", Scope = "I", Type = "L", ReferenceName = "Ulau-Suain"}, + new + { + Id = "svc", + Scope = "I", + Type = "L", + ReferenceName = "Vincentian Creole English" + }, + new {Id = "sve", Scope = "I", Type = "L", ReferenceName = "Serili"}, + new + { + Id = "svk", + Scope = "I", + Type = "L", + ReferenceName = "Slovakian Sign Language" + }, + new {Id = "svm", Scope = "I", Type = "L", ReferenceName = "Slavomolisano"}, + new {Id = "svs", Scope = "I", Type = "L", ReferenceName = "Savosavo"}, + new {Id = "svx", Scope = "I", Type = "H", ReferenceName = "Skalvian"}, + new + { + Id = "swa", + Part2B = "swa", + Part2T = "swa", + Part1 = "sw", + Scope = "M", + Type = "L", + ReferenceName = "Swahili (macrolanguage)" + }, new {Id = "swb", Scope = "I", Type = "L", ReferenceName = "Maore Comorian"}, + new {Id = "swc", Scope = "I", Type = "L", ReferenceName = "Congo Swahili"}, + new + { + Id = "swe", + Part2B = "swe", + Part2T = "swe", + Part1 = "sv", + Scope = "I", + Type = "L", + ReferenceName = "Swedish" + }, new {Id = "swf", Scope = "I", Type = "L", ReferenceName = "Sere"}, + new {Id = "swg", Scope = "I", Type = "L", ReferenceName = "Swabian"}, + new + { + Id = "swh", + Scope = "I", + Type = "L", + ReferenceName = "Swahili (individual language)" + }, new {Id = "swi", Scope = "I", Type = "L", ReferenceName = "Sui"}, + new {Id = "swj", Scope = "I", Type = "L", ReferenceName = "Sira"}, + new {Id = "swk", Scope = "I", Type = "L", ReferenceName = "Malawi Sena"}, + new + { + Id = "swl", + Scope = "I", + Type = "L", + ReferenceName = "Swedish Sign Language" + }, + new {Id = "swm", Scope = "I", Type = "L", ReferenceName = "Samosa"}, + new {Id = "swn", Scope = "I", Type = "L", ReferenceName = "Sawknah"}, + new {Id = "swo", Scope = "I", Type = "L", ReferenceName = "Shanenawa"}, + new {Id = "swp", Scope = "I", Type = "L", ReferenceName = "Suau"}, + new {Id = "swq", Scope = "I", Type = "L", ReferenceName = "Sharwa"}, + new {Id = "swr", Scope = "I", Type = "L", ReferenceName = "Saweru"}, + new {Id = "sws", Scope = "I", Type = "L", ReferenceName = "Seluwasan"}, + new {Id = "swt", Scope = "I", Type = "L", ReferenceName = "Sawila"}, + new {Id = "swu", Scope = "I", Type = "L", ReferenceName = "Suwawa"}, + new {Id = "swv", Scope = "I", Type = "L", ReferenceName = "Shekhawati"}, + new {Id = "sww", Scope = "I", Type = "E", ReferenceName = "Sowa"}, + new {Id = "swx", Scope = "I", Type = "L", ReferenceName = "Suruahá"}, + new {Id = "swy", Scope = "I", Type = "L", ReferenceName = "Sarua"}, + new {Id = "sxb", Scope = "I", Type = "L", ReferenceName = "Suba"}, + new {Id = "sxc", Scope = "I", Type = "A", ReferenceName = "Sicanian"}, + new {Id = "sxe", Scope = "I", Type = "L", ReferenceName = "Sighu"}, + new {Id = "sxg", Scope = "I", Type = "L", ReferenceName = "Shuhi"}, + new {Id = "sxk", Scope = "I", Type = "E", ReferenceName = "Southern Kalapuya"}, + new {Id = "sxl", Scope = "I", Type = "E", ReferenceName = "Selian"}, + new {Id = "sxm", Scope = "I", Type = "L", ReferenceName = "Samre"}, + new {Id = "sxn", Scope = "I", Type = "L", ReferenceName = "Sangir"}, + new {Id = "sxo", Scope = "I", Type = "A", ReferenceName = "Sorothaptic"}, + new {Id = "sxr", Scope = "I", Type = "L", ReferenceName = "Saaroa"}, + new {Id = "sxs", Scope = "I", Type = "L", ReferenceName = "Sasaru"}, + new {Id = "sxu", Scope = "I", Type = "L", ReferenceName = "Upper Saxon"}, + new {Id = "sxw", Scope = "I", Type = "L", ReferenceName = "Saxwe Gbe"}, + new {Id = "sya", Scope = "I", Type = "L", ReferenceName = "Siang"}, + new {Id = "syb", Scope = "I", Type = "L", ReferenceName = "Central Subanen"}, + new + { + Id = "syc", + Part2B = "syc", + Part2T = "syc", + Scope = "I", + Type = "H", + ReferenceName = "Classical Syriac" + }, new {Id = "syi", Scope = "I", Type = "L", ReferenceName = "Seki"}, + new {Id = "syk", Scope = "I", Type = "L", ReferenceName = "Sukur"}, + new {Id = "syl", Scope = "I", Type = "L", ReferenceName = "Sylheti"}, + new {Id = "sym", Scope = "I", Type = "L", ReferenceName = "Maya Samo"}, + new {Id = "syn", Scope = "I", Type = "L", ReferenceName = "Senaya"}, + new {Id = "syo", Scope = "I", Type = "L", ReferenceName = "Suoy"}, + new + { + Id = "syr", + Part2B = "syr", + Part2T = "syr", + Scope = "M", + Type = "L", + ReferenceName = "Syriac" + }, new {Id = "sys", Scope = "I", Type = "L", ReferenceName = "Sinyar"}, + new {Id = "syw", Scope = "I", Type = "L", ReferenceName = "Kagate"}, + new {Id = "syx", Scope = "I", Type = "L", ReferenceName = "Samay"}, + new + { + Id = "syy", + Scope = "I", + Type = "L", + ReferenceName = "Al-Sayyid Bedouin Sign Language" + }, new {Id = "sza", Scope = "I", Type = "L", ReferenceName = "Semelai"}, + new {Id = "szb", Scope = "I", Type = "L", ReferenceName = "Ngalum"}, + new {Id = "szc", Scope = "I", Type = "L", ReferenceName = "Semaq Beri"}, + new {Id = "szd", Scope = "I", Type = "E", ReferenceName = "Seru"}, + new {Id = "sze", Scope = "I", Type = "L", ReferenceName = "Seze"}, + new {Id = "szg", Scope = "I", Type = "L", ReferenceName = "Sengele"}, + new {Id = "szl", Scope = "I", Type = "L", ReferenceName = "Silesian"}, + new {Id = "szn", Scope = "I", Type = "L", ReferenceName = "Sula"}, + new {Id = "szp", Scope = "I", Type = "L", ReferenceName = "Suabo"}, + new + { + Id = "szs", + Scope = "I", + Type = "L", + ReferenceName = "Solomon Islands Sign Language" + }, + new {Id = "szv", Scope = "I", Type = "L", ReferenceName = "Isu (Fako Division)"}, + new {Id = "szw", Scope = "I", Type = "L", ReferenceName = "Sawai"}, + new {Id = "szy", Scope = "I", Type = "L", ReferenceName = "Sakizaya"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/T.cs b/Cicm.Database/Seeders/Iso639Split/T.cs new file mode 100644 index 00000000..c0c9fd14 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/T.cs @@ -0,0 +1,848 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class T + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "taa", Scope = "I", Type = "L", ReferenceName = "Lower Tanana"}, + new {Id = "tab", Scope = "I", Type = "L", ReferenceName = "Tabassaran"}, + new {Id = "tac", Scope = "I", Type = "L", ReferenceName = "Lowland Tarahumara"}, + new {Id = "tad", Scope = "I", Type = "L", ReferenceName = "Tause"}, + new {Id = "tae", Scope = "I", Type = "L", ReferenceName = "Tariana"}, + new {Id = "taf", Scope = "I", Type = "L", ReferenceName = "Tapirapé"}, + new {Id = "tag", Scope = "I", Type = "L", ReferenceName = "Tagoi"}, + new + { + Id = "tah", + Part2B = "tah", + Part2T = "tah", + Part1 = "ty", + Scope = "I", + Type = "L", + ReferenceName = "Tahitian" + }, new {Id = "taj", Scope = "I", Type = "L", ReferenceName = "Eastern Tamang"}, + new {Id = "tak", Scope = "I", Type = "L", ReferenceName = "Tala"}, + new {Id = "tal", Scope = "I", Type = "L", ReferenceName = "Tal"}, + new + { + Id = "tam", + Part2B = "tam", + Part2T = "tam", + Part1 = "ta", + Scope = "I", + Type = "L", + ReferenceName = "Tamil" + }, new {Id = "tan", Scope = "I", Type = "L", ReferenceName = "Tangale"}, + new {Id = "tao", Scope = "I", Type = "L", ReferenceName = "Yami"}, + new {Id = "tap", Scope = "I", Type = "L", ReferenceName = "Taabwa"}, + new {Id = "taq", Scope = "I", Type = "L", ReferenceName = "Tamasheq"}, + new {Id = "tar", Scope = "I", Type = "L", ReferenceName = "Central Tarahumara"}, + new {Id = "tas", Scope = "I", Type = "E", ReferenceName = "Tay Boi"}, + new + { + Id = "tat", + Part2B = "tat", + Part2T = "tat", + Part1 = "tt", + Scope = "I", + Type = "L", + ReferenceName = "Tatar" + }, new {Id = "tau", Scope = "I", Type = "L", ReferenceName = "Upper Tanana"}, + new {Id = "tav", Scope = "I", Type = "L", ReferenceName = "Tatuyo"}, + new {Id = "taw", Scope = "I", Type = "L", ReferenceName = "Tai"}, + new {Id = "tax", Scope = "I", Type = "L", ReferenceName = "Tamki"}, + new {Id = "tay", Scope = "I", Type = "L", ReferenceName = "Atayal"}, + new {Id = "taz", Scope = "I", Type = "L", ReferenceName = "Tocho"}, + new {Id = "tba", Scope = "I", Type = "L", ReferenceName = "Aikanã"}, + new {Id = "tbb", Scope = "I", Type = "E", ReferenceName = "Tapeba"}, + new {Id = "tbc", Scope = "I", Type = "L", ReferenceName = "Takia"}, + new {Id = "tbd", Scope = "I", Type = "L", ReferenceName = "Kaki Ae"}, + new {Id = "tbe", Scope = "I", Type = "L", ReferenceName = "Tanimbili"}, + new {Id = "tbf", Scope = "I", Type = "L", ReferenceName = "Mandara"}, + new {Id = "tbg", Scope = "I", Type = "L", ReferenceName = "North Tairora"}, + new {Id = "tbh", Scope = "I", Type = "E", ReferenceName = "Dharawal"}, + new {Id = "tbi", Scope = "I", Type = "L", ReferenceName = "Gaam"}, + new {Id = "tbj", Scope = "I", Type = "L", ReferenceName = "Tiang"}, + new {Id = "tbk", Scope = "I", Type = "L", ReferenceName = "Calamian Tagbanwa"}, + new {Id = "tbl", Scope = "I", Type = "L", ReferenceName = "Tboli"}, + new {Id = "tbm", Scope = "I", Type = "L", ReferenceName = "Tagbu"}, + new {Id = "tbn", Scope = "I", Type = "L", ReferenceName = "Barro Negro Tunebo"}, + new {Id = "tbo", Scope = "I", Type = "L", ReferenceName = "Tawala"}, + new {Id = "tbp", Scope = "I", Type = "L", ReferenceName = "Taworta"}, + new {Id = "tbr", Scope = "I", Type = "L", ReferenceName = "Tumtum"}, + new {Id = "tbs", Scope = "I", Type = "L", ReferenceName = "Tanguat"}, + new {Id = "tbt", Scope = "I", Type = "L", ReferenceName = "Tembo (Kitembo)"}, + new {Id = "tbu", Scope = "I", Type = "E", ReferenceName = "Tubar"}, + new {Id = "tbv", Scope = "I", Type = "L", ReferenceName = "Tobo"}, + new {Id = "tbw", Scope = "I", Type = "L", ReferenceName = "Tagbanwa"}, + new {Id = "tbx", Scope = "I", Type = "L", ReferenceName = "Kapin"}, + new {Id = "tby", Scope = "I", Type = "L", ReferenceName = "Tabaru"}, + new {Id = "tbz", Scope = "I", Type = "L", ReferenceName = "Ditammari"}, + new {Id = "tca", Scope = "I", Type = "L", ReferenceName = "Ticuna"}, + new {Id = "tcb", Scope = "I", Type = "L", ReferenceName = "Tanacross"}, + new {Id = "tcc", Scope = "I", Type = "L", ReferenceName = "Datooga"}, + new {Id = "tcd", Scope = "I", Type = "L", ReferenceName = "Tafi"}, + new {Id = "tce", Scope = "I", Type = "L", ReferenceName = "Southern Tutchone"}, + new {Id = "tcf", Scope = "I", Type = "L", ReferenceName = "Malinaltepec Me'phaa"}, + new {Id = "tcg", Scope = "I", Type = "L", ReferenceName = "Tamagario"}, + new + { + Id = "tch", + Scope = "I", + Type = "L", + ReferenceName = "Turks And Caicos Creole English" + }, new {Id = "tci", Scope = "I", Type = "L", ReferenceName = "Wára"}, + new {Id = "tck", Scope = "I", Type = "L", ReferenceName = "Tchitchege"}, + new {Id = "tcl", Scope = "I", Type = "E", ReferenceName = "Taman (Myanmar)"}, + new {Id = "tcm", Scope = "I", Type = "L", ReferenceName = "Tanahmerah"}, + new {Id = "tcn", Scope = "I", Type = "L", ReferenceName = "Tichurong"}, + new {Id = "tco", Scope = "I", Type = "L", ReferenceName = "Taungyo"}, + new {Id = "tcp", Scope = "I", Type = "L", ReferenceName = "Tawr Chin"}, + new {Id = "tcq", Scope = "I", Type = "L", ReferenceName = "Kaiy"}, + new + { + Id = "tcs", + Scope = "I", + Type = "L", + ReferenceName = "Torres Strait Creole" + }, + new {Id = "tct", Scope = "I", Type = "L", ReferenceName = "T'en"}, + new + { + Id = "tcu", + Scope = "I", + Type = "L", + ReferenceName = "Southeastern Tarahumara" + }, + new {Id = "tcw", Scope = "I", Type = "L", ReferenceName = "Tecpatlán Totonac"}, + new {Id = "tcx", Scope = "I", Type = "L", ReferenceName = "Toda"}, + new {Id = "tcy", Scope = "I", Type = "L", ReferenceName = "Tulu"}, + new {Id = "tcz", Scope = "I", Type = "L", ReferenceName = "Thado Chin"}, + new {Id = "tda", Scope = "I", Type = "L", ReferenceName = "Tagdal"}, + new {Id = "tdb", Scope = "I", Type = "L", ReferenceName = "Panchpargania"}, + new {Id = "tdc", Scope = "I", Type = "L", ReferenceName = "Emberá-Tadó"}, + new {Id = "tdd", Scope = "I", Type = "L", ReferenceName = "Tai Nüa"}, + new + { + Id = "tde", + Scope = "I", + Type = "L", + ReferenceName = "Tiranige Diga Dogon" + }, + new {Id = "tdf", Scope = "I", Type = "L", ReferenceName = "Talieng"}, + new {Id = "tdg", Scope = "I", Type = "L", ReferenceName = "Western Tamang"}, + new {Id = "tdh", Scope = "I", Type = "L", ReferenceName = "Thulung"}, + new {Id = "tdi", Scope = "I", Type = "L", ReferenceName = "Tomadino"}, + new {Id = "tdj", Scope = "I", Type = "L", ReferenceName = "Tajio"}, + new {Id = "tdk", Scope = "I", Type = "L", ReferenceName = "Tambas"}, + new {Id = "tdl", Scope = "I", Type = "L", ReferenceName = "Sur"}, + new {Id = "tdm", Scope = "I", Type = "L", ReferenceName = "Taruma"}, + new {Id = "tdn", Scope = "I", Type = "L", ReferenceName = "Tondano"}, + new {Id = "tdo", Scope = "I", Type = "L", ReferenceName = "Teme"}, + new {Id = "tdq", Scope = "I", Type = "L", ReferenceName = "Tita"}, + new {Id = "tdr", Scope = "I", Type = "L", ReferenceName = "Todrah"}, + new {Id = "tds", Scope = "I", Type = "L", ReferenceName = "Doutai"}, + new {Id = "tdt", Scope = "I", Type = "L", ReferenceName = "Tetun Dili"}, + new {Id = "tdv", Scope = "I", Type = "L", ReferenceName = "Toro"}, + new + { + Id = "tdx", + Scope = "I", + Type = "L", + ReferenceName = "Tandroy-Mahafaly Malagasy" + }, + new {Id = "tdy", Scope = "I", Type = "L", ReferenceName = "Tadyawan"}, + new {Id = "tea", Scope = "I", Type = "L", ReferenceName = "Temiar"}, + new {Id = "teb", Scope = "I", Type = "E", ReferenceName = "Tetete"}, + new {Id = "tec", Scope = "I", Type = "L", ReferenceName = "Terik"}, + new {Id = "ted", Scope = "I", Type = "L", ReferenceName = "Tepo Krumen"}, + new {Id = "tee", Scope = "I", Type = "L", ReferenceName = "Huehuetla Tepehua"}, + new {Id = "tef", Scope = "I", Type = "L", ReferenceName = "Teressa"}, + new {Id = "teg", Scope = "I", Type = "L", ReferenceName = "Teke-Tege"}, + new {Id = "teh", Scope = "I", Type = "L", ReferenceName = "Tehuelche"}, + new {Id = "tei", Scope = "I", Type = "L", ReferenceName = "Torricelli"}, + new {Id = "tek", Scope = "I", Type = "L", ReferenceName = "Ibali Teke"}, + new + { + Id = "tel", + Part2B = "tel", + Part2T = "tel", + Part1 = "te", + Scope = "I", + Type = "L", + ReferenceName = "Telugu" + }, new + { + Id = "tem", + Part2B = "tem", + Part2T = "tem", + Scope = "I", + Type = "L", + ReferenceName = "Timne" + }, new {Id = "ten", Scope = "I", Type = "E", ReferenceName = "Tama (Colombia)"}, + new {Id = "teo", Scope = "I", Type = "L", ReferenceName = "Teso"}, + new {Id = "tep", Scope = "I", Type = "E", ReferenceName = "Tepecano"}, + new {Id = "teq", Scope = "I", Type = "L", ReferenceName = "Temein"}, + new + { + Id = "ter", + Part2B = "ter", + Part2T = "ter", + Scope = "I", + Type = "L", + ReferenceName = "Tereno" + }, new {Id = "tes", Scope = "I", Type = "L", ReferenceName = "Tengger"}, + new + { + Id = "tet", + Part2B = "tet", + Part2T = "tet", + Scope = "I", + Type = "L", + ReferenceName = "Tetum" + }, new {Id = "teu", Scope = "I", Type = "L", ReferenceName = "Soo"}, + new {Id = "tev", Scope = "I", Type = "L", ReferenceName = "Teor"}, + new {Id = "tew", Scope = "I", Type = "L", ReferenceName = "Tewa (USA)"}, + new {Id = "tex", Scope = "I", Type = "L", ReferenceName = "Tennet"}, + new {Id = "tey", Scope = "I", Type = "L", ReferenceName = "Tulishi"}, + new {Id = "tez", Scope = "I", Type = "L", ReferenceName = "Tetserret"}, + new {Id = "tfi", Scope = "I", Type = "L", ReferenceName = "Tofin Gbe"}, + new {Id = "tfn", Scope = "I", Type = "L", ReferenceName = "Tanaina"}, + new {Id = "tfo", Scope = "I", Type = "L", ReferenceName = "Tefaro"}, + new {Id = "tfr", Scope = "I", Type = "L", ReferenceName = "Teribe"}, + new {Id = "tft", Scope = "I", Type = "L", ReferenceName = "Ternate"}, + new {Id = "tga", Scope = "I", Type = "L", ReferenceName = "Sagalla"}, + new {Id = "tgb", Scope = "I", Type = "L", ReferenceName = "Tobilung"}, + new {Id = "tgc", Scope = "I", Type = "L", ReferenceName = "Tigak"}, + new {Id = "tgd", Scope = "I", Type = "L", ReferenceName = "Ciwogai"}, + new {Id = "tge", Scope = "I", Type = "L", ReferenceName = "Eastern Gorkha Tamang"}, + new {Id = "tgf", Scope = "I", Type = "L", ReferenceName = "Chalikha"}, + new + { + Id = "tgh", + Scope = "I", + Type = "L", + ReferenceName = "Tobagonian Creole English" + }, + new {Id = "tgi", Scope = "I", Type = "L", ReferenceName = "Lawunuia"}, + new {Id = "tgj", Scope = "I", Type = "L", ReferenceName = "Tagin"}, + new + { + Id = "tgk", + Part2B = "tgk", + Part2T = "tgk", + Part1 = "tg", + Scope = "I", + Type = "L", + ReferenceName = "Tajik" + }, new + { + Id = "tgl", + Part2B = "tgl", + Part2T = "tgl", + Part1 = "tl", + Scope = "I", + Type = "L", + ReferenceName = "Tagalog" + }, new {Id = "tgn", Scope = "I", Type = "L", ReferenceName = "Tandaganon"}, + new {Id = "tgo", Scope = "I", Type = "L", ReferenceName = "Sudest"}, + new {Id = "tgp", Scope = "I", Type = "L", ReferenceName = "Tangoa"}, + new {Id = "tgq", Scope = "I", Type = "L", ReferenceName = "Tring"}, + new {Id = "tgr", Scope = "I", Type = "L", ReferenceName = "Tareng"}, + new {Id = "tgs", Scope = "I", Type = "L", ReferenceName = "Nume"}, + new {Id = "tgt", Scope = "I", Type = "L", ReferenceName = "Central Tagbanwa"}, + new {Id = "tgu", Scope = "I", Type = "L", ReferenceName = "Tanggu"}, + new {Id = "tgv", Scope = "I", Type = "E", ReferenceName = "Tingui-Boto"}, + new {Id = "tgw", Scope = "I", Type = "L", ReferenceName = "Tagwana Senoufo"}, + new {Id = "tgx", Scope = "I", Type = "L", ReferenceName = "Tagish"}, + new {Id = "tgy", Scope = "I", Type = "E", ReferenceName = "Togoyo"}, + new {Id = "tgz", Scope = "I", Type = "E", ReferenceName = "Tagalaka"}, + new + { + Id = "tha", + Part2B = "tha", + Part2T = "tha", + Part1 = "th", + Scope = "I", + Type = "L", + ReferenceName = "Thai" + }, new {Id = "thd", Scope = "I", Type = "L", ReferenceName = "Kuuk Thaayorre"}, + new {Id = "the", Scope = "I", Type = "L", ReferenceName = "Chitwania Tharu"}, + new {Id = "thf", Scope = "I", Type = "L", ReferenceName = "Thangmi"}, + new {Id = "thh", Scope = "I", Type = "L", ReferenceName = "Northern Tarahumara"}, + new {Id = "thi", Scope = "I", Type = "L", ReferenceName = "Tai Long"}, + new {Id = "thk", Scope = "I", Type = "L", ReferenceName = "Tharaka"}, + new {Id = "thl", Scope = "I", Type = "L", ReferenceName = "Dangaura Tharu"}, + new {Id = "thm", Scope = "I", Type = "L", ReferenceName = "Aheu"}, + new {Id = "thn", Scope = "I", Type = "L", ReferenceName = "Thachanadan"}, + new {Id = "thp", Scope = "I", Type = "L", ReferenceName = "Thompson"}, + new {Id = "thq", Scope = "I", Type = "L", ReferenceName = "Kochila Tharu"}, + new {Id = "thr", Scope = "I", Type = "L", ReferenceName = "Rana Tharu"}, + new {Id = "ths", Scope = "I", Type = "L", ReferenceName = "Thakali"}, + new {Id = "tht", Scope = "I", Type = "L", ReferenceName = "Tahltan"}, + new {Id = "thu", Scope = "I", Type = "L", ReferenceName = "Thuri"}, + new {Id = "thv", Scope = "I", Type = "L", ReferenceName = "Tahaggart Tamahaq"}, + new {Id = "thw", Scope = "I", Type = "L", ReferenceName = "Thudam"}, + new {Id = "thy", Scope = "I", Type = "L", ReferenceName = "Tha"}, + new {Id = "thz", Scope = "I", Type = "L", ReferenceName = "Tayart Tamajeq"}, + new {Id = "tia", Scope = "I", Type = "L", ReferenceName = "Tidikelt Tamazight"}, + new {Id = "tic", Scope = "I", Type = "L", ReferenceName = "Tira"}, + new {Id = "tif", Scope = "I", Type = "L", ReferenceName = "Tifal"}, + new + { + Id = "tig", + Part2B = "tig", + Part2T = "tig", + Scope = "I", + Type = "L", + ReferenceName = "Tigre" + }, new {Id = "tih", Scope = "I", Type = "L", ReferenceName = "Timugon Murut"}, + new {Id = "tii", Scope = "I", Type = "L", ReferenceName = "Tiene"}, + new {Id = "tij", Scope = "I", Type = "L", ReferenceName = "Tilung"}, + new {Id = "tik", Scope = "I", Type = "L", ReferenceName = "Tikar"}, + new {Id = "til", Scope = "I", Type = "E", ReferenceName = "Tillamook"}, + new {Id = "tim", Scope = "I", Type = "L", ReferenceName = "Timbe"}, + new {Id = "tin", Scope = "I", Type = "L", ReferenceName = "Tindi"}, + new {Id = "tio", Scope = "I", Type = "L", ReferenceName = "Teop"}, + new {Id = "tip", Scope = "I", Type = "L", ReferenceName = "Trimuris"}, + new {Id = "tiq", Scope = "I", Type = "L", ReferenceName = "Tiéfo"}, + new + { + Id = "tir", + Part2B = "tir", + Part2T = "tir", + Part1 = "ti", + Scope = "I", + Type = "L", + ReferenceName = "Tigrinya" + }, new {Id = "tis", Scope = "I", Type = "L", ReferenceName = "Masadiit Itneg"}, + new {Id = "tit", Scope = "I", Type = "L", ReferenceName = "Tinigua"}, + new {Id = "tiu", Scope = "I", Type = "L", ReferenceName = "Adasen"}, + new + { + Id = "tiv", + Part2B = "tiv", + Part2T = "tiv", + Scope = "I", + Type = "L", + ReferenceName = "Tiv" + }, new {Id = "tiw", Scope = "I", Type = "L", ReferenceName = "Tiwi"}, + new {Id = "tix", Scope = "I", Type = "L", ReferenceName = "Southern Tiwa"}, + new {Id = "tiy", Scope = "I", Type = "L", ReferenceName = "Tiruray"}, + new {Id = "tiz", Scope = "I", Type = "L", ReferenceName = "Tai Hongjin"}, + new {Id = "tja", Scope = "I", Type = "L", ReferenceName = "Tajuasohn"}, + new {Id = "tjg", Scope = "I", Type = "L", ReferenceName = "Tunjung"}, + new {Id = "tji", Scope = "I", Type = "L", ReferenceName = "Northern Tujia"}, + new {Id = "tjj", Scope = "I", Type = "L", ReferenceName = "Tjungundji"}, + new {Id = "tjl", Scope = "I", Type = "L", ReferenceName = "Tai Laing"}, + new {Id = "tjm", Scope = "I", Type = "E", ReferenceName = "Timucua"}, + new {Id = "tjn", Scope = "I", Type = "E", ReferenceName = "Tonjon"}, + new {Id = "tjo", Scope = "I", Type = "L", ReferenceName = "Temacine Tamazight"}, + new {Id = "tjp", Scope = "I", Type = "L", ReferenceName = "Tjupany"}, + new {Id = "tjs", Scope = "I", Type = "L", ReferenceName = "Southern Tujia"}, + new {Id = "tju", Scope = "I", Type = "E", ReferenceName = "Tjurruru"}, + new {Id = "tjw", Scope = "I", Type = "L", ReferenceName = "Djabwurrung"}, + new {Id = "tka", Scope = "I", Type = "E", ReferenceName = "Truká"}, + new {Id = "tkb", Scope = "I", Type = "L", ReferenceName = "Buksa"}, + new {Id = "tkd", Scope = "I", Type = "L", ReferenceName = "Tukudede"}, + new {Id = "tke", Scope = "I", Type = "L", ReferenceName = "Takwane"}, + new {Id = "tkf", Scope = "I", Type = "E", ReferenceName = "Tukumanféd"}, + new {Id = "tkg", Scope = "I", Type = "L", ReferenceName = "Tesaka Malagasy"}, + new + { + Id = "tkl", + Part2B = "tkl", + Part2T = "tkl", + Scope = "I", + Type = "L", + ReferenceName = "Tokelau" + }, new {Id = "tkm", Scope = "I", Type = "E", ReferenceName = "Takelma"}, + new {Id = "tkn", Scope = "I", Type = "L", ReferenceName = "Toku-No-Shima"}, + new {Id = "tkp", Scope = "I", Type = "L", ReferenceName = "Tikopia"}, + new {Id = "tkq", Scope = "I", Type = "L", ReferenceName = "Tee"}, + new {Id = "tkr", Scope = "I", Type = "L", ReferenceName = "Tsakhur"}, + new {Id = "tks", Scope = "I", Type = "L", ReferenceName = "Takestani"}, + new {Id = "tkt", Scope = "I", Type = "L", ReferenceName = "Kathoriya Tharu"}, + new {Id = "tku", Scope = "I", Type = "L", ReferenceName = "Upper Necaxa Totonac"}, + new {Id = "tkv", Scope = "I", Type = "L", ReferenceName = "Mur Pano"}, + new {Id = "tkw", Scope = "I", Type = "L", ReferenceName = "Teanu"}, + new {Id = "tkx", Scope = "I", Type = "L", ReferenceName = "Tangko"}, + new {Id = "tkz", Scope = "I", Type = "L", ReferenceName = "Takua"}, + new {Id = "tla", Scope = "I", Type = "L", ReferenceName = "Southwestern Tepehuan"}, + new {Id = "tlb", Scope = "I", Type = "L", ReferenceName = "Tobelo"}, + new {Id = "tlc", Scope = "I", Type = "L", ReferenceName = "Yecuatla Totonac"}, + new {Id = "tld", Scope = "I", Type = "L", ReferenceName = "Talaud"}, + new {Id = "tlf", Scope = "I", Type = "L", ReferenceName = "Telefol"}, + new {Id = "tlg", Scope = "I", Type = "L", ReferenceName = "Tofanma"}, + new + { + Id = "tlh", + Part2B = "tlh", + Part2T = "tlh", + Scope = "I", + Type = "C", + ReferenceName = "Klingon" + }, new + { + Id = "tli", + Part2B = "tli", + Part2T = "tli", + Scope = "I", + Type = "L", + ReferenceName = "Tlingit" + }, new {Id = "tlj", Scope = "I", Type = "L", ReferenceName = "Talinga-Bwisi"}, + new {Id = "tlk", Scope = "I", Type = "L", ReferenceName = "Taloki"}, + new {Id = "tll", Scope = "I", Type = "L", ReferenceName = "Tetela"}, + new {Id = "tlm", Scope = "I", Type = "L", ReferenceName = "Tolomako"}, + new {Id = "tln", Scope = "I", Type = "L", ReferenceName = "Talondo'"}, + new {Id = "tlo", Scope = "I", Type = "L", ReferenceName = "Talodi"}, + new + { + Id = "tlp", + Scope = "I", + Type = "L", + ReferenceName = "Filomena Mata-Coahuitlán Totonac" + }, new {Id = "tlq", Scope = "I", Type = "L", ReferenceName = "Tai Loi"}, + new {Id = "tlr", Scope = "I", Type = "L", ReferenceName = "Talise"}, + new {Id = "tls", Scope = "I", Type = "L", ReferenceName = "Tambotalo"}, + new {Id = "tlt", Scope = "I", Type = "L", ReferenceName = "Sou Nama"}, + new {Id = "tlu", Scope = "I", Type = "L", ReferenceName = "Tulehu"}, + new {Id = "tlv", Scope = "I", Type = "L", ReferenceName = "Taliabu"}, + new {Id = "tlx", Scope = "I", Type = "L", ReferenceName = "Khehek"}, + new {Id = "tly", Scope = "I", Type = "L", ReferenceName = "Talysh"}, + new {Id = "tma", Scope = "I", Type = "L", ReferenceName = "Tama (Chad)"}, + new {Id = "tmb", Scope = "I", Type = "L", ReferenceName = "Katbol"}, + new {Id = "tmc", Scope = "I", Type = "L", ReferenceName = "Tumak"}, + new {Id = "tmd", Scope = "I", Type = "L", ReferenceName = "Haruai"}, + new {Id = "tme", Scope = "I", Type = "E", ReferenceName = "Tremembé"}, + new {Id = "tmf", Scope = "I", Type = "L", ReferenceName = "Toba-Maskoy"}, + new {Id = "tmg", Scope = "I", Type = "E", ReferenceName = "Ternateño"}, + new + { + Id = "tmh", + Part2B = "tmh", + Part2T = "tmh", + Scope = "M", + Type = "L", + ReferenceName = "Tamashek" + }, new {Id = "tmi", Scope = "I", Type = "L", ReferenceName = "Tutuba"}, + new {Id = "tmj", Scope = "I", Type = "L", ReferenceName = "Samarokena"}, + new {Id = "tmk", Scope = "I", Type = "L", ReferenceName = "Northwestern Tamang"}, + new {Id = "tml", Scope = "I", Type = "L", ReferenceName = "Tamnim Citak"}, + new {Id = "tmm", Scope = "I", Type = "L", ReferenceName = "Tai Thanh"}, + new {Id = "tmn", Scope = "I", Type = "L", ReferenceName = "Taman (Indonesia)"}, + new {Id = "tmo", Scope = "I", Type = "L", ReferenceName = "Temoq"}, + new {Id = "tmq", Scope = "I", Type = "L", ReferenceName = "Tumleo"}, + new + { + Id = "tmr", + Scope = "I", + Type = "E", + ReferenceName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)" + }, new {Id = "tms", Scope = "I", Type = "L", ReferenceName = "Tima"}, + new {Id = "tmt", Scope = "I", Type = "L", ReferenceName = "Tasmate"}, + new {Id = "tmu", Scope = "I", Type = "L", ReferenceName = "Iau"}, + new {Id = "tmv", Scope = "I", Type = "L", ReferenceName = "Tembo (Motembo)"}, + new {Id = "tmw", Scope = "I", Type = "L", ReferenceName = "Temuan"}, + new {Id = "tmy", Scope = "I", Type = "L", ReferenceName = "Tami"}, + new {Id = "tmz", Scope = "I", Type = "E", ReferenceName = "Tamanaku"}, + new {Id = "tna", Scope = "I", Type = "L", ReferenceName = "Tacana"}, + new {Id = "tnb", Scope = "I", Type = "L", ReferenceName = "Western Tunebo"}, + new {Id = "tnc", Scope = "I", Type = "L", ReferenceName = "Tanimuca-Retuarã"}, + new {Id = "tnd", Scope = "I", Type = "L", ReferenceName = "Angosturas Tunebo"}, + new {Id = "tng", Scope = "I", Type = "L", ReferenceName = "Tobanga"}, + new {Id = "tnh", Scope = "I", Type = "L", ReferenceName = "Maiani"}, + new {Id = "tni", Scope = "I", Type = "L", ReferenceName = "Tandia"}, + new {Id = "tnk", Scope = "I", Type = "L", ReferenceName = "Kwamera"}, + new {Id = "tnl", Scope = "I", Type = "L", ReferenceName = "Lenakel"}, + new {Id = "tnm", Scope = "I", Type = "L", ReferenceName = "Tabla"}, + new {Id = "tnn", Scope = "I", Type = "L", ReferenceName = "North Tanna"}, + new {Id = "tno", Scope = "I", Type = "L", ReferenceName = "Toromono"}, + new {Id = "tnp", Scope = "I", Type = "L", ReferenceName = "Whitesands"}, + new {Id = "tnq", Scope = "I", Type = "E", ReferenceName = "Taino"}, + new {Id = "tnr", Scope = "I", Type = "L", ReferenceName = "Ménik"}, + new {Id = "tns", Scope = "I", Type = "L", ReferenceName = "Tenis"}, + new {Id = "tnt", Scope = "I", Type = "L", ReferenceName = "Tontemboan"}, + new {Id = "tnu", Scope = "I", Type = "L", ReferenceName = "Tay Khang"}, + new {Id = "tnv", Scope = "I", Type = "L", ReferenceName = "Tangchangya"}, + new {Id = "tnw", Scope = "I", Type = "L", ReferenceName = "Tonsawang"}, + new {Id = "tnx", Scope = "I", Type = "L", ReferenceName = "Tanema"}, + new {Id = "tny", Scope = "I", Type = "L", ReferenceName = "Tongwe"}, + new {Id = "tnz", Scope = "I", Type = "L", ReferenceName = "Ten'edn"}, + new {Id = "tob", Scope = "I", Type = "L", ReferenceName = "Toba"}, + new {Id = "toc", Scope = "I", Type = "L", ReferenceName = "Coyutla Totonac"}, + new {Id = "tod", Scope = "I", Type = "L", ReferenceName = "Toma"}, + new {Id = "tof", Scope = "I", Type = "L", ReferenceName = "Gizrra"}, + new + { + Id = "tog", + Part2B = "tog", + Part2T = "tog", + Scope = "I", + Type = "L", + ReferenceName = "Tonga (Nyasa)" + }, new {Id = "toh", Scope = "I", Type = "L", ReferenceName = "Gitonga"}, + new {Id = "toi", Scope = "I", Type = "L", ReferenceName = "Tonga (Zambia)"}, + new {Id = "toj", Scope = "I", Type = "L", ReferenceName = "Tojolabal"}, + new {Id = "tol", Scope = "I", Type = "E", ReferenceName = "Tolowa"}, + new {Id = "tom", Scope = "I", Type = "L", ReferenceName = "Tombulu"}, + new + { + Id = "ton", + Part2B = "ton", + Part2T = "ton", + Part1 = "to", + Scope = "I", + Type = "L", + ReferenceName = "Tonga (Tonga Islands)" + }, + new + { + Id = "too", + Scope = "I", + Type = "L", + ReferenceName = "Xicotepec De Juárez Totonac" + }, new {Id = "top", Scope = "I", Type = "L", ReferenceName = "Papantla Totonac"}, + new {Id = "toq", Scope = "I", Type = "L", ReferenceName = "Toposa"}, + new {Id = "tor", Scope = "I", Type = "L", ReferenceName = "Togbo-Vara Banda"}, + new {Id = "tos", Scope = "I", Type = "L", ReferenceName = "Highland Totonac"}, + new {Id = "tou", Scope = "I", Type = "L", ReferenceName = "Tho"}, + new {Id = "tov", Scope = "I", Type = "L", ReferenceName = "Upper Taromi"}, + new {Id = "tow", Scope = "I", Type = "L", ReferenceName = "Jemez"}, + new {Id = "tox", Scope = "I", Type = "L", ReferenceName = "Tobian"}, + new {Id = "toy", Scope = "I", Type = "L", ReferenceName = "Topoiyo"}, + new {Id = "toz", Scope = "I", Type = "L", ReferenceName = "To"}, + new {Id = "tpa", Scope = "I", Type = "L", ReferenceName = "Taupota"}, + new {Id = "tpc", Scope = "I", Type = "L", ReferenceName = "Azoyú Me'phaa"}, + new {Id = "tpe", Scope = "I", Type = "L", ReferenceName = "Tippera"}, + new {Id = "tpf", Scope = "I", Type = "L", ReferenceName = "Tarpia"}, + new {Id = "tpg", Scope = "I", Type = "L", ReferenceName = "Kula"}, + new + { + Id = "tpi", + Part2B = "tpi", + Part2T = "tpi", + Scope = "I", + Type = "L", + ReferenceName = "Tok Pisin" + }, new {Id = "tpj", Scope = "I", Type = "L", ReferenceName = "Tapieté"}, + new {Id = "tpk", Scope = "I", Type = "E", ReferenceName = "Tupinikin"}, + new {Id = "tpl", Scope = "I", Type = "L", ReferenceName = "Tlacoapa Me'phaa"}, + new {Id = "tpm", Scope = "I", Type = "L", ReferenceName = "Tampulma"}, + new {Id = "tpn", Scope = "I", Type = "E", ReferenceName = "Tupinambá"}, + new {Id = "tpo", Scope = "I", Type = "L", ReferenceName = "Tai Pao"}, + new {Id = "tpp", Scope = "I", Type = "L", ReferenceName = "Pisaflores Tepehua"}, + new {Id = "tpq", Scope = "I", Type = "L", ReferenceName = "Tukpa"}, + new {Id = "tpr", Scope = "I", Type = "L", ReferenceName = "Tuparí"}, + new {Id = "tpt", Scope = "I", Type = "L", ReferenceName = "Tlachichilco Tepehua"}, + new {Id = "tpu", Scope = "I", Type = "L", ReferenceName = "Tampuan"}, + new {Id = "tpv", Scope = "I", Type = "L", ReferenceName = "Tanapag"}, + new {Id = "tpw", Scope = "I", Type = "E", ReferenceName = "Tupí"}, + new {Id = "tpx", Scope = "I", Type = "L", ReferenceName = "Acatepec Me'phaa"}, + new {Id = "tpy", Scope = "I", Type = "L", ReferenceName = "Trumai"}, + new {Id = "tpz", Scope = "I", Type = "L", ReferenceName = "Tinputz"}, + new {Id = "tqb", Scope = "I", Type = "L", ReferenceName = "Tembé"}, + new {Id = "tql", Scope = "I", Type = "L", ReferenceName = "Lehali"}, + new {Id = "tqm", Scope = "I", Type = "L", ReferenceName = "Turumsa"}, + new {Id = "tqn", Scope = "I", Type = "L", ReferenceName = "Tenino"}, + new {Id = "tqo", Scope = "I", Type = "L", ReferenceName = "Toaripi"}, + new {Id = "tqp", Scope = "I", Type = "L", ReferenceName = "Tomoip"}, + new {Id = "tqq", Scope = "I", Type = "L", ReferenceName = "Tunni"}, + new {Id = "tqr", Scope = "I", Type = "E", ReferenceName = "Torona"}, + new {Id = "tqt", Scope = "I", Type = "L", ReferenceName = "Western Totonac"}, + new {Id = "tqu", Scope = "I", Type = "L", ReferenceName = "Touo"}, + new {Id = "tqw", Scope = "I", Type = "E", ReferenceName = "Tonkawa"}, + new {Id = "tra", Scope = "I", Type = "L", ReferenceName = "Tirahi"}, + new {Id = "trb", Scope = "I", Type = "L", ReferenceName = "Terebu"}, + new {Id = "trc", Scope = "I", Type = "L", ReferenceName = "Copala Triqui"}, + new {Id = "trd", Scope = "I", Type = "L", ReferenceName = "Turi"}, + new {Id = "tre", Scope = "I", Type = "L", ReferenceName = "East Tarangan"}, + new + { + Id = "trf", + Scope = "I", + Type = "L", + ReferenceName = "Trinidadian Creole English" + }, new {Id = "trg", Scope = "I", Type = "L", ReferenceName = "Lishán Didán"}, + new {Id = "trh", Scope = "I", Type = "L", ReferenceName = "Turaka"}, + new {Id = "tri", Scope = "I", Type = "L", ReferenceName = "Trió"}, + new {Id = "trj", Scope = "I", Type = "L", ReferenceName = "Toram"}, + new {Id = "trl", Scope = "I", Type = "L", ReferenceName = "Traveller Scottish"}, + new {Id = "trm", Scope = "I", Type = "L", ReferenceName = "Tregami"}, + new {Id = "trn", Scope = "I", Type = "L", ReferenceName = "Trinitario"}, + new {Id = "tro", Scope = "I", Type = "L", ReferenceName = "Tarao Naga"}, + new {Id = "trp", Scope = "I", Type = "L", ReferenceName = "Kok Borok"}, + new + { + Id = "trq", + Scope = "I", + Type = "L", + ReferenceName = "San Martín Itunyoso Triqui" + }, new {Id = "trr", Scope = "I", Type = "L", ReferenceName = "Taushiro"}, + new + { + Id = "trs", + Scope = "I", + Type = "L", + ReferenceName = "Chicahuaxtla Triqui" + }, + new {Id = "trt", Scope = "I", Type = "L", ReferenceName = "Tunggare"}, + new {Id = "tru", Scope = "I", Type = "L", ReferenceName = "Turoyo"}, + new {Id = "trv", Scope = "I", Type = "L", ReferenceName = "Taroko"}, + new {Id = "trw", Scope = "I", Type = "L", ReferenceName = "Torwali"}, + new + { + Id = "trx", + Scope = "I", + Type = "L", + ReferenceName = "Tringgus-Sembaan Bidayuh" + }, + new {Id = "try", Scope = "I", Type = "E", ReferenceName = "Turung"}, + new {Id = "trz", Scope = "I", Type = "E", ReferenceName = "Torá"}, + new {Id = "tsa", Scope = "I", Type = "L", ReferenceName = "Tsaangi"}, + new {Id = "tsb", Scope = "I", Type = "L", ReferenceName = "Tsamai"}, + new {Id = "tsc", Scope = "I", Type = "L", ReferenceName = "Tswa"}, + new {Id = "tsd", Scope = "I", Type = "L", ReferenceName = "Tsakonian"}, + new + { + Id = "tse", + Scope = "I", + Type = "L", + ReferenceName = "Tunisian Sign Language" + }, + new {Id = "tsg", Scope = "I", Type = "L", ReferenceName = "Tausug"}, + new {Id = "tsh", Scope = "I", Type = "L", ReferenceName = "Tsuvan"}, + new + { + Id = "tsi", + Part2B = "tsi", + Part2T = "tsi", + Scope = "I", + Type = "L", + ReferenceName = "Tsimshian" + }, new {Id = "tsj", Scope = "I", Type = "L", ReferenceName = "Tshangla"}, + new {Id = "tsk", Scope = "I", Type = "L", ReferenceName = "Tseku"}, + new {Id = "tsl", Scope = "I", Type = "L", ReferenceName = "Ts'ün-Lao"}, + new {Id = "tsm", Scope = "I", Type = "L", ReferenceName = "Turkish Sign Language"}, + new + { + Id = "tsn", + Part2B = "tsn", + Part2T = "tsn", + Part1 = "tn", + Scope = "I", + Type = "L", + ReferenceName = "Tswana" + }, new + { + Id = "tso", + Part2B = "tso", + Part2T = "tso", + Part1 = "ts", + Scope = "I", + Type = "L", + ReferenceName = "Tsonga" + }, new {Id = "tsp", Scope = "I", Type = "L", ReferenceName = "Northern Toussian"}, + new {Id = "tsq", Scope = "I", Type = "L", ReferenceName = "Thai Sign Language"}, + new {Id = "tsr", Scope = "I", Type = "L", ReferenceName = "Akei"}, + new {Id = "tss", Scope = "I", Type = "L", ReferenceName = "Taiwan Sign Language"}, + new {Id = "tst", Scope = "I", Type = "L", ReferenceName = "Tondi Songway Kiini"}, + new {Id = "tsu", Scope = "I", Type = "L", ReferenceName = "Tsou"}, + new {Id = "tsv", Scope = "I", Type = "L", ReferenceName = "Tsogo"}, + new {Id = "tsw", Scope = "I", Type = "L", ReferenceName = "Tsishingini"}, + new {Id = "tsx", Scope = "I", Type = "L", ReferenceName = "Mubami"}, + new {Id = "tsy", Scope = "I", Type = "L", ReferenceName = "Tebul Sign Language"}, + new {Id = "tsz", Scope = "I", Type = "L", ReferenceName = "Purepecha"}, + new {Id = "tta", Scope = "I", Type = "E", ReferenceName = "Tutelo"}, + new {Id = "ttb", Scope = "I", Type = "L", ReferenceName = "Gaa"}, + new {Id = "ttc", Scope = "I", Type = "L", ReferenceName = "Tektiteko"}, + new {Id = "ttd", Scope = "I", Type = "L", ReferenceName = "Tauade"}, + new {Id = "tte", Scope = "I", Type = "L", ReferenceName = "Bwanabwana"}, + new {Id = "ttf", Scope = "I", Type = "L", ReferenceName = "Tuotomb"}, + new {Id = "ttg", Scope = "I", Type = "L", ReferenceName = "Tutong"}, + new {Id = "tth", Scope = "I", Type = "L", ReferenceName = "Upper Ta'oih"}, + new {Id = "tti", Scope = "I", Type = "L", ReferenceName = "Tobati"}, + new {Id = "ttj", Scope = "I", Type = "L", ReferenceName = "Tooro"}, + new {Id = "ttk", Scope = "I", Type = "L", ReferenceName = "Totoro"}, + new {Id = "ttl", Scope = "I", Type = "L", ReferenceName = "Totela"}, + new {Id = "ttm", Scope = "I", Type = "L", ReferenceName = "Northern Tutchone"}, + new {Id = "ttn", Scope = "I", Type = "L", ReferenceName = "Towei"}, + new {Id = "tto", Scope = "I", Type = "L", ReferenceName = "Lower Ta'oih"}, + new {Id = "ttp", Scope = "I", Type = "L", ReferenceName = "Tombelala"}, + new {Id = "ttq", Scope = "I", Type = "L", ReferenceName = "Tawallammat Tamajaq"}, + new {Id = "ttr", Scope = "I", Type = "L", ReferenceName = "Tera"}, + new {Id = "tts", Scope = "I", Type = "L", ReferenceName = "Northeastern Thai"}, + new {Id = "ttt", Scope = "I", Type = "L", ReferenceName = "Muslim Tat"}, + new {Id = "ttu", Scope = "I", Type = "L", ReferenceName = "Torau"}, + new {Id = "ttv", Scope = "I", Type = "L", ReferenceName = "Titan"}, + new {Id = "ttw", Scope = "I", Type = "L", ReferenceName = "Long Wat"}, + new {Id = "tty", Scope = "I", Type = "L", ReferenceName = "Sikaritai"}, + new {Id = "ttz", Scope = "I", Type = "L", ReferenceName = "Tsum"}, + new {Id = "tua", Scope = "I", Type = "L", ReferenceName = "Wiarumus"}, + new {Id = "tub", Scope = "I", Type = "E", ReferenceName = "Tübatulabal"}, + new {Id = "tuc", Scope = "I", Type = "L", ReferenceName = "Mutu"}, + new {Id = "tud", Scope = "I", Type = "E", ReferenceName = "Tuxá"}, + new {Id = "tue", Scope = "I", Type = "L", ReferenceName = "Tuyuca"}, + new {Id = "tuf", Scope = "I", Type = "L", ReferenceName = "Central Tunebo"}, + new {Id = "tug", Scope = "I", Type = "L", ReferenceName = "Tunia"}, + new {Id = "tuh", Scope = "I", Type = "L", ReferenceName = "Taulil"}, + new {Id = "tui", Scope = "I", Type = "L", ReferenceName = "Tupuri"}, + new {Id = "tuj", Scope = "I", Type = "L", ReferenceName = "Tugutil"}, + new + { + Id = "tuk", + Part2B = "tuk", + Part2T = "tuk", + Part1 = "tk", + Scope = "I", + Type = "L", + ReferenceName = "Turkmen" + }, new {Id = "tul", Scope = "I", Type = "L", ReferenceName = "Tula"}, + new + { + Id = "tum", + Part2B = "tum", + Part2T = "tum", + Scope = "I", + Type = "L", + ReferenceName = "Tumbuka" + }, new {Id = "tun", Scope = "I", Type = "L", ReferenceName = "Tunica"}, + new {Id = "tuo", Scope = "I", Type = "L", ReferenceName = "Tucano"}, + new {Id = "tuq", Scope = "I", Type = "L", ReferenceName = "Tedaga"}, + new + { + Id = "tur", + Part2B = "tur", + Part2T = "tur", + Part1 = "tr", + Scope = "I", + Type = "L", + ReferenceName = "Turkish" + }, new {Id = "tus", Scope = "I", Type = "L", ReferenceName = "Tuscarora"}, + new {Id = "tuu", Scope = "I", Type = "L", ReferenceName = "Tututni"}, + new {Id = "tuv", Scope = "I", Type = "L", ReferenceName = "Turkana"}, + new {Id = "tux", Scope = "I", Type = "E", ReferenceName = "Tuxináwa"}, + new {Id = "tuy", Scope = "I", Type = "L", ReferenceName = "Tugen"}, + new {Id = "tuz", Scope = "I", Type = "L", ReferenceName = "Turka"}, + new {Id = "tva", Scope = "I", Type = "L", ReferenceName = "Vaghua"}, + new {Id = "tvd", Scope = "I", Type = "L", ReferenceName = "Tsuvadi"}, + new {Id = "tve", Scope = "I", Type = "L", ReferenceName = "Te'un"}, + new {Id = "tvk", Scope = "I", Type = "L", ReferenceName = "Southeast Ambrym"}, + new + { + Id = "tvl", + Part2B = "tvl", + Part2T = "tvl", + Scope = "I", + Type = "L", + ReferenceName = "Tuvalu" + }, new {Id = "tvm", Scope = "I", Type = "L", ReferenceName = "Tela-Masbuar"}, + new {Id = "tvn", Scope = "I", Type = "L", ReferenceName = "Tavoyan"}, + new {Id = "tvo", Scope = "I", Type = "L", ReferenceName = "Tidore"}, + new {Id = "tvs", Scope = "I", Type = "L", ReferenceName = "Taveta"}, + new {Id = "tvt", Scope = "I", Type = "L", ReferenceName = "Tutsa Naga"}, + new {Id = "tvu", Scope = "I", Type = "L", ReferenceName = "Tunen"}, + new {Id = "tvw", Scope = "I", Type = "L", ReferenceName = "Sedoa"}, + new {Id = "tvx", Scope = "I", Type = "E", ReferenceName = "Taivoan"}, + new {Id = "tvy", Scope = "I", Type = "E", ReferenceName = "Timor Pidgin"}, + new {Id = "twa", Scope = "I", Type = "E", ReferenceName = "Twana"}, + new {Id = "twb", Scope = "I", Type = "L", ReferenceName = "Western Tawbuid"}, + new {Id = "twc", Scope = "I", Type = "E", ReferenceName = "Teshenawa"}, + new {Id = "twd", Scope = "I", Type = "L", ReferenceName = "Twents"}, + new {Id = "twe", Scope = "I", Type = "L", ReferenceName = "Tewa (Indonesia)"}, + new {Id = "twf", Scope = "I", Type = "L", ReferenceName = "Northern Tiwa"}, + new {Id = "twg", Scope = "I", Type = "L", ReferenceName = "Tereweng"}, + new {Id = "twh", Scope = "I", Type = "L", ReferenceName = "Tai Dón"}, + new + { + Id = "twi", + Part2B = "twi", + Part2T = "twi", + Part1 = "tw", + Scope = "I", + Type = "L", + ReferenceName = "Twi" + }, new {Id = "twl", Scope = "I", Type = "L", ReferenceName = "Tawara"}, + new {Id = "twm", Scope = "I", Type = "L", ReferenceName = "Tawang Monpa"}, + new {Id = "twn", Scope = "I", Type = "L", ReferenceName = "Twendi"}, + new {Id = "two", Scope = "I", Type = "L", ReferenceName = "Tswapong"}, + new {Id = "twp", Scope = "I", Type = "L", ReferenceName = "Ere"}, + new {Id = "twq", Scope = "I", Type = "L", ReferenceName = "Tasawaq"}, + new + { + Id = "twr", + Scope = "I", + Type = "L", + ReferenceName = "Southwestern Tarahumara" + }, + new {Id = "twt", Scope = "I", Type = "E", ReferenceName = "Turiwára"}, + new {Id = "twu", Scope = "I", Type = "L", ReferenceName = "Termanu"}, + new {Id = "tww", Scope = "I", Type = "L", ReferenceName = "Tuwari"}, + new {Id = "twx", Scope = "I", Type = "L", ReferenceName = "Tewe"}, + new {Id = "twy", Scope = "I", Type = "L", ReferenceName = "Tawoyan"}, + new {Id = "txa", Scope = "I", Type = "L", ReferenceName = "Tombonuo"}, + new {Id = "txb", Scope = "I", Type = "A", ReferenceName = "Tokharian B"}, + new {Id = "txc", Scope = "I", Type = "E", ReferenceName = "Tsetsaut"}, + new {Id = "txe", Scope = "I", Type = "L", ReferenceName = "Totoli"}, + new {Id = "txg", Scope = "I", Type = "A", ReferenceName = "Tangut"}, + new {Id = "txh", Scope = "I", Type = "A", ReferenceName = "Thracian"}, + new {Id = "txi", Scope = "I", Type = "L", ReferenceName = "Ikpeng"}, + new {Id = "txj", Scope = "I", Type = "L", ReferenceName = "Tarjumo"}, + new {Id = "txm", Scope = "I", Type = "L", ReferenceName = "Tomini"}, + new {Id = "txn", Scope = "I", Type = "L", ReferenceName = "West Tarangan"}, + new {Id = "txo", Scope = "I", Type = "L", ReferenceName = "Toto"}, + new {Id = "txq", Scope = "I", Type = "L", ReferenceName = "Tii"}, + new {Id = "txr", Scope = "I", Type = "A", ReferenceName = "Tartessian"}, + new {Id = "txs", Scope = "I", Type = "L", ReferenceName = "Tonsea"}, + new {Id = "txt", Scope = "I", Type = "L", ReferenceName = "Citak"}, + new {Id = "txu", Scope = "I", Type = "L", ReferenceName = "Kayapó"}, + new {Id = "txx", Scope = "I", Type = "L", ReferenceName = "Tatana"}, + new {Id = "txy", Scope = "I", Type = "L", ReferenceName = "Tanosy Malagasy"}, + new {Id = "tya", Scope = "I", Type = "L", ReferenceName = "Tauya"}, + new {Id = "tye", Scope = "I", Type = "L", ReferenceName = "Kyanga"}, + new {Id = "tyh", Scope = "I", Type = "L", ReferenceName = "O'du"}, + new {Id = "tyi", Scope = "I", Type = "L", ReferenceName = "Teke-Tsaayi"}, + new {Id = "tyj", Scope = "I", Type = "L", ReferenceName = "Tai Do"}, + new {Id = "tyl", Scope = "I", Type = "L", ReferenceName = "Thu Lao"}, + new {Id = "tyn", Scope = "I", Type = "L", ReferenceName = "Kombai"}, + new {Id = "typ", Scope = "I", Type = "E", ReferenceName = "Thaypan"}, + new {Id = "tyr", Scope = "I", Type = "L", ReferenceName = "Tai Daeng"}, + new {Id = "tys", Scope = "I", Type = "L", ReferenceName = "Tày Sa Pa"}, + new {Id = "tyt", Scope = "I", Type = "L", ReferenceName = "Tày Tac"}, + new {Id = "tyu", Scope = "I", Type = "L", ReferenceName = "Kua"}, + new + { + Id = "tyv", + Part2B = "tyv", + Part2T = "tyv", + Scope = "I", + Type = "L", + ReferenceName = "Tuvinian" + }, new {Id = "tyx", Scope = "I", Type = "L", ReferenceName = "Teke-Tyee"}, + new {Id = "tyz", Scope = "I", Type = "L", ReferenceName = "Tày"}, + new + { + Id = "tza", + Scope = "I", + Type = "L", + ReferenceName = "Tanzanian Sign Language" + }, + new {Id = "tzh", Scope = "I", Type = "L", ReferenceName = "Tzeltal"}, + new {Id = "tzj", Scope = "I", Type = "L", ReferenceName = "Tz'utujil"}, + new {Id = "tzl", Scope = "I", Type = "C", ReferenceName = "Talossan"}, + new + { + Id = "tzm", + Scope = "I", + Type = "L", + ReferenceName = "Central Atlas Tamazight" + }, + new {Id = "tzn", Scope = "I", Type = "L", ReferenceName = "Tugun"}, + new {Id = "tzo", Scope = "I", Type = "L", ReferenceName = "Tzotzil"}, + new {Id = "tzx", Scope = "I", Type = "L", ReferenceName = "Tabriak"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/U.cs b/Cicm.Database/Seeders/Iso639Split/U.cs new file mode 100644 index 00000000..d0d40435 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/U.cs @@ -0,0 +1,225 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class U + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "uam", Scope = "I", Type = "E", ReferenceName = "Uamué"}, + new {Id = "uan", Scope = "I", Type = "L", ReferenceName = "Kuan"}, + new {Id = "uar", Scope = "I", Type = "L", ReferenceName = "Tairuma"}, + new {Id = "uba", Scope = "I", Type = "L", ReferenceName = "Ubang"}, + new {Id = "ubi", Scope = "I", Type = "L", ReferenceName = "Ubi"}, + new {Id = "ubl", Scope = "I", Type = "L", ReferenceName = "Buhi'non Bikol"}, + new {Id = "ubr", Scope = "I", Type = "L", ReferenceName = "Ubir"}, + new {Id = "ubu", Scope = "I", Type = "L", ReferenceName = "Umbu-Ungu"}, + new {Id = "uby", Scope = "I", Type = "E", ReferenceName = "Ubykh"}, + new {Id = "uda", Scope = "I", Type = "L", ReferenceName = "Uda"}, + new {Id = "ude", Scope = "I", Type = "L", ReferenceName = "Udihe"}, + new {Id = "udg", Scope = "I", Type = "L", ReferenceName = "Muduga"}, + new {Id = "udi", Scope = "I", Type = "L", ReferenceName = "Udi"}, + new {Id = "udj", Scope = "I", Type = "L", ReferenceName = "Ujir"}, + new {Id = "udl", Scope = "I", Type = "L", ReferenceName = "Wuzlam"}, + new + { + Id = "udm", + Part2B = "udm", + Part2T = "udm", + Scope = "I", + Type = "L", + ReferenceName = "Udmurt" + }, new {Id = "udu", Scope = "I", Type = "L", ReferenceName = "Uduk"}, + new {Id = "ues", Scope = "I", Type = "L", ReferenceName = "Kioko"}, + new {Id = "ufi", Scope = "I", Type = "L", ReferenceName = "Ufim"}, + new + { + Id = "uga", + Part2B = "uga", + Part2T = "uga", + Scope = "I", + Type = "A", + ReferenceName = "Ugaritic" + }, new {Id = "ugb", Scope = "I", Type = "E", ReferenceName = "Kuku-Ugbanh"}, + new {Id = "uge", Scope = "I", Type = "L", ReferenceName = "Ughele"}, + new {Id = "ugn", Scope = "I", Type = "L", ReferenceName = "Ugandan Sign Language"}, + new {Id = "ugo", Scope = "I", Type = "L", ReferenceName = "Ugong"}, + new + { + Id = "ugy", + Scope = "I", + Type = "L", + ReferenceName = "Uruguayan Sign Language" + }, + new {Id = "uha", Scope = "I", Type = "L", ReferenceName = "Uhami"}, + new {Id = "uhn", Scope = "I", Type = "L", ReferenceName = "Damal"}, + new + { + Id = "uig", + Part2B = "uig", + Part2T = "uig", + Part1 = "ug", + Scope = "I", + Type = "L", + ReferenceName = "Uighur" + }, new {Id = "uis", Scope = "I", Type = "L", ReferenceName = "Uisai"}, + new {Id = "uiv", Scope = "I", Type = "L", ReferenceName = "Iyive"}, + new {Id = "uji", Scope = "I", Type = "L", ReferenceName = "Tanjijili"}, + new {Id = "uka", Scope = "I", Type = "L", ReferenceName = "Kaburi"}, + new {Id = "ukg", Scope = "I", Type = "L", ReferenceName = "Ukuriguma"}, + new {Id = "ukh", Scope = "I", Type = "L", ReferenceName = "Ukhwejo"}, + new {Id = "ukk", Scope = "I", Type = "L", ReferenceName = "Muak Sa-aak"}, + new + { + Id = "ukl", + Scope = "I", + Type = "L", + ReferenceName = "Ukrainian Sign Language" + }, + new {Id = "ukp", Scope = "I", Type = "L", ReferenceName = "Ukpe-Bayobiri"}, + new {Id = "ukq", Scope = "I", Type = "L", ReferenceName = "Ukwa"}, + new + { + Id = "ukr", + Part2B = "ukr", + Part2T = "ukr", + Part1 = "uk", + Scope = "I", + Type = "L", + ReferenceName = "Ukrainian" + }, + new + { + Id = "uks", + Scope = "I", + Type = "L", + ReferenceName = "Urubú-Kaapor Sign Language" + }, new {Id = "uku", Scope = "I", Type = "L", ReferenceName = "Ukue"}, + new {Id = "ukw", Scope = "I", Type = "L", ReferenceName = "Ukwuani-Aboh-Ndoni"}, + new {Id = "uky", Scope = "I", Type = "E", ReferenceName = "Kuuk-Yak"}, + new {Id = "ula", Scope = "I", Type = "L", ReferenceName = "Fungwa"}, + new {Id = "ulb", Scope = "I", Type = "L", ReferenceName = "Ulukwumi"}, + new {Id = "ulc", Scope = "I", Type = "L", ReferenceName = "Ulch"}, + new {Id = "ule", Scope = "I", Type = "E", ReferenceName = "Lule"}, + new {Id = "ulf", Scope = "I", Type = "L", ReferenceName = "Usku"}, + new {Id = "uli", Scope = "I", Type = "L", ReferenceName = "Ulithian"}, + new {Id = "ulk", Scope = "I", Type = "L", ReferenceName = "Meriam Mir"}, + new {Id = "ull", Scope = "I", Type = "L", ReferenceName = "Ullatan"}, + new {Id = "ulm", Scope = "I", Type = "L", ReferenceName = "Ulumanda'"}, + new {Id = "uln", Scope = "I", Type = "L", ReferenceName = "Unserdeutsch"}, + new {Id = "ulu", Scope = "I", Type = "L", ReferenceName = "Uma' Lung"}, + new {Id = "ulw", Scope = "I", Type = "L", ReferenceName = "Ulwa"}, + new {Id = "uma", Scope = "I", Type = "L", ReferenceName = "Umatilla"}, + new + { + Id = "umb", + Part2B = "umb", + Part2T = "umb", + Scope = "I", + Type = "L", + ReferenceName = "Umbundu" + }, new {Id = "umc", Scope = "I", Type = "A", ReferenceName = "Marrucinian"}, + new {Id = "umd", Scope = "I", Type = "E", ReferenceName = "Umbindhamu"}, + new {Id = "umg", Scope = "I", Type = "E", ReferenceName = "Morrobalama"}, + new {Id = "umi", Scope = "I", Type = "L", ReferenceName = "Ukit"}, + new {Id = "umm", Scope = "I", Type = "L", ReferenceName = "Umon"}, + new {Id = "umn", Scope = "I", Type = "L", ReferenceName = "Makyan Naga"}, + new {Id = "umo", Scope = "I", Type = "E", ReferenceName = "Umotína"}, + new {Id = "ump", Scope = "I", Type = "L", ReferenceName = "Umpila"}, + new {Id = "umr", Scope = "I", Type = "E", ReferenceName = "Umbugarla"}, + new {Id = "ums", Scope = "I", Type = "L", ReferenceName = "Pendau"}, + new {Id = "umu", Scope = "I", Type = "L", ReferenceName = "Munsee"}, + new {Id = "una", Scope = "I", Type = "L", ReferenceName = "North Watut"}, + new + { + Id = "und", + Part2B = "und", + Part2T = "und", + Scope = "S", + Type = "S", + ReferenceName = "Undetermined" + }, new {Id = "une", Scope = "I", Type = "L", ReferenceName = "Uneme"}, + new {Id = "ung", Scope = "I", Type = "L", ReferenceName = "Ngarinyin"}, + new {Id = "unk", Scope = "I", Type = "L", ReferenceName = "Enawené-Nawé"}, + new {Id = "unm", Scope = "I", Type = "E", ReferenceName = "Unami"}, + new {Id = "unn", Scope = "I", Type = "L", ReferenceName = "Kurnai"}, + new {Id = "unr", Scope = "I", Type = "L", ReferenceName = "Mundari"}, + new {Id = "unu", Scope = "I", Type = "L", ReferenceName = "Unubahe"}, + new {Id = "unx", Scope = "I", Type = "L", ReferenceName = "Munda"}, + new {Id = "unz", Scope = "I", Type = "L", ReferenceName = "Unde Kaili"}, + new {Id = "upi", Scope = "I", Type = "L", ReferenceName = "Umeda"}, + new + { + Id = "upv", + Scope = "I", + Type = "L", + ReferenceName = "Uripiv-Wala-Rano-Atchin" + }, + new {Id = "ura", Scope = "I", Type = "L", ReferenceName = "Urarina"}, + new {Id = "urb", Scope = "I", Type = "L", ReferenceName = "Urubú-Kaapor"}, + new {Id = "urc", Scope = "I", Type = "E", ReferenceName = "Urningangg"}, + new + { + Id = "urd", + Part2B = "urd", + Part2T = "urd", + Part1 = "ur", + Scope = "I", + Type = "L", + ReferenceName = "Urdu" + }, new {Id = "ure", Scope = "I", Type = "L", ReferenceName = "Uru"}, + new {Id = "urf", Scope = "I", Type = "E", ReferenceName = "Uradhi"}, + new {Id = "urg", Scope = "I", Type = "L", ReferenceName = "Urigina"}, + new {Id = "urh", Scope = "I", Type = "L", ReferenceName = "Urhobo"}, + new {Id = "uri", Scope = "I", Type = "L", ReferenceName = "Urim"}, + new {Id = "urk", Scope = "I", Type = "L", ReferenceName = "Urak Lawoi'"}, + new {Id = "url", Scope = "I", Type = "L", ReferenceName = "Urali"}, + new {Id = "urm", Scope = "I", Type = "L", ReferenceName = "Urapmin"}, + new {Id = "urn", Scope = "I", Type = "L", ReferenceName = "Uruangnirin"}, + new {Id = "uro", Scope = "I", Type = "L", ReferenceName = "Ura (Papua New Guinea)"}, + new {Id = "urp", Scope = "I", Type = "L", ReferenceName = "Uru-Pa-In"}, + new {Id = "urr", Scope = "I", Type = "L", ReferenceName = "Lehalurup"}, + new {Id = "urt", Scope = "I", Type = "L", ReferenceName = "Urat"}, + new {Id = "uru", Scope = "I", Type = "E", ReferenceName = "Urumi"}, + new {Id = "urv", Scope = "I", Type = "E", ReferenceName = "Uruava"}, + new {Id = "urw", Scope = "I", Type = "L", ReferenceName = "Sop"}, + new {Id = "urx", Scope = "I", Type = "L", ReferenceName = "Urimo"}, + new {Id = "ury", Scope = "I", Type = "L", ReferenceName = "Orya"}, + new {Id = "urz", Scope = "I", Type = "L", ReferenceName = "Uru-Eu-Wau-Wau"}, + new {Id = "usa", Scope = "I", Type = "L", ReferenceName = "Usarufa"}, + new {Id = "ush", Scope = "I", Type = "L", ReferenceName = "Ushojo"}, + new {Id = "usi", Scope = "I", Type = "L", ReferenceName = "Usui"}, + new {Id = "usk", Scope = "I", Type = "L", ReferenceName = "Usaghade"}, + new {Id = "usp", Scope = "I", Type = "L", ReferenceName = "Uspanteco"}, + new {Id = "uss", Scope = "I", Type = "L", ReferenceName = "us-Saare"}, + new {Id = "usu", Scope = "I", Type = "L", ReferenceName = "Uya"}, + new {Id = "uta", Scope = "I", Type = "L", ReferenceName = "Otank"}, + new {Id = "ute", Scope = "I", Type = "L", ReferenceName = "Ute-Southern Paiute"}, + new {Id = "uth", Scope = "I", Type = "L", ReferenceName = "ut-Hun"}, + new {Id = "utp", Scope = "I", Type = "L", ReferenceName = "Amba (Solomon Islands)"}, + new {Id = "utr", Scope = "I", Type = "L", ReferenceName = "Etulo"}, + new {Id = "utu", Scope = "I", Type = "L", ReferenceName = "Utu"}, + new {Id = "uum", Scope = "I", Type = "L", ReferenceName = "Urum"}, + new {Id = "uun", Scope = "I", Type = "L", ReferenceName = "Kulon-Pazeh"}, + new {Id = "uur", Scope = "I", Type = "L", ReferenceName = "Ura (Vanuatu)"}, + new {Id = "uuu", Scope = "I", Type = "L", ReferenceName = "U"}, + new {Id = "uve", Scope = "I", Type = "L", ReferenceName = "West Uvean"}, + new {Id = "uvh", Scope = "I", Type = "L", ReferenceName = "Uri"}, + new {Id = "uvl", Scope = "I", Type = "L", ReferenceName = "Lote"}, + new {Id = "uwa", Scope = "I", Type = "L", ReferenceName = "Kuku-Uwanh"}, + new {Id = "uya", Scope = "I", Type = "L", ReferenceName = "Doko-Uyanga"}, + new + { + Id = "uzb", + Part2B = "uzb", + Part2T = "uzb", + Part1 = "uz", + Scope = "M", + Type = "L", + ReferenceName = "Uzbek" + }, new {Id = "uzn", Scope = "I", Type = "L", ReferenceName = "Northern Uzbek"}, + new {Id = "uzs", Scope = "I", Type = "L", ReferenceName = "Southern Uzbek"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/V.cs b/Cicm.Database/Seeders/Iso639Split/V.cs new file mode 100644 index 00000000..4727abc2 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/V.cs @@ -0,0 +1,165 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class V + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "vaa", Scope = "I", Type = "L", ReferenceName = "Vaagri Booli"}, + new {Id = "vae", Scope = "I", Type = "L", ReferenceName = "Vale"}, + new {Id = "vaf", Scope = "I", Type = "L", ReferenceName = "Vafsi"}, + new {Id = "vag", Scope = "I", Type = "L", ReferenceName = "Vagla"}, + new {Id = "vah", Scope = "I", Type = "L", ReferenceName = "Varhadi-Nagpuri"}, + new + { + Id = "vai", + Part2B = "vai", + Part2T = "vai", + Scope = "I", + Type = "L", + ReferenceName = "Vai" + }, new {Id = "vaj", Scope = "I", Type = "L", ReferenceName = "Sekele"}, + new {Id = "val", Scope = "I", Type = "L", ReferenceName = "Vehes"}, + new {Id = "vam", Scope = "I", Type = "L", ReferenceName = "Vanimo"}, + new {Id = "van", Scope = "I", Type = "L", ReferenceName = "Valman"}, + new {Id = "vao", Scope = "I", Type = "L", ReferenceName = "Vao"}, + new {Id = "vap", Scope = "I", Type = "L", ReferenceName = "Vaiphei"}, + new {Id = "var", Scope = "I", Type = "L", ReferenceName = "Huarijio"}, + new {Id = "vas", Scope = "I", Type = "L", ReferenceName = "Vasavi"}, + new {Id = "vau", Scope = "I", Type = "L", ReferenceName = "Vanuma"}, + new {Id = "vav", Scope = "I", Type = "L", ReferenceName = "Varli"}, + new {Id = "vay", Scope = "I", Type = "L", ReferenceName = "Wayu"}, + new {Id = "vbb", Scope = "I", Type = "L", ReferenceName = "Southeast Babar"}, + new {Id = "vbk", Scope = "I", Type = "L", ReferenceName = "Southwestern Bontok"}, + new {Id = "vec", Scope = "I", Type = "L", ReferenceName = "Venetian"}, + new {Id = "ved", Scope = "I", Type = "L", ReferenceName = "Veddah"}, + new {Id = "vel", Scope = "I", Type = "L", ReferenceName = "Veluws"}, + new {Id = "vem", Scope = "I", Type = "L", ReferenceName = "Vemgo-Mabas"}, + new + { + Id = "ven", + Part2B = "ven", + Part2T = "ven", + Part1 = "ve", + Scope = "I", + Type = "L", + ReferenceName = "Venda" + }, new {Id = "veo", Scope = "I", Type = "E", ReferenceName = "Ventureño"}, + new {Id = "vep", Scope = "I", Type = "L", ReferenceName = "Veps"}, + new {Id = "ver", Scope = "I", Type = "L", ReferenceName = "Mom Jango"}, + new {Id = "vgr", Scope = "I", Type = "L", ReferenceName = "Vaghri"}, + new {Id = "vgt", Scope = "I", Type = "L", ReferenceName = "Vlaamse Gebarentaal"}, + new + { + Id = "vic", + Scope = "I", + Type = "L", + ReferenceName = "Virgin Islands Creole English" + }, new {Id = "vid", Scope = "I", Type = "L", ReferenceName = "Vidunda"}, + new + { + Id = "vie", + Part2B = "vie", + Part2T = "vie", + Part1 = "vi", + Scope = "I", + Type = "L", + ReferenceName = "Vietnamese" + }, new {Id = "vif", Scope = "I", Type = "L", ReferenceName = "Vili"}, + new {Id = "vig", Scope = "I", Type = "L", ReferenceName = "Viemo"}, + new {Id = "vil", Scope = "I", Type = "L", ReferenceName = "Vilela"}, + new {Id = "vin", Scope = "I", Type = "L", ReferenceName = "Vinza"}, + new {Id = "vis", Scope = "I", Type = "L", ReferenceName = "Vishavan"}, + new {Id = "vit", Scope = "I", Type = "L", ReferenceName = "Viti"}, + new {Id = "viv", Scope = "I", Type = "L", ReferenceName = "Iduna"}, + new {Id = "vka", Scope = "I", Type = "E", ReferenceName = "Kariyarra"}, + new {Id = "vki", Scope = "I", Type = "L", ReferenceName = "Ija-Zuba"}, + new {Id = "vkj", Scope = "I", Type = "L", ReferenceName = "Kujarge"}, + new {Id = "vkk", Scope = "I", Type = "L", ReferenceName = "Kaur"}, + new {Id = "vkl", Scope = "I", Type = "L", ReferenceName = "Kulisusu"}, + new {Id = "vkm", Scope = "I", Type = "E", ReferenceName = "Kamakan"}, + new {Id = "vko", Scope = "I", Type = "L", ReferenceName = "Kodeoha"}, + new + { + Id = "vkp", + Scope = "I", + Type = "L", + ReferenceName = "Korlai Creole Portuguese" + }, + new {Id = "vkt", Scope = "I", Type = "L", ReferenceName = "Tenggarong Kutai Malay"}, + new {Id = "vku", Scope = "I", Type = "L", ReferenceName = "Kurrama"}, + new {Id = "vlp", Scope = "I", Type = "L", ReferenceName = "Valpei"}, + new {Id = "vls", Scope = "I", Type = "L", ReferenceName = "Vlaams"}, + new {Id = "vma", Scope = "I", Type = "L", ReferenceName = "Martuyhunira"}, + new {Id = "vmb", Scope = "I", Type = "E", ReferenceName = "Barbaram"}, + new {Id = "vmc", Scope = "I", Type = "L", ReferenceName = "Juxtlahuaca Mixtec"}, + new {Id = "vmd", Scope = "I", Type = "L", ReferenceName = "Mudu Koraga"}, + new {Id = "vme", Scope = "I", Type = "L", ReferenceName = "East Masela"}, + new {Id = "vmf", Scope = "I", Type = "L", ReferenceName = "Mainfränkisch"}, + new {Id = "vmg", Scope = "I", Type = "L", ReferenceName = "Lungalunga"}, + new {Id = "vmh", Scope = "I", Type = "L", ReferenceName = "Maraghei"}, + new {Id = "vmi", Scope = "I", Type = "E", ReferenceName = "Miwa"}, + new {Id = "vmj", Scope = "I", Type = "L", ReferenceName = "Ixtayutla Mixtec"}, + new {Id = "vmk", Scope = "I", Type = "L", ReferenceName = "Makhuwa-Shirima"}, + new {Id = "vml", Scope = "I", Type = "E", ReferenceName = "Malgana"}, + new {Id = "vmm", Scope = "I", Type = "L", ReferenceName = "Mitlatongo Mixtec"}, + new {Id = "vmp", Scope = "I", Type = "L", ReferenceName = "Soyaltepec Mazatec"}, + new {Id = "vmq", Scope = "I", Type = "L", ReferenceName = "Soyaltepec Mixtec"}, + new {Id = "vmr", Scope = "I", Type = "L", ReferenceName = "Marenje"}, + new {Id = "vms", Scope = "I", Type = "E", ReferenceName = "Moksela"}, + new {Id = "vmu", Scope = "I", Type = "E", ReferenceName = "Muluridyi"}, + new {Id = "vmv", Scope = "I", Type = "E", ReferenceName = "Valley Maidu"}, + new {Id = "vmw", Scope = "I", Type = "L", ReferenceName = "Makhuwa"}, + new {Id = "vmx", Scope = "I", Type = "L", ReferenceName = "Tamazola Mixtec"}, + new {Id = "vmy", Scope = "I", Type = "L", ReferenceName = "Ayautla Mazatec"}, + new {Id = "vmz", Scope = "I", Type = "L", ReferenceName = "Mazatlán Mazatec"}, + new {Id = "vnk", Scope = "I", Type = "L", ReferenceName = "Vano"}, + new {Id = "vnm", Scope = "I", Type = "L", ReferenceName = "Vinmavis"}, + new {Id = "vnp", Scope = "I", Type = "L", ReferenceName = "Vunapu"}, + new + { + Id = "vol", + Part2B = "vol", + Part2T = "vol", + Part1 = "vo", + Scope = "I", + Type = "C", + ReferenceName = "Volapük" + }, new {Id = "vor", Scope = "I", Type = "L", ReferenceName = "Voro"}, + new + { + Id = "vot", + Part2B = "vot", + Part2T = "vot", + Scope = "I", + Type = "L", + ReferenceName = "Votic" + }, new {Id = "vra", Scope = "I", Type = "L", ReferenceName = "Vera'a"}, + new {Id = "vro", Scope = "I", Type = "L", ReferenceName = "Võro"}, + new {Id = "vrs", Scope = "I", Type = "L", ReferenceName = "Varisi"}, + new {Id = "vrt", Scope = "I", Type = "L", ReferenceName = "Burmbar"}, + new {Id = "vsi", Scope = "I", Type = "L", ReferenceName = "Moldova Sign Language"}, + new + { + Id = "vsl", + Scope = "I", + Type = "L", + ReferenceName = "Venezuelan Sign Language" + }, + new + { + Id = "vsv", + Scope = "I", + Type = "L", + ReferenceName = "Valencian Sign Language" + }, + new {Id = "vto", Scope = "I", Type = "L", ReferenceName = "Vitou"}, + new {Id = "vum", Scope = "I", Type = "L", ReferenceName = "Vumbu"}, + new {Id = "vun", Scope = "I", Type = "L", ReferenceName = "Vunjo"}, + new {Id = "vut", Scope = "I", Type = "L", ReferenceName = "Vute"}, + new {Id = "vwa", Scope = "I", Type = "L", ReferenceName = "Awa (China)"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/W.cs b/Cicm.Database/Seeders/Iso639Split/W.cs new file mode 100644 index 00000000..d0db5830 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/W.cs @@ -0,0 +1,280 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class W + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "waa", Scope = "I", Type = "L", ReferenceName = "Walla Walla"}, + new {Id = "wab", Scope = "I", Type = "L", ReferenceName = "Wab"}, + new {Id = "wac", Scope = "I", Type = "E", ReferenceName = "Wasco-Wishram"}, + new {Id = "wad", Scope = "I", Type = "L", ReferenceName = "Wandamen"}, + new {Id = "wae", Scope = "I", Type = "L", ReferenceName = "Walser"}, + new {Id = "waf", Scope = "I", Type = "E", ReferenceName = "Wakoná"}, + new {Id = "wag", Scope = "I", Type = "L", ReferenceName = "Wa'ema"}, + new {Id = "wah", Scope = "I", Type = "L", ReferenceName = "Watubela"}, + new {Id = "wai", Scope = "I", Type = "L", ReferenceName = "Wares"}, + new {Id = "waj", Scope = "I", Type = "L", ReferenceName = "Waffa"}, + new + { + Id = "wal", + Part2B = "wal", + Part2T = "wal", + Scope = "I", + Type = "L", + ReferenceName = "Wolaytta" + }, new {Id = "wam", Scope = "I", Type = "E", ReferenceName = "Wampanoag"}, + new {Id = "wan", Scope = "I", Type = "L", ReferenceName = "Wan"}, + new {Id = "wao", Scope = "I", Type = "E", ReferenceName = "Wappo"}, + new {Id = "wap", Scope = "I", Type = "L", ReferenceName = "Wapishana"}, + new {Id = "waq", Scope = "I", Type = "L", ReferenceName = "Wagiman"}, + new + { + Id = "war", + Part2B = "war", + Part2T = "war", + Scope = "I", + Type = "L", + ReferenceName = "Waray (Philippines)" + }, new + { + Id = "was", + Part2B = "was", + Part2T = "was", + Scope = "I", + Type = "L", + ReferenceName = "Washo" + }, new {Id = "wat", Scope = "I", Type = "L", ReferenceName = "Kaninuwa"}, + new {Id = "wau", Scope = "I", Type = "L", ReferenceName = "Waurá"}, + new {Id = "wav", Scope = "I", Type = "L", ReferenceName = "Waka"}, + new {Id = "waw", Scope = "I", Type = "L", ReferenceName = "Waiwai"}, + new {Id = "wax", Scope = "I", Type = "L", ReferenceName = "Watam"}, + new {Id = "way", Scope = "I", Type = "L", ReferenceName = "Wayana"}, + new {Id = "waz", Scope = "I", Type = "L", ReferenceName = "Wampur"}, + new {Id = "wba", Scope = "I", Type = "L", ReferenceName = "Warao"}, + new {Id = "wbb", Scope = "I", Type = "L", ReferenceName = "Wabo"}, + new {Id = "wbe", Scope = "I", Type = "L", ReferenceName = "Waritai"}, + new {Id = "wbf", Scope = "I", Type = "L", ReferenceName = "Wara"}, + new {Id = "wbh", Scope = "I", Type = "L", ReferenceName = "Wanda"}, + new {Id = "wbi", Scope = "I", Type = "L", ReferenceName = "Vwanji"}, + new {Id = "wbj", Scope = "I", Type = "L", ReferenceName = "Alagwa"}, + new {Id = "wbk", Scope = "I", Type = "L", ReferenceName = "Waigali"}, + new {Id = "wbl", Scope = "I", Type = "L", ReferenceName = "Wakhi"}, + new {Id = "wbm", Scope = "I", Type = "L", ReferenceName = "Wa"}, + new {Id = "wbp", Scope = "I", Type = "L", ReferenceName = "Warlpiri"}, + new {Id = "wbq", Scope = "I", Type = "L", ReferenceName = "Waddar"}, + new {Id = "wbr", Scope = "I", Type = "L", ReferenceName = "Wagdi"}, + new + { + Id = "wbs", + Scope = "I", + Type = "L", + ReferenceName = "West Bengal Sign Language" + }, + new {Id = "wbt", Scope = "I", Type = "L", ReferenceName = "Warnman"}, + new {Id = "wbv", Scope = "I", Type = "L", ReferenceName = "Wajarri"}, + new {Id = "wbw", Scope = "I", Type = "L", ReferenceName = "Woi"}, + new {Id = "wca", Scope = "I", Type = "L", ReferenceName = "Yanomámi"}, + new {Id = "wci", Scope = "I", Type = "L", ReferenceName = "Waci Gbe"}, + new {Id = "wdd", Scope = "I", Type = "L", ReferenceName = "Wandji"}, + new {Id = "wdg", Scope = "I", Type = "L", ReferenceName = "Wadaginam"}, + new {Id = "wdj", Scope = "I", Type = "L", ReferenceName = "Wadjiginy"}, + new {Id = "wdk", Scope = "I", Type = "E", ReferenceName = "Wadikali"}, + new {Id = "wdu", Scope = "I", Type = "E", ReferenceName = "Wadjigu"}, + new {Id = "wdy", Scope = "I", Type = "E", ReferenceName = "Wadjabangayi"}, + new {Id = "wea", Scope = "I", Type = "E", ReferenceName = "Wewaw"}, + new {Id = "wec", Scope = "I", Type = "L", ReferenceName = "Wè Western"}, + new {Id = "wed", Scope = "I", Type = "L", ReferenceName = "Wedau"}, + new {Id = "weg", Scope = "I", Type = "L", ReferenceName = "Wergaia"}, + new {Id = "weh", Scope = "I", Type = "L", ReferenceName = "Weh"}, + new {Id = "wei", Scope = "I", Type = "L", ReferenceName = "Kiunum"}, + new {Id = "wem", Scope = "I", Type = "L", ReferenceName = "Weme Gbe"}, + new {Id = "weo", Scope = "I", Type = "L", ReferenceName = "Wemale"}, + new {Id = "wep", Scope = "I", Type = "L", ReferenceName = "Westphalien"}, + new {Id = "wer", Scope = "I", Type = "L", ReferenceName = "Weri"}, + new {Id = "wes", Scope = "I", Type = "L", ReferenceName = "Cameroon Pidgin"}, + new {Id = "wet", Scope = "I", Type = "L", ReferenceName = "Perai"}, + new {Id = "weu", Scope = "I", Type = "L", ReferenceName = "Rawngtu Chin"}, + new {Id = "wew", Scope = "I", Type = "L", ReferenceName = "Wejewa"}, + new {Id = "wfg", Scope = "I", Type = "L", ReferenceName = "Yafi"}, + new {Id = "wga", Scope = "I", Type = "E", ReferenceName = "Wagaya"}, + new {Id = "wgb", Scope = "I", Type = "L", ReferenceName = "Wagawaga"}, + new {Id = "wgg", Scope = "I", Type = "E", ReferenceName = "Wangkangurru"}, + new {Id = "wgi", Scope = "I", Type = "L", ReferenceName = "Wahgi"}, + new {Id = "wgo", Scope = "I", Type = "L", ReferenceName = "Waigeo"}, + new {Id = "wgu", Scope = "I", Type = "E", ReferenceName = "Wirangu"}, + new {Id = "wgy", Scope = "I", Type = "L", ReferenceName = "Warrgamay"}, + new {Id = "wha", Scope = "I", Type = "L", ReferenceName = "Sou Upaa"}, + new {Id = "whg", Scope = "I", Type = "L", ReferenceName = "North Wahgi"}, + new {Id = "whk", Scope = "I", Type = "L", ReferenceName = "Wahau Kenyah"}, + new {Id = "whu", Scope = "I", Type = "L", ReferenceName = "Wahau Kayan"}, + new {Id = "wib", Scope = "I", Type = "L", ReferenceName = "Southern Toussian"}, + new {Id = "wic", Scope = "I", Type = "E", ReferenceName = "Wichita"}, + new {Id = "wie", Scope = "I", Type = "E", ReferenceName = "Wik-Epa"}, + new {Id = "wif", Scope = "I", Type = "E", ReferenceName = "Wik-Keyangan"}, + new {Id = "wig", Scope = "I", Type = "L", ReferenceName = "Wik Ngathan"}, + new {Id = "wih", Scope = "I", Type = "L", ReferenceName = "Wik-Me'anha"}, + new {Id = "wii", Scope = "I", Type = "L", ReferenceName = "Minidien"}, + new {Id = "wij", Scope = "I", Type = "L", ReferenceName = "Wik-Iiyanh"}, + new {Id = "wik", Scope = "I", Type = "L", ReferenceName = "Wikalkan"}, + new {Id = "wil", Scope = "I", Type = "E", ReferenceName = "Wilawila"}, + new {Id = "wim", Scope = "I", Type = "L", ReferenceName = "Wik-Mungkan"}, + new {Id = "win", Scope = "I", Type = "L", ReferenceName = "Ho-Chunk"}, + new {Id = "wir", Scope = "I", Type = "E", ReferenceName = "Wiraféd"}, + new {Id = "wiu", Scope = "I", Type = "L", ReferenceName = "Wiru"}, + new {Id = "wiv", Scope = "I", Type = "L", ReferenceName = "Vitu"}, + new {Id = "wiy", Scope = "I", Type = "E", ReferenceName = "Wiyot"}, + new {Id = "wja", Scope = "I", Type = "L", ReferenceName = "Waja"}, + new {Id = "wji", Scope = "I", Type = "L", ReferenceName = "Warji"}, + new {Id = "wka", Scope = "I", Type = "E", ReferenceName = "Kw'adza"}, + new {Id = "wkb", Scope = "I", Type = "L", ReferenceName = "Kumbaran"}, + new {Id = "wkd", Scope = "I", Type = "L", ReferenceName = "Wakde"}, + new {Id = "wkl", Scope = "I", Type = "L", ReferenceName = "Kalanadi"}, + new {Id = "wkr", Scope = "I", Type = "L", ReferenceName = "Keerray-Woorroong"}, + new {Id = "wku", Scope = "I", Type = "L", ReferenceName = "Kunduvadi"}, + new {Id = "wkw", Scope = "I", Type = "E", ReferenceName = "Wakawaka"}, + new {Id = "wky", Scope = "I", Type = "E", ReferenceName = "Wangkayutyuru"}, + new {Id = "wla", Scope = "I", Type = "L", ReferenceName = "Walio"}, + new {Id = "wlc", Scope = "I", Type = "L", ReferenceName = "Mwali Comorian"}, + new {Id = "wle", Scope = "I", Type = "L", ReferenceName = "Wolane"}, + new {Id = "wlg", Scope = "I", Type = "L", ReferenceName = "Kunbarlang"}, + new {Id = "wli", Scope = "I", Type = "L", ReferenceName = "Waioli"}, + new {Id = "wlk", Scope = "I", Type = "E", ReferenceName = "Wailaki"}, + new {Id = "wll", Scope = "I", Type = "L", ReferenceName = "Wali (Sudan)"}, + new {Id = "wlm", Scope = "I", Type = "H", ReferenceName = "Middle Welsh"}, + new + { + Id = "wln", + Part2B = "wln", + Part2T = "wln", + Part1 = "wa", + Scope = "I", + Type = "L", + ReferenceName = "Walloon" + }, new {Id = "wlo", Scope = "I", Type = "L", ReferenceName = "Wolio"}, + new {Id = "wlr", Scope = "I", Type = "L", ReferenceName = "Wailapa"}, + new {Id = "wls", Scope = "I", Type = "L", ReferenceName = "Wallisian"}, + new {Id = "wlu", Scope = "I", Type = "E", ReferenceName = "Wuliwuli"}, + new {Id = "wlv", Scope = "I", Type = "L", ReferenceName = "Wichí Lhamtés Vejoz"}, + new {Id = "wlw", Scope = "I", Type = "L", ReferenceName = "Walak"}, + new {Id = "wlx", Scope = "I", Type = "L", ReferenceName = "Wali (Ghana)"}, + new {Id = "wly", Scope = "I", Type = "E", ReferenceName = "Waling"}, + new {Id = "wma", Scope = "I", Type = "E", ReferenceName = "Mawa (Nigeria)"}, + new {Id = "wmb", Scope = "I", Type = "L", ReferenceName = "Wambaya"}, + new {Id = "wmc", Scope = "I", Type = "L", ReferenceName = "Wamas"}, + new {Id = "wmd", Scope = "I", Type = "L", ReferenceName = "Mamaindé"}, + new {Id = "wme", Scope = "I", Type = "L", ReferenceName = "Wambule"}, + new {Id = "wmh", Scope = "I", Type = "L", ReferenceName = "Waima'a"}, + new {Id = "wmi", Scope = "I", Type = "E", ReferenceName = "Wamin"}, + new {Id = "wmm", Scope = "I", Type = "L", ReferenceName = "Maiwa (Indonesia)"}, + new {Id = "wmn", Scope = "I", Type = "E", ReferenceName = "Waamwang"}, + new {Id = "wmo", Scope = "I", Type = "L", ReferenceName = "Wom (Papua New Guinea)"}, + new {Id = "wms", Scope = "I", Type = "L", ReferenceName = "Wambon"}, + new {Id = "wmt", Scope = "I", Type = "L", ReferenceName = "Walmajarri"}, + new {Id = "wmw", Scope = "I", Type = "L", ReferenceName = "Mwani"}, + new {Id = "wmx", Scope = "I", Type = "L", ReferenceName = "Womo"}, + new {Id = "wnb", Scope = "I", Type = "L", ReferenceName = "Wanambre"}, + new {Id = "wnc", Scope = "I", Type = "L", ReferenceName = "Wantoat"}, + new {Id = "wnd", Scope = "I", Type = "E", ReferenceName = "Wandarang"}, + new {Id = "wne", Scope = "I", Type = "L", ReferenceName = "Waneci"}, + new {Id = "wng", Scope = "I", Type = "L", ReferenceName = "Wanggom"}, + new {Id = "wni", Scope = "I", Type = "L", ReferenceName = "Ndzwani Comorian"}, + new {Id = "wnk", Scope = "I", Type = "L", ReferenceName = "Wanukaka"}, + new {Id = "wnm", Scope = "I", Type = "E", ReferenceName = "Wanggamala"}, + new {Id = "wnn", Scope = "I", Type = "E", ReferenceName = "Wunumara"}, + new {Id = "wno", Scope = "I", Type = "L", ReferenceName = "Wano"}, + new {Id = "wnp", Scope = "I", Type = "L", ReferenceName = "Wanap"}, + new {Id = "wnu", Scope = "I", Type = "L", ReferenceName = "Usan"}, + new {Id = "wnw", Scope = "I", Type = "L", ReferenceName = "Wintu"}, + new {Id = "wny", Scope = "I", Type = "L", ReferenceName = "Wanyi"}, + new {Id = "woa", Scope = "I", Type = "L", ReferenceName = "Kuwema"}, + new {Id = "wob", Scope = "I", Type = "L", ReferenceName = "Wè Northern"}, + new {Id = "woc", Scope = "I", Type = "L", ReferenceName = "Wogeo"}, + new {Id = "wod", Scope = "I", Type = "L", ReferenceName = "Wolani"}, + new {Id = "woe", Scope = "I", Type = "L", ReferenceName = "Woleaian"}, + new {Id = "wof", Scope = "I", Type = "L", ReferenceName = "Gambian Wolof"}, + new {Id = "wog", Scope = "I", Type = "L", ReferenceName = "Wogamusin"}, + new {Id = "woi", Scope = "I", Type = "L", ReferenceName = "Kamang"}, + new {Id = "wok", Scope = "I", Type = "L", ReferenceName = "Longto"}, + new + { + Id = "wol", + Part2B = "wol", + Part2T = "wol", + Part1 = "wo", + Scope = "I", + Type = "L", + ReferenceName = "Wolof" + }, new {Id = "wom", Scope = "I", Type = "L", ReferenceName = "Wom (Nigeria)"}, + new {Id = "won", Scope = "I", Type = "L", ReferenceName = "Wongo"}, + new {Id = "woo", Scope = "I", Type = "L", ReferenceName = "Manombai"}, + new {Id = "wor", Scope = "I", Type = "L", ReferenceName = "Woria"}, + new {Id = "wos", Scope = "I", Type = "L", ReferenceName = "Hanga Hundi"}, + new {Id = "wow", Scope = "I", Type = "L", ReferenceName = "Wawonii"}, + new {Id = "woy", Scope = "I", Type = "E", ReferenceName = "Weyto"}, + new {Id = "wpc", Scope = "I", Type = "L", ReferenceName = "Maco"}, + new {Id = "wra", Scope = "I", Type = "L", ReferenceName = "Warapu"}, + new {Id = "wrb", Scope = "I", Type = "E", ReferenceName = "Waluwarra"}, + new {Id = "wrd", Scope = "I", Type = "L", ReferenceName = "Warduji"}, + new {Id = "wrg", Scope = "I", Type = "E", ReferenceName = "Warungu"}, + new {Id = "wrh", Scope = "I", Type = "E", ReferenceName = "Wiradjuri"}, + new {Id = "wri", Scope = "I", Type = "E", ReferenceName = "Wariyangga"}, + new {Id = "wrk", Scope = "I", Type = "L", ReferenceName = "Garrwa"}, + new {Id = "wrl", Scope = "I", Type = "L", ReferenceName = "Warlmanpa"}, + new {Id = "wrm", Scope = "I", Type = "L", ReferenceName = "Warumungu"}, + new {Id = "wrn", Scope = "I", Type = "L", ReferenceName = "Warnang"}, + new {Id = "wro", Scope = "I", Type = "E", ReferenceName = "Worrorra"}, + new {Id = "wrp", Scope = "I", Type = "L", ReferenceName = "Waropen"}, + new {Id = "wrr", Scope = "I", Type = "L", ReferenceName = "Wardaman"}, + new {Id = "wrs", Scope = "I", Type = "L", ReferenceName = "Waris"}, + new {Id = "wru", Scope = "I", Type = "L", ReferenceName = "Waru"}, + new {Id = "wrv", Scope = "I", Type = "L", ReferenceName = "Waruna"}, + new {Id = "wrw", Scope = "I", Type = "E", ReferenceName = "Gugu Warra"}, + new {Id = "wrx", Scope = "I", Type = "L", ReferenceName = "Wae Rana"}, + new {Id = "wry", Scope = "I", Type = "L", ReferenceName = "Merwari"}, + new {Id = "wrz", Scope = "I", Type = "E", ReferenceName = "Waray (Australia)"}, + new {Id = "wsa", Scope = "I", Type = "L", ReferenceName = "Warembori"}, + new {Id = "wsg", Scope = "I", Type = "L", ReferenceName = "Adilabad Gondi"}, + new {Id = "wsi", Scope = "I", Type = "L", ReferenceName = "Wusi"}, + new {Id = "wsk", Scope = "I", Type = "L", ReferenceName = "Waskia"}, + new {Id = "wsr", Scope = "I", Type = "L", ReferenceName = "Owenia"}, + new {Id = "wss", Scope = "I", Type = "L", ReferenceName = "Wasa"}, + new {Id = "wsu", Scope = "I", Type = "E", ReferenceName = "Wasu"}, + new {Id = "wsv", Scope = "I", Type = "E", ReferenceName = "Wotapuri-Katarqalai"}, + new {Id = "wtf", Scope = "I", Type = "L", ReferenceName = "Watiwa"}, + new {Id = "wth", Scope = "I", Type = "E", ReferenceName = "Wathawurrung"}, + new {Id = "wti", Scope = "I", Type = "L", ReferenceName = "Berta"}, + new {Id = "wtk", Scope = "I", Type = "L", ReferenceName = "Watakataui"}, + new {Id = "wtm", Scope = "I", Type = "L", ReferenceName = "Mewati"}, + new {Id = "wtw", Scope = "I", Type = "L", ReferenceName = "Wotu"}, + new {Id = "wua", Scope = "I", Type = "L", ReferenceName = "Wikngenchera"}, + new {Id = "wub", Scope = "I", Type = "L", ReferenceName = "Wunambal"}, + new {Id = "wud", Scope = "I", Type = "L", ReferenceName = "Wudu"}, + new {Id = "wuh", Scope = "I", Type = "L", ReferenceName = "Wutunhua"}, + new {Id = "wul", Scope = "I", Type = "L", ReferenceName = "Silimo"}, + new {Id = "wum", Scope = "I", Type = "L", ReferenceName = "Wumbvu"}, + new {Id = "wun", Scope = "I", Type = "L", ReferenceName = "Bungu"}, + new {Id = "wur", Scope = "I", Type = "E", ReferenceName = "Wurrugu"}, + new {Id = "wut", Scope = "I", Type = "L", ReferenceName = "Wutung"}, + new {Id = "wuu", Scope = "I", Type = "L", ReferenceName = "Wu Chinese"}, + new {Id = "wuv", Scope = "I", Type = "L", ReferenceName = "Wuvulu-Aua"}, + new {Id = "wux", Scope = "I", Type = "L", ReferenceName = "Wulna"}, + new {Id = "wuy", Scope = "I", Type = "L", ReferenceName = "Wauyai"}, + new {Id = "wwa", Scope = "I", Type = "L", ReferenceName = "Waama"}, + new {Id = "wwb", Scope = "I", Type = "E", ReferenceName = "Wakabunga"}, + new {Id = "wwo", Scope = "I", Type = "L", ReferenceName = "Wetamut"}, + new {Id = "wwr", Scope = "I", Type = "E", ReferenceName = "Warrwa"}, + new {Id = "www", Scope = "I", Type = "L", ReferenceName = "Wawa"}, + new {Id = "wxa", Scope = "I", Type = "L", ReferenceName = "Waxianghua"}, + new {Id = "wxw", Scope = "I", Type = "E", ReferenceName = "Wardandi"}, + new {Id = "wya", Scope = "I", Type = "L", ReferenceName = "Wyandot"}, + new {Id = "wyb", Scope = "I", Type = "L", ReferenceName = "Wangaaybuwan-Ngiyambaa"}, + new {Id = "wyi", Scope = "I", Type = "E", ReferenceName = "Woiwurrung"}, + new {Id = "wym", Scope = "I", Type = "L", ReferenceName = "Wymysorys"}, + new {Id = "wyr", Scope = "I", Type = "L", ReferenceName = "Wayoró"}, + new {Id = "wyy", Scope = "I", Type = "L", ReferenceName = "Western Fijian"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/X.cs b/Cicm.Database/Seeders/Iso639Split/X.cs new file mode 100644 index 00000000..35a95ab6 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/X.cs @@ -0,0 +1,367 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class X + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "xaa", Scope = "I", Type = "H", ReferenceName = "Andalusian Arabic"}, + new {Id = "xab", Scope = "I", Type = "L", ReferenceName = "Sambe"}, + new {Id = "xac", Scope = "I", Type = "L", ReferenceName = "Kachari"}, + new {Id = "xad", Scope = "I", Type = "E", ReferenceName = "Adai"}, + new {Id = "xae", Scope = "I", Type = "A", ReferenceName = "Aequian"}, + new {Id = "xag", Scope = "I", Type = "A", ReferenceName = "Aghwan"}, + new {Id = "xai", Scope = "I", Type = "E", ReferenceName = "Kaimbé"}, + new {Id = "xaj", Scope = "I", Type = "E", ReferenceName = "Ararandewára"}, + new {Id = "xak", Scope = "I", Type = "E", ReferenceName = "Máku"}, + new + { + Id = "xal", + Part2B = "xal", + Part2T = "xal", + Scope = "I", + Type = "L", + ReferenceName = "Kalmyk" + }, new {Id = "xam", Scope = "I", Type = "E", ReferenceName = "ǀXam"}, + new {Id = "xan", Scope = "I", Type = "L", ReferenceName = "Xamtanga"}, + new {Id = "xao", Scope = "I", Type = "L", ReferenceName = "Khao"}, + new {Id = "xap", Scope = "I", Type = "E", ReferenceName = "Apalachee"}, + new {Id = "xaq", Scope = "I", Type = "A", ReferenceName = "Aquitanian"}, + new {Id = "xar", Scope = "I", Type = "E", ReferenceName = "Karami"}, + new {Id = "xas", Scope = "I", Type = "E", ReferenceName = "Kamas"}, + new {Id = "xat", Scope = "I", Type = "L", ReferenceName = "Katawixi"}, + new {Id = "xau", Scope = "I", Type = "L", ReferenceName = "Kauwera"}, + new {Id = "xav", Scope = "I", Type = "L", ReferenceName = "Xavánte"}, + new {Id = "xaw", Scope = "I", Type = "L", ReferenceName = "Kawaiisu"}, + new {Id = "xay", Scope = "I", Type = "L", ReferenceName = "Kayan Mahakam"}, + new {Id = "xbb", Scope = "I", Type = "E", ReferenceName = "Lower Burdekin"}, + new {Id = "xbc", Scope = "I", Type = "A", ReferenceName = "Bactrian"}, + new {Id = "xbd", Scope = "I", Type = "E", ReferenceName = "Bindal"}, + new {Id = "xbe", Scope = "I", Type = "E", ReferenceName = "Bigambal"}, + new {Id = "xbg", Scope = "I", Type = "E", ReferenceName = "Bunganditj"}, + new {Id = "xbi", Scope = "I", Type = "L", ReferenceName = "Kombio"}, + new {Id = "xbj", Scope = "I", Type = "E", ReferenceName = "Birrpayi"}, + new {Id = "xbm", Scope = "I", Type = "H", ReferenceName = "Middle Breton"}, + new {Id = "xbn", Scope = "I", Type = "E", ReferenceName = "Kenaboi"}, + new {Id = "xbo", Scope = "I", Type = "H", ReferenceName = "Bolgarian"}, + new {Id = "xbp", Scope = "I", Type = "E", ReferenceName = "Bibbulman"}, + new {Id = "xbr", Scope = "I", Type = "L", ReferenceName = "Kambera"}, + new {Id = "xbw", Scope = "I", Type = "E", ReferenceName = "Kambiwá"}, + new {Id = "xby", Scope = "I", Type = "L", ReferenceName = "Batjala"}, + new {Id = "xcb", Scope = "I", Type = "H", ReferenceName = "Cumbric"}, + new {Id = "xcc", Scope = "I", Type = "A", ReferenceName = "Camunic"}, + new {Id = "xce", Scope = "I", Type = "A", ReferenceName = "Celtiberian"}, + new {Id = "xcg", Scope = "I", Type = "A", ReferenceName = "Cisalpine Gaulish"}, + new {Id = "xch", Scope = "I", Type = "E", ReferenceName = "Chemakum"}, + new {Id = "xcl", Scope = "I", Type = "H", ReferenceName = "Classical Armenian"}, + new {Id = "xcm", Scope = "I", Type = "E", ReferenceName = "Comecrudo"}, + new {Id = "xcn", Scope = "I", Type = "E", ReferenceName = "Cotoname"}, + new {Id = "xco", Scope = "I", Type = "A", ReferenceName = "Chorasmian"}, + new {Id = "xcr", Scope = "I", Type = "A", ReferenceName = "Carian"}, + new {Id = "xct", Scope = "I", Type = "H", ReferenceName = "Classical Tibetan"}, + new {Id = "xcu", Scope = "I", Type = "H", ReferenceName = "Curonian"}, + new {Id = "xcv", Scope = "I", Type = "E", ReferenceName = "Chuvantsy"}, + new {Id = "xcw", Scope = "I", Type = "E", ReferenceName = "Coahuilteco"}, + new {Id = "xcy", Scope = "I", Type = "E", ReferenceName = "Cayuse"}, + new {Id = "xda", Scope = "I", Type = "L", ReferenceName = "Darkinyung"}, + new {Id = "xdc", Scope = "I", Type = "A", ReferenceName = "Dacian"}, + new {Id = "xdk", Scope = "I", Type = "E", ReferenceName = "Dharuk"}, + new {Id = "xdm", Scope = "I", Type = "A", ReferenceName = "Edomite"}, + new {Id = "xdo", Scope = "I", Type = "L", ReferenceName = "Kwandu"}, + new {Id = "xdy", Scope = "I", Type = "L", ReferenceName = "Malayic Dayak"}, + new {Id = "xeb", Scope = "I", Type = "A", ReferenceName = "Eblan"}, + new {Id = "xed", Scope = "I", Type = "L", ReferenceName = "Hdi"}, + new {Id = "xeg", Scope = "I", Type = "E", ReferenceName = "ǁXegwi"}, + new {Id = "xel", Scope = "I", Type = "L", ReferenceName = "Kelo"}, + new {Id = "xem", Scope = "I", Type = "L", ReferenceName = "Kembayan"}, + new {Id = "xep", Scope = "I", Type = "A", ReferenceName = "Epi-Olmec"}, + new {Id = "xer", Scope = "I", Type = "L", ReferenceName = "Xerénte"}, + new {Id = "xes", Scope = "I", Type = "L", ReferenceName = "Kesawai"}, + new {Id = "xet", Scope = "I", Type = "L", ReferenceName = "Xetá"}, + new {Id = "xeu", Scope = "I", Type = "L", ReferenceName = "Keoru-Ahia"}, + new {Id = "xfa", Scope = "I", Type = "A", ReferenceName = "Faliscan"}, + new {Id = "xga", Scope = "I", Type = "A", ReferenceName = "Galatian"}, + new {Id = "xgb", Scope = "I", Type = "E", ReferenceName = "Gbin"}, + new {Id = "xgd", Scope = "I", Type = "E", ReferenceName = "Gudang"}, + new {Id = "xgf", Scope = "I", Type = "E", ReferenceName = "Gabrielino-Fernandeño"}, + new {Id = "xgg", Scope = "I", Type = "E", ReferenceName = "Goreng"}, + new {Id = "xgi", Scope = "I", Type = "E", ReferenceName = "Garingbal"}, + new {Id = "xgl", Scope = "I", Type = "H", ReferenceName = "Galindan"}, + new {Id = "xgm", Scope = "I", Type = "E", ReferenceName = "Dharumbal"}, + new {Id = "xgr", Scope = "I", Type = "E", ReferenceName = "Garza"}, + new {Id = "xgu", Scope = "I", Type = "L", ReferenceName = "Unggumi"}, + new {Id = "xgw", Scope = "I", Type = "E", ReferenceName = "Guwa"}, + new {Id = "xha", Scope = "I", Type = "A", ReferenceName = "Harami"}, + new {Id = "xhc", Scope = "I", Type = "A", ReferenceName = "Hunnic"}, + new {Id = "xhd", Scope = "I", Type = "A", ReferenceName = "Hadrami"}, + new {Id = "xhe", Scope = "I", Type = "L", ReferenceName = "Khetrani"}, + new + { + Id = "xho", + Part2B = "xho", + Part2T = "xho", + Part1 = "xh", + Scope = "I", + Type = "L", + ReferenceName = "Xhosa" + }, new {Id = "xhr", Scope = "I", Type = "A", ReferenceName = "Hernican"}, + new {Id = "xht", Scope = "I", Type = "A", ReferenceName = "Hattic"}, + new {Id = "xhu", Scope = "I", Type = "A", ReferenceName = "Hurrian"}, + new {Id = "xhv", Scope = "I", Type = "L", ReferenceName = "Khua"}, + new {Id = "xib", Scope = "I", Type = "A", ReferenceName = "Iberian"}, + new {Id = "xii", Scope = "I", Type = "L", ReferenceName = "Xiri"}, + new {Id = "xil", Scope = "I", Type = "A", ReferenceName = "Illyrian"}, + new {Id = "xin", Scope = "I", Type = "E", ReferenceName = "Xinca"}, + new {Id = "xir", Scope = "I", Type = "E", ReferenceName = "Xiriâna"}, + new {Id = "xis", Scope = "I", Type = "L", ReferenceName = "Kisan"}, + new {Id = "xiv", Scope = "I", Type = "A", ReferenceName = "Indus Valley Language"}, + new {Id = "xiy", Scope = "I", Type = "L", ReferenceName = "Xipaya"}, + new {Id = "xjb", Scope = "I", Type = "E", ReferenceName = "Minjungbal"}, + new {Id = "xjt", Scope = "I", Type = "E", ReferenceName = "Jaitmatang"}, + new {Id = "xka", Scope = "I", Type = "L", ReferenceName = "Kalkoti"}, + new {Id = "xkb", Scope = "I", Type = "L", ReferenceName = "Northern Nago"}, + new {Id = "xkc", Scope = "I", Type = "L", ReferenceName = "Kho'ini"}, + new {Id = "xkd", Scope = "I", Type = "L", ReferenceName = "Mendalam Kayan"}, + new {Id = "xke", Scope = "I", Type = "L", ReferenceName = "Kereho"}, + new {Id = "xkf", Scope = "I", Type = "L", ReferenceName = "Khengkha"}, + new {Id = "xkg", Scope = "I", Type = "L", ReferenceName = "Kagoro"}, + new {Id = "xki", Scope = "I", Type = "L", ReferenceName = "Kenyan Sign Language"}, + new {Id = "xkj", Scope = "I", Type = "L", ReferenceName = "Kajali"}, + new {Id = "xkk", Scope = "I", Type = "L", ReferenceName = "Kaco'"}, + new {Id = "xkl", Scope = "I", Type = "L", ReferenceName = "Mainstream Kenyah"}, + new {Id = "xkn", Scope = "I", Type = "L", ReferenceName = "Kayan River Kayan"}, + new {Id = "xko", Scope = "I", Type = "L", ReferenceName = "Kiorr"}, + new {Id = "xkp", Scope = "I", Type = "L", ReferenceName = "Kabatei"}, + new {Id = "xkq", Scope = "I", Type = "L", ReferenceName = "Koroni"}, + new {Id = "xkr", Scope = "I", Type = "E", ReferenceName = "Xakriabá"}, + new {Id = "xks", Scope = "I", Type = "L", ReferenceName = "Kumbewaha"}, + new {Id = "xkt", Scope = "I", Type = "L", ReferenceName = "Kantosi"}, + new {Id = "xku", Scope = "I", Type = "L", ReferenceName = "Kaamba"}, + new {Id = "xkv", Scope = "I", Type = "L", ReferenceName = "Kgalagadi"}, + new {Id = "xkw", Scope = "I", Type = "L", ReferenceName = "Kembra"}, + new {Id = "xkx", Scope = "I", Type = "L", ReferenceName = "Karore"}, + new {Id = "xky", Scope = "I", Type = "L", ReferenceName = "Uma' Lasan"}, + new {Id = "xkz", Scope = "I", Type = "L", ReferenceName = "Kurtokha"}, + new {Id = "xla", Scope = "I", Type = "L", ReferenceName = "Kamula"}, + new {Id = "xlb", Scope = "I", Type = "E", ReferenceName = "Loup B"}, + new {Id = "xlc", Scope = "I", Type = "A", ReferenceName = "Lycian"}, + new {Id = "xld", Scope = "I", Type = "A", ReferenceName = "Lydian"}, + new {Id = "xle", Scope = "I", Type = "A", ReferenceName = "Lemnian"}, + new {Id = "xlg", Scope = "I", Type = "A", ReferenceName = "Ligurian (Ancient)"}, + new {Id = "xli", Scope = "I", Type = "A", ReferenceName = "Liburnian"}, + new {Id = "xln", Scope = "I", Type = "A", ReferenceName = "Alanic"}, + new {Id = "xlo", Scope = "I", Type = "E", ReferenceName = "Loup A"}, + new {Id = "xlp", Scope = "I", Type = "A", ReferenceName = "Lepontic"}, + new {Id = "xls", Scope = "I", Type = "A", ReferenceName = "Lusitanian"}, + new {Id = "xlu", Scope = "I", Type = "A", ReferenceName = "Cuneiform Luwian"}, + new {Id = "xly", Scope = "I", Type = "A", ReferenceName = "Elymian"}, + new {Id = "xma", Scope = "I", Type = "L", ReferenceName = "Mushungulu"}, + new {Id = "xmb", Scope = "I", Type = "L", ReferenceName = "Mbonga"}, + new {Id = "xmc", Scope = "I", Type = "L", ReferenceName = "Makhuwa-Marrevone"}, + new {Id = "xmd", Scope = "I", Type = "L", ReferenceName = "Mbudum"}, + new {Id = "xme", Scope = "I", Type = "A", ReferenceName = "Median"}, + new {Id = "xmf", Scope = "I", Type = "L", ReferenceName = "Mingrelian"}, + new {Id = "xmg", Scope = "I", Type = "L", ReferenceName = "Mengaka"}, + new {Id = "xmh", Scope = "I", Type = "L", ReferenceName = "Kugu-Muminh"}, + new {Id = "xmj", Scope = "I", Type = "L", ReferenceName = "Majera"}, + new {Id = "xmk", Scope = "I", Type = "A", ReferenceName = "Ancient Macedonian"}, + new + { + Id = "xml", + Scope = "I", + Type = "L", + ReferenceName = "Malaysian Sign Language" + }, + new {Id = "xmm", Scope = "I", Type = "L", ReferenceName = "Manado Malay"}, + new + { + Id = "xmn", + Scope = "I", + Type = "H", + ReferenceName = "Manichaean Middle Persian" + }, + new {Id = "xmo", Scope = "I", Type = "L", ReferenceName = "Morerebi"}, + new {Id = "xmp", Scope = "I", Type = "E", ReferenceName = "Kuku-Mu'inh"}, + new {Id = "xmq", Scope = "I", Type = "E", ReferenceName = "Kuku-Mangk"}, + new {Id = "xmr", Scope = "I", Type = "A", ReferenceName = "Meroitic"}, + new {Id = "xms", Scope = "I", Type = "L", ReferenceName = "Moroccan Sign Language"}, + new {Id = "xmt", Scope = "I", Type = "L", ReferenceName = "Matbat"}, + new {Id = "xmu", Scope = "I", Type = "E", ReferenceName = "Kamu"}, + new {Id = "xmv", Scope = "I", Type = "L", ReferenceName = "Antankarana Malagasy"}, + new {Id = "xmw", Scope = "I", Type = "L", ReferenceName = "Tsimihety Malagasy"}, + new {Id = "xmx", Scope = "I", Type = "L", ReferenceName = "Maden"}, + new {Id = "xmy", Scope = "I", Type = "L", ReferenceName = "Mayaguduna"}, + new {Id = "xmz", Scope = "I", Type = "L", ReferenceName = "Mori Bawah"}, + new {Id = "xna", Scope = "I", Type = "A", ReferenceName = "Ancient North Arabian"}, + new {Id = "xnb", Scope = "I", Type = "L", ReferenceName = "Kanakanabu"}, + new {Id = "xng", Scope = "I", Type = "H", ReferenceName = "Middle Mongolian"}, + new {Id = "xnh", Scope = "I", Type = "L", ReferenceName = "Kuanhua"}, + new {Id = "xni", Scope = "I", Type = "E", ReferenceName = "Ngarigu"}, + new {Id = "xnk", Scope = "I", Type = "E", ReferenceName = "Nganakarti"}, + new {Id = "xnn", Scope = "I", Type = "L", ReferenceName = "Northern Kankanay"}, + new {Id = "xno", Scope = "I", Type = "H", ReferenceName = "Anglo-Norman"}, + new {Id = "xnr", Scope = "I", Type = "L", ReferenceName = "Kangri"}, + new {Id = "xns", Scope = "I", Type = "L", ReferenceName = "Kanashi"}, + new {Id = "xnt", Scope = "I", Type = "E", ReferenceName = "Narragansett"}, + new {Id = "xnu", Scope = "I", Type = "E", ReferenceName = "Nukunul"}, + new {Id = "xny", Scope = "I", Type = "L", ReferenceName = "Nyiyaparli"}, + new {Id = "xnz", Scope = "I", Type = "L", ReferenceName = "Kenzi"}, + new {Id = "xoc", Scope = "I", Type = "E", ReferenceName = "O'chi'chi'"}, + new {Id = "xod", Scope = "I", Type = "L", ReferenceName = "Kokoda"}, + new {Id = "xog", Scope = "I", Type = "L", ReferenceName = "Soga"}, + new {Id = "xoi", Scope = "I", Type = "L", ReferenceName = "Kominimung"}, + new {Id = "xok", Scope = "I", Type = "L", ReferenceName = "Xokleng"}, + new {Id = "xom", Scope = "I", Type = "L", ReferenceName = "Komo (Sudan)"}, + new {Id = "xon", Scope = "I", Type = "L", ReferenceName = "Konkomba"}, + new {Id = "xoo", Scope = "I", Type = "E", ReferenceName = "Xukurú"}, + new {Id = "xop", Scope = "I", Type = "L", ReferenceName = "Kopar"}, + new {Id = "xor", Scope = "I", Type = "L", ReferenceName = "Korubo"}, + new {Id = "xow", Scope = "I", Type = "L", ReferenceName = "Kowaki"}, + new {Id = "xpa", Scope = "I", Type = "E", ReferenceName = "Pirriya"}, + new {Id = "xpc", Scope = "I", Type = "H", ReferenceName = "Pecheneg"}, + new {Id = "xpe", Scope = "I", Type = "L", ReferenceName = "Liberia Kpelle"}, + new {Id = "xpg", Scope = "I", Type = "A", ReferenceName = "Phrygian"}, + new {Id = "xpi", Scope = "I", Type = "H", ReferenceName = "Pictish"}, + new {Id = "xpj", Scope = "I", Type = "E", ReferenceName = "Mpalitjanh"}, + new {Id = "xpk", Scope = "I", Type = "L", ReferenceName = "Kulina Pano"}, + new {Id = "xpm", Scope = "I", Type = "E", ReferenceName = "Pumpokol"}, + new {Id = "xpn", Scope = "I", Type = "E", ReferenceName = "Kapinawá"}, + new {Id = "xpo", Scope = "I", Type = "E", ReferenceName = "Pochutec"}, + new {Id = "xpp", Scope = "I", Type = "A", ReferenceName = "Puyo-Paekche"}, + new {Id = "xpq", Scope = "I", Type = "E", ReferenceName = "Mohegan-Pequot"}, + new {Id = "xpr", Scope = "I", Type = "A", ReferenceName = "Parthian"}, + new {Id = "xps", Scope = "I", Type = "A", ReferenceName = "Pisidian"}, + new {Id = "xpt", Scope = "I", Type = "E", ReferenceName = "Punthamara"}, + new {Id = "xpu", Scope = "I", Type = "A", ReferenceName = "Punic"}, + new {Id = "xpy", Scope = "I", Type = "A", ReferenceName = "Puyo"}, + new {Id = "xqa", Scope = "I", Type = "H", ReferenceName = "Karakhanid"}, + new {Id = "xqt", Scope = "I", Type = "A", ReferenceName = "Qatabanian"}, + new {Id = "xra", Scope = "I", Type = "L", ReferenceName = "Krahô"}, + new {Id = "xrb", Scope = "I", Type = "L", ReferenceName = "Eastern Karaboro"}, + new {Id = "xrd", Scope = "I", Type = "E", ReferenceName = "Gundungurra"}, + new {Id = "xre", Scope = "I", Type = "L", ReferenceName = "Kreye"}, + new {Id = "xrg", Scope = "I", Type = "E", ReferenceName = "Minang"}, + new {Id = "xri", Scope = "I", Type = "L", ReferenceName = "Krikati-Timbira"}, + new {Id = "xrm", Scope = "I", Type = "A", ReferenceName = "Armazic"}, + new {Id = "xrn", Scope = "I", Type = "E", ReferenceName = "Arin"}, + new {Id = "xrq", Scope = "I", Type = "E", ReferenceName = "Karranga"}, + new {Id = "xrr", Scope = "I", Type = "A", ReferenceName = "Raetic"}, + new {Id = "xrt", Scope = "I", Type = "E", ReferenceName = "Aranama-Tamique"}, + new {Id = "xru", Scope = "I", Type = "L", ReferenceName = "Marriammu"}, + new {Id = "xrw", Scope = "I", Type = "L", ReferenceName = "Karawa"}, + new {Id = "xsa", Scope = "I", Type = "A", ReferenceName = "Sabaean"}, + new {Id = "xsb", Scope = "I", Type = "L", ReferenceName = "Sambal"}, + new {Id = "xsc", Scope = "I", Type = "A", ReferenceName = "Scythian"}, + new {Id = "xsd", Scope = "I", Type = "A", ReferenceName = "Sidetic"}, + new {Id = "xse", Scope = "I", Type = "L", ReferenceName = "Sempan"}, + new {Id = "xsh", Scope = "I", Type = "L", ReferenceName = "Shamang"}, + new {Id = "xsi", Scope = "I", Type = "L", ReferenceName = "Sio"}, + new {Id = "xsj", Scope = "I", Type = "L", ReferenceName = "Subi"}, + new {Id = "xsl", Scope = "I", Type = "L", ReferenceName = "South Slavey"}, + new {Id = "xsm", Scope = "I", Type = "L", ReferenceName = "Kasem"}, + new {Id = "xsn", Scope = "I", Type = "L", ReferenceName = "Sanga (Nigeria)"}, + new {Id = "xso", Scope = "I", Type = "E", ReferenceName = "Solano"}, + new {Id = "xsp", Scope = "I", Type = "L", ReferenceName = "Silopi"}, + new {Id = "xsq", Scope = "I", Type = "L", ReferenceName = "Makhuwa-Saka"}, + new {Id = "xsr", Scope = "I", Type = "L", ReferenceName = "Sherpa"}, + new {Id = "xss", Scope = "I", Type = "E", ReferenceName = "Assan"}, + new {Id = "xsu", Scope = "I", Type = "L", ReferenceName = "Sanumá"}, + new {Id = "xsv", Scope = "I", Type = "E", ReferenceName = "Sudovian"}, + new {Id = "xsy", Scope = "I", Type = "L", ReferenceName = "Saisiyat"}, + new {Id = "xta", Scope = "I", Type = "L", ReferenceName = "Alcozauca Mixtec"}, + new {Id = "xtb", Scope = "I", Type = "L", ReferenceName = "Chazumba Mixtec"}, + new {Id = "xtc", Scope = "I", Type = "L", ReferenceName = "Katcha-Kadugli-Miri"}, + new + { + Id = "xtd", + Scope = "I", + Type = "L", + ReferenceName = "Diuxi-Tilantongo Mixtec" + }, + new {Id = "xte", Scope = "I", Type = "L", ReferenceName = "Ketengban"}, + new {Id = "xtg", Scope = "I", Type = "A", ReferenceName = "Transalpine Gaulish"}, + new {Id = "xth", Scope = "I", Type = "E", ReferenceName = "Yitha Yitha"}, + new {Id = "xti", Scope = "I", Type = "L", ReferenceName = "Sinicahua Mixtec"}, + new {Id = "xtj", Scope = "I", Type = "L", ReferenceName = "San Juan Teita Mixtec"}, + new {Id = "xtl", Scope = "I", Type = "L", ReferenceName = "Tijaltepec Mixtec"}, + new + { + Id = "xtm", + Scope = "I", + Type = "L", + ReferenceName = "Magdalena Peñasco Mixtec" + }, + new + { + Id = "xtn", + Scope = "I", + Type = "L", + ReferenceName = "Northern Tlaxiaco Mixtec" + }, + new {Id = "xto", Scope = "I", Type = "A", ReferenceName = "Tokharian A"}, + new + { + Id = "xtp", + Scope = "I", + Type = "L", + ReferenceName = "San Miguel Piedras Mixtec" + }, + new {Id = "xtq", Scope = "I", Type = "H", ReferenceName = "Tumshuqese"}, + new {Id = "xtr", Scope = "I", Type = "A", ReferenceName = "Early Tripuri"}, + new {Id = "xts", Scope = "I", Type = "L", ReferenceName = "Sindihui Mixtec"}, + new {Id = "xtt", Scope = "I", Type = "L", ReferenceName = "Tacahua Mixtec"}, + new {Id = "xtu", Scope = "I", Type = "L", ReferenceName = "Cuyamecalco Mixtec"}, + new {Id = "xtv", Scope = "I", Type = "E", ReferenceName = "Thawa"}, + new {Id = "xtw", Scope = "I", Type = "L", ReferenceName = "Tawandê"}, + new {Id = "xty", Scope = "I", Type = "L", ReferenceName = "Yoloxochitl Mixtec"}, + new {Id = "xtz", Scope = "I", Type = "E", ReferenceName = "Tasmanian"}, + new {Id = "xua", Scope = "I", Type = "L", ReferenceName = "Alu Kurumba"}, + new {Id = "xub", Scope = "I", Type = "L", ReferenceName = "Betta Kurumba"}, + new {Id = "xud", Scope = "I", Type = "E", ReferenceName = "Umiida"}, + new {Id = "xug", Scope = "I", Type = "L", ReferenceName = "Kunigami"}, + new {Id = "xuj", Scope = "I", Type = "L", ReferenceName = "Jennu Kurumba"}, + new {Id = "xul", Scope = "I", Type = "E", ReferenceName = "Ngunawal"}, + new {Id = "xum", Scope = "I", Type = "A", ReferenceName = "Umbrian"}, + new {Id = "xun", Scope = "I", Type = "E", ReferenceName = "Unggaranggu"}, + new {Id = "xuo", Scope = "I", Type = "L", ReferenceName = "Kuo"}, + new {Id = "xup", Scope = "I", Type = "E", ReferenceName = "Upper Umpqua"}, + new {Id = "xur", Scope = "I", Type = "A", ReferenceName = "Urartian"}, + new {Id = "xut", Scope = "I", Type = "E", ReferenceName = "Kuthant"}, + new {Id = "xuu", Scope = "I", Type = "L", ReferenceName = "Kxoe"}, + new {Id = "xve", Scope = "I", Type = "A", ReferenceName = "Venetic"}, + new {Id = "xvi", Scope = "I", Type = "L", ReferenceName = "Kamviri"}, + new {Id = "xvn", Scope = "I", Type = "A", ReferenceName = "Vandalic"}, + new {Id = "xvo", Scope = "I", Type = "A", ReferenceName = "Volscian"}, + new {Id = "xvs", Scope = "I", Type = "A", ReferenceName = "Vestinian"}, + new {Id = "xwa", Scope = "I", Type = "L", ReferenceName = "Kwaza"}, + new {Id = "xwc", Scope = "I", Type = "E", ReferenceName = "Woccon"}, + new {Id = "xwd", Scope = "I", Type = "E", ReferenceName = "Wadi Wadi"}, + new {Id = "xwe", Scope = "I", Type = "L", ReferenceName = "Xwela Gbe"}, + new {Id = "xwg", Scope = "I", Type = "L", ReferenceName = "Kwegu"}, + new {Id = "xwj", Scope = "I", Type = "E", ReferenceName = "Wajuk"}, + new {Id = "xwk", Scope = "I", Type = "E", ReferenceName = "Wangkumara"}, + new {Id = "xwl", Scope = "I", Type = "L", ReferenceName = "Western Xwla Gbe"}, + new {Id = "xwo", Scope = "I", Type = "E", ReferenceName = "Written Oirat"}, + new {Id = "xwr", Scope = "I", Type = "L", ReferenceName = "Kwerba Mamberamo"}, + new {Id = "xwt", Scope = "I", Type = "E", ReferenceName = "Wotjobaluk"}, + new {Id = "xww", Scope = "I", Type = "E", ReferenceName = "Wemba Wemba"}, + new {Id = "xxb", Scope = "I", Type = "E", ReferenceName = "Boro (Ghana)"}, + new {Id = "xxk", Scope = "I", Type = "L", ReferenceName = "Ke'o"}, + new {Id = "xxm", Scope = "I", Type = "E", ReferenceName = "Minkin"}, + new {Id = "xxr", Scope = "I", Type = "E", ReferenceName = "Koropó"}, + new {Id = "xxt", Scope = "I", Type = "E", ReferenceName = "Tambora"}, + new {Id = "xya", Scope = "I", Type = "E", ReferenceName = "Yaygir"}, + new {Id = "xyb", Scope = "I", Type = "E", ReferenceName = "Yandjibara"}, + new {Id = "xyj", Scope = "I", Type = "E", ReferenceName = "Mayi-Yapi"}, + new {Id = "xyk", Scope = "I", Type = "E", ReferenceName = "Mayi-Kulan"}, + new {Id = "xyl", Scope = "I", Type = "E", ReferenceName = "Yalakalore"}, + new {Id = "xyt", Scope = "I", Type = "E", ReferenceName = "Mayi-Thakurti"}, + new {Id = "xyy", Scope = "I", Type = "L", ReferenceName = "Yorta Yorta"}, + new {Id = "xzh", Scope = "I", Type = "A", ReferenceName = "Zhang-Zhung"}, + new {Id = "xzm", Scope = "I", Type = "E", ReferenceName = "Zemgalian"}, + new {Id = "xzp", Scope = "I", Type = "H", ReferenceName = "Ancient Zapotec"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/Y.cs b/Cicm.Database/Seeders/Iso639Split/Y.cs new file mode 100644 index 00000000..8ffa9aa2 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/Y.cs @@ -0,0 +1,317 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class Y + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "yaa", Scope = "I", Type = "L", ReferenceName = "Yaminahua"}, + new {Id = "yab", Scope = "I", Type = "L", ReferenceName = "Yuhup"}, + new {Id = "yac", Scope = "I", Type = "L", ReferenceName = "Pass Valley Yali"}, + new {Id = "yad", Scope = "I", Type = "L", ReferenceName = "Yagua"}, + new {Id = "yae", Scope = "I", Type = "L", ReferenceName = "Pumé"}, + new + { + Id = "yaf", + Scope = "I", + Type = "L", + ReferenceName = "Yaka (Democratic Republic of Congo)" + }, new {Id = "yag", Scope = "I", Type = "L", ReferenceName = "Yámana"}, + new {Id = "yah", Scope = "I", Type = "L", ReferenceName = "Yazgulyam"}, + new {Id = "yai", Scope = "I", Type = "L", ReferenceName = "Yagnobi"}, + new {Id = "yaj", Scope = "I", Type = "L", ReferenceName = "Banda-Yangere"}, + new {Id = "yak", Scope = "I", Type = "L", ReferenceName = "Yakama"}, + new {Id = "yal", Scope = "I", Type = "L", ReferenceName = "Yalunka"}, + new {Id = "yam", Scope = "I", Type = "L", ReferenceName = "Yamba"}, + new {Id = "yan", Scope = "I", Type = "L", ReferenceName = "Mayangna"}, + new + { + Id = "yao", + Part2B = "yao", + Part2T = "yao", + Scope = "I", + Type = "L", + ReferenceName = "Yao" + }, new + { + Id = "yap", + Part2B = "yap", + Part2T = "yap", + Scope = "I", + Type = "L", + ReferenceName = "Yapese" + }, new {Id = "yaq", Scope = "I", Type = "L", ReferenceName = "Yaqui"}, + new {Id = "yar", Scope = "I", Type = "L", ReferenceName = "Yabarana"}, + new {Id = "yas", Scope = "I", Type = "L", ReferenceName = "Nugunu (Cameroon)"}, + new {Id = "yat", Scope = "I", Type = "L", ReferenceName = "Yambeta"}, + new {Id = "yau", Scope = "I", Type = "L", ReferenceName = "Yuwana"}, + new {Id = "yav", Scope = "I", Type = "L", ReferenceName = "Yangben"}, + new {Id = "yaw", Scope = "I", Type = "L", ReferenceName = "Yawalapití"}, + new {Id = "yax", Scope = "I", Type = "L", ReferenceName = "Yauma"}, + new {Id = "yay", Scope = "I", Type = "L", ReferenceName = "Agwagwune"}, + new {Id = "yaz", Scope = "I", Type = "L", ReferenceName = "Lokaa"}, + new {Id = "yba", Scope = "I", Type = "L", ReferenceName = "Yala"}, + new {Id = "ybb", Scope = "I", Type = "L", ReferenceName = "Yemba"}, + new {Id = "ybe", Scope = "I", Type = "L", ReferenceName = "West Yugur"}, + new {Id = "ybh", Scope = "I", Type = "L", ReferenceName = "Yakha"}, + new {Id = "ybi", Scope = "I", Type = "L", ReferenceName = "Yamphu"}, + new {Id = "ybj", Scope = "I", Type = "L", ReferenceName = "Hasha"}, + new {Id = "ybk", Scope = "I", Type = "L", ReferenceName = "Bokha"}, + new {Id = "ybl", Scope = "I", Type = "L", ReferenceName = "Yukuben"}, + new {Id = "ybm", Scope = "I", Type = "L", ReferenceName = "Yaben"}, + new {Id = "ybn", Scope = "I", Type = "E", ReferenceName = "Yabaâna"}, + new {Id = "ybo", Scope = "I", Type = "L", ReferenceName = "Yabong"}, + new {Id = "ybx", Scope = "I", Type = "L", ReferenceName = "Yawiyo"}, + new {Id = "yby", Scope = "I", Type = "L", ReferenceName = "Yaweyuha"}, + new {Id = "ych", Scope = "I", Type = "L", ReferenceName = "Chesu"}, + new {Id = "ycl", Scope = "I", Type = "L", ReferenceName = "Lolopo"}, + new {Id = "ycn", Scope = "I", Type = "L", ReferenceName = "Yucuna"}, + new {Id = "ycp", Scope = "I", Type = "L", ReferenceName = "Chepya"}, + new {Id = "yda", Scope = "I", Type = "E", ReferenceName = "Yanda"}, + new {Id = "ydd", Scope = "I", Type = "L", ReferenceName = "Eastern Yiddish"}, + new {Id = "yde", Scope = "I", Type = "L", ReferenceName = "Yangum Dey"}, + new {Id = "ydg", Scope = "I", Type = "L", ReferenceName = "Yidgha"}, + new {Id = "ydk", Scope = "I", Type = "L", ReferenceName = "Yoidik"}, + new {Id = "yea", Scope = "I", Type = "L", ReferenceName = "Ravula"}, + new {Id = "yec", Scope = "I", Type = "L", ReferenceName = "Yeniche"}, + new {Id = "yee", Scope = "I", Type = "L", ReferenceName = "Yimas"}, + new {Id = "yei", Scope = "I", Type = "E", ReferenceName = "Yeni"}, + new {Id = "yej", Scope = "I", Type = "L", ReferenceName = "Yevanic"}, + new {Id = "yel", Scope = "I", Type = "L", ReferenceName = "Yela"}, + new {Id = "yer", Scope = "I", Type = "L", ReferenceName = "Tarok"}, + new {Id = "yes", Scope = "I", Type = "L", ReferenceName = "Nyankpa"}, + new {Id = "yet", Scope = "I", Type = "L", ReferenceName = "Yetfa"}, + new {Id = "yeu", Scope = "I", Type = "L", ReferenceName = "Yerukula"}, + new {Id = "yev", Scope = "I", Type = "L", ReferenceName = "Yapunda"}, + new {Id = "yey", Scope = "I", Type = "L", ReferenceName = "Yeyi"}, + new {Id = "yga", Scope = "I", Type = "E", ReferenceName = "Malyangapa"}, + new {Id = "ygi", Scope = "I", Type = "E", ReferenceName = "Yiningayi"}, + new {Id = "ygl", Scope = "I", Type = "L", ReferenceName = "Yangum Gel"}, + new {Id = "ygm", Scope = "I", Type = "L", ReferenceName = "Yagomi"}, + new {Id = "ygp", Scope = "I", Type = "L", ReferenceName = "Gepo"}, + new {Id = "ygr", Scope = "I", Type = "L", ReferenceName = "Yagaria"}, + new {Id = "ygs", Scope = "I", Type = "L", ReferenceName = "Yolŋu Sign Language"}, + new {Id = "ygu", Scope = "I", Type = "L", ReferenceName = "Yugul"}, + new {Id = "ygw", Scope = "I", Type = "L", ReferenceName = "Yagwoia"}, + new {Id = "yha", Scope = "I", Type = "L", ReferenceName = "Baha Buyang"}, + new {Id = "yhd", Scope = "I", Type = "L", ReferenceName = "Judeo-Iraqi Arabic"}, + new {Id = "yhl", Scope = "I", Type = "L", ReferenceName = "Hlepho Phowa"}, + new + { + Id = "yhs", + Scope = "I", + Type = "L", + ReferenceName = "Yan-nhaŋu Sign Language" + }, + new {Id = "yia", Scope = "I", Type = "L", ReferenceName = "Yinggarda"}, + new + { + Id = "yid", + Part2B = "yid", + Part2T = "yid", + Part1 = "yi", + Scope = "M", + Type = "L", + ReferenceName = "Yiddish" + }, new {Id = "yif", Scope = "I", Type = "L", ReferenceName = "Ache"}, + new {Id = "yig", Scope = "I", Type = "L", ReferenceName = "Wusa Nasu"}, + new {Id = "yih", Scope = "I", Type = "L", ReferenceName = "Western Yiddish"}, + new {Id = "yii", Scope = "I", Type = "L", ReferenceName = "Yidiny"}, + new {Id = "yij", Scope = "I", Type = "L", ReferenceName = "Yindjibarndi"}, + new {Id = "yik", Scope = "I", Type = "L", ReferenceName = "Dongshanba Lalo"}, + new {Id = "yil", Scope = "I", Type = "E", ReferenceName = "Yindjilandji"}, + new {Id = "yim", Scope = "I", Type = "L", ReferenceName = "Yimchungru Naga"}, + new {Id = "yin", Scope = "I", Type = "L", ReferenceName = "Riang Lai"}, + new {Id = "yip", Scope = "I", Type = "L", ReferenceName = "Pholo"}, + new {Id = "yiq", Scope = "I", Type = "L", ReferenceName = "Miqie"}, + new {Id = "yir", Scope = "I", Type = "L", ReferenceName = "North Awyu"}, + new {Id = "yis", Scope = "I", Type = "L", ReferenceName = "Yis"}, + new {Id = "yit", Scope = "I", Type = "L", ReferenceName = "Eastern Lalu"}, + new {Id = "yiu", Scope = "I", Type = "L", ReferenceName = "Awu"}, + new {Id = "yiv", Scope = "I", Type = "L", ReferenceName = "Northern Nisu"}, + new {Id = "yix", Scope = "I", Type = "L", ReferenceName = "Axi Yi"}, + new {Id = "yiz", Scope = "I", Type = "L", ReferenceName = "Azhe"}, + new {Id = "yka", Scope = "I", Type = "L", ReferenceName = "Yakan"}, + new {Id = "ykg", Scope = "I", Type = "L", ReferenceName = "Northern Yukaghir"}, + new {Id = "yki", Scope = "I", Type = "L", ReferenceName = "Yoke"}, + new {Id = "ykk", Scope = "I", Type = "L", ReferenceName = "Yakaikeke"}, + new {Id = "ykl", Scope = "I", Type = "L", ReferenceName = "Khlula"}, + new {Id = "ykm", Scope = "I", Type = "L", ReferenceName = "Kap"}, + new {Id = "ykn", Scope = "I", Type = "L", ReferenceName = "Kua-nsi"}, + new {Id = "yko", Scope = "I", Type = "L", ReferenceName = "Yasa"}, + new {Id = "ykr", Scope = "I", Type = "L", ReferenceName = "Yekora"}, + new {Id = "ykt", Scope = "I", Type = "L", ReferenceName = "Kathu"}, + new {Id = "yku", Scope = "I", Type = "L", ReferenceName = "Kuamasi"}, + new {Id = "yky", Scope = "I", Type = "L", ReferenceName = "Yakoma"}, + new {Id = "yla", Scope = "I", Type = "L", ReferenceName = "Yaul"}, + new {Id = "ylb", Scope = "I", Type = "L", ReferenceName = "Yaleba"}, + new {Id = "yle", Scope = "I", Type = "L", ReferenceName = "Yele"}, + new {Id = "ylg", Scope = "I", Type = "L", ReferenceName = "Yelogu"}, + new {Id = "yli", Scope = "I", Type = "L", ReferenceName = "Angguruk Yali"}, + new {Id = "yll", Scope = "I", Type = "L", ReferenceName = "Yil"}, + new {Id = "ylm", Scope = "I", Type = "L", ReferenceName = "Limi"}, + new {Id = "yln", Scope = "I", Type = "L", ReferenceName = "Langnian Buyang"}, + new {Id = "ylo", Scope = "I", Type = "L", ReferenceName = "Naluo Yi"}, + new {Id = "ylr", Scope = "I", Type = "E", ReferenceName = "Yalarnnga"}, + new {Id = "ylu", Scope = "I", Type = "L", ReferenceName = "Aribwaung"}, + new {Id = "yly", Scope = "I", Type = "L", ReferenceName = "Nyâlayu"}, + new {Id = "ymb", Scope = "I", Type = "L", ReferenceName = "Yambes"}, + new {Id = "ymc", Scope = "I", Type = "L", ReferenceName = "Southern Muji"}, + new {Id = "ymd", Scope = "I", Type = "L", ReferenceName = "Muda"}, + new {Id = "yme", Scope = "I", Type = "E", ReferenceName = "Yameo"}, + new {Id = "ymg", Scope = "I", Type = "L", ReferenceName = "Yamongeri"}, + new {Id = "ymh", Scope = "I", Type = "L", ReferenceName = "Mili"}, + new {Id = "ymi", Scope = "I", Type = "L", ReferenceName = "Moji"}, + new {Id = "ymk", Scope = "I", Type = "L", ReferenceName = "Makwe"}, + new {Id = "yml", Scope = "I", Type = "L", ReferenceName = "Iamalele"}, + new {Id = "ymm", Scope = "I", Type = "L", ReferenceName = "Maay"}, + new {Id = "ymn", Scope = "I", Type = "L", ReferenceName = "Yamna"}, + new {Id = "ymo", Scope = "I", Type = "L", ReferenceName = "Yangum Mon"}, + new {Id = "ymp", Scope = "I", Type = "L", ReferenceName = "Yamap"}, + new {Id = "ymq", Scope = "I", Type = "L", ReferenceName = "Qila Muji"}, + new {Id = "ymr", Scope = "I", Type = "L", ReferenceName = "Malasar"}, + new {Id = "yms", Scope = "I", Type = "A", ReferenceName = "Mysian"}, + new {Id = "ymx", Scope = "I", Type = "L", ReferenceName = "Northern Muji"}, + new {Id = "ymz", Scope = "I", Type = "L", ReferenceName = "Muzi"}, + new {Id = "yna", Scope = "I", Type = "L", ReferenceName = "Aluo"}, + new {Id = "ynd", Scope = "I", Type = "E", ReferenceName = "Yandruwandha"}, + new {Id = "yne", Scope = "I", Type = "L", ReferenceName = "Lang'e"}, + new {Id = "yng", Scope = "I", Type = "L", ReferenceName = "Yango"}, + new {Id = "ynk", Scope = "I", Type = "L", ReferenceName = "Naukan Yupik"}, + new {Id = "ynl", Scope = "I", Type = "L", ReferenceName = "Yangulam"}, + new {Id = "ynn", Scope = "I", Type = "E", ReferenceName = "Yana"}, + new {Id = "yno", Scope = "I", Type = "L", ReferenceName = "Yong"}, + new {Id = "ynq", Scope = "I", Type = "L", ReferenceName = "Yendang"}, + new {Id = "yns", Scope = "I", Type = "L", ReferenceName = "Yansi"}, + new {Id = "ynu", Scope = "I", Type = "E", ReferenceName = "Yahuna"}, + new {Id = "yob", Scope = "I", Type = "E", ReferenceName = "Yoba"}, + new {Id = "yog", Scope = "I", Type = "L", ReferenceName = "Yogad"}, + new {Id = "yoi", Scope = "I", Type = "L", ReferenceName = "Yonaguni"}, + new {Id = "yok", Scope = "I", Type = "L", ReferenceName = "Yokuts"}, + new {Id = "yol", Scope = "I", Type = "E", ReferenceName = "Yola"}, + new {Id = "yom", Scope = "I", Type = "L", ReferenceName = "Yombe"}, + new {Id = "yon", Scope = "I", Type = "L", ReferenceName = "Yongkom"}, + new + { + Id = "yor", + Part2B = "yor", + Part2T = "yor", + Part1 = "yo", + Scope = "I", + Type = "L", + ReferenceName = "Yoruba" + }, new {Id = "yot", Scope = "I", Type = "L", ReferenceName = "Yotti"}, + new {Id = "yox", Scope = "I", Type = "L", ReferenceName = "Yoron"}, + new {Id = "yoy", Scope = "I", Type = "L", ReferenceName = "Yoy"}, + new {Id = "ypa", Scope = "I", Type = "L", ReferenceName = "Phala"}, + new {Id = "ypb", Scope = "I", Type = "L", ReferenceName = "Labo Phowa"}, + new {Id = "ypg", Scope = "I", Type = "L", ReferenceName = "Phola"}, + new {Id = "yph", Scope = "I", Type = "L", ReferenceName = "Phupha"}, + new {Id = "ypm", Scope = "I", Type = "L", ReferenceName = "Phuma"}, + new {Id = "ypn", Scope = "I", Type = "L", ReferenceName = "Ani Phowa"}, + new {Id = "ypo", Scope = "I", Type = "L", ReferenceName = "Alo Phola"}, + new {Id = "ypp", Scope = "I", Type = "L", ReferenceName = "Phupa"}, + new {Id = "ypz", Scope = "I", Type = "L", ReferenceName = "Phuza"}, + new {Id = "yra", Scope = "I", Type = "L", ReferenceName = "Yerakai"}, + new {Id = "yrb", Scope = "I", Type = "L", ReferenceName = "Yareba"}, + new {Id = "yre", Scope = "I", Type = "L", ReferenceName = "Yaouré"}, + new {Id = "yrk", Scope = "I", Type = "L", ReferenceName = "Nenets"}, + new {Id = "yrl", Scope = "I", Type = "L", ReferenceName = "Nhengatu"}, + new {Id = "yrm", Scope = "I", Type = "L", ReferenceName = "Yirrk-Mel"}, + new {Id = "yrn", Scope = "I", Type = "L", ReferenceName = "Yerong"}, + new {Id = "yro", Scope = "I", Type = "L", ReferenceName = "Yaroamë"}, + new {Id = "yrs", Scope = "I", Type = "L", ReferenceName = "Yarsun"}, + new {Id = "yrw", Scope = "I", Type = "L", ReferenceName = "Yarawata"}, + new {Id = "yry", Scope = "I", Type = "L", ReferenceName = "Yarluyandi"}, + new {Id = "ysc", Scope = "I", Type = "E", ReferenceName = "Yassic"}, + new {Id = "ysd", Scope = "I", Type = "L", ReferenceName = "Samatao"}, + new {Id = "ysg", Scope = "I", Type = "L", ReferenceName = "Sonaga"}, + new + { + Id = "ysl", + Scope = "I", + Type = "L", + ReferenceName = "Yugoslavian Sign Language" + }, + new {Id = "ysn", Scope = "I", Type = "L", ReferenceName = "Sani"}, + new {Id = "yso", Scope = "I", Type = "L", ReferenceName = "Nisi (China)"}, + new {Id = "ysp", Scope = "I", Type = "L", ReferenceName = "Southern Lolopo"}, + new {Id = "ysr", Scope = "I", Type = "E", ReferenceName = "Sirenik Yupik"}, + new {Id = "yss", Scope = "I", Type = "L", ReferenceName = "Yessan-Mayo"}, + new {Id = "ysy", Scope = "I", Type = "L", ReferenceName = "Sanie"}, + new {Id = "yta", Scope = "I", Type = "L", ReferenceName = "Talu"}, + new {Id = "ytl", Scope = "I", Type = "L", ReferenceName = "Tanglang"}, + new {Id = "ytp", Scope = "I", Type = "L", ReferenceName = "Thopho"}, + new {Id = "ytw", Scope = "I", Type = "L", ReferenceName = "Yout Wam"}, + new {Id = "yty", Scope = "I", Type = "E", ReferenceName = "Yatay"}, + new {Id = "yua", Scope = "I", Type = "L", ReferenceName = "Yucateco"}, + new {Id = "yub", Scope = "I", Type = "E", ReferenceName = "Yugambal"}, + new {Id = "yuc", Scope = "I", Type = "L", ReferenceName = "Yuchi"}, + new + { + Id = "yud", + Scope = "I", + Type = "L", + ReferenceName = "Judeo-Tripolitanian Arabic" + }, new {Id = "yue", Scope = "I", Type = "L", ReferenceName = "Yue Chinese"}, + new + { + Id = "yuf", + Scope = "I", + Type = "L", + ReferenceName = "Havasupai-Walapai-Yavapai" + }, + new {Id = "yug", Scope = "I", Type = "E", ReferenceName = "Yug"}, + new {Id = "yui", Scope = "I", Type = "L", ReferenceName = "Yurutí"}, + new {Id = "yuj", Scope = "I", Type = "L", ReferenceName = "Karkar-Yuri"}, + new {Id = "yuk", Scope = "I", Type = "E", ReferenceName = "Yuki"}, + new {Id = "yul", Scope = "I", Type = "L", ReferenceName = "Yulu"}, + new {Id = "yum", Scope = "I", Type = "L", ReferenceName = "Quechan"}, + new {Id = "yun", Scope = "I", Type = "L", ReferenceName = "Bena (Nigeria)"}, + new {Id = "yup", Scope = "I", Type = "L", ReferenceName = "Yukpa"}, + new {Id = "yuq", Scope = "I", Type = "L", ReferenceName = "Yuqui"}, + new {Id = "yur", Scope = "I", Type = "E", ReferenceName = "Yurok"}, + new {Id = "yut", Scope = "I", Type = "L", ReferenceName = "Yopno"}, + new + { + Id = "yuw", + Scope = "I", + Type = "L", + ReferenceName = "Yau (Morobe Province)" + }, + new {Id = "yux", Scope = "I", Type = "L", ReferenceName = "Southern Yukaghir"}, + new {Id = "yuy", Scope = "I", Type = "L", ReferenceName = "East Yugur"}, + new {Id = "yuz", Scope = "I", Type = "L", ReferenceName = "Yuracare"}, + new {Id = "yva", Scope = "I", Type = "L", ReferenceName = "Yawa"}, + new {Id = "yvt", Scope = "I", Type = "E", ReferenceName = "Yavitero"}, + new {Id = "ywa", Scope = "I", Type = "L", ReferenceName = "Kalou"}, + new {Id = "ywg", Scope = "I", Type = "L", ReferenceName = "Yinhawangka"}, + new {Id = "ywl", Scope = "I", Type = "L", ReferenceName = "Western Lalu"}, + new {Id = "ywn", Scope = "I", Type = "L", ReferenceName = "Yawanawa"}, + new {Id = "ywq", Scope = "I", Type = "L", ReferenceName = "Wuding-Luquan Yi"}, + new {Id = "ywr", Scope = "I", Type = "L", ReferenceName = "Yawuru"}, + new {Id = "ywt", Scope = "I", Type = "L", ReferenceName = "Xishanba Lalo"}, + new {Id = "ywu", Scope = "I", Type = "L", ReferenceName = "Wumeng Nasu"}, + new {Id = "yww", Scope = "I", Type = "E", ReferenceName = "Yawarawarga"}, + new {Id = "yxa", Scope = "I", Type = "E", ReferenceName = "Mayawali"}, + new {Id = "yxg", Scope = "I", Type = "E", ReferenceName = "Yagara"}, + new {Id = "yxl", Scope = "I", Type = "E", ReferenceName = "Yardliyawarra"}, + new {Id = "yxm", Scope = "I", Type = "E", ReferenceName = "Yinwum"}, + new {Id = "yxu", Scope = "I", Type = "E", ReferenceName = "Yuyu"}, + new {Id = "yxy", Scope = "I", Type = "E", ReferenceName = "Yabula Yabula"}, + new {Id = "yyr", Scope = "I", Type = "E", ReferenceName = "Yir Yoront"}, + new + { + Id = "yyu", + Scope = "I", + Type = "L", + ReferenceName = "Yau (Sandaun Province)" + }, + new {Id = "yyz", Scope = "I", Type = "L", ReferenceName = "Ayizi"}, + new {Id = "yzg", Scope = "I", Type = "L", ReferenceName = "E'ma Buyang"}, + new {Id = "yzk", Scope = "I", Type = "L", ReferenceName = "Zokhuo"}); + } + } +} \ No newline at end of file diff --git a/Cicm.Database/Seeders/Iso639Split/Z.cs b/Cicm.Database/Seeders/Iso639Split/Z.cs new file mode 100644 index 00000000..43afc0f8 --- /dev/null +++ b/Cicm.Database/Seeders/Iso639Split/Z.cs @@ -0,0 +1,405 @@ +using Microsoft.EntityFrameworkCore; + +namespace Cicm.Database.Seeders.Iso639Split +{ + public static class Z + { + public static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity() + .HasData(new {Id = "zaa", Scope = "I", Type = "L", ReferenceName = "Sierra de Juárez Zapotec"}, + new + { + Id = "zab", + Scope = "I", + Type = "L", + ReferenceName = "Western Tlacolula Valley Zapotec" + }, new {Id = "zac", Scope = "I", Type = "L", ReferenceName = "Ocotlán Zapotec"}, + new {Id = "zad", Scope = "I", Type = "L", ReferenceName = "Cajonos Zapotec"}, + new {Id = "zae", Scope = "I", Type = "L", ReferenceName = "Yareni Zapotec"}, + new {Id = "zaf", Scope = "I", Type = "L", ReferenceName = "Ayoquesco Zapotec"}, + new {Id = "zag", Scope = "I", Type = "L", ReferenceName = "Zaghawa"}, + new {Id = "zah", Scope = "I", Type = "L", ReferenceName = "Zangwal"}, + new {Id = "zai", Scope = "I", Type = "L", ReferenceName = "Isthmus Zapotec"}, + new {Id = "zaj", Scope = "I", Type = "L", ReferenceName = "Zaramo"}, + new {Id = "zak", Scope = "I", Type = "L", ReferenceName = "Zanaki"}, + new {Id = "zal", Scope = "I", Type = "L", ReferenceName = "Zauzou"}, + new {Id = "zam", Scope = "I", Type = "L", ReferenceName = "Miahuatlán Zapotec"}, + new {Id = "zao", Scope = "I", Type = "L", ReferenceName = "Ozolotepec Zapotec"}, + new + { + Id = "zap", + Part2B = "zap", + Part2T = "zap", + Scope = "M", + Type = "L", + ReferenceName = "Zapotec" + }, new {Id = "zaq", Scope = "I", Type = "L", ReferenceName = "Aloápam Zapotec"}, + new {Id = "zar", Scope = "I", Type = "L", ReferenceName = "Rincón Zapotec"}, + new + { + Id = "zas", + Scope = "I", + Type = "L", + ReferenceName = "Santo Domingo Albarradas Zapotec" + }, new {Id = "zat", Scope = "I", Type = "L", ReferenceName = "Tabaa Zapotec"}, + new {Id = "zau", Scope = "I", Type = "L", ReferenceName = "Zangskari"}, + new {Id = "zav", Scope = "I", Type = "L", ReferenceName = "Yatzachi Zapotec"}, + new {Id = "zaw", Scope = "I", Type = "L", ReferenceName = "Mitla Zapotec"}, + new {Id = "zax", Scope = "I", Type = "L", ReferenceName = "Xadani Zapotec"}, + new {Id = "zay", Scope = "I", Type = "L", ReferenceName = "Zayse-Zergulla"}, + new {Id = "zaz", Scope = "I", Type = "L", ReferenceName = "Zari"}, + new {Id = "zbc", Scope = "I", Type = "L", ReferenceName = "Central Berawan"}, + new {Id = "zbe", Scope = "I", Type = "L", ReferenceName = "East Berawan"}, + new + { + Id = "zbl", + Part2B = "zbl", + Part2T = "zbl", + Scope = "I", + Type = "C", + ReferenceName = "Blissymbols" + }, new {Id = "zbt", Scope = "I", Type = "L", ReferenceName = "Batui"}, + new {Id = "zbw", Scope = "I", Type = "L", ReferenceName = "West Berawan"}, + new {Id = "zca", Scope = "I", Type = "L", ReferenceName = "Coatecas Altas Zapotec"}, + new + { + Id = "zch", + Scope = "I", + Type = "L", + ReferenceName = "Central Hongshuihe Zhuang" + }, + new {Id = "zdj", Scope = "I", Type = "L", ReferenceName = "Ngazidja Comorian"}, + new {Id = "zea", Scope = "I", Type = "L", ReferenceName = "Zeeuws"}, + new {Id = "zeg", Scope = "I", Type = "L", ReferenceName = "Zenag"}, + new + { + Id = "zeh", + Scope = "I", + Type = "L", + ReferenceName = "Eastern Hongshuihe Zhuang" + }, + new + { + Id = "zen", + Part2B = "zen", + Part2T = "zen", + Scope = "I", + Type = "L", + ReferenceName = "Zenaga" + }, new {Id = "zga", Scope = "I", Type = "L", ReferenceName = "Kinga"}, + new {Id = "zgb", Scope = "I", Type = "L", ReferenceName = "Guibei Zhuang"}, + new + { + Id = "zgh", + Part2B = "zgh", + Part2T = "zgh", + Scope = "I", + Type = "L", + ReferenceName = "Standard Moroccan Tamazight" + }, new {Id = "zgm", Scope = "I", Type = "L", ReferenceName = "Minz Zhuang"}, + new {Id = "zgn", Scope = "I", Type = "L", ReferenceName = "Guibian Zhuang"}, + new {Id = "zgr", Scope = "I", Type = "L", ReferenceName = "Magori"}, + new + { + Id = "zha", + Part2B = "zha", + Part2T = "zha", + Part1 = "za", + Scope = "M", + Type = "L", + ReferenceName = "Zhuang" + }, new {Id = "zhb", Scope = "I", Type = "L", ReferenceName = "Zhaba"}, + new {Id = "zhd", Scope = "I", Type = "L", ReferenceName = "Dai Zhuang"}, + new {Id = "zhi", Scope = "I", Type = "L", ReferenceName = "Zhire"}, + new {Id = "zhn", Scope = "I", Type = "L", ReferenceName = "Nong Zhuang"}, + new + { + Id = "zho", + Part2B = "chi", + Part2T = "zho", + Part1 = "zh", + Scope = "M", + Type = "L", + ReferenceName = "Chinese" + }, new {Id = "zhw", Scope = "I", Type = "L", ReferenceName = "Zhoa"}, + new {Id = "zia", Scope = "I", Type = "L", ReferenceName = "Zia"}, + new {Id = "zib", Scope = "I", Type = "L", ReferenceName = "Zimbabwe Sign Language"}, + new {Id = "zik", Scope = "I", Type = "L", ReferenceName = "Zimakani"}, + new {Id = "zil", Scope = "I", Type = "L", ReferenceName = "Zialo"}, + new {Id = "zim", Scope = "I", Type = "L", ReferenceName = "Mesme"}, + new {Id = "zin", Scope = "I", Type = "L", ReferenceName = "Zinza"}, + new {Id = "zir", Scope = "I", Type = "E", ReferenceName = "Ziriya"}, + new {Id = "ziw", Scope = "I", Type = "L", ReferenceName = "Zigula"}, + new {Id = "ziz", Scope = "I", Type = "L", ReferenceName = "Zizilivakan"}, + new {Id = "zka", Scope = "I", Type = "L", ReferenceName = "Kaimbulawa"}, + new {Id = "zkb", Scope = "I", Type = "E", ReferenceName = "Koibal"}, + new {Id = "zkd", Scope = "I", Type = "L", ReferenceName = "Kadu"}, + new {Id = "zkg", Scope = "I", Type = "A", ReferenceName = "Koguryo"}, + new {Id = "zkh", Scope = "I", Type = "H", ReferenceName = "Khorezmian"}, + new {Id = "zkk", Scope = "I", Type = "E", ReferenceName = "Karankawa"}, + new {Id = "zkn", Scope = "I", Type = "L", ReferenceName = "Kanan"}, + new {Id = "zko", Scope = "I", Type = "E", ReferenceName = "Kott"}, + new {Id = "zkp", Scope = "I", Type = "E", ReferenceName = "São Paulo Kaingáng"}, + new {Id = "zkr", Scope = "I", Type = "L", ReferenceName = "Zakhring"}, + new {Id = "zkt", Scope = "I", Type = "H", ReferenceName = "Kitan"}, + new {Id = "zku", Scope = "I", Type = "L", ReferenceName = "Kaurna"}, + new {Id = "zkv", Scope = "I", Type = "E", ReferenceName = "Krevinian"}, + new {Id = "zkz", Scope = "I", Type = "H", ReferenceName = "Khazar"}, + new {Id = "zlj", Scope = "I", Type = "L", ReferenceName = "Liujiang Zhuang"}, + new + { + Id = "zlm", + Scope = "I", + Type = "L", + ReferenceName = "Malay (individual language)" + }, new {Id = "zln", Scope = "I", Type = "L", ReferenceName = "Lianshan Zhuang"}, + new {Id = "zlq", Scope = "I", Type = "L", ReferenceName = "Liuqian Zhuang"}, + new {Id = "zma", Scope = "I", Type = "L", ReferenceName = "Manda (Australia)"}, + new {Id = "zmb", Scope = "I", Type = "L", ReferenceName = "Zimba"}, + new {Id = "zmc", Scope = "I", Type = "E", ReferenceName = "Margany"}, + new {Id = "zmd", Scope = "I", Type = "L", ReferenceName = "Maridan"}, + new {Id = "zme", Scope = "I", Type = "E", ReferenceName = "Mangerr"}, + new {Id = "zmf", Scope = "I", Type = "L", ReferenceName = "Mfinu"}, + new {Id = "zmg", Scope = "I", Type = "L", ReferenceName = "Marti Ke"}, + new {Id = "zmh", Scope = "I", Type = "E", ReferenceName = "Makolkol"}, + new + { + Id = "zmi", + Scope = "I", + Type = "L", + ReferenceName = "Negeri Sembilan Malay" + }, + new {Id = "zmj", Scope = "I", Type = "L", ReferenceName = "Maridjabin"}, + new {Id = "zmk", Scope = "I", Type = "E", ReferenceName = "Mandandanyi"}, + new {Id = "zml", Scope = "I", Type = "E", ReferenceName = "Matngala"}, + new {Id = "zmm", Scope = "I", Type = "L", ReferenceName = "Marimanindji"}, + new {Id = "zmn", Scope = "I", Type = "L", ReferenceName = "Mbangwe"}, + new {Id = "zmo", Scope = "I", Type = "L", ReferenceName = "Molo"}, + new {Id = "zmp", Scope = "I", Type = "L", ReferenceName = "Mpuono"}, + new {Id = "zmq", Scope = "I", Type = "L", ReferenceName = "Mituku"}, + new {Id = "zmr", Scope = "I", Type = "L", ReferenceName = "Maranunggu"}, + new {Id = "zms", Scope = "I", Type = "L", ReferenceName = "Mbesa"}, + new {Id = "zmt", Scope = "I", Type = "L", ReferenceName = "Maringarr"}, + new {Id = "zmu", Scope = "I", Type = "E", ReferenceName = "Muruwari"}, + new {Id = "zmv", Scope = "I", Type = "E", ReferenceName = "Mbariman-Gudhinma"}, + new + { + Id = "zmw", + Scope = "I", + Type = "L", + ReferenceName = "Mbo (Democratic Republic of Congo)" + }, new {Id = "zmx", Scope = "I", Type = "L", ReferenceName = "Bomitaba"}, + new {Id = "zmy", Scope = "I", Type = "L", ReferenceName = "Mariyedi"}, + new {Id = "zmz", Scope = "I", Type = "L", ReferenceName = "Mbandja"}, + new {Id = "zna", Scope = "I", Type = "L", ReferenceName = "Zan Gula"}, + new + { + Id = "zne", + Scope = "I", + Type = "L", + ReferenceName = "Zande (individual language)" + }, new {Id = "zng", Scope = "I", Type = "L", ReferenceName = "Mang"}, + new {Id = "znk", Scope = "I", Type = "E", ReferenceName = "Manangkari"}, + new {Id = "zns", Scope = "I", Type = "L", ReferenceName = "Mangas"}, + new {Id = "zoc", Scope = "I", Type = "L", ReferenceName = "Copainalá Zoque"}, + new {Id = "zoh", Scope = "I", Type = "L", ReferenceName = "Chimalapa Zoque"}, + new {Id = "zom", Scope = "I", Type = "L", ReferenceName = "Zou"}, + new + { + Id = "zoo", + Scope = "I", + Type = "L", + ReferenceName = "Asunción Mixtepec Zapotec" + }, + new {Id = "zoq", Scope = "I", Type = "L", ReferenceName = "Tabasco Zoque"}, + new {Id = "zor", Scope = "I", Type = "L", ReferenceName = "Rayón Zoque"}, + new + { + Id = "zos", + Scope = "I", + Type = "L", + ReferenceName = "Francisco León Zoque" + }, + new {Id = "zpa", Scope = "I", Type = "L", ReferenceName = "Lachiguiri Zapotec"}, + new {Id = "zpb", Scope = "I", Type = "L", ReferenceName = "Yautepec Zapotec"}, + new {Id = "zpc", Scope = "I", Type = "L", ReferenceName = "Choapan Zapotec"}, + new + { + Id = "zpd", + Scope = "I", + Type = "L", + ReferenceName = "Southeastern Ixtlán Zapotec" + }, new {Id = "zpe", Scope = "I", Type = "L", ReferenceName = "Petapa Zapotec"}, + new + { + Id = "zpf", + Scope = "I", + Type = "L", + ReferenceName = "San Pedro Quiatoni Zapotec" + }, + new + { + Id = "zpg", + Scope = "I", + Type = "L", + ReferenceName = "Guevea De Humboldt Zapotec" + }, + new {Id = "zph", Scope = "I", Type = "L", ReferenceName = "Totomachapan Zapotec"}, + new + { + Id = "zpi", + Scope = "I", + Type = "L", + ReferenceName = "Santa María Quiegolani Zapotec" + }, + new {Id = "zpj", Scope = "I", Type = "L", ReferenceName = "Quiavicuzas Zapotec"}, + new {Id = "zpk", Scope = "I", Type = "L", ReferenceName = "Tlacolulita Zapotec"}, + new {Id = "zpl", Scope = "I", Type = "L", ReferenceName = "Lachixío Zapotec"}, + new {Id = "zpm", Scope = "I", Type = "L", ReferenceName = "Mixtepec Zapotec"}, + new + { + Id = "zpn", + Scope = "I", + Type = "L", + ReferenceName = "Santa Inés Yatzechi Zapotec" + }, new {Id = "zpo", Scope = "I", Type = "L", ReferenceName = "Amatlán Zapotec"}, + new {Id = "zpp", Scope = "I", Type = "L", ReferenceName = "El Alto Zapotec"}, + new {Id = "zpq", Scope = "I", Type = "L", ReferenceName = "Zoogocho Zapotec"}, + new + { + Id = "zpr", + Scope = "I", + Type = "L", + ReferenceName = "Santiago Xanica Zapotec" + }, + new {Id = "zps", Scope = "I", Type = "L", ReferenceName = "Coatlán Zapotec"}, + new + { + Id = "zpt", + Scope = "I", + Type = "L", + ReferenceName = "San Vicente Coatlán Zapotec" + }, new {Id = "zpu", Scope = "I", Type = "L", ReferenceName = "Yalálag Zapotec"}, + new + { + Id = "zpv", + Scope = "I", + Type = "L", + ReferenceName = "Chichicapan Zapotec" + }, + new {Id = "zpw", Scope = "I", Type = "L", ReferenceName = "Zaniza Zapotec"}, + new + { + Id = "zpx", + Scope = "I", + Type = "L", + ReferenceName = "San Baltazar Loxicha Zapotec" + }, new {Id = "zpy", Scope = "I", Type = "L", ReferenceName = "Mazaltepec Zapotec"}, + new {Id = "zpz", Scope = "I", Type = "L", ReferenceName = "Texmelucan Zapotec"}, + new {Id = "zqe", Scope = "I", Type = "L", ReferenceName = "Qiubei Zhuang"}, + new {Id = "zra", Scope = "I", Type = "A", ReferenceName = "Kara (Korea)"}, + new {Id = "zrg", Scope = "I", Type = "L", ReferenceName = "Mirgan"}, + new {Id = "zrn", Scope = "I", Type = "L", ReferenceName = "Zerenkel"}, + new {Id = "zro", Scope = "I", Type = "L", ReferenceName = "Záparo"}, + new {Id = "zrp", Scope = "I", Type = "E", ReferenceName = "Zarphatic"}, + new {Id = "zrs", Scope = "I", Type = "L", ReferenceName = "Mairasi"}, + new {Id = "zsa", Scope = "I", Type = "L", ReferenceName = "Sarasira"}, + new {Id = "zsk", Scope = "I", Type = "A", ReferenceName = "Kaskean"}, + new + { + Id = "zsl", + Scope = "I", + Type = "L", + ReferenceName = "Zambian Sign Language" + }, + new {Id = "zsm", Scope = "I", Type = "L", ReferenceName = "Standard Malay"}, + new + { + Id = "zsr", + Scope = "I", + Type = "L", + ReferenceName = "Southern Rincon Zapotec" + }, + new {Id = "zsu", Scope = "I", Type = "L", ReferenceName = "Sukurum"}, + new {Id = "zte", Scope = "I", Type = "L", ReferenceName = "Elotepec Zapotec"}, + new {Id = "ztg", Scope = "I", Type = "L", ReferenceName = "Xanaguía Zapotec"}, + new + { + Id = "ztl", + Scope = "I", + Type = "L", + ReferenceName = "Lapaguía-Guivini Zapotec" + }, + new + { + Id = "ztm", + Scope = "I", + Type = "L", + ReferenceName = "San Agustín Mixtepec Zapotec" + }, + new + { + Id = "ztn", + Scope = "I", + Type = "L", + ReferenceName = "Santa Catarina Albarradas Zapotec" + }, new {Id = "ztp", Scope = "I", Type = "L", ReferenceName = "Loxicha Zapotec"}, + new + { + Id = "ztq", + Scope = "I", + Type = "L", + ReferenceName = "Quioquitani-Quierí Zapotec" + }, new {Id = "zts", Scope = "I", Type = "L", ReferenceName = "Tilquiapan Zapotec"}, + new {Id = "ztt", Scope = "I", Type = "L", ReferenceName = "Tejalapan Zapotec"}, + new {Id = "ztu", Scope = "I", Type = "L", ReferenceName = "Güilá Zapotec"}, + new {Id = "ztx", Scope = "I", Type = "L", ReferenceName = "Zaachila Zapotec"}, + new {Id = "zty", Scope = "I", Type = "L", ReferenceName = "Yatee Zapotec"}, + new {Id = "zua", Scope = "I", Type = "L", ReferenceName = "Zeem"}, + new {Id = "zuh", Scope = "I", Type = "L", ReferenceName = "Tokano"}, + new + { + Id = "zul", + Part2B = "zul", + Part2T = "zul", + Part1 = "zu", + Scope = "I", + Type = "L", + ReferenceName = "Zulu" + }, new {Id = "zum", Scope = "I", Type = "L", ReferenceName = "Kumzari"}, + new + { + Id = "zun", + Part2B = "zun", + Part2T = "zun", + Scope = "I", + Type = "L", + ReferenceName = "Zuni" + }, new {Id = "zuy", Scope = "I", Type = "L", ReferenceName = "Zumaya"}, + new {Id = "zwa", Scope = "I", Type = "L", ReferenceName = "Zay"}, + new + { + Id = "zxx", + Part2B = "zxx", + Part2T = "zxx", + Scope = "S", + Type = "S", + ReferenceName = "No linguistic content" + }, new {Id = "zyb", Scope = "I", Type = "L", ReferenceName = "Yongbei Zhuang"}, + new {Id = "zyg", Scope = "I", Type = "L", ReferenceName = "Yang Zhuang"}, + new {Id = "zyj", Scope = "I", Type = "L", ReferenceName = "Youjiang Zhuang"}, + new {Id = "zyn", Scope = "I", Type = "L", ReferenceName = "Yongnan Zhuang"}, + new {Id = "zyp", Scope = "I", Type = "L", ReferenceName = "Zyphe Chin"}, + new + { + Id = "zza", + Part2B = "zza", + Part2T = "zza", + Scope = "M", + Type = "L", + ReferenceName = "Zaza" + }, new {Id = "zzj", Scope = "I", Type = "L", ReferenceName = "Zuojiang Zhuang"}); + } + } +} \ No newline at end of file diff --git a/cicm_web/cicm_web.csproj b/cicm_web/cicm_web.csproj index d712a046..4baa408c 100644 --- a/cicm_web/cicm_web.csproj +++ b/cicm_web/cicm_web.csproj @@ -2,7 +2,7 @@ netcoreapp2.2 - 3.0.99.757 + 3.0.99.798 Canary Islands Computer Museum Copyright © 2003-2018 Natalia Portillo Canary Islands Computer Museum Website