diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs index f2256115b5..7dd83c82df 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs @@ -425,7 +425,11 @@ internal SemanticDomain FromLcmSemanticDomain(ICmSemanticDomain semanticDomain) { Id = semanticDomain.Guid, Name = FromLcmMultiString(semanticDomain.Name), + Abbreviation = FromLcmMultiString(semanticDomain.Abbreviation), Code = LcmHelpers.GetSemanticDomainCode(semanticDomain), + Description = FromLcmMultiString(semanticDomain.Description), + OcmCodes = semanticDomain.OcmCodes ?? string.Empty, + LouwNidaCodes = semanticDomain.LouwNidaCodes ?? string.Empty, Predefined = CanonicalGuidsSemanticDomain.CanonicalSemDomGuids.Contains(semanticDomain.Guid), }; } @@ -456,10 +460,11 @@ public async Task CreateSemanticDomain(SemanticDomain semanticDo { var lcmSemanticDomain = Cache.ServiceLocator.GetInstance() .Create(semanticDomain.Id, Cache.LangProject.SemanticDomainListOA); - lcmSemanticDomain.OcmCodes = semanticDomain.Code; UpdateLcmMultiString(lcmSemanticDomain.Name, semanticDomain.Name); - // TODO: Find out if semantic domains are guaranteed to have an "en" writing system, or if we should use lcmCache.DefautlAnalWs instead - UpdateLcmMultiString(lcmSemanticDomain.Abbreviation, new MultiString(){{"en", semanticDomain.Code}}); + UpdateLcmMultiString(lcmSemanticDomain.Abbreviation, semanticDomain.Abbreviation); + UpdateLcmMultiString(lcmSemanticDomain.Description, semanticDomain.Description); + lcmSemanticDomain.OcmCodes = semanticDomain.OcmCodes; + lcmSemanticDomain.LouwNidaCodes = semanticDomain.LouwNidaCodes; }); return await GetSemanticDomain(semanticDomain.Id) ?? throw new InvalidOperationException("Semantic domain was not created"); } diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs index eeb41f2808..55c762d1b3 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs @@ -282,7 +282,9 @@ internal static string GetSemanticDomainCode(ICmSemanticDomain semanticDomain) { var abbr = semanticDomain.Abbreviation; // UiString can be null even though there is an abbreviation available - return abbr.UiString ?? abbr.BestVernacularAnalysisAlternative.Text; + var code = abbr.UiString ?? abbr.BestVernacularAnalysisAlternative.Text; + // LCM uses "***" as the missing-string marker when Abbreviation is empty + return code is null or "***" ? string.Empty : code; } internal static void SetString(this ITsMultiString multiString, FwDataMiniLcmApi api, WritingSystemId ws, string value) diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSemanticDomainProxy.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSemanticDomainProxy.cs index eff9fe7098..2baf16d4cd 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSemanticDomainProxy.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSemanticDomainProxy.cs @@ -21,9 +21,34 @@ public override MultiString Name set => throw new NotImplementedException(); } - public override string Code + public override MultiString Abbreviation + { + get => new UpdateMultiStringProxy(_lcmSemanticDomain.Abbreviation, _lexboxLcmApi); + set => throw new NotImplementedException(); + } + + public override RichMultiString Description { - get => _lcmSemanticDomain.Abbreviation.BestAnalysisVernacularAlternative.Text; + get => new UpdateRichMultiStringProxy(_lcmSemanticDomain.Description, _lexboxLcmApi); set => throw new NotImplementedException(); } + + public override string Code + { + get => LcmHelpers.GetSemanticDomainCode(_lcmSemanticDomain); + // Derived from Abbreviation on read; ignore writes (do not map Code → Abbreviation). + set { } + } + + public override string OcmCodes + { + get => _lcmSemanticDomain.OcmCodes ?? string.Empty; + set => _lcmSemanticDomain.OcmCodes = value; + } + + public override string LouwNidaCodes + { + get => _lcmSemanticDomain.LouwNidaCodes ?? string.Empty; + set => _lcmSemanticDomain.LouwNidaCodes = value; + } } diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Import/ImportTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/Import/ImportTests.cs index 8eeb70ab8f..ff66bb677f 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Import/ImportTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/Import/ImportTests.cs @@ -108,7 +108,13 @@ public async Task ImportsANewlyCreatedComplexFormType() [Fact] public async Task ImportsANewlyCreatedSemanticDomain() { - var sd = new SemanticDomain { Id = Guid.NewGuid(), Name = { ["en"] = "Test SD" }, Code = "TSD"}; + var sd = new SemanticDomain + { + Id = Guid.NewGuid(), + Name = { ["en"] = "Test SD" }, + Abbreviation = { ["en"] = "TSD" }, + Code = "TSD", + }; await _fixture.FwDataApi.CreateSemanticDomain(sd); await ImportService.ImportProject(_fixture.CrdtApi, _fixture.FwDataApi, 1); var importedSd = await _fixture.CrdtApi.GetSemanticDomain(sd.Id); diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs index 7bb31a7e67..bd2338829e 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs @@ -89,6 +89,7 @@ public async Task ImportProject_IsResumable_AcrossRandomFailures() { Id = Guid.NewGuid(), Name = new() { ["en"] = "Test Semantic Domain" }, + Abbreviation = new() { ["en"] = "TSD" }, Code = "TSD" }])); diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt index 37f9fde0ec..7b306c5357 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt +++ b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt @@ -1778,7 +1778,11 @@ "Name": { "en": "Escape" }, + "Abbreviation": {}, "Code": "7.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2412,7 +2416,11 @@ "Name": { "en": "Grass, herb, vine" }, + "Abbreviation": {}, "Code": "1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2541,7 +2549,11 @@ "Name": { "en": "Chair" }, + "Abbreviation": {}, "Code": "5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2628,7 +2640,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2767,7 +2783,11 @@ "Name": { "en": "Work" }, + "Abbreviation": {}, "Code": "6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2991,7 +3011,11 @@ "Name": { "en": "Poultry raising" }, + "Abbreviation": {}, "Code": "6.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -3524,7 +3548,11 @@ "Name": { "en": "Men\u0027s clothing" }, + "Abbreviation": {}, "Code": "5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -3905,7 +3933,11 @@ "Name": { "en": "Wave" }, + "Abbreviation": {}, "Code": "1.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -3993,7 +4025,11 @@ "Name": { "en": "Sheep" }, + "Abbreviation": {}, "Code": "6.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -4952,7 +4988,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -6551,7 +6591,11 @@ "Name": { "en": "Covenant" }, + "Abbreviation": {}, "Code": "4.7.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -6560,7 +6604,11 @@ "Name": { "en": "Unity" }, + "Abbreviation": {}, "Code": "4.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -8352,7 +8400,11 @@ "Name": { "en": "Insect" }, + "Abbreviation": {}, "Code": "1.6.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -8502,7 +8554,11 @@ "Name": { "en": "Food" }, + "Abbreviation": {}, "Code": "5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -9249,7 +9305,11 @@ "Name": { "en": "White" }, + "Abbreviation": {}, "Code": "8.3.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -9300,7 +9360,11 @@ "Name": { "en": "Good" }, + "Abbreviation": {}, "Code": "8.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -10644,7 +10708,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -11259,7 +11327,11 @@ "Name": { "en": "Disabled" }, + "Abbreviation": {}, "Code": "2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -12096,7 +12168,11 @@ "Name": { "en": "Trap" }, + "Abbreviation": {}, "Code": "6.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -12105,7 +12181,11 @@ "Name": { "en": "Hunting birds" }, + "Abbreviation": {}, "Code": "6.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -12545,7 +12625,11 @@ "Name": { "en": "Food" }, + "Abbreviation": {}, "Code": "5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -12554,7 +12638,11 @@ "Name": { "en": "Commerce" }, + "Abbreviation": {}, "Code": "6.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -12772,7 +12860,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -14566,7 +14658,11 @@ "Name": { "en": "Class, lesson" }, + "Abbreviation": {}, "Code": "3.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -14639,7 +14735,11 @@ "Name": { "en": "Teach" }, + "Abbreviation": {}, "Code": "3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -15730,7 +15830,11 @@ "Name": { "en": "City" }, + "Abbreviation": {}, "Code": "4.6.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -15968,7 +16072,11 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": {}, "Code": "5.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -16404,7 +16512,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -16413,7 +16525,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -16589,7 +16705,11 @@ "Name": { "en": "Sign, symbol" }, + "Abbreviation": {}, "Code": "3.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -18250,7 +18370,11 @@ "Name": { "en": "Hunt" }, + "Abbreviation": {}, "Code": "6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -19178,7 +19302,11 @@ "Name": { "en": "Telling time" }, + "Abbreviation": {}, "Code": "8.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -19187,7 +19315,11 @@ "Name": { "en": "Sun" }, + "Abbreviation": {}, "Code": "1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -19910,7 +20042,11 @@ "Name": { "en": "Sick" }, + "Abbreviation": {}, "Code": "2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -21519,7 +21655,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -21528,7 +21668,11 @@ "Name": { "en": "Land" }, + "Abbreviation": {}, "Code": "1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -21998,7 +22142,11 @@ "Name": { "en": "Race" }, + "Abbreviation": {}, "Code": "4.1.9.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -22049,7 +22197,11 @@ "Name": { "en": "Family, clan" }, + "Abbreviation": {}, "Code": "4.1.9.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -22107,7 +22259,11 @@ "Name": { "en": "Related by birth" }, + "Abbreviation": {}, "Code": "4.1.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -22579,7 +22735,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -24322,7 +24482,11 @@ "Name": { "en": "Walk" }, + "Abbreviation": {}, "Code": "7.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -24923,7 +25087,11 @@ "Name": { "en": "Explain" }, + "Abbreviation": {}, "Code": "3.5.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -25028,7 +25196,11 @@ "Name": { "en": "Manner of eating" }, + "Abbreviation": {}, "Code": "5.2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -25613,7 +25785,11 @@ "Name": { "en": "Like, love" }, + "Abbreviation": {}, "Code": "3.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -27372,7 +27548,11 @@ "Name": { "en": "Island, shore" }, + "Abbreviation": {}, "Code": "1.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -27741,7 +27921,11 @@ "Name": { "en": "Sell" }, + "Abbreviation": {}, "Code": "6.8.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -28142,7 +28326,11 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": {}, "Code": "5.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -31624,7 +31812,11 @@ "Name": { "en": "Chair" }, + "Abbreviation": {}, "Code": "5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -32670,7 +32862,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -32767,7 +32963,11 @@ "Name": { "en": "Crawl" }, + "Abbreviation": {}, "Code": "7.2.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -32896,7 +33096,11 @@ "Name": { "en": "Beast of burden" }, + "Abbreviation": {}, "Code": "6.3.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -34668,7 +34872,11 @@ "Name": { "en": "Skin" }, + "Abbreviation": {}, "Code": "2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -34816,7 +35024,11 @@ "Name": { "en": "Carnivore" }, + "Abbreviation": {}, "Code": "1.6.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -35163,7 +35375,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -35172,7 +35388,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -35415,7 +35635,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -37632,7 +37856,11 @@ "Name": { "en": "Fish with net" }, + "Abbreviation": {}, "Code": "6.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -38008,7 +38236,11 @@ "Name": { "en": "Condemn, find guilty" }, + "Abbreviation": {}, "Code": "4.7.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -39594,7 +39826,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -41420,7 +41656,11 @@ "Name": { "en": "Punish" }, + "Abbreviation": {}, "Code": "4.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -42108,7 +42348,11 @@ "Name": { "en": "Food from fruit" }, + "Abbreviation": {}, "Code": "5.2.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -42905,7 +43149,11 @@ "Name": { "en": "Write" }, + "Abbreviation": {}, "Code": "3.5.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -42985,7 +43233,11 @@ "Name": { "en": "Written material" }, + "Abbreviation": {}, "Code": "3.5.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43065,7 +43317,11 @@ "Name": { "en": "Honor" }, + "Abbreviation": {}, "Code": "4.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43428,7 +43684,11 @@ "Name": { "en": "Deceive" }, + "Abbreviation": {}, "Code": "4.3.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43669,7 +43929,11 @@ "Name": { "en": "Eating utensil" }, + "Abbreviation": {}, "Code": "5.2.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43749,7 +44013,11 @@ "Name": { "en": "Agriculture" }, + "Abbreviation": {}, "Code": "6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -44109,7 +44377,11 @@ "Name": { "en": "Cry, tear" }, + "Abbreviation": {}, "Code": "3.5.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -44640,7 +44912,11 @@ "Name": { "en": "Pursue" }, + "Abbreviation": {}, "Code": "7.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -45883,7 +46159,11 @@ "Name": { "en": "Grass, herb, vine" }, + "Abbreviation": {}, "Code": "1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -47346,7 +47626,11 @@ "Name": { "en": "Water" }, + "Abbreviation": {}, "Code": "1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -48534,7 +48818,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -48543,7 +48831,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -49037,7 +49329,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -49046,7 +49342,11 @@ "Name": { "en": "Ruler" }, + "Abbreviation": {}, "Code": "4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -51115,7 +51415,11 @@ "Name": { "en": "Spit, saliva" }, + "Abbreviation": {}, "Code": "2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -51588,7 +51892,11 @@ "Name": { "en": "Soil, dirt" }, + "Abbreviation": {}, "Code": "1.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -52165,7 +52473,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -52707,7 +53019,11 @@ "Name": { "en": "Hoofed animals" }, + "Abbreviation": {}, "Code": "1.6.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53072,7 +53388,11 @@ "Name": { "en": "Bone, joint" }, + "Abbreviation": {}, "Code": "2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53152,7 +53472,11 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": {}, "Code": "5.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53363,7 +53687,11 @@ "Name": { "en": "Manner of movement" }, + "Abbreviation": {}, "Code": "7.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53719,7 +54047,11 @@ "Name": { "en": "Grandfather, grandmother" }, + "Abbreviation": {}, "Code": "4.1.9.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -54777,7 +55109,11 @@ "Name": { "en": "Table" }, + "Abbreviation": {}, "Code": "5.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -55584,7 +55920,11 @@ "Name": { "en": "Chair" }, + "Abbreviation": {}, "Code": "5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -55714,7 +56054,11 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": {}, "Code": "5.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -56633,7 +56977,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -56642,7 +56990,11 @@ "Name": { "en": "Ruler" }, + "Abbreviation": {}, "Code": "4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -56736,7 +57088,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -56745,7 +57101,11 @@ "Name": { "en": "Ruler" }, + "Abbreviation": {}, "Code": "4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -57393,7 +57753,11 @@ "Name": { "en": "Orphan" }, + "Abbreviation": {}, "Code": "4.1.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -58389,7 +58753,11 @@ "Name": { "en": "Cleaning" }, + "Abbreviation": {}, "Code": "5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -58633,7 +59001,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -59648,7 +60020,11 @@ "Name": { "en": "Taboo" }, + "Abbreviation": {}, "Code": "4.9.5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -59800,7 +60176,11 @@ "Name": { "en": "In-law" }, + "Abbreviation": {}, "Code": "4.1.9.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -59913,7 +60293,11 @@ "Name": { "en": "Trial" }, + "Abbreviation": {}, "Code": "4.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -60660,7 +61044,11 @@ "Name": { "en": "God" }, + "Abbreviation": {}, "Code": "4.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61182,7 +61570,11 @@ "Name": { "en": "Salt" }, + "Abbreviation": {}, "Code": "5.2.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61547,7 +61939,11 @@ "Name": { "en": "Tree" }, + "Abbreviation": {}, "Code": "1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -61556,7 +61952,11 @@ "Name": { "en": "Bush, shrub" }, + "Abbreviation": {}, "Code": "1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61730,7 +62130,11 @@ "Name": { "en": "Wind" }, + "Abbreviation": {}, "Code": "1.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61850,7 +62254,11 @@ "Name": { "en": "Drink" }, + "Abbreviation": {}, "Code": "5.2.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -62063,7 +62471,11 @@ "Name": { "en": "Rock" }, + "Abbreviation": {}, "Code": "1.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -63360,7 +63772,11 @@ "Name": { "en": "Islam" }, + "Abbreviation": {}, "Code": "4.9.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -63920,7 +64336,11 @@ "Name": { "en": "Road" }, + "Abbreviation": {}, "Code": "6.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64033,7 +64453,11 @@ "Name": { "en": "Island, shore" }, + "Abbreviation": {}, "Code": "1.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64096,7 +64520,11 @@ "Name": { "en": "Women\u0027s clothing" }, + "Abbreviation": {}, "Code": "5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64399,7 +64827,11 @@ "Name": { "en": "Have, be with" }, + "Abbreviation": {}, "Code": "7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64760,7 +65192,11 @@ "Name": { "en": "Have, be with" }, + "Abbreviation": {}, "Code": "7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -65189,7 +65625,11 @@ "Name": { "en": "Spring, well" }, + "Abbreviation": {}, "Code": "1.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -67316,7 +67756,11 @@ "Name": { "en": "City" }, + "Abbreviation": {}, "Code": "4.6.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -67477,7 +67921,11 @@ "Name": { "en": "Heaven, hell" }, + "Abbreviation": {}, "Code": "4.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -67486,7 +67934,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -70036,7 +70488,11 @@ "Name": { "en": "Road" }, + "Abbreviation": {}, "Code": "6.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -71352,7 +71808,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -71361,7 +71821,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -71790,7 +72254,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -72089,7 +72557,11 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": {}, "Code": "5.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -72098,7 +72570,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -72834,7 +73310,11 @@ "Name": { "en": "River" }, + "Abbreviation": {}, "Code": "1.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -73621,7 +74101,11 @@ "Name": { "en": "Torso" }, + "Abbreviation": {}, "Code": "2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -73995,7 +74479,11 @@ "Name": { "en": "Traditional medicine" }, + "Abbreviation": {}, "Code": "2.5.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -74571,7 +75059,11 @@ "Name": { "en": "Trial" }, + "Abbreviation": {}, "Code": "4.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -74653,7 +75145,11 @@ "Name": { "en": "Road" }, + "Abbreviation": {}, "Code": "6.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -75062,7 +75558,11 @@ "Name": { "en": "Plant" }, + "Abbreviation": {}, "Code": "1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -76841,7 +77341,11 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": {}, "Code": "1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -77538,7 +78042,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -77547,7 +78055,11 @@ "Name": { "en": "Judge, render a verdict" }, + "Abbreviation": {}, "Code": "4.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -77692,7 +78204,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -77913,7 +78429,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -77922,7 +78442,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78179,7 +78703,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -78188,7 +78716,11 @@ "Name": { "en": "Guide" }, + "Abbreviation": {}, "Code": "7.2.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -78197,7 +78729,11 @@ "Name": { "en": "Go first" }, + "Abbreviation": {}, "Code": "7.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78268,7 +78804,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78365,7 +78905,11 @@ "Name": { "en": "Play, fun" }, + "Abbreviation": {}, "Code": "4.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78462,7 +79006,11 @@ "Name": { "en": "Communication devices" }, + "Abbreviation": {}, "Code": "3.5.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78797,7 +79345,11 @@ "Name": { "en": "Soul, spirit" }, + "Abbreviation": {}, "Code": "3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -78806,7 +79358,11 @@ "Name": { "en": "Supernatural being" }, + "Abbreviation": {}, "Code": "4.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78895,7 +79451,11 @@ "Name": { "en": "Family, clan" }, + "Abbreviation": {}, "Code": "4.1.9.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -79812,7 +80372,11 @@ "Name": { "en": "Musical instrument" }, + "Abbreviation": {}, "Code": "4.2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -80845,7 +81409,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -80916,7 +81484,11 @@ "Name": { "en": "Government official" }, + "Abbreviation": {}, "Code": "4.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -80925,7 +81497,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81236,7 +81812,11 @@ "Name": { "en": "Meat" }, + "Abbreviation": {}, "Code": "5.2.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81287,7 +81867,11 @@ "Name": { "en": "Animal" }, + "Abbreviation": {}, "Code": "1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81857,7 +82441,11 @@ "Name": { "en": "Prophecy" }, + "Abbreviation": {}, "Code": "4.9.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -81866,7 +82454,11 @@ "Name": { "en": "Omen, divination" }, + "Abbreviation": {}, "Code": "4.9.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81968,7 +82560,11 @@ "Name": { "en": "Disabled" }, + "Abbreviation": {}, "Code": "2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82288,7 +82884,11 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": {}, "Code": "1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82436,7 +83036,11 @@ "Name": { "en": "Mental illness" }, + "Abbreviation": {}, "Code": "2.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82514,7 +83118,11 @@ "Name": { "en": "Offering, sacrifice" }, + "Abbreviation": {}, "Code": "4.9.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82587,7 +83195,11 @@ "Name": { "en": "Smell" }, + "Abbreviation": {}, "Code": "2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82731,7 +83343,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -82740,7 +83356,11 @@ "Name": { "en": "River" }, + "Abbreviation": {}, "Code": "1.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -84181,7 +84801,11 @@ "Name": { "en": "Soul, spirit" }, + "Abbreviation": {}, "Code": "3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -84190,7 +84814,11 @@ "Name": { "en": "Supernatural being" }, + "Abbreviation": {}, "Code": "4.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -85443,7 +86071,11 @@ "Name": { "en": "Cat" }, + "Abbreviation": {}, "Code": "6.3.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -85452,7 +86084,11 @@ "Name": { "en": "Carnivore" }, + "Abbreviation": {}, "Code": "1.6.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -87570,7 +88206,11 @@ "Name": { "en": "Acquit" }, + "Abbreviation": {}, "Code": "4.7.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -88579,7 +89219,11 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": {}, "Code": "5.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -89141,7 +89785,11 @@ "Name": { "en": "Kill" }, + "Abbreviation": {}, "Code": "2.6.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -89448,7 +90096,11 @@ "Name": { "en": "Stomach illness" }, + "Abbreviation": {}, "Code": "2.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -90316,7 +90968,11 @@ "Name": { "en": "Food preparation" }, + "Abbreviation": {}, "Code": "5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -90664,7 +91320,11 @@ "Name": { "en": "Clean, dirty" }, + "Abbreviation": {}, "Code": "5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -90892,7 +91552,11 @@ "Name": { "en": "Mountain" }, + "Abbreviation": {}, "Code": "1.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -91428,7 +92092,11 @@ "Name": { "en": "Tooth decay" }, + "Abbreviation": {}, "Code": "2.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -91656,7 +92324,11 @@ "Name": { "en": "Escape" }, + "Abbreviation": {}, "Code": "7.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -94967,7 +95639,11 @@ "Name": { "en": "Tend a field" }, + "Abbreviation": {}, "Code": "6.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -100838,7 +101514,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -100925,7 +101605,11 @@ "Name": { "en": "Forest, grassland, desert" }, + "Abbreviation": {}, "Code": "1.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -101544,7 +102228,11 @@ "Name": { "en": "Escape" }, + "Abbreviation": {}, "Code": "7.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -101622,7 +102310,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -103882,7 +104574,11 @@ "Name": { "en": "Follow" }, + "Abbreviation": {}, "Code": "7.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -104415,7 +105111,11 @@ "Name": { "en": "Forest, grassland, desert" }, + "Abbreviation": {}, "Code": "1.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -104966,7 +105666,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -105323,7 +106027,11 @@ "Name": { "en": "Roof" }, + "Abbreviation": {}, "Code": "6.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -107755,7 +108463,11 @@ "Name": { "en": "Food from seeds" }, + "Abbreviation": {}, "Code": "5.2.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -108651,7 +109363,11 @@ "Name": { "en": "Country" }, + "Abbreviation": {}, "Code": "4.6.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -110348,7 +111064,11 @@ "Name": { "en": "Country" }, + "Abbreviation": {}, "Code": "4.6.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -110566,7 +111286,11 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": {}, "Code": "1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -113720,7 +114444,11 @@ "Name": { "en": "Series" }, + "Abbreviation": {}, "Code": "8.4.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113729,7 +114457,11 @@ "Name": { "en": "Order, sequence" }, + "Abbreviation": {}, "Code": "8.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113738,7 +114470,11 @@ "Name": { "en": "Excited" }, + "Abbreviation": {}, "Code": "3.4.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113747,7 +114483,11 @@ "Name": { "en": "Thing" }, + "Abbreviation": {}, "Code": "9.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113756,7 +114496,11 @@ "Name": { "en": "Verb affixes" }, + "Abbreviation": {}, "Code": "9.2.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113765,7 +114509,11 @@ "Name": { "en": "Betray" }, + "Abbreviation": {}, "Code": "4.8.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113774,7 +114522,11 @@ "Name": { "en": "Pray" }, + "Abbreviation": {}, "Code": "4.9.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113783,7 +114535,11 @@ "Name": { "en": "Stingy" }, + "Abbreviation": {}, "Code": "6.8.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113792,7 +114548,11 @@ "Name": { "en": "Sports" }, + "Abbreviation": {}, "Code": "4.2.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113801,7 +114561,11 @@ "Name": { "en": "Trouble" }, + "Abbreviation": {}, "Code": "4.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113810,7 +114574,11 @@ "Name": { "en": "Expose falsehood" }, + "Abbreviation": {}, "Code": "3.5.1.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113819,7 +114587,11 @@ "Name": { "en": "Weaving baskets and mats" }, + "Abbreviation": {}, "Code": "6.6.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113828,7 +114600,11 @@ "Name": { "en": "Conveying water" }, + "Abbreviation": {}, "Code": "6.6.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113837,7 +114613,11 @@ "Name": { "en": "Plant" }, + "Abbreviation": {}, "Code": "1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113846,7 +114626,11 @@ "Name": { "en": "Life after death" }, + "Abbreviation": {}, "Code": "2.6.6.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113855,7 +114639,11 @@ "Name": { "en": "Pronouns" }, + "Abbreviation": {}, "Code": "9.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113864,7 +114652,11 @@ "Name": { "en": "Stimulant" }, + "Abbreviation": {}, "Code": "5.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113873,7 +114665,11 @@ "Name": { "en": "Contradict" }, + "Abbreviation": {}, "Code": "3.5.1.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113882,7 +114678,11 @@ "Name": { "en": "Meal" }, + "Abbreviation": {}, "Code": "5.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113891,7 +114691,11 @@ "Name": { "en": "Garbage" }, + "Abbreviation": {}, "Code": "8.3.7.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113900,7 +114704,11 @@ "Name": { "en": "All the time" }, + "Abbreviation": {}, "Code": "8.4.6.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113909,7 +114717,11 @@ "Name": { "en": "Anoint the body" }, + "Abbreviation": {}, "Code": "5.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113918,7 +114730,11 @@ "Name": { "en": "Animal products" }, + "Abbreviation": {}, "Code": "6.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113927,7 +114743,11 @@ "Name": { "en": "Hairstyle" }, + "Abbreviation": {}, "Code": "5.4.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113936,7 +114756,11 @@ "Name": { "en": "Widow, widower" }, + "Abbreviation": {}, "Code": "4.1.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113945,7 +114769,11 @@ "Name": { "en": "Hide" }, + "Abbreviation": {}, "Code": "7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113954,7 +114782,11 @@ "Name": { "en": "Arrest" }, + "Abbreviation": {}, "Code": "4.6.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113963,7 +114795,11 @@ "Name": { "en": "Collect" }, + "Abbreviation": {}, "Code": "6.8.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113972,7 +114808,11 @@ "Name": { "en": "Immediately" }, + "Abbreviation": {}, "Code": "8.4.6.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113981,7 +114821,11 @@ "Name": { "en": "Man" }, + "Abbreviation": {}, "Code": "2.6.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113990,7 +114834,11 @@ "Name": { "en": "Evidentials" }, + "Abbreviation": {}, "Code": "9.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113999,7 +114847,11 @@ "Name": { "en": "Shake" }, + "Abbreviation": {}, "Code": "7.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114008,7 +114860,11 @@ "Name": { "en": "Repeat" }, + "Abbreviation": {}, "Code": "3.5.1.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114017,7 +114873,11 @@ "Name": { "en": "Make speech" }, + "Abbreviation": {}, "Code": "3.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114026,7 +114886,11 @@ "Name": { "en": "Show off" }, + "Abbreviation": {}, "Code": "4.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114035,7 +114899,11 @@ "Name": { "en": "Solve a problem" }, + "Abbreviation": {}, "Code": "4.4.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114044,7 +114912,11 @@ "Name": { "en": "Pass laws" }, + "Abbreviation": {}, "Code": "4.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114053,7 +114925,11 @@ "Name": { "en": "Limitation of topic" }, + "Abbreviation": {}, "Code": "9.6.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114062,7 +114938,11 @@ "Name": { "en": "Tendency" }, + "Abbreviation": {}, "Code": "3.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114071,7 +114951,11 @@ "Name": { "en": "Interval, space" }, + "Abbreviation": {}, "Code": "8.5.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114080,7 +114964,11 @@ "Name": { "en": "Season" }, + "Abbreviation": {}, "Code": "8.4.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114089,7 +114977,11 @@ "Name": { "en": "End a relationship" }, + "Abbreviation": {}, "Code": "4.1.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114098,7 +114990,11 @@ "Name": { "en": "Buy" }, + "Abbreviation": {}, "Code": "6.8.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114107,7 +115003,11 @@ "Name": { "en": "Working with land" }, + "Abbreviation": {}, "Code": "6.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114116,7 +115016,11 @@ "Name": { "en": "Recently" }, + "Abbreviation": {}, "Code": "8.4.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114125,7 +115029,11 @@ "Name": { "en": "Illegitimate child" }, + "Abbreviation": {}, "Code": "4.1.9.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114134,7 +115042,11 @@ "Name": { "en": "Knock over" }, + "Abbreviation": {}, "Code": "7.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114143,7 +115055,11 @@ "Name": { "en": "Neglect plants" }, + "Abbreviation": {}, "Code": "6.2.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114152,7 +115068,11 @@ "Name": { "en": "Common" }, + "Abbreviation": {}, "Code": "8.3.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114161,7 +115081,11 @@ "Name": { "en": "Dead things" }, + "Abbreviation": {}, "Code": "1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114170,7 +115094,11 @@ "Name": { "en": "Save from trouble" }, + "Abbreviation": {}, "Code": "4.4.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114179,7 +115107,11 @@ "Name": { "en": "Be about, subject" }, + "Abbreviation": {}, "Code": "3.5.1.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114188,7 +115120,11 @@ "Name": { "en": "Mark" }, + "Abbreviation": {}, "Code": "7.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114197,7 +115133,11 @@ "Name": { "en": "Telling time" }, + "Abbreviation": {}, "Code": "8.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114206,7 +115146,11 @@ "Name": { "en": "Know" }, + "Abbreviation": {}, "Code": "3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114215,7 +115159,11 @@ "Name": { "en": "Monetary units" }, + "Abbreviation": {}, "Code": "6.8.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114224,7 +115172,11 @@ "Name": { "en": "Lose wealth" }, + "Abbreviation": {}, "Code": "6.8.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114233,7 +115185,11 @@ "Name": { "en": "Line" }, + "Abbreviation": {}, "Code": "8.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114242,7 +115198,11 @@ "Name": { "en": "Shape" }, + "Abbreviation": {}, "Code": "8.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114251,7 +115211,11 @@ "Name": { "en": "Join, attach" }, + "Abbreviation": {}, "Code": "7.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114260,7 +115224,11 @@ "Name": { "en": "Start again" }, + "Abbreviation": {}, "Code": "8.4.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114269,7 +115237,11 @@ "Name": { "en": "Working with stone" }, + "Abbreviation": {}, "Code": "6.6.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114278,7 +115250,11 @@ "Name": { "en": "Feast" }, + "Abbreviation": {}, "Code": "5.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114287,7 +115263,11 @@ "Name": { "en": "Thin person" }, + "Abbreviation": {}, "Code": "8.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114296,7 +115276,11 @@ "Name": { "en": "Funeral" }, + "Abbreviation": {}, "Code": "2.6.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114305,7 +115289,11 @@ "Name": { "en": "Become, change state" }, + "Abbreviation": {}, "Code": "9.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114314,7 +115302,11 @@ "Name": { "en": "Forward" }, + "Abbreviation": {}, "Code": "8.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114323,7 +115315,11 @@ "Name": { "en": "Names of continents" }, + "Abbreviation": {}, "Code": "9.7.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114332,7 +115328,11 @@ "Name": { "en": "Under, below" }, + "Abbreviation": {}, "Code": "8.5.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114341,7 +115341,11 @@ "Name": { "en": "Musician" }, + "Abbreviation": {}, "Code": "4.2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114350,7 +115354,11 @@ "Name": { "en": "Hungry, thirsty" }, + "Abbreviation": {}, "Code": "5.2.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114359,7 +115367,11 @@ "Name": { "en": "Parts of an insect" }, + "Abbreviation": {}, "Code": "1.6.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114368,7 +115380,11 @@ "Name": { "en": "Protect" }, + "Abbreviation": {}, "Code": "4.4.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114377,7 +115393,11 @@ "Name": { "en": "Press" }, + "Abbreviation": {}, "Code": "7.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114386,7 +115406,11 @@ "Name": { "en": "Most, least" }, + "Abbreviation": {}, "Code": "8.1.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114395,7 +115419,11 @@ "Name": { "en": "Lie down" }, + "Abbreviation": {}, "Code": "7.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114404,7 +115432,11 @@ "Name": { "en": "Short, not tall" }, + "Abbreviation": {}, "Code": "8.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114413,7 +115445,11 @@ "Name": { "en": "Mountain" }, + "Abbreviation": {}, "Code": "1.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114422,7 +115458,11 @@ "Name": { "en": "Independent person" }, + "Abbreviation": {}, "Code": "4.1.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114431,7 +115471,11 @@ "Name": { "en": "Leaning, sloping" }, + "Abbreviation": {}, "Code": "8.3.1.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114440,7 +115484,11 @@ "Name": { "en": "Dry" }, + "Abbreviation": {}, "Code": "1.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114449,7 +115497,11 @@ "Name": { "en": "Peace" }, + "Abbreviation": {}, "Code": "4.8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114458,7 +115510,11 @@ "Name": { "en": "Cordage" }, + "Abbreviation": {}, "Code": "6.6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114467,7 +115523,11 @@ "Name": { "en": "Management" }, + "Abbreviation": {}, "Code": "6.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114476,7 +115536,11 @@ "Name": { "en": "Dive" }, + "Abbreviation": {}, "Code": "7.2.4.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114485,7 +115549,11 @@ "Name": { "en": "Art" }, + "Abbreviation": {}, "Code": "6.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114494,7 +115562,11 @@ "Name": { "en": "Acquit" }, + "Abbreviation": {}, "Code": "4.7.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114503,7 +115575,11 @@ "Name": { "en": "Lazy" }, + "Abbreviation": {}, "Code": "6.1.2.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114512,7 +115588,11 @@ "Name": { "en": "Copy" }, + "Abbreviation": {}, "Code": "8.3.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114521,7 +115601,11 @@ "Name": { "en": "Pay" }, + "Abbreviation": {}, "Code": "6.8.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114530,7 +115614,11 @@ "Name": { "en": "Time of the day" }, + "Abbreviation": {}, "Code": "8.4.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114539,7 +115627,11 @@ "Name": { "en": "Search" }, + "Abbreviation": {}, "Code": "7.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114548,7 +115640,11 @@ "Name": { "en": "Young" }, + "Abbreviation": {}, "Code": "8.4.6.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114557,7 +115653,11 @@ "Name": { "en": "Different" }, + "Abbreviation": {}, "Code": "8.3.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114566,7 +115666,11 @@ "Name": { "en": "Exist" }, + "Abbreviation": {}, "Code": "9.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114575,7 +115679,11 @@ "Name": { "en": "Interrupt" }, + "Abbreviation": {}, "Code": "8.4.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114584,7 +115692,11 @@ "Name": { "en": "Busy" }, + "Abbreviation": {}, "Code": "6.1.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114593,7 +115705,11 @@ "Name": { "en": "Agricultural tool" }, + "Abbreviation": {}, "Code": "6.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114602,7 +115718,11 @@ "Name": { "en": "Male, female" }, + "Abbreviation": {}, "Code": "2.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114611,7 +115731,11 @@ "Name": { "en": "Listen" }, + "Abbreviation": {}, "Code": "2.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114620,7 +115744,11 @@ "Name": { "en": "Number series" }, + "Abbreviation": {}, "Code": "8.1.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114629,7 +115757,11 @@ "Name": { "en": "Surprise" }, + "Abbreviation": {}, "Code": "3.4.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114638,7 +115770,11 @@ "Name": { "en": "First fruits" }, + "Abbreviation": {}, "Code": "6.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114647,7 +115783,11 @@ "Name": { "en": "Relationships" }, + "Abbreviation": {}, "Code": "4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114656,7 +115796,11 @@ "Name": { "en": "Plural" }, + "Abbreviation": {}, "Code": "8.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114665,7 +115809,11 @@ "Name": { "en": "Risk" }, + "Abbreviation": {}, "Code": "4.4.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114674,7 +115822,11 @@ "Name": { "en": "Condemn, find guilty" }, + "Abbreviation": {}, "Code": "4.7.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114683,7 +115835,11 @@ "Name": { "en": "Tree" }, + "Abbreviation": {}, "Code": "1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114692,7 +115848,11 @@ "Name": { "en": "Semantically similar events" }, + "Abbreviation": {}, "Code": "9.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114701,7 +115861,11 @@ "Name": { "en": "Conform" }, + "Abbreviation": {}, "Code": "4.3.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114710,7 +115874,11 @@ "Name": { "en": "Rock" }, + "Abbreviation": {}, "Code": "1.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114719,7 +115887,11 @@ "Name": { "en": "Provide for, support" }, + "Abbreviation": {}, "Code": "4.3.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114728,7 +115900,11 @@ "Name": { "en": "Disbelief" }, + "Abbreviation": {}, "Code": "3.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114737,7 +115913,11 @@ "Name": { "en": "Eat" }, + "Abbreviation": {}, "Code": "5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114746,7 +115926,11 @@ "Name": { "en": "Price" }, + "Abbreviation": {}, "Code": "6.8.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114755,7 +115939,11 @@ "Name": { "en": "Daily life" }, + "Abbreviation": {}, "Code": "5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114764,7 +115952,11 @@ "Name": { "en": "Countryside" }, + "Abbreviation": {}, "Code": "4.6.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114773,7 +115965,11 @@ "Name": { "en": "Uninterested, bored" }, + "Abbreviation": {}, "Code": "3.4.1.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114782,7 +115978,11 @@ "Name": { "en": "Square" }, + "Abbreviation": {}, "Code": "8.3.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114791,7 +115991,11 @@ "Name": { "en": "Wood" }, + "Abbreviation": {}, "Code": "6.6.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114800,7 +116004,11 @@ "Name": { "en": "Shy, timid" }, + "Abbreviation": {}, "Code": "3.4.2.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114809,7 +116017,11 @@ "Name": { "en": "Move quickly" }, + "Abbreviation": {}, "Code": "7.2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114818,7 +116030,11 @@ "Name": { "en": "Treat disease" }, + "Abbreviation": {}, "Code": "2.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114827,7 +116043,11 @@ "Name": { "en": "Recover from sickness" }, + "Abbreviation": {}, "Code": "2.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114836,7 +116056,11 @@ "Name": { "en": "Curse" }, + "Abbreviation": {}, "Code": "4.9.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114845,7 +116069,11 @@ "Name": { "en": "To a small degree" }, + "Abbreviation": {}, "Code": "9.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114854,7 +116082,11 @@ "Name": { "en": "Night" }, + "Abbreviation": {}, "Code": "8.4.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114863,7 +116095,11 @@ "Name": { "en": "Dog" }, + "Abbreviation": {}, "Code": "6.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114872,7 +116108,11 @@ "Name": { "en": "Change something" }, + "Abbreviation": {}, "Code": "9.1.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114881,7 +116121,11 @@ "Name": { "en": "Near" }, + "Abbreviation": {}, "Code": "8.2.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114890,7 +116134,11 @@ "Name": { "en": "Refuse to do something" }, + "Abbreviation": {}, "Code": "3.3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114899,7 +116147,11 @@ "Name": { "en": "Announce" }, + "Abbreviation": {}, "Code": "3.5.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114908,7 +116160,11 @@ "Name": { "en": "Important" }, + "Abbreviation": {}, "Code": "8.3.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114917,7 +116173,11 @@ "Name": { "en": "Patient-related cases" }, + "Abbreviation": {}, "Code": "9.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114926,7 +116186,11 @@ "Name": { "en": "Take something from somewhere" }, + "Abbreviation": {}, "Code": "7.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114935,7 +116199,11 @@ "Name": { "en": "Christianity" }, + "Abbreviation": {}, "Code": "4.9.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114944,7 +116212,11 @@ "Name": { "en": "Newspaper" }, + "Abbreviation": {}, "Code": "3.5.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114953,7 +116225,11 @@ "Name": { "en": "React, respond" }, + "Abbreviation": {}, "Code": "9.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114962,7 +116238,11 @@ "Name": { "en": "Manner of eating" }, + "Abbreviation": {}, "Code": "5.2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114971,7 +116251,11 @@ "Name": { "en": "Plan a time" }, + "Abbreviation": {}, "Code": "8.4.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114980,7 +116264,11 @@ "Name": { "en": "Often" }, + "Abbreviation": {}, "Code": "8.4.6.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114989,7 +116277,11 @@ "Name": { "en": "Move in a direction" }, + "Abbreviation": {}, "Code": "7.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114998,7 +116290,11 @@ "Name": { "en": "Decorated" }, + "Abbreviation": {}, "Code": "8.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115007,7 +116303,11 @@ "Name": { "en": "Citizen" }, + "Abbreviation": {}, "Code": "4.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115016,7 +116316,11 @@ "Name": { "en": "Without result " }, + "Abbreviation": {}, "Code": "9.6.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115025,7 +116329,11 @@ "Name": { "en": "Growing cassava" }, + "Abbreviation": {}, "Code": "6.2.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115034,7 +116342,11 @@ "Name": { "en": "Reflexive pronouns" }, + "Abbreviation": {}, "Code": "9.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115043,7 +116355,11 @@ "Name": { "en": "Think so" }, + "Abbreviation": {}, "Code": "9.4.4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115052,7 +116368,11 @@ "Name": { "en": "Association" }, + "Abbreviation": {}, "Code": "9.6.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115061,7 +116381,11 @@ "Name": { "en": "Imprison" }, + "Abbreviation": {}, "Code": "4.7.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115070,7 +116394,11 @@ "Name": { "en": "Light a fire" }, + "Abbreviation": {}, "Code": "5.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115079,7 +116407,11 @@ "Name": { "en": "Food from seeds" }, + "Abbreviation": {}, "Code": "5.2.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115088,7 +116420,11 @@ "Name": { "en": "Below standard" }, + "Abbreviation": {}, "Code": "4.3.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115097,7 +116433,11 @@ "Name": { "en": "Prophecy" }, + "Abbreviation": {}, "Code": "4.9.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115106,7 +116446,11 @@ "Name": { "en": "Known, unknown" }, + "Abbreviation": {}, "Code": "3.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115115,7 +116459,11 @@ "Name": { "en": "Call" }, + "Abbreviation": {}, "Code": "3.5.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115124,7 +116472,11 @@ "Name": { "en": "Period of time" }, + "Abbreviation": {}, "Code": "8.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115133,7 +116485,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115142,7 +116498,11 @@ "Name": { "en": "Adornment" }, + "Abbreviation": {}, "Code": "5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115151,7 +116511,11 @@ "Name": { "en": "Markers of focus" }, + "Abbreviation": {}, "Code": "9.6.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115160,7 +116524,11 @@ "Name": { "en": "Determined" }, + "Abbreviation": {}, "Code": "3.3.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115169,7 +116537,11 @@ "Name": { "en": "Move down" }, + "Abbreviation": {}, "Code": "7.2.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115178,7 +116550,11 @@ "Name": { "en": "Travel in space" }, + "Abbreviation": {}, "Code": "7.2.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115187,7 +116563,11 @@ "Name": { "en": "Lack" }, + "Abbreviation": {}, "Code": "8.1.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115196,7 +116576,11 @@ "Name": { "en": "Tend herds in fields" }, + "Abbreviation": {}, "Code": "6.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115205,7 +116589,11 @@ "Name": { "en": "Evaluate, test" }, + "Abbreviation": {}, "Code": "3.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115214,7 +116602,11 @@ "Name": { "en": "Test" }, + "Abbreviation": {}, "Code": "3.6.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115223,7 +116615,11 @@ "Name": { "en": "Era" }, + "Abbreviation": {}, "Code": "8.4.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115232,7 +116628,11 @@ "Name": { "en": "Police" }, + "Abbreviation": {}, "Code": "4.6.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115241,7 +116641,11 @@ "Name": { "en": "Hide your thoughts" }, + "Abbreviation": {}, "Code": "3.5.1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115250,7 +116654,11 @@ "Name": { "en": "Animal color, marking" }, + "Abbreviation": {}, "Code": "8.3.3.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115259,7 +116667,11 @@ "Name": { "en": "Hard, firm" }, + "Abbreviation": {}, "Code": "8.3.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115268,7 +116680,11 @@ "Name": { "en": "Lose a fight" }, + "Abbreviation": {}, "Code": "4.8.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115277,7 +116693,11 @@ "Name": { "en": "Show hospitality" }, + "Abbreviation": {}, "Code": "4.2.1.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115286,7 +116706,11 @@ "Name": { "en": "Animal home" }, + "Abbreviation": {}, "Code": "1.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115295,7 +116719,11 @@ "Name": { "en": "Growing coconuts" }, + "Abbreviation": {}, "Code": "6.2.1.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115304,7 +116732,11 @@ "Name": { "en": "Soil, dirt" }, + "Abbreviation": {}, "Code": "1.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115313,7 +116745,11 @@ "Name": { "en": "Blow air" }, + "Abbreviation": {}, "Code": "1.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115322,7 +116758,11 @@ "Name": { "en": "Science" }, + "Abbreviation": {}, "Code": "3.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115331,7 +116771,11 @@ "Name": { "en": "Hostility" }, + "Abbreviation": {}, "Code": "4.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115340,7 +116784,11 @@ "Name": { "en": "Aspectual time" }, + "Abbreviation": {}, "Code": "8.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115349,7 +116797,11 @@ "Name": { "en": "Proud" }, + "Abbreviation": {}, "Code": "4.3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115358,7 +116810,11 @@ "Name": { "en": "Purpose " }, + "Abbreviation": {}, "Code": "9.6.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115367,7 +116823,11 @@ "Name": { "en": "House" }, + "Abbreviation": {}, "Code": "6.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115376,7 +116836,11 @@ "Name": { "en": "Accompany" }, + "Abbreviation": {}, "Code": "7.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115385,7 +116849,11 @@ "Name": { "en": "Trap" }, + "Abbreviation": {}, "Code": "6.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115394,7 +116862,11 @@ "Name": { "en": "Growing grass" }, + "Abbreviation": {}, "Code": "6.2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115403,7 +116875,11 @@ "Name": { "en": "Pursue" }, + "Abbreviation": {}, "Code": "7.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115412,7 +116888,11 @@ "Name": { "en": "Twist, wring" }, + "Abbreviation": {}, "Code": "8.3.1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115421,7 +116901,11 @@ "Name": { "en": "Tear down" }, + "Abbreviation": {}, "Code": "7.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115430,7 +116914,11 @@ "Name": { "en": "Unsure" }, + "Abbreviation": {}, "Code": "9.4.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115439,7 +116927,11 @@ "Name": { "en": "Right, left" }, + "Abbreviation": {}, "Code": "8.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115448,7 +116940,11 @@ "Name": { "en": "Body" }, + "Abbreviation": {}, "Code": "2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115457,7 +116953,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115466,7 +116966,11 @@ "Name": { "en": "Leave something" }, + "Abbreviation": {}, "Code": "7.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115475,7 +116979,11 @@ "Name": { "en": "In general" }, + "Abbreviation": {}, "Code": "9.6.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115484,7 +116992,11 @@ "Name": { "en": "Many, much" }, + "Abbreviation": {}, "Code": "8.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115493,7 +117005,11 @@ "Name": { "en": "Follow" }, + "Abbreviation": {}, "Code": "7.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115502,7 +117018,11 @@ "Name": { "en": "Moon" }, + "Abbreviation": {}, "Code": "1.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115511,7 +117031,11 @@ "Name": { "en": "Obsessed" }, + "Abbreviation": {}, "Code": "3.4.1.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115520,7 +117044,11 @@ "Name": { "en": "Die" }, + "Abbreviation": {}, "Code": "2.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115529,7 +117057,11 @@ "Name": { "en": "Heaven, hell" }, + "Abbreviation": {}, "Code": "4.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115538,7 +117070,11 @@ "Name": { "en": "Spirits of things" }, + "Abbreviation": {}, "Code": "1.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115547,7 +117083,11 @@ "Name": { "en": "Every time" }, + "Abbreviation": {}, "Code": "8.4.6.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115556,7 +117096,11 @@ "Name": { "en": "Repent" }, + "Abbreviation": {}, "Code": "4.8.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115565,7 +117109,11 @@ "Name": { "en": "Soul, spirit" }, + "Abbreviation": {}, "Code": "3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115574,7 +117122,11 @@ "Name": { "en": "Piece" }, + "Abbreviation": {}, "Code": "8.1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115583,7 +117135,11 @@ "Name": { "en": "Disagree" }, + "Abbreviation": {}, "Code": "3.2.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115592,7 +117148,11 @@ "Name": { "en": "Bone, joint" }, + "Abbreviation": {}, "Code": "2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115601,7 +117161,11 @@ "Name": { "en": "Repay debt" }, + "Abbreviation": {}, "Code": "6.8.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115610,7 +117174,11 @@ "Name": { "en": "Break the law" }, + "Abbreviation": {}, "Code": "4.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115619,7 +117187,11 @@ "Name": { "en": "Subordinating particles" }, + "Abbreviation": {}, "Code": "9.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115628,7 +117200,11 @@ "Name": { "en": "Vehicle" }, + "Abbreviation": {}, "Code": "7.2.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115637,7 +117213,11 @@ "Name": { "en": "Hold" }, + "Abbreviation": {}, "Code": "7.3.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115646,7 +117226,11 @@ "Name": { "en": "Voice" }, + "Abbreviation": {}, "Code": "3.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115655,7 +117239,11 @@ "Name": { "en": "Inherit" }, + "Abbreviation": {}, "Code": "2.6.6.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115664,7 +117252,11 @@ "Name": { "en": "Stupid" }, + "Abbreviation": {}, "Code": "3.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115673,7 +117265,11 @@ "Name": { "en": "Relative time" }, + "Abbreviation": {}, "Code": "8.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115682,7 +117278,11 @@ "Name": { "en": "Food from animals" }, + "Abbreviation": {}, "Code": "5.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115691,7 +117291,11 @@ "Name": { "en": "Subject of teaching" }, + "Abbreviation": {}, "Code": "3.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115700,7 +117304,11 @@ "Name": { "en": "Explode" }, + "Abbreviation": {}, "Code": "6.6.2.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115709,7 +117317,11 @@ "Name": { "en": "Food preparation" }, + "Abbreviation": {}, "Code": "5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115718,7 +117330,11 @@ "Name": { "en": "Decrease" }, + "Abbreviation": {}, "Code": "8.1.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115727,7 +117343,11 @@ "Name": { "en": "Parts of a reptile" }, + "Abbreviation": {}, "Code": "1.6.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115736,7 +117356,11 @@ "Name": { "en": "Push" }, + "Abbreviation": {}, "Code": "7.3.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115745,7 +117369,11 @@ "Name": { "en": "Leave" }, + "Abbreviation": {}, "Code": "7.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115754,7 +117382,11 @@ "Name": { "en": "Avoid" }, + "Abbreviation": {}, "Code": "4.4.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115763,7 +117395,11 @@ "Name": { "en": "Time" }, + "Abbreviation": {}, "Code": "8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115772,7 +117408,11 @@ "Name": { "en": "Prisoner of war" }, + "Abbreviation": {}, "Code": "4.8.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115781,7 +117421,11 @@ "Name": { "en": "Wake up" }, + "Abbreviation": {}, "Code": "5.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115790,7 +117434,11 @@ "Name": { "en": "Hopeless" }, + "Abbreviation": {}, "Code": "3.2.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115799,7 +117447,11 @@ "Name": { "en": "Towards" }, + "Abbreviation": {}, "Code": "8.5.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115808,7 +117460,11 @@ "Name": { "en": "Jewel" }, + "Abbreviation": {}, "Code": "1.2.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115817,7 +117473,11 @@ "Name": { "en": "Basketball" }, + "Abbreviation": {}, "Code": "4.2.6.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115826,7 +117486,11 @@ "Name": { "en": "Wrong, unsuitable" }, + "Abbreviation": {}, "Code": "8.3.7.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115835,7 +117499,11 @@ "Name": { "en": "Growing coffee" }, + "Abbreviation": {}, "Code": "6.2.1.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115844,7 +117512,11 @@ "Name": { "en": "Defeat" }, + "Abbreviation": {}, "Code": "4.8.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115853,7 +117525,11 @@ "Name": { "en": "Inside" }, + "Abbreviation": {}, "Code": "8.5.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115862,7 +117538,11 @@ "Name": { "en": "Parts of a building" }, + "Abbreviation": {}, "Code": "6.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115871,7 +117551,11 @@ "Name": { "en": "Figurative" }, + "Abbreviation": {}, "Code": "3.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115880,7 +117564,11 @@ "Name": { "en": "Attract sexually" }, + "Abbreviation": {}, "Code": "2.6.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115889,7 +117577,11 @@ "Name": { "en": "Bright" }, + "Abbreviation": {}, "Code": "8.3.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115898,7 +117590,11 @@ "Name": { "en": "Again" }, + "Abbreviation": {}, "Code": "8.4.6.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115907,7 +117603,11 @@ "Name": { "en": "Break" }, + "Abbreviation": {}, "Code": "7.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115916,7 +117616,11 @@ "Name": { "en": "Cause" }, + "Abbreviation": {}, "Code": "9.6.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115925,7 +117629,11 @@ "Name": { "en": "Opposite" }, + "Abbreviation": {}, "Code": "8.3.5.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115934,7 +117642,11 @@ "Name": { "en": "Poor eyesight" }, + "Abbreviation": {}, "Code": "2.5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115943,7 +117655,11 @@ "Name": { "en": "Taboo" }, + "Abbreviation": {}, "Code": "4.9.5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115952,7 +117668,11 @@ "Name": { "en": "Have, be with" }, + "Abbreviation": {}, "Code": "7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115961,7 +117681,11 @@ "Name": { "en": "Defend" }, + "Abbreviation": {}, "Code": "4.8.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115970,7 +117694,11 @@ "Name": { "en": "Religious organization" }, + "Abbreviation": {}, "Code": "4.9.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115979,7 +117707,11 @@ "Name": { "en": "Adverbs" }, + "Abbreviation": {}, "Code": "9.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115988,7 +117720,11 @@ "Name": { "en": "Hospital" }, + "Abbreviation": {}, "Code": "2.5.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115997,7 +117733,11 @@ "Name": { "en": "Graceful" }, + "Abbreviation": {}, "Code": "7.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116006,7 +117746,11 @@ "Name": { "en": "Equivalence" }, + "Abbreviation": {}, "Code": "9.6.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116015,7 +117759,11 @@ "Name": { "en": "Welcome, receive" }, + "Abbreviation": {}, "Code": "4.2.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116024,7 +117772,11 @@ "Name": { "en": "Nature, character" }, + "Abbreviation": {}, "Code": "8.3.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116033,7 +117785,11 @@ "Name": { "en": "Stretch" }, + "Abbreviation": {}, "Code": "8.3.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116042,7 +117798,11 @@ "Name": { "en": "Theology" }, + "Abbreviation": {}, "Code": "4.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116051,7 +117811,11 @@ "Name": { "en": "Wrap" }, + "Abbreviation": {}, "Code": "7.3.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116060,7 +117824,11 @@ "Name": { "en": "Texture" }, + "Abbreviation": {}, "Code": "8.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116069,7 +117837,11 @@ "Name": { "en": "History" }, + "Abbreviation": {}, "Code": "3.5.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116078,7 +117850,11 @@ "Name": { "en": "Jealous" }, + "Abbreviation": {}, "Code": "3.4.2.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116087,7 +117863,11 @@ "Name": { "en": "Coordinate relations" }, + "Abbreviation": {}, "Code": "9.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116096,7 +117876,11 @@ "Name": { "en": "Notice" }, + "Abbreviation": {}, "Code": "3.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116105,7 +117889,11 @@ "Name": { "en": "Sheep" }, + "Abbreviation": {}, "Code": "6.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116114,7 +117902,11 @@ "Name": { "en": "Deliberately" }, + "Abbreviation": {}, "Code": "3.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116123,7 +117915,11 @@ "Name": { "en": "Riddle" }, + "Abbreviation": {}, "Code": "3.5.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116132,7 +117928,11 @@ "Name": { "en": "Relaxed" }, + "Abbreviation": {}, "Code": "3.4.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116141,7 +117941,11 @@ "Name": { "en": "Thank" }, + "Abbreviation": {}, "Code": "3.5.1.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116150,7 +117954,11 @@ "Name": { "en": "Show, let someone see" }, + "Abbreviation": {}, "Code": "2.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116159,7 +117967,11 @@ "Name": { "en": "Move something" }, + "Abbreviation": {}, "Code": "7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116168,7 +117980,11 @@ "Name": { "en": "Animal movement" }, + "Abbreviation": {}, "Code": "1.6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116177,7 +117993,11 @@ "Name": { "en": "Growing vegetables" }, + "Abbreviation": {}, "Code": "6.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116186,7 +118006,11 @@ "Name": { "en": "Protest" }, + "Abbreviation": {}, "Code": "3.2.5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116195,7 +118019,11 @@ "Name": { "en": "Enough" }, + "Abbreviation": {}, "Code": "8.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116204,7 +118032,11 @@ "Name": { "en": "Set upright" }, + "Abbreviation": {}, "Code": "7.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116213,7 +118045,11 @@ "Name": { "en": "Set free" }, + "Abbreviation": {}, "Code": "7.2.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116222,7 +118058,11 @@ "Name": { "en": "Disobey" }, + "Abbreviation": {}, "Code": "4.5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116231,7 +118071,11 @@ "Name": { "en": "Exercise" }, + "Abbreviation": {}, "Code": "4.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116240,7 +118084,11 @@ "Name": { "en": "Relief" }, + "Abbreviation": {}, "Code": "4.4.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116249,7 +118097,11 @@ "Name": { "en": "Burn" }, + "Abbreviation": {}, "Code": "5.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116258,7 +118110,11 @@ "Name": { "en": "Comfortable" }, + "Abbreviation": {}, "Code": "2.3.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116267,7 +118123,11 @@ "Name": { "en": "Word" }, + "Abbreviation": {}, "Code": "3.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116276,7 +118136,11 @@ "Name": { "en": "Useless" }, + "Abbreviation": {}, "Code": "6.1.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116285,7 +118149,11 @@ "Name": { "en": "Think about" }, + "Abbreviation": {}, "Code": "3.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116294,7 +118162,11 @@ "Name": { "en": "Angry" }, + "Abbreviation": {}, "Code": "3.4.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116303,7 +118175,11 @@ "Name": { "en": "Endure" }, + "Abbreviation": {}, "Code": "4.4.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116312,7 +118188,11 @@ "Name": { "en": "Add to something" }, + "Abbreviation": {}, "Code": "7.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116321,7 +118201,11 @@ "Name": { "en": "Compatible" }, + "Abbreviation": {}, "Code": "8.3.7.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116330,7 +118214,11 @@ "Name": { "en": "Afraid" }, + "Abbreviation": {}, "Code": "3.4.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116339,7 +118227,11 @@ "Name": { "en": "Immature in behavior" }, + "Abbreviation": {}, "Code": "4.3.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116348,7 +118240,11 @@ "Name": { "en": "Finance" }, + "Abbreviation": {}, "Code": "6.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116357,7 +118253,11 @@ "Name": { "en": "One" }, + "Abbreviation": {}, "Code": "8.1.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116366,7 +118266,11 @@ "Name": { "en": "Indefinite location" }, + "Abbreviation": {}, "Code": "8.5.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116375,7 +118279,11 @@ "Name": { "en": "Bat" }, + "Abbreviation": {}, "Code": "1.6.1.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116384,7 +118292,11 @@ "Name": { "en": "Rest" }, + "Abbreviation": {}, "Code": "2.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116393,7 +118305,11 @@ "Name": { "en": "Stop something" }, + "Abbreviation": {}, "Code": "8.4.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116402,7 +118318,11 @@ "Name": { "en": "Clause conjunctions" }, + "Abbreviation": {}, "Code": "9.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116411,7 +118331,11 @@ "Name": { "en": "Go" }, + "Abbreviation": {}, "Code": "7.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116420,7 +118344,11 @@ "Name": { "en": "Worship" }, + "Abbreviation": {}, "Code": "4.9.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116429,7 +118357,11 @@ "Name": { "en": "Unique" }, + "Abbreviation": {}, "Code": "8.3.5.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116438,7 +118370,11 @@ "Name": { "en": "Vindicate" }, + "Abbreviation": {}, "Code": "4.7.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116447,7 +118383,11 @@ "Name": { "en": "Heart" }, + "Abbreviation": {}, "Code": "2.1.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116456,7 +118396,11 @@ "Name": { "en": "Concave" }, + "Abbreviation": {}, "Code": "8.3.1.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116465,7 +118409,11 @@ "Name": { "en": "Make" }, + "Abbreviation": {}, "Code": "9.1.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116474,7 +118422,11 @@ "Name": { "en": "Alcoholic beverage" }, + "Abbreviation": {}, "Code": "5.2.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116483,7 +118435,11 @@ "Name": { "en": "Chess" }, + "Abbreviation": {}, "Code": "4.2.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116492,7 +118448,11 @@ "Name": { "en": "Energetic" }, + "Abbreviation": {}, "Code": "2.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116501,7 +118461,11 @@ "Name": { "en": "Location" }, + "Abbreviation": {}, "Code": "8.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116510,7 +118474,11 @@ "Name": { "en": "Rough" }, + "Abbreviation": {}, "Code": "8.3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116519,7 +118487,11 @@ "Name": { "en": "Store wealth" }, + "Abbreviation": {}, "Code": "6.8.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116528,7 +118500,11 @@ "Name": { "en": "Disappointed" }, + "Abbreviation": {}, "Code": "3.4.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116537,7 +118513,11 @@ "Name": { "en": "Honorifics " }, + "Abbreviation": {}, "Code": "9.6.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116546,7 +118526,11 @@ "Name": { "en": "Hair" }, + "Abbreviation": {}, "Code": "2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116555,7 +118539,11 @@ "Name": { "en": "Arrange a marriage" }, + "Abbreviation": {}, "Code": "2.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116564,7 +118552,11 @@ "Name": { "en": "Ear" }, + "Abbreviation": {}, "Code": "2.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116573,7 +118565,11 @@ "Name": { "en": "Job satisfaction" }, + "Abbreviation": {}, "Code": "6.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116582,7 +118578,11 @@ "Name": { "en": "Prohibited food" }, + "Abbreviation": {}, "Code": "5.2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116591,7 +118591,11 @@ "Name": { "en": "Ugly" }, + "Abbreviation": {}, "Code": "2.3.1.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116600,7 +118604,11 @@ "Name": { "en": "Concession" }, + "Abbreviation": {}, "Code": "9.6.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116609,7 +118617,11 @@ "Name": { "en": "Various" }, + "Abbreviation": {}, "Code": "8.3.5.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116618,7 +118630,11 @@ "Name": { "en": "Quick" }, + "Abbreviation": {}, "Code": "8.4.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116627,7 +118643,11 @@ "Name": { "en": "Middle" }, + "Abbreviation": {}, "Code": "8.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116636,7 +118656,11 @@ "Name": { "en": "Shark, ray" }, + "Abbreviation": {}, "Code": "1.6.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116645,7 +118669,11 @@ "Name": { "en": "Possession, property" }, + "Abbreviation": {}, "Code": "6.8.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116654,7 +118682,11 @@ "Name": { "en": "Power, force" }, + "Abbreviation": {}, "Code": "6.1.2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116663,7 +118695,11 @@ "Name": { "en": "Separate, scatter" }, + "Abbreviation": {}, "Code": "7.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116672,7 +118708,11 @@ "Name": { "en": "Good, moral" }, + "Abbreviation": {}, "Code": "4.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116681,7 +118721,11 @@ "Name": { "en": "Court of law" }, + "Abbreviation": {}, "Code": "4.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116690,7 +118734,11 @@ "Name": { "en": "But" }, + "Abbreviation": {}, "Code": "9.6.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116699,7 +118747,11 @@ "Name": { "en": "Marsupial" }, + "Abbreviation": {}, "Code": "1.6.1.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116708,7 +118760,11 @@ "Name": { "en": "Glory" }, + "Abbreviation": {}, "Code": "8.3.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116717,7 +118773,11 @@ "Name": { "en": "Make hole, opening" }, + "Abbreviation": {}, "Code": "7.8.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116726,7 +118786,11 @@ "Name": { "en": "Sharp" }, + "Abbreviation": {}, "Code": "8.3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116735,7 +118799,11 @@ "Name": { "en": "Growing sugarcane" }, + "Abbreviation": {}, "Code": "6.2.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116744,7 +118812,11 @@ "Name": { "en": "Stiff, flexible" }, + "Abbreviation": {}, "Code": "8.3.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116753,7 +118825,11 @@ "Name": { "en": "Story" }, + "Abbreviation": {}, "Code": "3.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116762,7 +118838,11 @@ "Name": { "en": "General adjectives" }, + "Abbreviation": {}, "Code": "9.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116771,7 +118851,11 @@ "Name": { "en": "Swamp" }, + "Abbreviation": {}, "Code": "1.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116780,7 +118864,11 @@ "Name": { "en": "Return something" }, + "Abbreviation": {}, "Code": "7.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116789,7 +118877,11 @@ "Name": { "en": "Difficult, impossible" }, + "Abbreviation": {}, "Code": "6.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116798,7 +118890,11 @@ "Name": { "en": "Beverage" }, + "Abbreviation": {}, "Code": "5.2.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116807,7 +118903,11 @@ "Name": { "en": "Road" }, + "Abbreviation": {}, "Code": "6.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116816,7 +118916,11 @@ "Name": { "en": "Modern" }, + "Abbreviation": {}, "Code": "8.4.6.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116825,7 +118929,11 @@ "Name": { "en": "Food from plants" }, + "Abbreviation": {}, "Code": "5.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116834,7 +118942,11 @@ "Name": { "en": "Aspect--stative verbs" }, + "Abbreviation": {}, "Code": "9.4.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116843,7 +118955,11 @@ "Name": { "en": "Healthy" }, + "Abbreviation": {}, "Code": "2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116852,7 +118968,11 @@ "Name": { "en": "Telephone" }, + "Abbreviation": {}, "Code": "3.5.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116861,7 +118981,11 @@ "Name": { "en": "Grave" }, + "Abbreviation": {}, "Code": "2.6.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116870,7 +118994,11 @@ "Name": { "en": "Move noisily" }, + "Abbreviation": {}, "Code": "7.2.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116879,7 +119007,11 @@ "Name": { "en": "Cut grass" }, + "Abbreviation": {}, "Code": "6.2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116888,7 +119020,11 @@ "Name": { "en": "Cattle" }, + "Abbreviation": {}, "Code": "6.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116897,7 +119033,11 @@ "Name": { "en": "Working with bricks" }, + "Abbreviation": {}, "Code": "6.6.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116906,7 +119046,11 @@ "Name": { "en": "Average" }, + "Abbreviation": {}, "Code": "8.1.5.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116915,7 +119059,11 @@ "Name": { "en": "Try, attempt" }, + "Abbreviation": {}, "Code": "6.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116924,7 +119072,11 @@ "Name": { "en": "Generous" }, + "Abbreviation": {}, "Code": "6.8.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116933,7 +119085,11 @@ "Name": { "en": "Facial expression" }, + "Abbreviation": {}, "Code": "3.5.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116942,7 +119098,11 @@ "Name": { "en": "Away from" }, + "Abbreviation": {}, "Code": "8.5.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116951,7 +119111,11 @@ "Name": { "en": "Warn" }, + "Abbreviation": {}, "Code": "3.3.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116960,7 +119124,11 @@ "Name": { "en": "Lumbering" }, + "Abbreviation": {}, "Code": "6.6.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116969,7 +119137,11 @@ "Name": { "en": "Flood" }, + "Abbreviation": {}, "Code": "1.1.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116978,7 +119150,11 @@ "Name": { "en": "Grammar" }, + "Abbreviation": {}, "Code": "9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116987,7 +119163,11 @@ "Name": { "en": "Birth ceremony" }, + "Abbreviation": {}, "Code": "2.6.3.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116996,7 +119176,11 @@ "Name": { "en": "Gas" }, + "Abbreviation": {}, "Code": "1.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117005,7 +119189,11 @@ "Name": { "en": "Catch, capture" }, + "Abbreviation": {}, "Code": "7.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117014,7 +119202,11 @@ "Name": { "en": "Available" }, + "Abbreviation": {}, "Code": "6.1.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117023,7 +119215,11 @@ "Name": { "en": "Working with minerals" }, + "Abbreviation": {}, "Code": "6.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117032,7 +119228,11 @@ "Name": { "en": "Pointed" }, + "Abbreviation": {}, "Code": "8.3.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117041,7 +119241,11 @@ "Name": { "en": "No, not" }, + "Abbreviation": {}, "Code": "9.4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117050,7 +119254,11 @@ "Name": { "en": "Affixes" }, + "Abbreviation": {}, "Code": "9.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117059,7 +119267,11 @@ "Name": { "en": "Names of streets" }, + "Abbreviation": {}, "Code": "9.7.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117068,7 +119280,11 @@ "Name": { "en": "Birth" }, + "Abbreviation": {}, "Code": "2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117077,7 +119293,11 @@ "Name": { "en": "Crop failure" }, + "Abbreviation": {}, "Code": "6.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117086,7 +119306,11 @@ "Name": { "en": "Bargain" }, + "Abbreviation": {}, "Code": "6.8.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117095,7 +119319,11 @@ "Name": { "en": "Plunder" }, + "Abbreviation": {}, "Code": "4.8.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117104,7 +119332,11 @@ "Name": { "en": "Move straight without turning" }, + "Abbreviation": {}, "Code": "7.2.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117113,7 +119345,11 @@ "Name": { "en": "Spy" }, + "Abbreviation": {}, "Code": "4.8.3.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117122,7 +119358,11 @@ "Name": { "en": "Few, little" }, + "Abbreviation": {}, "Code": "8.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117131,7 +119371,11 @@ "Name": { "en": "Growing grain" }, + "Abbreviation": {}, "Code": "6.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117140,7 +119384,11 @@ "Name": { "en": "Cooking ingredients" }, + "Abbreviation": {}, "Code": "5.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117149,7 +119397,11 @@ "Name": { "en": "Lizard" }, + "Abbreviation": {}, "Code": "1.6.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117158,7 +119410,11 @@ "Name": { "en": "Escape" }, + "Abbreviation": {}, "Code": "7.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117167,7 +119423,11 @@ "Name": { "en": "Narcotic" }, + "Abbreviation": {}, "Code": "5.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117176,7 +119436,11 @@ "Name": { "en": "Relations involving correspondences" }, + "Abbreviation": {}, "Code": "9.6.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117185,7 +119449,11 @@ "Name": { "en": "Spatial relations" }, + "Abbreviation": {}, "Code": "8.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117194,7 +119462,11 @@ "Name": { "en": "Serious" }, + "Abbreviation": {}, "Code": "4.2.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117203,7 +119475,11 @@ "Name": { "en": "Fight against something bad" }, + "Abbreviation": {}, "Code": "4.8.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117212,7 +119488,11 @@ "Name": { "en": "Growing maize" }, + "Abbreviation": {}, "Code": "6.2.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117221,7 +119501,11 @@ "Name": { "en": "Storm" }, + "Abbreviation": {}, "Code": "1.1.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117230,7 +119514,11 @@ "Name": { "en": "Small animals" }, + "Abbreviation": {}, "Code": "1.6.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117239,7 +119527,11 @@ "Name": { "en": "Pick up" }, + "Abbreviation": {}, "Code": "7.3.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117248,7 +119540,11 @@ "Name": { "en": "Send someone" }, + "Abbreviation": {}, "Code": "7.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117257,7 +119553,11 @@ "Name": { "en": "Sense, perceive" }, + "Abbreviation": {}, "Code": "2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117266,7 +119566,11 @@ "Name": { "en": "Impartial" }, + "Abbreviation": {}, "Code": "4.7.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117275,7 +119579,11 @@ "Name": { "en": "Bless" }, + "Abbreviation": {}, "Code": "4.9.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117284,7 +119592,11 @@ "Name": { "en": "Map" }, + "Abbreviation": {}, "Code": "7.2.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117293,7 +119605,11 @@ "Name": { "en": "Lonely" }, + "Abbreviation": {}, "Code": "3.4.2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117302,7 +119618,11 @@ "Name": { "en": "Blunt" }, + "Abbreviation": {}, "Code": "8.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117311,7 +119631,11 @@ "Name": { "en": "Work hard" }, + "Abbreviation": {}, "Code": "6.1.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117320,7 +119644,11 @@ "Name": { "en": "Stomach illness" }, + "Abbreviation": {}, "Code": "2.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117329,7 +119657,11 @@ "Name": { "en": "Yesterday, today, tomorrow" }, + "Abbreviation": {}, "Code": "8.4.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117338,7 +119670,11 @@ "Name": { "en": "Kneel" }, + "Abbreviation": {}, "Code": "7.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117347,7 +119683,11 @@ "Name": { "en": "General words" }, + "Abbreviation": {}, "Code": "9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117356,7 +119696,11 @@ "Name": { "en": "With, be with" }, + "Abbreviation": {}, "Code": "9.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117365,7 +119709,11 @@ "Name": { "en": "Floor" }, + "Abbreviation": {}, "Code": "6.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117374,7 +119722,11 @@ "Name": { "en": "Extreme belief" }, + "Abbreviation": {}, "Code": "3.2.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117383,7 +119735,11 @@ "Name": { "en": "Sheath" }, + "Abbreviation": {}, "Code": "6.7.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117392,7 +119748,11 @@ "Name": { "en": "Sculpture" }, + "Abbreviation": {}, "Code": "6.6.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117401,7 +119761,11 @@ "Name": { "en": "Parts of tools" }, + "Abbreviation": {}, "Code": "6.7.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117410,7 +119774,11 @@ "Name": { "en": "Handle something" }, + "Abbreviation": {}, "Code": "7.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117419,7 +119787,11 @@ "Name": { "en": "Hire, rent" }, + "Abbreviation": {}, "Code": "6.8.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117428,7 +119800,11 @@ "Name": { "en": "Tell the truth" }, + "Abbreviation": {}, "Code": "3.5.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117437,7 +119813,11 @@ "Name": { "en": "Deaf" }, + "Abbreviation": {}, "Code": "2.5.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117446,7 +119826,11 @@ "Name": { "en": "Move back and forth" }, + "Abbreviation": {}, "Code": "7.2.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117455,7 +119839,11 @@ "Name": { "en": "Pregnancy" }, + "Abbreviation": {}, "Code": "2.6.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117464,7 +119852,11 @@ "Name": { "en": "Short, not long" }, + "Abbreviation": {}, "Code": "8.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117473,7 +119865,11 @@ "Name": { "en": "Hollow" }, + "Abbreviation": {}, "Code": "8.3.1.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117482,7 +119878,11 @@ "Name": { "en": "Female organs" }, + "Abbreviation": {}, "Code": "2.1.8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117491,7 +119891,11 @@ "Name": { "en": "Promise" }, + "Abbreviation": {}, "Code": "3.5.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117500,7 +119904,11 @@ "Name": { "en": "Respond to someone in trouble" }, + "Abbreviation": {}, "Code": "4.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117509,7 +119917,11 @@ "Name": { "en": "Metal" }, + "Abbreviation": {}, "Code": "1.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117518,7 +119930,11 @@ "Name": { "en": "Lack self-control" }, + "Abbreviation": {}, "Code": "4.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117527,7 +119943,11 @@ "Name": { "en": "Epistemic moods" }, + "Abbreviation": {}, "Code": "9.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117536,7 +119956,11 @@ "Name": { "en": "Demon possession" }, + "Abbreviation": {}, "Code": "4.9.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117545,7 +119969,11 @@ "Name": { "en": "Since, from" }, + "Abbreviation": {}, "Code": "8.4.6.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117554,7 +119982,11 @@ "Name": { "en": "Reconcile" }, + "Abbreviation": {}, "Code": "4.8.4.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117563,7 +119995,11 @@ "Name": { "en": "Start something" }, + "Abbreviation": {}, "Code": "8.4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117572,7 +120008,11 @@ "Name": { "en": "Visible" }, + "Abbreviation": {}, "Code": "2.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117581,7 +120021,11 @@ "Name": { "en": "Slip, slide" }, + "Abbreviation": {}, "Code": "7.2.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117590,7 +120034,11 @@ "Name": { "en": "Working with oil and gas" }, + "Abbreviation": {}, "Code": "6.6.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117599,7 +120047,11 @@ "Name": { "en": "Put" }, + "Abbreviation": {}, "Code": "7.5.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117608,7 +120060,11 @@ "Name": { "en": "Now" }, + "Abbreviation": {}, "Code": "8.4.6.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117617,7 +120073,11 @@ "Name": { "en": "Instinct" }, + "Abbreviation": {}, "Code": "3.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117626,7 +120086,11 @@ "Name": { "en": "School" }, + "Abbreviation": {}, "Code": "3.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117635,7 +120099,11 @@ "Name": { "en": "Source (of movement)" }, + "Abbreviation": {}, "Code": "9.5.1.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117644,7 +120112,11 @@ "Name": { "en": "Cowardice" }, + "Abbreviation": {}, "Code": "4.4.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117653,7 +120125,11 @@ "Name": { "en": "Primate" }, + "Abbreviation": {}, "Code": "1.6.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117662,7 +120138,11 @@ "Name": { "en": "Parts of clothing" }, + "Abbreviation": {}, "Code": "5.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117671,7 +120151,11 @@ "Name": { "en": "Turn something" }, + "Abbreviation": {}, "Code": "7.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117680,7 +120164,11 @@ "Name": { "en": "Load, pile" }, + "Abbreviation": {}, "Code": "7.5.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117689,7 +120177,11 @@ "Name": { "en": "Show, explain" }, + "Abbreviation": {}, "Code": "3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117698,7 +120190,11 @@ "Name": { "en": "Food" }, + "Abbreviation": {}, "Code": "5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117707,7 +120203,11 @@ "Name": { "en": "Satiated, full" }, + "Abbreviation": {}, "Code": "5.2.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117716,7 +120216,11 @@ "Name": { "en": "Women\u0027s clothing" }, + "Abbreviation": {}, "Code": "5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117725,7 +120229,11 @@ "Name": { "en": "River" }, + "Abbreviation": {}, "Code": "1.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117734,7 +120242,11 @@ "Name": { "en": "Hesitation fillers" }, + "Abbreviation": {}, "Code": "9.6.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117743,7 +120255,11 @@ "Name": { "en": "Lust" }, + "Abbreviation": {}, "Code": "3.3.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117752,7 +120268,11 @@ "Name": { "en": "Repair" }, + "Abbreviation": {}, "Code": "7.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117761,7 +120281,11 @@ "Name": { "en": "Gambling" }, + "Abbreviation": {}, "Code": "4.2.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117770,7 +120294,11 @@ "Name": { "en": "Names of buildings" }, + "Abbreviation": {}, "Code": "9.7.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117779,7 +120307,11 @@ "Name": { "en": "Take care of something" }, + "Abbreviation": {}, "Code": "6.1.2.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117788,7 +120320,11 @@ "Name": { "en": "Mature in behavior" }, + "Abbreviation": {}, "Code": "4.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117797,7 +120333,11 @@ "Name": { "en": "Appearance" }, + "Abbreviation": {}, "Code": "2.3.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117806,7 +120346,11 @@ "Name": { "en": "Together" }, + "Abbreviation": {}, "Code": "9.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117815,7 +120359,11 @@ "Name": { "en": "Cut" }, + "Abbreviation": {}, "Code": "7.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117824,7 +120372,11 @@ "Name": { "en": "Serve" }, + "Abbreviation": {}, "Code": "4.5.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117833,7 +120385,11 @@ "Name": { "en": "Money" }, + "Abbreviation": {}, "Code": "6.8.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117842,7 +120398,11 @@ "Name": { "en": "Better" }, + "Abbreviation": {}, "Code": "8.3.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117851,7 +120411,11 @@ "Name": { "en": "Ashamed" }, + "Abbreviation": {}, "Code": "3.4.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117860,7 +120424,11 @@ "Name": { "en": "Adopt" }, + "Abbreviation": {}, "Code": "4.1.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117869,7 +120437,11 @@ "Name": { "en": "Limit" }, + "Abbreviation": {}, "Code": "7.3.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117878,7 +120450,11 @@ "Name": { "en": "Instrument" }, + "Abbreviation": {}, "Code": "9.5.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117887,7 +120463,11 @@ "Name": { "en": "Stage of life" }, + "Abbreviation": {}, "Code": "2.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117896,7 +120476,11 @@ "Name": { "en": "Wear clothing" }, + "Abbreviation": {}, "Code": "5.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117905,7 +120489,11 @@ "Name": { "en": "Anteater, aardvark" }, + "Abbreviation": {}, "Code": "1.6.1.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117914,7 +120502,11 @@ "Name": { "en": "Fertile, infertile" }, + "Abbreviation": {}, "Code": "2.6.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117923,7 +120515,11 @@ "Name": { "en": "Furniture" }, + "Abbreviation": {}, "Code": "5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117932,7 +120528,11 @@ "Name": { "en": "Father, mother" }, + "Abbreviation": {}, "Code": "4.1.9.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117941,7 +120541,11 @@ "Name": { "en": "Delay" }, + "Abbreviation": {}, "Code": "8.4.5.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117950,7 +120554,11 @@ "Name": { "en": "Once" }, + "Abbreviation": {}, "Code": "8.4.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117959,7 +120567,11 @@ "Name": { "en": "Poor" }, + "Abbreviation": {}, "Code": "6.8.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117968,7 +120580,11 @@ "Name": { "en": "Symmetrical" }, + "Abbreviation": {}, "Code": "8.3.1.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117977,7 +120593,11 @@ "Name": { "en": "Speak in unison" }, + "Abbreviation": {}, "Code": "3.5.1.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117986,7 +120606,11 @@ "Name": { "en": "Fat person" }, + "Abbreviation": {}, "Code": "8.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117995,7 +120619,11 @@ "Name": { "en": "Remind" }, + "Abbreviation": {}, "Code": "3.2.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118004,7 +120632,11 @@ "Name": { "en": "Request" }, + "Abbreviation": {}, "Code": "3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118013,7 +120645,11 @@ "Name": { "en": "Food from roots" }, + "Abbreviation": {}, "Code": "5.2.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118022,7 +120658,11 @@ "Name": { "en": "Alone" }, + "Abbreviation": {}, "Code": "4.1.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118031,7 +120671,11 @@ "Name": { "en": "Simple, complicated" }, + "Abbreviation": {}, "Code": "7.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118040,7 +120684,11 @@ "Name": { "en": "Know someone" }, + "Abbreviation": {}, "Code": "4.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118049,7 +120697,11 @@ "Name": { "en": "Clean, dirty" }, + "Abbreviation": {}, "Code": "5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118058,7 +120710,11 @@ "Name": { "en": "Pleased with" }, + "Abbreviation": {}, "Code": "3.4.1.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118067,7 +120723,11 @@ "Name": { "en": "Months of the year" }, + "Abbreviation": {}, "Code": "8.4.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118076,7 +120736,11 @@ "Name": { "en": "Feel good" }, + "Abbreviation": {}, "Code": "3.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118085,7 +120749,11 @@ "Name": { "en": "Thresh" }, + "Abbreviation": {}, "Code": "6.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118094,7 +120762,11 @@ "Name": { "en": "Soft, flimsy" }, + "Abbreviation": {}, "Code": "8.3.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118103,7 +120775,11 @@ "Name": { "en": "Necessary " }, + "Abbreviation": {}, "Code": "9.4.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118112,7 +120788,11 @@ "Name": { "en": "Lend" }, + "Abbreviation": {}, "Code": "6.8.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118121,7 +120801,11 @@ "Name": { "en": "Intelligent" }, + "Abbreviation": {}, "Code": "3.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118130,7 +120814,11 @@ "Name": { "en": "Result" }, + "Abbreviation": {}, "Code": "9.6.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118139,7 +120827,11 @@ "Name": { "en": "Working with bone" }, + "Abbreviation": {}, "Code": "6.6.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118148,7 +120840,11 @@ "Name": { "en": "Last" }, + "Abbreviation": {}, "Code": "8.4.5.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118157,7 +120853,11 @@ "Name": { "en": "Related by marriage" }, + "Abbreviation": {}, "Code": "4.1.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118166,7 +120866,11 @@ "Name": { "en": "Flesh" }, + "Abbreviation": {}, "Code": "2.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118175,7 +120879,11 @@ "Name": { "en": "Cat" }, + "Abbreviation": {}, "Code": "6.3.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118184,7 +120892,11 @@ "Name": { "en": "Emphasize" }, + "Abbreviation": {}, "Code": "3.5.1.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118193,7 +120905,11 @@ "Name": { "en": "Borrow" }, + "Abbreviation": {}, "Code": "6.8.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118202,7 +120918,11 @@ "Name": { "en": "Except" }, + "Abbreviation": {}, "Code": "9.6.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118211,7 +120931,11 @@ "Name": { "en": "Information" }, + "Abbreviation": {}, "Code": "3.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118220,7 +120944,11 @@ "Name": { "en": "Building equipment and maintenance" }, + "Abbreviation": {}, "Code": "6.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118229,7 +120957,11 @@ "Name": { "en": "Birth defect" }, + "Abbreviation": {}, "Code": "2.5.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118238,7 +120970,11 @@ "Name": { "en": "Honor" }, + "Abbreviation": {}, "Code": "4.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118247,7 +120983,11 @@ "Name": { "en": "Tidy" }, + "Abbreviation": {}, "Code": "4.3.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118256,7 +120996,11 @@ "Name": { "en": "Happy for" }, + "Abbreviation": {}, "Code": "3.4.1.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118265,7 +121009,11 @@ "Name": { "en": "Dance" }, + "Abbreviation": {}, "Code": "4.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118274,7 +121022,11 @@ "Name": { "en": "Request forgiveness" }, + "Abbreviation": {}, "Code": "4.8.4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118283,7 +121035,11 @@ "Name": { "en": "Plant product" }, + "Abbreviation": {}, "Code": "6.2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118292,7 +121048,11 @@ "Name": { "en": "Light" }, + "Abbreviation": {}, "Code": "8.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118301,7 +121061,11 @@ "Name": { "en": "Boat" }, + "Abbreviation": {}, "Code": "7.2.4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118310,7 +121074,11 @@ "Name": { "en": "Sudden" }, + "Abbreviation": {}, "Code": "8.4.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118319,7 +121087,11 @@ "Name": { "en": "Problem" }, + "Abbreviation": {}, "Code": "4.4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118328,7 +121100,11 @@ "Name": { "en": "Internal organs" }, + "Abbreviation": {}, "Code": "2.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118337,7 +121113,11 @@ "Name": { "en": "Devout" }, + "Abbreviation": {}, "Code": "4.9.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118346,7 +121126,11 @@ "Name": { "en": "Hinduism" }, + "Abbreviation": {}, "Code": "4.9.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118355,7 +121139,11 @@ "Name": { "en": "Water quality" }, + "Abbreviation": {}, "Code": "1.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118364,7 +121152,11 @@ "Name": { "en": "Railroad" }, + "Abbreviation": {}, "Code": "7.2.4.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118373,7 +121165,11 @@ "Name": { "en": "Inner part" }, + "Abbreviation": {}, "Code": "8.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118382,7 +121178,11 @@ "Name": { "en": "Skin disease" }, + "Abbreviation": {}, "Code": "2.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118391,7 +121191,11 @@ "Name": { "en": "Bag" }, + "Abbreviation": {}, "Code": "6.7.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118400,7 +121204,11 @@ "Name": { "en": "Tight" }, + "Abbreviation": {}, "Code": "8.2.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118409,7 +121217,11 @@ "Name": { "en": "Hunting birds" }, + "Abbreviation": {}, "Code": "6.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118418,7 +121230,11 @@ "Name": { "en": "Month" }, + "Abbreviation": {}, "Code": "8.4.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118427,7 +121243,11 @@ "Name": { "en": "Never" }, + "Abbreviation": {}, "Code": "8.4.6.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118436,7 +121256,11 @@ "Name": { "en": "Holiday" }, + "Abbreviation": {}, "Code": "4.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118445,7 +121269,11 @@ "Name": { "en": "Deep, shallow" }, + "Abbreviation": {}, "Code": "8.2.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118454,7 +121282,11 @@ "Name": { "en": "Owe" }, + "Abbreviation": {}, "Code": "6.8.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118463,7 +121295,11 @@ "Name": { "en": "Visit" }, + "Abbreviation": {}, "Code": "4.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118472,7 +121308,11 @@ "Name": { "en": "Accumulate wealth" }, + "Abbreviation": {}, "Code": "6.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118481,7 +121321,11 @@ "Name": { "en": "Direction" }, + "Abbreviation": {}, "Code": "8.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118490,7 +121334,11 @@ "Name": { "en": "Movie" }, + "Abbreviation": {}, "Code": "3.5.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118499,7 +121347,11 @@ "Name": { "en": "Means" }, + "Abbreviation": {}, "Code": "9.5.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118508,7 +121360,11 @@ "Name": { "en": "Castrate animal" }, + "Abbreviation": {}, "Code": "6.3.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118517,7 +121373,11 @@ "Name": { "en": "Plain, plateau" }, + "Abbreviation": {}, "Code": "1.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118526,7 +121386,11 @@ "Name": { "en": "Chair" }, + "Abbreviation": {}, "Code": "5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118535,7 +121399,11 @@ "Name": { "en": "Without purpose " }, + "Abbreviation": {}, "Code": "9.6.2.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118544,7 +121412,11 @@ "Name": { "en": "Wall" }, + "Abbreviation": {}, "Code": "6.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118553,7 +121425,11 @@ "Name": { "en": "Movement of water" }, + "Abbreviation": {}, "Code": "1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118562,7 +121438,11 @@ "Name": { "en": "Publish" }, + "Abbreviation": {}, "Code": "3.5.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118571,7 +121451,11 @@ "Name": { "en": "Future" }, + "Abbreviation": {}, "Code": "8.4.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118580,7 +121464,11 @@ "Name": { "en": "Life" }, + "Abbreviation": {}, "Code": "2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118589,7 +121477,11 @@ "Name": { "en": "Cooperate with" }, + "Abbreviation": {}, "Code": "4.3.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118598,7 +121490,11 @@ "Name": { "en": "Care for" }, + "Abbreviation": {}, "Code": "4.3.4.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118607,7 +121503,11 @@ "Name": { "en": "Enjoy doing something" }, + "Abbreviation": {}, "Code": "3.4.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118616,7 +121516,11 @@ "Name": { "en": "Working relationship" }, + "Abbreviation": {}, "Code": "4.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118625,7 +121529,11 @@ "Name": { "en": "Extinguish a fire" }, + "Abbreviation": {}, "Code": "5.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118634,7 +121542,11 @@ "Name": { "en": "Plumber" }, + "Abbreviation": {}, "Code": "6.6.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118643,7 +121555,11 @@ "Name": { "en": "Mercy" }, + "Abbreviation": {}, "Code": "4.4.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118652,7 +121568,11 @@ "Name": { "en": "Answer in a test" }, + "Abbreviation": {}, "Code": "3.6.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118661,7 +121581,11 @@ "Name": { "en": "Real" }, + "Abbreviation": {}, "Code": "3.5.1.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118670,7 +121594,11 @@ "Name": { "en": "Fever" }, + "Abbreviation": {}, "Code": "2.5.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118679,7 +121607,11 @@ "Name": { "en": "Beginning" }, + "Abbreviation": {}, "Code": "8.4.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118688,7 +121620,11 @@ "Name": { "en": "Related by birth" }, + "Abbreviation": {}, "Code": "4.1.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118697,7 +121633,11 @@ "Name": { "en": "Greet" }, + "Abbreviation": {}, "Code": "3.5.1.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118706,7 +121646,11 @@ "Name": { "en": "In groups" }, + "Abbreviation": {}, "Code": "9.5.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118715,7 +121659,11 @@ "Name": { "en": "Revenge" }, + "Abbreviation": {}, "Code": "4.8.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118724,7 +121672,11 @@ "Name": { "en": "Bush, shrub" }, + "Abbreviation": {}, "Code": "1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118733,7 +121685,11 @@ "Name": { "en": "Indefinite time" }, + "Abbreviation": {}, "Code": "8.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118742,7 +121698,11 @@ "Name": { "en": "Colors of the spectrum" }, + "Abbreviation": {}, "Code": "8.3.3.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118751,7 +121711,11 @@ "Name": { "en": "Gray" }, + "Abbreviation": {}, "Code": "8.3.3.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118760,7 +121724,11 @@ "Name": { "en": "Plan" }, + "Abbreviation": {}, "Code": "6.1.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118769,7 +121737,11 @@ "Name": { "en": "Flatter" }, + "Abbreviation": {}, "Code": "3.5.1.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118778,7 +121750,11 @@ "Name": { "en": "Opinion" }, + "Abbreviation": {}, "Code": "3.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118787,7 +121763,11 @@ "Name": { "en": "Very" }, + "Abbreviation": {}, "Code": "9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118796,7 +121776,11 @@ "Name": { "en": "Music" }, + "Abbreviation": {}, "Code": "4.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118805,7 +121789,11 @@ "Name": { "en": "Naked" }, + "Abbreviation": {}, "Code": "5.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118814,7 +121802,11 @@ "Name": { "en": "Move to a new house" }, + "Abbreviation": {}, "Code": "7.2.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118823,7 +121815,11 @@ "Name": { "en": "Ambush" }, + "Abbreviation": {}, "Code": "4.8.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118832,7 +121828,11 @@ "Name": { "en": "Meeting, assembly" }, + "Abbreviation": {}, "Code": "4.2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118841,7 +121841,11 @@ "Name": { "en": "Relational tenses" }, + "Abbreviation": {}, "Code": "9.4.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118850,7 +121854,11 @@ "Name": { "en": "Fight" }, + "Abbreviation": {}, "Code": "4.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118859,7 +121867,11 @@ "Name": { "en": "Ostracize" }, + "Abbreviation": {}, "Code": "4.7.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118868,7 +121880,11 @@ "Name": { "en": "With (a patient)" }, + "Abbreviation": {}, "Code": "9.5.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118877,7 +121893,11 @@ "Name": { "en": "Frugal" }, + "Abbreviation": {}, "Code": "6.8.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118886,7 +121906,11 @@ "Name": { "en": "Government organization" }, + "Abbreviation": {}, "Code": "4.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118895,7 +121919,11 @@ "Name": { "en": "Dishonest" }, + "Abbreviation": {}, "Code": "4.3.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118904,7 +121932,11 @@ "Name": { "en": "Lean" }, + "Abbreviation": {}, "Code": "7.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118913,7 +121945,11 @@ "Name": { "en": "Labor and birth pains" }, + "Abbreviation": {}, "Code": "2.6.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118922,7 +121958,11 @@ "Name": { "en": "Mineral" }, + "Abbreviation": {}, "Code": "1.2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118931,7 +121971,11 @@ "Name": { "en": "Give, hand to" }, + "Abbreviation": {}, "Code": "7.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118940,7 +121984,11 @@ "Name": { "en": "Carnivore" }, + "Abbreviation": {}, "Code": "1.6.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118949,7 +121997,11 @@ "Name": { "en": "Aim at a target" }, + "Abbreviation": {}, "Code": "7.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118958,7 +122010,11 @@ "Name": { "en": "Social activity" }, + "Abbreviation": {}, "Code": "4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118967,7 +122023,11 @@ "Name": { "en": "Orphan" }, + "Abbreviation": {}, "Code": "4.1.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118976,7 +122036,11 @@ "Name": { "en": "Deserve" }, + "Abbreviation": {}, "Code": "4.7.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118985,7 +122049,11 @@ "Name": { "en": "Fish with net" }, + "Abbreviation": {}, "Code": "6.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118994,7 +122062,11 @@ "Name": { "en": "Exercise authority" }, + "Abbreviation": {}, "Code": "4.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119003,7 +122075,11 @@ "Name": { "en": "Tribal names" }, + "Abbreviation": {}, "Code": "9.7.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119012,7 +122088,11 @@ "Name": { "en": "Markers of direct address " }, + "Abbreviation": {}, "Code": "9.6.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119021,7 +122101,11 @@ "Name": { "en": "Spoil" }, + "Abbreviation": {}, "Code": "4.3.4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119030,7 +122114,11 @@ "Name": { "en": "Spend" }, + "Abbreviation": {}, "Code": "6.8.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119039,7 +122127,11 @@ "Name": { "en": "Represent" }, + "Abbreviation": {}, "Code": "4.6.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119048,7 +122140,11 @@ "Name": { "en": "Multiply numbers" }, + "Abbreviation": {}, "Code": "8.1.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119057,7 +122153,11 @@ "Name": { "en": "Move away" }, + "Abbreviation": {}, "Code": "7.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119066,7 +122166,11 @@ "Name": { "en": "Disorganized" }, + "Abbreviation": {}, "Code": "7.5.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119075,7 +122179,11 @@ "Name": { "en": "Foundation" }, + "Abbreviation": {}, "Code": "6.5.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119084,7 +122192,11 @@ "Name": { "en": "Fertilize a field" }, + "Abbreviation": {}, "Code": "6.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119093,7 +122205,11 @@ "Name": { "en": "Succeed" }, + "Abbreviation": {}, "Code": "6.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119102,7 +122218,11 @@ "Name": { "en": "Until" }, + "Abbreviation": {}, "Code": "8.4.6.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119111,7 +122231,11 @@ "Name": { "en": "Mucus" }, + "Abbreviation": {}, "Code": "2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119120,7 +122244,11 @@ "Name": { "en": "Intercede" }, + "Abbreviation": {}, "Code": "3.3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119129,7 +122257,11 @@ "Name": { "en": "Justice" }, + "Abbreviation": {}, "Code": "4.7.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119138,7 +122270,11 @@ "Name": { "en": "Obscenity" }, + "Abbreviation": {}, "Code": "3.5.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119147,7 +122283,11 @@ "Name": { "en": "Take oath" }, + "Abbreviation": {}, "Code": "4.7.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119156,7 +122296,11 @@ "Name": { "en": "Can" }, + "Abbreviation": {}, "Code": "9.4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119165,7 +122309,11 @@ "Name": { "en": "Return" }, + "Abbreviation": {}, "Code": "7.2.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119174,7 +122322,11 @@ "Name": { "en": "Credit" }, + "Abbreviation": {}, "Code": "6.8.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119183,7 +122335,11 @@ "Name": { "en": "Take something out of something" }, + "Abbreviation": {}, "Code": "7.3.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119192,7 +122348,11 @@ "Name": { "en": "Religious ceremony" }, + "Abbreviation": {}, "Code": "4.9.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119201,7 +122361,11 @@ "Name": { "en": "Working with glass" }, + "Abbreviation": {}, "Code": "6.6.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119210,7 +122374,11 @@ "Name": { "en": "Jump" }, + "Abbreviation": {}, "Code": "7.2.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119219,7 +122387,11 @@ "Name": { "en": "Cloud" }, + "Abbreviation": {}, "Code": "1.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119228,7 +122400,11 @@ "Name": { "en": "Careful" }, + "Abbreviation": {}, "Code": "6.1.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119237,7 +122413,11 @@ "Name": { "en": "Traditional clothing" }, + "Abbreviation": {}, "Code": "5.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119246,7 +122426,11 @@ "Name": { "en": "Attention" }, + "Abbreviation": {}, "Code": "3.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119255,7 +122439,11 @@ "Name": { "en": "Name" }, + "Abbreviation": {}, "Code": "9.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119264,7 +122452,11 @@ "Name": { "en": "Uncover" }, + "Abbreviation": {}, "Code": "7.3.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119273,7 +122465,11 @@ "Name": { "en": "Agriculture" }, + "Abbreviation": {}, "Code": "6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119282,7 +122478,11 @@ "Name": { "en": "A short time" }, + "Abbreviation": {}, "Code": "8.4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119291,7 +122491,11 @@ "Name": { "en": "Types of food" }, + "Abbreviation": {}, "Code": "5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119300,7 +122504,11 @@ "Name": { "en": "Cosmetics" }, + "Abbreviation": {}, "Code": "5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119309,7 +122517,11 @@ "Name": { "en": "Vision, hallucination" }, + "Abbreviation": {}, "Code": "2.5.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119318,7 +122530,11 @@ "Name": { "en": "Indifferent" }, + "Abbreviation": {}, "Code": "3.4.1.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119327,7 +122543,11 @@ "Name": { "en": "Meat" }, + "Abbreviation": {}, "Code": "5.2.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119336,7 +122556,11 @@ "Name": { "en": "Bend" }, + "Abbreviation": {}, "Code": "8.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119345,7 +122569,11 @@ "Name": { "en": "Help to give birth" }, + "Abbreviation": {}, "Code": "2.6.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119354,7 +122582,11 @@ "Name": { "en": "Work for someone" }, + "Abbreviation": {}, "Code": "6.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119363,7 +122595,11 @@ "Name": { "en": "Manner of movement" }, + "Abbreviation": {}, "Code": "7.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119372,7 +122608,11 @@ "Name": { "en": "Fastening tool" }, + "Abbreviation": {}, "Code": "6.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119381,7 +122621,11 @@ "Name": { "en": "Humble" }, + "Abbreviation": {}, "Code": "4.3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119390,7 +122634,11 @@ "Name": { "en": "Parts of small animals" }, + "Abbreviation": {}, "Code": "1.6.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119399,7 +122647,11 @@ "Name": { "en": "Experienced" }, + "Abbreviation": {}, "Code": "6.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119408,7 +122660,11 @@ "Name": { "en": "Entrust to the care of" }, + "Abbreviation": {}, "Code": "4.3.4.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119417,7 +122673,11 @@ "Name": { "en": "Actions of the hand" }, + "Abbreviation": {}, "Code": "7.3.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119426,7 +122686,11 @@ "Name": { "en": "Selfish" }, + "Abbreviation": {}, "Code": "4.3.4.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119435,7 +122699,11 @@ "Name": { "en": "Names of animals" }, + "Abbreviation": {}, "Code": "9.7.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119444,7 +122712,11 @@ "Name": { "en": "Expect" }, + "Abbreviation": {}, "Code": "3.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119453,7 +122725,11 @@ "Name": { "en": "Government functions" }, + "Abbreviation": {}, "Code": "4.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119462,7 +122738,11 @@ "Name": { "en": "Mammal" }, + "Abbreviation": {}, "Code": "1.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119471,7 +122751,11 @@ "Name": { "en": "Influence" }, + "Abbreviation": {}, "Code": "3.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119480,7 +122764,11 @@ "Name": { "en": "Top" }, + "Abbreviation": {}, "Code": "8.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119489,7 +122777,11 @@ "Name": { "en": "Government official" }, + "Abbreviation": {}, "Code": "4.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119498,7 +122790,11 @@ "Name": { "en": "Ambitious" }, + "Abbreviation": {}, "Code": "6.1.2.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119507,7 +122803,11 @@ "Name": { "en": "Tangle" }, + "Abbreviation": {}, "Code": "7.5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119516,7 +122816,11 @@ "Name": { "en": "Amputate" }, + "Abbreviation": {}, "Code": "2.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119525,7 +122829,11 @@ "Name": { "en": "Answer" }, + "Abbreviation": {}, "Code": "3.5.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119534,7 +122842,11 @@ "Name": { "en": "Water" }, + "Abbreviation": {}, "Code": "1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119543,7 +122855,11 @@ "Name": { "en": "Arrange" }, + "Abbreviation": {}, "Code": "7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119552,7 +122868,11 @@ "Name": { "en": "Flow" }, + "Abbreviation": {}, "Code": "1.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119561,7 +122881,11 @@ "Name": { "en": "Turn" }, + "Abbreviation": {}, "Code": "7.2.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119570,7 +122894,11 @@ "Name": { "en": "Remain, remainder" }, + "Abbreviation": {}, "Code": "8.1.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119579,7 +122907,11 @@ "Name": { "en": "Feel bad" }, + "Abbreviation": {}, "Code": "3.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119588,7 +122920,11 @@ "Name": { "en": "Hinder" }, + "Abbreviation": {}, "Code": "4.3.4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119597,7 +122933,11 @@ "Name": { "en": "Salvation" }, + "Abbreviation": {}, "Code": "4.9.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119606,7 +122946,11 @@ "Name": { "en": "Abandon" }, + "Abbreviation": {}, "Code": "4.3.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119615,7 +122959,11 @@ "Name": { "en": "Reject" }, + "Abbreviation": {}, "Code": "3.3.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119624,7 +122972,11 @@ "Name": { "en": "Teach" }, + "Abbreviation": {}, "Code": "3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119633,7 +122985,11 @@ "Name": { "en": "Sad" }, + "Abbreviation": {}, "Code": "3.4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119642,7 +122998,11 @@ "Name": { "en": "Age" }, + "Abbreviation": {}, "Code": "8.4.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119651,7 +123011,11 @@ "Name": { "en": "Football, soccer" }, + "Abbreviation": {}, "Code": "4.2.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119660,7 +123024,11 @@ "Name": { "en": "Semantic constituents related to verbs" }, + "Abbreviation": {}, "Code": "9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119669,7 +123037,11 @@ "Name": { "en": "Flat" }, + "Abbreviation": {}, "Code": "8.3.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119678,7 +123050,11 @@ "Name": { "en": "Miracle, supernatural power" }, + "Abbreviation": {}, "Code": "4.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119687,7 +123063,11 @@ "Name": { "en": "Plow a field" }, + "Abbreviation": {}, "Code": "6.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119696,7 +123076,11 @@ "Name": { "en": "Thin thing" }, + "Abbreviation": {}, "Code": "8.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119705,7 +123089,11 @@ "Name": { "en": "Carrying tool" }, + "Abbreviation": {}, "Code": "6.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119714,7 +123102,11 @@ "Name": { "en": "Track an animal" }, + "Abbreviation": {}, "Code": "6.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119723,7 +123115,11 @@ "Name": { "en": "Social behavior" }, + "Abbreviation": {}, "Code": "4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119732,7 +123128,11 @@ "Name": { "en": "Dedicate to religious use" }, + "Abbreviation": {}, "Code": "4.9.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119741,7 +123141,11 @@ "Name": { "en": "Atone, restitution" }, + "Abbreviation": {}, "Code": "4.7.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119750,7 +123154,11 @@ "Name": { "en": "Not moving" }, + "Abbreviation": {}, "Code": "7.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119759,7 +123167,11 @@ "Name": { "en": "Universe, creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119768,7 +123180,11 @@ "Name": { "en": "Tool" }, + "Abbreviation": {}, "Code": "6.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119777,7 +123193,11 @@ "Name": { "en": "Markers of transition " }, + "Abbreviation": {}, "Code": "9.6.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119786,7 +123206,11 @@ "Name": { "en": "Dishonest financial practices" }, + "Abbreviation": {}, "Code": "6.8.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119795,7 +123219,11 @@ "Name": { "en": "Lightning, thunder" }, + "Abbreviation": {}, "Code": "1.1.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119804,7 +123232,11 @@ "Name": { "en": "Hate, ill will" }, + "Abbreviation": {}, "Code": "4.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119813,7 +123245,11 @@ "Name": { "en": "Carry" }, + "Abbreviation": {}, "Code": "7.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119822,7 +123258,11 @@ "Name": { "en": "Walk" }, + "Abbreviation": {}, "Code": "7.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119831,7 +123271,11 @@ "Name": { "en": "Use" }, + "Abbreviation": {}, "Code": "6.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119840,7 +123284,11 @@ "Name": { "en": "Friend" }, + "Abbreviation": {}, "Code": "4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119849,7 +123297,11 @@ "Name": { "en": "Pour" }, + "Abbreviation": {}, "Code": "1.3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119858,7 +123310,11 @@ "Name": { "en": "Nervous" }, + "Abbreviation": {}, "Code": "3.4.2.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119867,7 +123323,11 @@ "Name": { "en": "Light source" }, + "Abbreviation": {}, "Code": "8.3.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119876,7 +123336,11 @@ "Name": { "en": "Fraction" }, + "Abbreviation": {}, "Code": "8.1.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119885,7 +123349,11 @@ "Name": { "en": "Adjectives" }, + "Abbreviation": {}, "Code": "9.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119894,7 +123362,11 @@ "Name": { "en": "Dye hair" }, + "Abbreviation": {}, "Code": "5.4.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119903,7 +123375,11 @@ "Name": { "en": "Gentle" }, + "Abbreviation": {}, "Code": "4.4.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119912,7 +123388,11 @@ "Name": { "en": "Special days" }, + "Abbreviation": {}, "Code": "8.4.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119921,7 +123401,11 @@ "Name": { "en": "Memorize" }, + "Abbreviation": {}, "Code": "3.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119930,7 +123414,11 @@ "Name": { "en": "Respond to trouble" }, + "Abbreviation": {}, "Code": "4.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119939,7 +123427,11 @@ "Name": { "en": "Pounding tool" }, + "Abbreviation": {}, "Code": "6.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119948,7 +123440,11 @@ "Name": { "en": "Saying, proverb" }, + "Abbreviation": {}, "Code": "3.5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119957,7 +123453,11 @@ "Name": { "en": "Beg" }, + "Abbreviation": {}, "Code": "6.8.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119966,7 +123466,11 @@ "Name": { "en": "Working with clay" }, + "Abbreviation": {}, "Code": "6.6.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119975,7 +123479,11 @@ "Name": { "en": "Physical impact" }, + "Abbreviation": {}, "Code": "7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119984,7 +123492,11 @@ "Name": { "en": "Derivation " }, + "Abbreviation": {}, "Code": "9.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119993,7 +123505,11 @@ "Name": { "en": "Origin (of a person)" }, + "Abbreviation": {}, "Code": "9.5.1.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120002,7 +123518,11 @@ "Name": { "en": "Prevent" }, + "Abbreviation": {}, "Code": "3.3.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120011,7 +123531,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120020,7 +123544,11 @@ "Name": { "en": "Encounter" }, + "Abbreviation": {}, "Code": "4.2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120029,7 +123557,11 @@ "Name": { "en": "Regular" }, + "Abbreviation": {}, "Code": "8.4.5.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120038,7 +123570,11 @@ "Name": { "en": "Made by hand" }, + "Abbreviation": {}, "Code": "6.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120047,7 +123583,11 @@ "Name": { "en": "Dream" }, + "Abbreviation": {}, "Code": "5.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120056,7 +123596,11 @@ "Name": { "en": "Entertainment, recreation" }, + "Abbreviation": {}, "Code": "4.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120065,7 +123609,11 @@ "Name": { "en": "Begin a relationship" }, + "Abbreviation": {}, "Code": "4.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120074,7 +123622,11 @@ "Name": { "en": "Negotiate" }, + "Abbreviation": {}, "Code": "4.8.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120083,7 +123635,11 @@ "Name": { "en": "Move together" }, + "Abbreviation": {}, "Code": "7.2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120092,7 +123648,11 @@ "Name": { "en": "Financial transaction" }, + "Abbreviation": {}, "Code": "6.8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120101,7 +123661,11 @@ "Name": { "en": "Shock" }, + "Abbreviation": {}, "Code": "3.4.2.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120110,7 +123674,11 @@ "Name": { "en": "Introduce" }, + "Abbreviation": {}, "Code": "3.5.1.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120119,7 +123687,11 @@ "Name": { "en": "Suspect" }, + "Abbreviation": {}, "Code": "4.7.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120128,7 +123700,11 @@ "Name": { "en": "Big area" }, + "Abbreviation": {}, "Code": "8.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120137,7 +123713,11 @@ "Name": { "en": "Loud" }, + "Abbreviation": {}, "Code": "2.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120146,7 +123726,11 @@ "Name": { "en": "Working with water" }, + "Abbreviation": {}, "Code": "6.6.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120155,7 +123739,11 @@ "Name": { "en": "Clear a field" }, + "Abbreviation": {}, "Code": "6.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120164,7 +123752,11 @@ "Name": { "en": "Logical" }, + "Abbreviation": {}, "Code": "3.2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120173,7 +123765,11 @@ "Name": { "en": "Nose" }, + "Abbreviation": {}, "Code": "2.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120182,7 +123778,11 @@ "Name": { "en": "With, do with someone" }, + "Abbreviation": {}, "Code": "9.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120191,7 +123791,11 @@ "Name": { "en": "Trust" }, + "Abbreviation": {}, "Code": "3.2.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120200,7 +123804,11 @@ "Name": { "en": "Covenant" }, + "Abbreviation": {}, "Code": "4.7.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120209,7 +123817,11 @@ "Name": { "en": "Name of a place" }, + "Abbreviation": {}, "Code": "9.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120218,7 +123830,11 @@ "Name": { "en": "During" }, + "Abbreviation": {}, "Code": "8.4.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120227,7 +123843,11 @@ "Name": { "en": "Mill grain" }, + "Abbreviation": {}, "Code": "6.2.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120236,7 +123856,11 @@ "Name": { "en": "Names of heavenly bodies" }, + "Abbreviation": {}, "Code": "9.7.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120245,7 +123869,11 @@ "Name": { "en": "Bottom" }, + "Abbreviation": {}, "Code": "8.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120254,7 +123882,11 @@ "Name": { "en": "Habit" }, + "Abbreviation": {}, "Code": "4.3.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120263,7 +123895,11 @@ "Name": { "en": "Strange" }, + "Abbreviation": {}, "Code": "8.3.5.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120272,7 +123908,11 @@ "Name": { "en": "Break a contract" }, + "Abbreviation": {}, "Code": "4.7.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120281,7 +123921,11 @@ "Name": { "en": "Link, connect" }, + "Abbreviation": {}, "Code": "7.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120290,7 +123934,11 @@ "Name": { "en": "Willing" }, + "Abbreviation": {}, "Code": "3.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120299,7 +123947,11 @@ "Name": { "en": "North, south, east, west" }, + "Abbreviation": {}, "Code": "8.5.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120308,7 +123960,11 @@ "Name": { "en": "Photography" }, + "Abbreviation": {}, "Code": "6.6.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120317,7 +123973,11 @@ "Name": { "en": "Care for hair" }, + "Abbreviation": {}, "Code": "5.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120326,7 +123986,11 @@ "Name": { "en": "Personal names" }, + "Abbreviation": {}, "Code": "9.7.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120335,7 +123999,11 @@ "Name": { "en": "Around" }, + "Abbreviation": {}, "Code": "8.5.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120344,7 +124012,11 @@ "Name": { "en": "Pull" }, + "Abbreviation": {}, "Code": "7.3.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120353,7 +124025,11 @@ "Name": { "en": "Punish" }, + "Abbreviation": {}, "Code": "4.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120362,7 +124038,11 @@ "Name": { "en": "Right time" }, + "Abbreviation": {}, "Code": "8.4.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120371,7 +124051,11 @@ "Name": { "en": "Advise" }, + "Abbreviation": {}, "Code": "3.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120380,7 +124064,11 @@ "Name": { "en": "Free from bondage" }, + "Abbreviation": {}, "Code": "4.4.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120389,7 +124077,11 @@ "Name": { "en": "Dense" }, + "Abbreviation": {}, "Code": "8.3.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120398,7 +124090,11 @@ "Name": { "en": "Throw away" }, + "Abbreviation": {}, "Code": "7.4.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120407,7 +124103,11 @@ "Name": { "en": "Round" }, + "Abbreviation": {}, "Code": "8.3.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120416,7 +124116,11 @@ "Name": { "en": "Low" }, + "Abbreviation": {}, "Code": "8.2.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120425,7 +124129,11 @@ "Name": { "en": "Change your mind" }, + "Abbreviation": {}, "Code": "3.2.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120434,7 +124142,11 @@ "Name": { "en": "Race" }, + "Abbreviation": {}, "Code": "4.1.9.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120443,7 +124155,11 @@ "Name": { "en": "Efficient" }, + "Abbreviation": {}, "Code": "6.1.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120452,7 +124168,11 @@ "Name": { "en": "Drink" }, + "Abbreviation": {}, "Code": "5.2.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120461,7 +124181,11 @@ "Name": { "en": "Move back" }, + "Abbreviation": {}, "Code": "7.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120470,7 +124194,11 @@ "Name": { "en": "Careless, irresponsible" }, + "Abbreviation": {}, "Code": "6.1.2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120479,7 +124207,11 @@ "Name": { "en": "Light in weight" }, + "Abbreviation": {}, "Code": "8.2.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120488,7 +124220,11 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": {}, "Code": "5.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120497,7 +124233,11 @@ "Name": { "en": "Mysterious" }, + "Abbreviation": {}, "Code": "3.2.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120506,7 +124246,11 @@ "Name": { "en": "Ritual scar" }, + "Abbreviation": {}, "Code": "5.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120515,7 +124259,11 @@ "Name": { "en": "Swell" }, + "Abbreviation": {}, "Code": "2.5.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120524,7 +124272,11 @@ "Name": { "en": "Rebuke" }, + "Abbreviation": {}, "Code": "4.8.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120533,7 +124285,11 @@ "Name": { "en": "Effective" }, + "Abbreviation": {}, "Code": "6.1.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120542,7 +124298,11 @@ "Name": { "en": "Travel" }, + "Abbreviation": {}, "Code": "7.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120551,7 +124311,11 @@ "Name": { "en": "Controlling water" }, + "Abbreviation": {}, "Code": "6.6.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120560,7 +124324,11 @@ "Name": { "en": "Interrogative " }, + "Abbreviation": {}, "Code": "9.4.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120569,7 +124337,11 @@ "Name": { "en": "Late" }, + "Abbreviation": {}, "Code": "8.4.5.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120578,7 +124350,11 @@ "Name": { "en": "Compel" }, + "Abbreviation": {}, "Code": "3.3.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120587,7 +124363,11 @@ "Name": { "en": "Doubt" }, + "Abbreviation": {}, "Code": "3.2.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120596,7 +124376,11 @@ "Name": { "en": "Cancel an event" }, + "Abbreviation": {}, "Code": "6.1.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120605,7 +124389,11 @@ "Name": { "en": "Personality" }, + "Abbreviation": {}, "Code": "3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120614,7 +124402,11 @@ "Name": { "en": "Point, dot" }, + "Abbreviation": {}, "Code": "8.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120623,7 +124415,11 @@ "Name": { "en": "Fireplace" }, + "Abbreviation": {}, "Code": "5.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120632,7 +124428,11 @@ "Name": { "en": "Pattern, design" }, + "Abbreviation": {}, "Code": "8.3.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120641,7 +124441,11 @@ "Name": { "en": "Way, route" }, + "Abbreviation": {}, "Code": "7.2.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120650,7 +124454,11 @@ "Name": { "en": "Drop charges" }, + "Abbreviation": {}, "Code": "4.7.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120659,7 +124467,11 @@ "Name": { "en": "Rub" }, + "Abbreviation": {}, "Code": "7.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120668,7 +124480,11 @@ "Name": { "en": "Reading and writing" }, + "Abbreviation": {}, "Code": "3.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120677,7 +124493,11 @@ "Name": { "en": "In front of" }, + "Abbreviation": {}, "Code": "8.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120686,7 +124506,11 @@ "Name": { "en": "Read" }, + "Abbreviation": {}, "Code": "3.5.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120695,7 +124519,11 @@ "Name": { "en": "Stop moving" }, + "Abbreviation": {}, "Code": "7.2.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120704,7 +124532,11 @@ "Name": { "en": "Working with cloth" }, + "Abbreviation": {}, "Code": "6.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120713,7 +124545,11 @@ "Name": { "en": "Admit" }, + "Abbreviation": {}, "Code": "3.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120722,7 +124558,11 @@ "Name": { "en": "Loose" }, + "Abbreviation": {}, "Code": "8.2.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120731,7 +124571,11 @@ "Name": { "en": "Manage a house" }, + "Abbreviation": {}, "Code": "5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120740,7 +124584,11 @@ "Name": { "en": "Spatial location of an event" }, + "Abbreviation": {}, "Code": "9.5.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120749,7 +124597,11 @@ "Name": { "en": "Mind" }, + "Abbreviation": {}, "Code": "3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120758,7 +124610,11 @@ "Name": { "en": "Butcher, slaughter" }, + "Abbreviation": {}, "Code": "6.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120767,7 +124623,11 @@ "Name": { "en": "Include" }, + "Abbreviation": {}, "Code": "7.5.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120776,7 +124636,11 @@ "Name": { "en": "Ceremony" }, + "Abbreviation": {}, "Code": "4.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120785,7 +124649,11 @@ "Name": { "en": "Veterinary science" }, + "Abbreviation": {}, "Code": "6.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120794,7 +124662,11 @@ "Name": { "en": "Leg" }, + "Abbreviation": {}, "Code": "2.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120803,7 +124675,11 @@ "Name": { "en": "Polite" }, + "Abbreviation": {}, "Code": "4.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120812,7 +124688,11 @@ "Name": { "en": "Game" }, + "Abbreviation": {}, "Code": "4.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120821,7 +124701,11 @@ "Name": { "en": "Sense of touch" }, + "Abbreviation": {}, "Code": "2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120830,7 +124714,11 @@ "Name": { "en": "Irreligion" }, + "Abbreviation": {}, "Code": "4.9.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120839,7 +124727,11 @@ "Name": { "en": "Steps in food preparation" }, + "Abbreviation": {}, "Code": "5.2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120848,7 +124740,11 @@ "Name": { "en": "Summarize" }, + "Abbreviation": {}, "Code": "3.5.1.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120857,7 +124753,11 @@ "Name": { "en": "Style of clothing" }, + "Abbreviation": {}, "Code": "5.3.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120866,7 +124766,11 @@ "Name": { "en": "Cast lots" }, + "Abbreviation": {}, "Code": "3.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120875,7 +124779,11 @@ "Name": { "en": "Types of animals" }, + "Abbreviation": {}, "Code": "1.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120884,7 +124792,11 @@ "Name": { "en": "Economics" }, + "Abbreviation": {}, "Code": "6.9.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120893,7 +124805,11 @@ "Name": { "en": "Weapon, shoot" }, + "Abbreviation": {}, "Code": "4.8.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120902,7 +124818,11 @@ "Name": { "en": "Culture" }, + "Abbreviation": {}, "Code": "4.3.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120911,7 +124831,11 @@ "Name": { "en": "Boundary" }, + "Abbreviation": {}, "Code": "6.5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120920,7 +124844,11 @@ "Name": { "en": "To a larger degree" }, + "Abbreviation": {}, "Code": "9.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120929,7 +124857,11 @@ "Name": { "en": "Distance" }, + "Abbreviation": {}, "Code": "8.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120938,7 +124870,11 @@ "Name": { "en": "Eventually" }, + "Abbreviation": {}, "Code": "8.4.6.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120947,7 +124883,11 @@ "Name": { "en": "Parts of a fish" }, + "Abbreviation": {}, "Code": "1.6.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120956,7 +124896,11 @@ "Name": { "en": "Wave" }, + "Abbreviation": {}, "Code": "1.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120965,7 +124909,11 @@ "Name": { "en": "Hot" }, + "Abbreviation": {}, "Code": "8.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120974,7 +124922,11 @@ "Name": { "en": "Bad, immoral" }, + "Abbreviation": {}, "Code": "4.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120983,7 +124935,11 @@ "Name": { "en": "Invite" }, + "Abbreviation": {}, "Code": "4.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120992,7 +124948,11 @@ "Name": { "en": "Share wealth" }, + "Abbreviation": {}, "Code": "6.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121001,7 +124961,11 @@ "Name": { "en": "Situation" }, + "Abbreviation": {}, "Code": "9.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121010,7 +124974,11 @@ "Name": { "en": "Unintelligible" }, + "Abbreviation": {}, "Code": "3.5.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121019,7 +124987,11 @@ "Name": { "en": "Derivational affixes" }, + "Abbreviation": {}, "Code": "9.2.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121028,7 +125000,11 @@ "Name": { "en": "Uncle, aunt" }, + "Abbreviation": {}, "Code": "4.1.9.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121037,7 +125013,11 @@ "Name": { "en": "Growing roots" }, + "Abbreviation": {}, "Code": "6.2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121046,7 +125026,11 @@ "Name": { "en": "Event propositions" }, + "Abbreviation": {}, "Code": "9.1.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121055,7 +125039,11 @@ "Name": { "en": "Religion" }, + "Abbreviation": {}, "Code": "4.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121064,7 +125052,11 @@ "Name": { "en": "Government" }, + "Abbreviation": {}, "Code": "4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121073,7 +125065,11 @@ "Name": { "en": "Extra" }, + "Abbreviation": {}, "Code": "8.1.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121082,7 +125078,11 @@ "Name": { "en": "Solid, liquid, gas" }, + "Abbreviation": {}, "Code": "1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121091,7 +125091,11 @@ "Name": { "en": "Put in" }, + "Abbreviation": {}, "Code": "7.3.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121100,7 +125104,11 @@ "Name": { "en": "Machine" }, + "Abbreviation": {}, "Code": "6.7.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121109,7 +125117,11 @@ "Name": { "en": "Spit, saliva" }, + "Abbreviation": {}, "Code": "2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121118,7 +125130,11 @@ "Name": { "en": "Fly" }, + "Abbreviation": {}, "Code": "7.2.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121127,7 +125143,11 @@ "Name": { "en": "Rope, string" }, + "Abbreviation": {}, "Code": "7.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121136,7 +125156,11 @@ "Name": { "en": "Oppose" }, + "Abbreviation": {}, "Code": "4.8.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121145,7 +125169,11 @@ "Name": { "en": "Long" }, + "Abbreviation": {}, "Code": "8.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121154,7 +125182,11 @@ "Name": { "en": "Question words" }, + "Abbreviation": {}, "Code": "9.2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121163,7 +125195,11 @@ "Name": { "en": "Sign, symbol" }, + "Abbreviation": {}, "Code": "3.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121172,7 +125208,11 @@ "Name": { "en": "Pain" }, + "Abbreviation": {}, "Code": "2.5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121181,7 +125221,11 @@ "Name": { "en": "Decay" }, + "Abbreviation": {}, "Code": "8.3.7.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121190,7 +125234,11 @@ "Name": { "en": "Brave" }, + "Abbreviation": {}, "Code": "4.4.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121199,7 +125247,11 @@ "Name": { "en": "Interval" }, + "Abbreviation": {}, "Code": "8.4.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121208,7 +125260,11 @@ "Name": { "en": "Do good to" }, + "Abbreviation": {}, "Code": "4.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121217,7 +125273,11 @@ "Name": { "en": "Clan names" }, + "Abbreviation": {}, "Code": "9.7.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121226,7 +125286,11 @@ "Name": { "en": "Behind" }, + "Abbreviation": {}, "Code": "8.5.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121235,7 +125299,11 @@ "Name": { "en": "Sometimes" }, + "Abbreviation": {}, "Code": "8.4.6.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121244,7 +125312,11 @@ "Name": { "en": "Basis" }, + "Abbreviation": {}, "Code": "9.6.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121253,7 +125325,11 @@ "Name": { "en": "Ask" }, + "Abbreviation": {}, "Code": "3.5.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121262,7 +125338,11 @@ "Name": { "en": "Easy, possible" }, + "Abbreviation": {}, "Code": "6.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121271,7 +125351,11 @@ "Name": { "en": "Weaving cloth" }, + "Abbreviation": {}, "Code": "6.6.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121280,7 +125364,11 @@ "Name": { "en": "Tooth decay" }, + "Abbreviation": {}, "Code": "2.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121289,7 +125377,11 @@ "Name": { "en": "Enemy" }, + "Abbreviation": {}, "Code": "4.8.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121298,7 +125390,11 @@ "Name": { "en": "Continue, persevere" }, + "Abbreviation": {}, "Code": "8.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121307,7 +125403,11 @@ "Name": { "en": "Throw" }, + "Abbreviation": {}, "Code": "7.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121316,7 +125416,11 @@ "Name": { "en": "Status" }, + "Abbreviation": {}, "Code": "4.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121325,7 +125429,11 @@ "Name": { "en": "Speak little" }, + "Abbreviation": {}, "Code": "3.5.1.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121334,7 +125442,11 @@ "Name": { "en": "Tense and aspect" }, + "Abbreviation": {}, "Code": "9.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121343,7 +125455,11 @@ "Name": { "en": "Unfair" }, + "Abbreviation": {}, "Code": "4.7.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121352,7 +125468,11 @@ "Name": { "en": "Land, property" }, + "Abbreviation": {}, "Code": "6.5.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121361,7 +125481,11 @@ "Name": { "en": "Forest, grassland, desert" }, + "Abbreviation": {}, "Code": "1.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121370,7 +125494,11 @@ "Name": { "en": "Block, dam up" }, + "Abbreviation": {}, "Code": "7.3.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121379,7 +125507,11 @@ "Name": { "en": "Appear" }, + "Abbreviation": {}, "Code": "2.3.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121388,7 +125520,11 @@ "Name": { "en": "Animal husbandry" }, + "Abbreviation": {}, "Code": "6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121397,7 +125533,11 @@ "Name": { "en": "Baby" }, + "Abbreviation": {}, "Code": "2.6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121406,7 +125546,11 @@ "Name": { "en": "Bodies of water" }, + "Abbreviation": {}, "Code": "1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121415,7 +125559,11 @@ "Name": { "en": "Fasting" }, + "Abbreviation": {}, "Code": "4.9.5.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121424,7 +125572,11 @@ "Name": { "en": "Fence, wall" }, + "Abbreviation": {}, "Code": "6.5.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121433,7 +125585,11 @@ "Name": { "en": "Mention" }, + "Abbreviation": {}, "Code": "3.5.1.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121442,7 +125598,11 @@ "Name": { "en": "White" }, + "Abbreviation": {}, "Code": "8.3.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121451,7 +125611,11 @@ "Name": { "en": "Divide numbers" }, + "Abbreviation": {}, "Code": "8.1.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121460,7 +125624,11 @@ "Name": { "en": "Name of a person" }, + "Abbreviation": {}, "Code": "9.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121469,7 +125637,11 @@ "Name": { "en": "Present" }, + "Abbreviation": {}, "Code": "8.4.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121478,7 +125650,11 @@ "Name": { "en": "Survive" }, + "Abbreviation": {}, "Code": "4.4.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121487,7 +125663,11 @@ "Name": { "en": "Gossip" }, + "Abbreviation": {}, "Code": "3.5.1.8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121496,7 +125676,11 @@ "Name": { "en": "Salt" }, + "Abbreviation": {}, "Code": "5.2.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121505,7 +125689,11 @@ "Name": { "en": "Agent-oriented modalities" }, + "Abbreviation": {}, "Code": "9.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121514,7 +125702,11 @@ "Name": { "en": "Intend" }, + "Abbreviation": {}, "Code": "3.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121523,7 +125715,11 @@ "Name": { "en": "Just, almost not" }, + "Abbreviation": {}, "Code": "9.4.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121532,7 +125728,11 @@ "Name": { "en": "Markers of emphasis " }, + "Abbreviation": {}, "Code": "9.6.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121541,7 +125741,11 @@ "Name": { "en": "Things done to animals" }, + "Abbreviation": {}, "Code": "6.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121550,7 +125754,11 @@ "Name": { "en": "Male and female animals" }, + "Abbreviation": {}, "Code": "1.6.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121559,7 +125767,11 @@ "Name": { "en": "Advantage" }, + "Abbreviation": {}, "Code": "6.1.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121568,7 +125780,11 @@ "Name": { "en": "Sick" }, + "Abbreviation": {}, "Code": "2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121577,7 +125793,11 @@ "Name": { "en": "Destiny" }, + "Abbreviation": {}, "Code": "4.9.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121586,7 +125806,11 @@ "Name": { "en": "Lift" }, + "Abbreviation": {}, "Code": "7.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121595,7 +125819,11 @@ "Name": { "en": "Cover" }, + "Abbreviation": {}, "Code": "7.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121604,7 +125832,11 @@ "Name": { "en": "Offer" }, + "Abbreviation": {}, "Code": "3.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121613,7 +125845,11 @@ "Name": { "en": "Subtract numbers" }, + "Abbreviation": {}, "Code": "8.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121622,7 +125858,11 @@ "Name": { "en": "Whole, complete" }, + "Abbreviation": {}, "Code": "8.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121631,7 +125871,11 @@ "Name": { "en": "Name of a thing" }, + "Abbreviation": {}, "Code": "9.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121640,7 +125884,11 @@ "Name": { "en": "Snake" }, + "Abbreviation": {}, "Code": "1.6.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121649,7 +125897,11 @@ "Name": { "en": "Child" }, + "Abbreviation": {}, "Code": "2.6.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121658,7 +125910,11 @@ "Name": { "en": "Honest" }, + "Abbreviation": {}, "Code": "4.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121667,7 +125923,11 @@ "Name": { "en": "Navy" }, + "Abbreviation": {}, "Code": "4.8.3.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121676,7 +125936,11 @@ "Name": { "en": "Growing rice" }, + "Abbreviation": {}, "Code": "6.2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121685,7 +125949,11 @@ "Name": { "en": "Forgive" }, + "Abbreviation": {}, "Code": "4.8.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121694,7 +125962,11 @@ "Name": { "en": "High" }, + "Abbreviation": {}, "Code": "8.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121703,7 +125975,11 @@ "Name": { "en": "Growing grapes" }, + "Abbreviation": {}, "Code": "6.2.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121712,7 +125988,11 @@ "Name": { "en": "Male organs" }, + "Abbreviation": {}, "Code": "2.1.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121721,7 +126001,11 @@ "Name": { "en": "Ruler" }, + "Abbreviation": {}, "Code": "4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121730,7 +126014,11 @@ "Name": { "en": "Keep something" }, + "Abbreviation": {}, "Code": "7.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121739,7 +126027,11 @@ "Name": { "en": "Exchange, trade" }, + "Abbreviation": {}, "Code": "6.8.4.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121748,7 +126040,11 @@ "Name": { "en": "Corpse" }, + "Abbreviation": {}, "Code": "2.6.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121757,7 +126053,11 @@ "Name": { "en": "A long time" }, + "Abbreviation": {}, "Code": "8.4.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121766,7 +126066,11 @@ "Name": { "en": "Show sympathy, support" }, + "Abbreviation": {}, "Code": "4.4.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121775,7 +126079,11 @@ "Name": { "en": "Spinning thread" }, + "Abbreviation": {}, "Code": "6.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121784,7 +126092,11 @@ "Name": { "en": "Working with metal" }, + "Abbreviation": {}, "Code": "6.6.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121793,7 +126105,11 @@ "Name": { "en": "Roll up" }, + "Abbreviation": {}, "Code": "8.3.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121802,7 +126118,11 @@ "Name": { "en": "Working with leather" }, + "Abbreviation": {}, "Code": "6.6.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121811,7 +126131,11 @@ "Name": { "en": "Circumcision" }, + "Abbreviation": {}, "Code": "5.4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121820,7 +126144,11 @@ "Name": { "en": "Supernatural being" }, + "Abbreviation": {}, "Code": "4.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121829,7 +126157,11 @@ "Name": { "en": "Connected with, related " }, + "Abbreviation": {}, "Code": "9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121838,7 +126170,11 @@ "Name": { "en": "To a large degree" }, + "Abbreviation": {}, "Code": "9.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121847,7 +126183,11 @@ "Name": { "en": "Body functions" }, + "Abbreviation": {}, "Code": "2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121856,7 +126196,11 @@ "Name": { "en": "Play music" }, + "Abbreviation": {}, "Code": "4.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121865,7 +126209,11 @@ "Name": { "en": "Boast" }, + "Abbreviation": {}, "Code": "3.5.1.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121874,7 +126222,11 @@ "Name": { "en": "Confused" }, + "Abbreviation": {}, "Code": "3.4.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121883,7 +126235,11 @@ "Name": { "en": "Attack" }, + "Abbreviation": {}, "Code": "4.8.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121892,7 +126248,11 @@ "Name": { "en": "Process harvest" }, + "Abbreviation": {}, "Code": "6.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121901,7 +126261,11 @@ "Name": { "en": "Cruel" }, + "Abbreviation": {}, "Code": "4.3.4.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121910,7 +126274,11 @@ "Name": { "en": "Be at a place" }, + "Abbreviation": {}, "Code": "8.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121919,7 +126287,11 @@ "Name": { "en": "Recorded music" }, + "Abbreviation": {}, "Code": "3.5.9.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121928,7 +126300,11 @@ "Name": { "en": "Occupy an area" }, + "Abbreviation": {}, "Code": "8.5.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121937,7 +126313,11 @@ "Name": { "en": "Complete, finish" }, + "Abbreviation": {}, "Code": "6.1.2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121946,7 +126326,11 @@ "Name": { "en": "Prepositions, postpositions" }, + "Abbreviation": {}, "Code": "9.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121955,7 +126339,11 @@ "Name": { "en": "Tend a field" }, + "Abbreviation": {}, "Code": "6.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121964,7 +126352,11 @@ "Name": { "en": "Ordinal numbers" }, + "Abbreviation": {}, "Code": "8.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121973,7 +126365,11 @@ "Name": { "en": "Unreliable" }, + "Abbreviation": {}, "Code": "4.3.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121982,7 +126378,11 @@ "Name": { "en": "Digging tool" }, + "Abbreviation": {}, "Code": "6.7.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121991,7 +126391,11 @@ "Name": { "en": "Insult" }, + "Abbreviation": {}, "Code": "3.5.1.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122000,7 +126404,11 @@ "Name": { "en": "Dazed, confused" }, + "Abbreviation": {}, "Code": "2.5.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122009,7 +126417,11 @@ "Name": { "en": "Attitude" }, + "Abbreviation": {}, "Code": "3.2.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122018,7 +126430,11 @@ "Name": { "en": "Idiophones" }, + "Abbreviation": {}, "Code": "9.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122027,7 +126443,11 @@ "Name": { "en": "More" }, + "Abbreviation": {}, "Code": "8.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122036,7 +126456,11 @@ "Name": { "en": "Show, indicate" }, + "Abbreviation": {}, "Code": "3.5.8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122045,7 +126469,11 @@ "Name": { "en": "Bite, chew" }, + "Abbreviation": {}, "Code": "5.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122054,7 +126482,11 @@ "Name": { "en": "Horizontal" }, + "Abbreviation": {}, "Code": "8.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122063,7 +126495,11 @@ "Name": { "en": "Cold" }, + "Abbreviation": {}, "Code": "8.3.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122072,7 +126508,11 @@ "Name": { "en": "Stay, remain" }, + "Abbreviation": {}, "Code": "7.2.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122081,7 +126521,11 @@ "Name": { "en": "Dislike" }, + "Abbreviation": {}, "Code": "3.4.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122090,7 +126534,11 @@ "Name": { "en": "Ask permission" }, + "Abbreviation": {}, "Code": "3.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122099,7 +126547,11 @@ "Name": { "en": "Add numbers" }, + "Abbreviation": {}, "Code": "8.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122108,7 +126560,11 @@ "Name": { "en": "Good" }, + "Abbreviation": {}, "Code": "8.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122117,7 +126573,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122126,7 +126586,11 @@ "Name": { "en": "Down" }, + "Abbreviation": {}, "Code": "8.5.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122135,7 +126599,11 @@ "Name": { "en": "Useful" }, + "Abbreviation": {}, "Code": "6.1.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122144,7 +126612,11 @@ "Name": { "en": "Jewelry" }, + "Abbreviation": {}, "Code": "5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122153,7 +126625,11 @@ "Name": { "en": "Taste" }, + "Abbreviation": {}, "Code": "2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122162,7 +126638,11 @@ "Name": { "en": "Floor, story" }, + "Abbreviation": {}, "Code": "6.5.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122171,7 +126651,11 @@ "Name": { "en": "Shave" }, + "Abbreviation": {}, "Code": "5.4.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122180,7 +126664,11 @@ "Name": { "en": "Probably " }, + "Abbreviation": {}, "Code": "9.4.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122189,7 +126677,11 @@ "Name": { "en": "Hear" }, + "Abbreviation": {}, "Code": "2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122198,7 +126690,11 @@ "Name": { "en": "Fish" }, + "Abbreviation": {}, "Code": "1.6.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122207,7 +126703,11 @@ "Name": { "en": "Trial" }, + "Abbreviation": {}, "Code": "4.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122216,7 +126716,11 @@ "Name": { "en": "Animal group" }, + "Abbreviation": {}, "Code": "1.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122225,7 +126729,11 @@ "Name": { "en": "Fault" }, + "Abbreviation": {}, "Code": "4.7.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122234,7 +126742,11 @@ "Name": { "en": "Seem" }, + "Abbreviation": {}, "Code": "9.4.4.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122243,7 +126755,11 @@ "Name": { "en": "Enthusiastic" }, + "Abbreviation": {}, "Code": "3.4.1.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122252,7 +126768,11 @@ "Name": { "en": "Riot" }, + "Abbreviation": {}, "Code": "4.8.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122261,7 +126781,11 @@ "Name": { "en": "Touching, contact" }, + "Abbreviation": {}, "Code": "8.5.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122270,7 +126794,11 @@ "Name": { "en": "Straight posture" }, + "Abbreviation": {}, "Code": "7.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122279,7 +126807,11 @@ "Name": { "en": "Possible" }, + "Abbreviation": {}, "Code": "9.4.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122288,7 +126820,11 @@ "Name": { "en": "Names of regions" }, + "Abbreviation": {}, "Code": "9.7.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122297,7 +126833,11 @@ "Name": { "en": "Bend down" }, + "Abbreviation": {}, "Code": "7.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122306,7 +126846,11 @@ "Name": { "en": "Give, donate" }, + "Abbreviation": {}, "Code": "6.8.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122315,7 +126859,11 @@ "Name": { "en": "On" }, + "Abbreviation": {}, "Code": "8.5.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122324,7 +126872,11 @@ "Name": { "en": "End" }, + "Abbreviation": {}, "Code": "8.4.6.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122333,7 +126885,11 @@ "Name": { "en": "Smooth" }, + "Abbreviation": {}, "Code": "8.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122342,7 +126898,11 @@ "Name": { "en": "Store, marketplace" }, + "Abbreviation": {}, "Code": "6.8.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122351,7 +126911,11 @@ "Name": { "en": "Distribute" }, + "Abbreviation": {}, "Code": "7.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122360,7 +126924,11 @@ "Name": { "en": "Move a part of the body" }, + "Abbreviation": {}, "Code": "7.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122369,7 +126937,11 @@ "Name": { "en": "Organization" }, + "Abbreviation": {}, "Code": "4.2.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122378,7 +126950,11 @@ "Name": { "en": "Ignore" }, + "Abbreviation": {}, "Code": "3.1.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122387,7 +126963,11 @@ "Name": { "en": "Walk with difficulty" }, + "Abbreviation": {}, "Code": "7.2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122396,7 +126976,11 @@ "Name": { "en": "Law" }, + "Abbreviation": {}, "Code": "4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122405,7 +126989,11 @@ "Name": { "en": "Son, daughter" }, + "Abbreviation": {}, "Code": "4.1.9.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122414,7 +127002,11 @@ "Name": { "en": "Send" }, + "Abbreviation": {}, "Code": "7.3.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122423,7 +127015,11 @@ "Name": { "en": "Help" }, + "Abbreviation": {}, "Code": "4.3.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122432,7 +127028,11 @@ "Name": { "en": "Correct" }, + "Abbreviation": {}, "Code": "3.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122441,7 +127041,11 @@ "Name": { "en": "Crowd, group" }, + "Abbreviation": {}, "Code": "4.2.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122450,7 +127054,11 @@ "Name": { "en": "Willing to learn" }, + "Abbreviation": {}, "Code": "3.2.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122459,7 +127067,11 @@ "Name": { "en": "Move in" }, + "Abbreviation": {}, "Code": "7.2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122468,7 +127080,11 @@ "Name": { "en": "Stand" }, + "Abbreviation": {}, "Code": "7.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122477,7 +127093,11 @@ "Name": { "en": "Meaning" }, + "Abbreviation": {}, "Code": "3.5.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122486,7 +127106,11 @@ "Name": { "en": "Prepare" }, + "Abbreviation": {}, "Code": "6.1.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122495,7 +127119,11 @@ "Name": { "en": "Bribe" }, + "Abbreviation": {}, "Code": "6.8.9.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122504,7 +127132,11 @@ "Name": { "en": "Basic" }, + "Abbreviation": {}, "Code": "8.3.7.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122513,7 +127145,11 @@ "Name": { "en": "Follow, be a disciple" }, + "Abbreviation": {}, "Code": "4.5.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122522,7 +127158,11 @@ "Name": { "en": "Birth order" }, + "Abbreviation": {}, "Code": "4.1.9.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122531,7 +127171,11 @@ "Name": { "en": "In-law" }, + "Abbreviation": {}, "Code": "4.1.9.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122540,7 +127184,11 @@ "Name": { "en": "Draw, paint" }, + "Abbreviation": {}, "Code": "6.6.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122549,7 +127197,11 @@ "Name": { "en": "Big" }, + "Abbreviation": {}, "Code": "8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122558,7 +127210,11 @@ "Name": { "en": "Clothing" }, + "Abbreviation": {}, "Code": "5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122567,7 +127223,11 @@ "Name": { "en": "Surrender" }, + "Abbreviation": {}, "Code": "4.8.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122576,7 +127236,11 @@ "Name": { "en": "Violent" }, + "Abbreviation": {}, "Code": "4.8.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122585,7 +127249,11 @@ "Name": { "en": "Full" }, + "Abbreviation": {}, "Code": "8.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122594,7 +127262,11 @@ "Name": { "en": "Pound in mortar and pestle" }, + "Abbreviation": {}, "Code": "5.2.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122603,7 +127275,11 @@ "Name": { "en": "Self-controlled" }, + "Abbreviation": {}, "Code": "4.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122612,7 +127288,11 @@ "Name": { "en": "Absent" }, + "Abbreviation": {}, "Code": "8.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122621,7 +127301,11 @@ "Name": { "en": "Cough, sneeze" }, + "Abbreviation": {}, "Code": "2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122630,7 +127314,11 @@ "Name": { "en": "Or, either" }, + "Abbreviation": {}, "Code": "9.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122639,7 +127327,11 @@ "Name": { "en": "Diplomacy" }, + "Abbreviation": {}, "Code": "4.6.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122648,7 +127340,11 @@ "Name": { "en": "Working with chemicals" }, + "Abbreviation": {}, "Code": "6.6.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122657,7 +127353,11 @@ "Name": { "en": "Open" }, + "Abbreviation": {}, "Code": "7.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122666,7 +127366,11 @@ "Name": { "en": "Move in a circle" }, + "Abbreviation": {}, "Code": "7.2.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122675,7 +127379,11 @@ "Name": { "en": "Mathematics" }, + "Abbreviation": {}, "Code": "8.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122684,7 +127392,11 @@ "Name": { "en": "Worker" }, + "Abbreviation": {}, "Code": "6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122693,7 +127405,11 @@ "Name": { "en": "Domesticated animal" }, + "Abbreviation": {}, "Code": "6.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122702,7 +127418,11 @@ "Name": { "en": "Bleed, blood" }, + "Abbreviation": {}, "Code": "2.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122711,7 +127431,11 @@ "Name": { "en": "Shout" }, + "Abbreviation": {}, "Code": "3.5.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122720,7 +127444,11 @@ "Name": { "en": "Annoyed" }, + "Abbreviation": {}, "Code": "3.4.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122729,7 +127457,11 @@ "Name": { "en": "Communication devices" }, + "Abbreviation": {}, "Code": "3.5.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122738,7 +127470,11 @@ "Name": { "en": "Living things" }, + "Abbreviation": {}, "Code": "1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122747,7 +127483,11 @@ "Name": { "en": "Impatient" }, + "Abbreviation": {}, "Code": "4.3.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122756,7 +127496,11 @@ "Name": { "en": "Disgusted" }, + "Abbreviation": {}, "Code": "3.4.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122765,7 +127509,11 @@ "Name": { "en": "Amphibian" }, + "Abbreviation": {}, "Code": "1.6.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122774,7 +127522,11 @@ "Name": { "en": "Relative pronouns" }, + "Abbreviation": {}, "Code": "9.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122783,7 +127535,11 @@ "Name": { "en": "Written material" }, + "Abbreviation": {}, "Code": "3.5.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122792,7 +127548,11 @@ "Name": { "en": "Behavior" }, + "Abbreviation": {}, "Code": "4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122801,7 +127561,11 @@ "Name": { "en": "Move forward" }, + "Abbreviation": {}, "Code": "7.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122810,7 +127574,11 @@ "Name": { "en": "Relaxed posture" }, + "Abbreviation": {}, "Code": "7.1.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122819,7 +127587,11 @@ "Name": { "en": "Traditional medicine" }, + "Abbreviation": {}, "Code": "2.5.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122828,7 +127600,11 @@ "Name": { "en": "Suggest" }, + "Abbreviation": {}, "Code": "3.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122837,7 +127613,11 @@ "Name": { "en": "Refuse permission" }, + "Abbreviation": {}, "Code": "3.3.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122846,7 +127626,11 @@ "Name": { "en": "Exact" }, + "Abbreviation": {}, "Code": "8.1.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122855,7 +127639,11 @@ "Name": { "en": "Animal eating" }, + "Abbreviation": {}, "Code": "1.6.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122864,7 +127652,11 @@ "Name": { "en": "Speak poorly" }, + "Abbreviation": {}, "Code": "3.5.1.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122873,7 +127665,11 @@ "Name": { "en": "Fold" }, + "Abbreviation": {}, "Code": "8.3.1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122882,7 +127678,11 @@ "Name": { "en": "Winnow grain" }, + "Abbreviation": {}, "Code": "6.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122891,7 +127691,11 @@ "Name": { "en": "Contain" }, + "Abbreviation": {}, "Code": "8.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122900,7 +127704,11 @@ "Name": { "en": "Old person" }, + "Abbreviation": {}, "Code": "2.6.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122909,7 +127717,11 @@ "Name": { "en": "Guide" }, + "Abbreviation": {}, "Code": "7.2.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122918,7 +127730,11 @@ "Name": { "en": "Enter by force" }, + "Abbreviation": {}, "Code": "4.3.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122927,7 +127743,11 @@ "Name": { "en": "Solve" }, + "Abbreviation": {}, "Code": "3.2.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122936,7 +127756,11 @@ "Name": { "en": "Examine" }, + "Abbreviation": {}, "Code": "2.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122945,7 +127769,11 @@ "Name": { "en": "Parts of things" }, + "Abbreviation": {}, "Code": "8.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122954,7 +127782,11 @@ "Name": { "en": "Worse" }, + "Abbreviation": {}, "Code": "8.3.7.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122963,7 +127795,11 @@ "Name": { "en": "Musical instrument" }, + "Abbreviation": {}, "Code": "4.2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122972,7 +127808,11 @@ "Name": { "en": "Simple, plain" }, + "Abbreviation": {}, "Code": "8.3.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122981,7 +127821,11 @@ "Name": { "en": "Island, shore" }, + "Abbreviation": {}, "Code": "1.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122990,7 +127834,11 @@ "Name": { "en": "Food from vegetables" }, + "Abbreviation": {}, "Code": "5.2.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122999,7 +127847,11 @@ "Name": { "en": "Compete with" }, + "Abbreviation": {}, "Code": "4.3.4.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123008,7 +127860,11 @@ "Name": { "en": "Belong to an organization" }, + "Abbreviation": {}, "Code": "4.2.1.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123017,7 +127873,11 @@ "Name": { "en": "Bad-tempered" }, + "Abbreviation": {}, "Code": "4.3.1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123026,7 +127886,11 @@ "Name": { "en": "Calm" }, + "Abbreviation": {}, "Code": "3.4.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123035,7 +127899,11 @@ "Name": { "en": "Come together, form a group" }, + "Abbreviation": {}, "Code": "4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123044,7 +127912,11 @@ "Name": { "en": "Wind" }, + "Abbreviation": {}, "Code": "1.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123053,7 +127925,11 @@ "Name": { "en": "Care for the fingernails" }, + "Abbreviation": {}, "Code": "5.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123062,7 +127938,11 @@ "Name": { "en": "Beneficiary of an event" }, + "Abbreviation": {}, "Code": "9.5.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123071,7 +127951,11 @@ "Name": { "en": "Bed" }, + "Abbreviation": {}, "Code": "5.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123080,7 +127964,11 @@ "Name": { "en": "Animal" }, + "Abbreviation": {}, "Code": "1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123089,7 +127977,11 @@ "Name": { "en": "Weak" }, + "Abbreviation": {}, "Code": "2.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123098,7 +127990,11 @@ "Name": { "en": "Attribution" }, + "Abbreviation": {}, "Code": "9.1.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123107,7 +128003,11 @@ "Name": { "en": "Rust" }, + "Abbreviation": {}, "Code": "8.3.7.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123116,7 +128016,11 @@ "Name": { "en": "Nickname" }, + "Abbreviation": {}, "Code": "9.7.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123125,7 +128029,11 @@ "Name": { "en": "Command" }, + "Abbreviation": {}, "Code": "4.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123134,7 +128042,11 @@ "Name": { "en": "Alternate" }, + "Abbreviation": {}, "Code": "8.4.5.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123143,7 +128055,11 @@ "Name": { "en": "Speak quietly" }, + "Abbreviation": {}, "Code": "3.5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123152,7 +128068,11 @@ "Name": { "en": "Poison" }, + "Abbreviation": {}, "Code": "2.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123161,7 +128081,11 @@ "Name": { "en": "Oil" }, + "Abbreviation": {}, "Code": "1.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123170,7 +128094,11 @@ "Name": { "en": "Imperative " }, + "Abbreviation": {}, "Code": "9.4.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123179,7 +128107,11 @@ "Name": { "en": "Gesture" }, + "Abbreviation": {}, "Code": "3.5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123188,7 +128120,11 @@ "Name": { "en": "Hate, detest" }, + "Abbreviation": {}, "Code": "3.4.2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123197,7 +128133,11 @@ "Name": { "en": "Sit" }, + "Abbreviation": {}, "Code": "7.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123206,7 +128146,11 @@ "Name": { "en": "Separate, alone" }, + "Abbreviation": {}, "Code": "4.4.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123215,7 +128159,11 @@ "Name": { "en": "Building materials" }, + "Abbreviation": {}, "Code": "6.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123224,7 +128172,11 @@ "Name": { "en": "Multicolored" }, + "Abbreviation": {}, "Code": "8.3.3.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123233,7 +128185,11 @@ "Name": { "en": "Artificial" }, + "Abbreviation": {}, "Code": "6.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123242,7 +128198,11 @@ "Name": { "en": "To a smaller degree" }, + "Abbreviation": {}, "Code": "9.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123251,7 +128211,11 @@ "Name": { "en": "Steady, unsteady" }, + "Abbreviation": {}, "Code": "7.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123260,7 +128224,11 @@ "Name": { "en": "Fort" }, + "Abbreviation": {}, "Code": "4.8.3.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123269,7 +128237,11 @@ "Name": { "en": "Preserve" }, + "Abbreviation": {}, "Code": "8.3.7.8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123278,7 +128250,11 @@ "Name": { "en": "Transport" }, + "Abbreviation": {}, "Code": "7.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123287,7 +128263,11 @@ "Name": { "en": "Smelting" }, + "Abbreviation": {}, "Code": "6.6.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123296,7 +128276,11 @@ "Name": { "en": "Types of people" }, + "Abbreviation": {}, "Code": "4.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123305,7 +128289,11 @@ "Name": { "en": "Convex" }, + "Abbreviation": {}, "Code": "8.3.1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123314,7 +128302,11 @@ "Name": { "en": "Old, not new" }, + "Abbreviation": {}, "Code": "8.4.6.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123323,7 +128315,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123332,7 +128328,11 @@ "Name": { "en": "Other" }, + "Abbreviation": {}, "Code": "8.3.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123341,7 +128341,11 @@ "Name": { "en": "Lucky" }, + "Abbreviation": {}, "Code": "4.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123350,7 +128354,11 @@ "Name": { "en": "Same" }, + "Abbreviation": {}, "Code": "8.3.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123359,7 +128367,11 @@ "Name": { "en": "Recipient (of a patient)" }, + "Abbreviation": {}, "Code": "9.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123368,7 +128380,11 @@ "Name": { "en": "Growing tobacco" }, + "Abbreviation": {}, "Code": "6.2.1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123377,7 +128393,11 @@ "Name": { "en": "Not yet" }, + "Abbreviation": {}, "Code": "8.4.6.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123386,7 +128406,11 @@ "Name": { "en": "Reliable" }, + "Abbreviation": {}, "Code": "4.3.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123395,7 +128419,11 @@ "Name": { "en": "Tend a fire" }, + "Abbreviation": {}, "Code": "5.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123404,7 +128432,11 @@ "Name": { "en": "Suffer" }, + "Abbreviation": {}, "Code": "4.4.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123413,7 +128445,11 @@ "Name": { "en": "Tax" }, + "Abbreviation": {}, "Code": "6.8.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123422,7 +128458,11 @@ "Name": { "en": "Untidy" }, + "Abbreviation": {}, "Code": "4.3.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123431,7 +128471,11 @@ "Name": { "en": "Unity" }, + "Abbreviation": {}, "Code": "4.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123440,7 +128484,11 @@ "Name": { "en": "Make an appeal" }, + "Abbreviation": {}, "Code": "4.8.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123449,7 +128497,11 @@ "Name": { "en": "Admire someone" }, + "Abbreviation": {}, "Code": "4.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123458,7 +128510,11 @@ "Name": { "en": "Pure, unmixed" }, + "Abbreviation": {}, "Code": "7.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123467,7 +128523,11 @@ "Name": { "en": "Tie" }, + "Abbreviation": {}, "Code": "7.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123476,7 +128536,11 @@ "Name": { "en": "Place of worship" }, + "Abbreviation": {}, "Code": "4.9.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123485,7 +128549,11 @@ "Name": { "en": "Renounce claim, concede" }, + "Abbreviation": {}, "Code": "4.8.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123494,7 +128562,11 @@ "Name": { "en": "Occupation" }, + "Abbreviation": {}, "Code": "6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123503,7 +128575,11 @@ "Name": { "en": "Prosperity, trouble" }, + "Abbreviation": {}, "Code": "4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123512,7 +128588,11 @@ "Name": { "en": "Sugar" }, + "Abbreviation": {}, "Code": "5.2.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123521,7 +128601,11 @@ "Name": { "en": "Hypocrite" }, + "Abbreviation": {}, "Code": "4.3.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123530,7 +128614,11 @@ "Name": { "en": "Cut hair" }, + "Abbreviation": {}, "Code": "5.4.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123539,7 +128627,11 @@ "Name": { "en": "Food from fruit" }, + "Abbreviation": {}, "Code": "5.2.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123548,7 +128640,11 @@ "Name": { "en": "Finger, toe" }, + "Abbreviation": {}, "Code": "2.1.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123557,7 +128653,11 @@ "Name": { "en": "Persuade" }, + "Abbreviation": {}, "Code": "3.3.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123566,7 +128666,11 @@ "Name": { "en": "Move up" }, + "Abbreviation": {}, "Code": "7.2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123575,7 +128679,11 @@ "Name": { "en": "Wash dishes" }, + "Abbreviation": {}, "Code": "5.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123584,7 +128692,11 @@ "Name": { "en": "Injure" }, + "Abbreviation": {}, "Code": "2.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123593,7 +128705,11 @@ "Name": { "en": "Stop fighting" }, + "Abbreviation": {}, "Code": "4.8.4.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123602,7 +128718,11 @@ "Name": { "en": "Peer group" }, + "Abbreviation": {}, "Code": "2.6.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123611,7 +128731,11 @@ "Name": { "en": "Hunt and fish" }, + "Abbreviation": {}, "Code": "6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123620,7 +128744,11 @@ "Name": { "en": "Side" }, + "Abbreviation": {}, "Code": "8.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123629,7 +128757,11 @@ "Name": { "en": "Uproot plants" }, + "Abbreviation": {}, "Code": "6.2.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123638,7 +128770,11 @@ "Name": { "en": "Accident" }, + "Abbreviation": {}, "Code": "4.4.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123647,7 +128783,11 @@ "Name": { "en": "Low status" }, + "Abbreviation": {}, "Code": "4.5.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123656,7 +128796,11 @@ "Name": { "en": "Backward" }, + "Abbreviation": {}, "Code": "8.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123665,7 +128809,11 @@ "Name": { "en": "Say" }, + "Abbreviation": {}, "Code": "3.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123674,7 +128822,11 @@ "Name": { "en": "Tell a lie" }, + "Abbreviation": {}, "Code": "3.5.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123683,7 +128835,11 @@ "Name": { "en": "Posture" }, + "Abbreviation": {}, "Code": "7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123692,7 +128848,11 @@ "Name": { "en": "Virginity" }, + "Abbreviation": {}, "Code": "2.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123701,7 +128861,11 @@ "Name": { "en": "Offering, sacrifice" }, + "Abbreviation": {}, "Code": "4.9.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123710,7 +128874,11 @@ "Name": { "en": "Remember" }, + "Abbreviation": {}, "Code": "3.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123719,7 +128887,11 @@ "Name": { "en": "At the same time" }, + "Abbreviation": {}, "Code": "8.4.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123728,7 +128900,11 @@ "Name": { "en": "Goal (of movement)" }, + "Abbreviation": {}, "Code": "9.5.1.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123737,7 +128913,11 @@ "Name": { "en": "Fuel" }, + "Abbreviation": {}, "Code": "5.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123746,7 +128926,11 @@ "Name": { "en": "Pardon, release" }, + "Abbreviation": {}, "Code": "4.7.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123755,7 +128939,11 @@ "Name": { "en": "Mental illness" }, + "Abbreviation": {}, "Code": "2.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123764,7 +128952,11 @@ "Name": { "en": "Yes" }, + "Abbreviation": {}, "Code": "9.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123773,7 +128965,11 @@ "Name": { "en": "Planet" }, + "Abbreviation": {}, "Code": "1.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123782,7 +128978,11 @@ "Name": { "en": "Names of oceans and lakes" }, + "Abbreviation": {}, "Code": "9.7.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123791,7 +128991,11 @@ "Name": { "en": "Personally" }, + "Abbreviation": {}, "Code": "9.2.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123800,7 +129004,11 @@ "Name": { "en": "Breathe, breath" }, + "Abbreviation": {}, "Code": "2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123809,7 +129017,11 @@ "Name": { "en": "Insurance" }, + "Abbreviation": {}, "Code": "6.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123818,7 +129030,11 @@ "Name": { "en": "Care for a baby" }, + "Abbreviation": {}, "Code": "2.6.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123827,7 +129043,11 @@ "Name": { "en": "Hunt" }, + "Abbreviation": {}, "Code": "6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123836,7 +129056,11 @@ "Name": { "en": "Make peace" }, + "Abbreviation": {}, "Code": "4.8.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123845,7 +129069,11 @@ "Name": { "en": "Household decoration" }, + "Abbreviation": {}, "Code": "5.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123854,7 +129082,11 @@ "Name": { "en": "Spread, smear" }, + "Abbreviation": {}, "Code": "7.3.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123863,7 +129095,11 @@ "Name": { "en": "Do intensely" }, + "Abbreviation": {}, "Code": "9.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123872,7 +129108,11 @@ "Name": { "en": "Mental state" }, + "Abbreviation": {}, "Code": "3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123881,7 +129121,11 @@ "Name": { "en": "Despise someone" }, + "Abbreviation": {}, "Code": "4.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123890,7 +129134,11 @@ "Name": { "en": "Give up" }, + "Abbreviation": {}, "Code": "6.1.2.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123899,7 +129147,11 @@ "Name": { "en": "Crawl" }, + "Abbreviation": {}, "Code": "7.2.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123908,7 +129160,11 @@ "Name": { "en": "Irrigate" }, + "Abbreviation": {}, "Code": "6.2.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123917,7 +129173,11 @@ "Name": { "en": "Disclose" }, + "Abbreviation": {}, "Code": "3.5.1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123926,7 +129186,11 @@ "Name": { "en": "Remove, take apart" }, + "Abbreviation": {}, "Code": "7.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123935,7 +129199,11 @@ "Name": { "en": "Next" }, + "Abbreviation": {}, "Code": "8.4.5.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123944,7 +129212,11 @@ "Name": { "en": "Smuggle" }, + "Abbreviation": {}, "Code": "6.8.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123953,7 +129225,11 @@ "Name": { "en": "War" }, + "Abbreviation": {}, "Code": "4.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123962,7 +129238,11 @@ "Name": { "en": "Grind" }, + "Abbreviation": {}, "Code": "7.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123971,7 +129251,11 @@ "Name": { "en": "Poking tool" }, + "Abbreviation": {}, "Code": "6.7.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123980,7 +129264,11 @@ "Name": { "en": "Straight" }, + "Abbreviation": {}, "Code": "8.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123989,7 +129277,11 @@ "Name": { "en": "Play, fun" }, + "Abbreviation": {}, "Code": "4.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123998,7 +129290,11 @@ "Name": { "en": "Give permission" }, + "Abbreviation": {}, "Code": "3.3.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124007,7 +129303,11 @@ "Name": { "en": "Approve of something" }, + "Abbreviation": {}, "Code": "3.2.5.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124016,7 +129316,11 @@ "Name": { "en": "Wedged in, stuck" }, + "Abbreviation": {}, "Code": "8.2.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124025,7 +129329,11 @@ "Name": { "en": "Go to sleep" }, + "Abbreviation": {}, "Code": "5.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124034,7 +129342,11 @@ "Name": { "en": "Phrase conjunctions" }, + "Abbreviation": {}, "Code": "9.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124043,7 +129355,11 @@ "Name": { "en": "Learn" }, + "Abbreviation": {}, "Code": "3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124052,7 +129368,11 @@ "Name": { "en": "Husband, wife" }, + "Abbreviation": {}, "Code": "4.1.9.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124061,7 +129381,11 @@ "Name": { "en": "Praise" }, + "Abbreviation": {}, "Code": "3.5.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124070,7 +129394,11 @@ "Name": { "en": "Area" }, + "Abbreviation": {}, "Code": "8.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124079,7 +129407,11 @@ "Name": { "en": "Noun affixes" }, + "Abbreviation": {}, "Code": "9.2.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124088,7 +129420,11 @@ "Name": { "en": "Verbal tradition" }, + "Abbreviation": {}, "Code": "3.5.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124097,7 +129433,11 @@ "Name": { "en": "Multiples" }, + "Abbreviation": {}, "Code": "8.1.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124106,7 +129446,11 @@ "Name": { "en": "Working in the sea" }, + "Abbreviation": {}, "Code": "6.6.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124115,7 +129459,11 @@ "Name": { "en": "Meet a standard" }, + "Abbreviation": {}, "Code": "4.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124124,7 +129472,11 @@ "Name": { "en": "Waste" }, + "Abbreviation": {}, "Code": "6.1.2.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124133,7 +129485,11 @@ "Name": { "en": "Be" }, + "Abbreviation": {}, "Code": "9.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124142,7 +129498,11 @@ "Name": { "en": "Deceive" }, + "Abbreviation": {}, "Code": "4.3.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124151,7 +129511,11 @@ "Name": { "en": "Expensive" }, + "Abbreviation": {}, "Code": "6.8.4.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124160,7 +129524,11 @@ "Name": { "en": "Opportunity" }, + "Abbreviation": {}, "Code": "6.1.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124169,7 +129537,11 @@ "Name": { "en": "Sell" }, + "Abbreviation": {}, "Code": "6.8.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124178,7 +129550,11 @@ "Name": { "en": "Fail" }, + "Abbreviation": {}, "Code": "6.1.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124187,7 +129563,11 @@ "Name": { "en": "Family, clan" }, + "Abbreviation": {}, "Code": "4.1.9.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124196,7 +129576,11 @@ "Name": { "en": "Shine" }, + "Abbreviation": {}, "Code": "8.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124205,7 +129589,11 @@ "Name": { "en": "Particles" }, + "Abbreviation": {}, "Code": "9.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124214,7 +129602,11 @@ "Name": { "en": "Country" }, + "Abbreviation": {}, "Code": "4.6.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124223,7 +129615,11 @@ "Name": { "en": "Use a person" }, + "Abbreviation": {}, "Code": "4.3.4.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124232,7 +129628,11 @@ "Name": { "en": "Torso" }, + "Abbreviation": {}, "Code": "2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124241,7 +129641,11 @@ "Name": { "en": "Discipline, train" }, + "Abbreviation": {}, "Code": "4.5.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124250,7 +129654,11 @@ "Name": { "en": "See" }, + "Abbreviation": {}, "Code": "2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124259,7 +129667,11 @@ "Name": { "en": "Recognize" }, + "Abbreviation": {}, "Code": "3.2.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124268,7 +129680,11 @@ "Name": { "en": "Symptom of disease" }, + "Abbreviation": {}, "Code": "2.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124277,7 +129693,11 @@ "Name": { "en": "Extort money" }, + "Abbreviation": {}, "Code": "6.8.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124286,7 +129706,11 @@ "Name": { "en": "Set self apart" }, + "Abbreviation": {}, "Code": "4.1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124295,7 +129719,11 @@ "Name": { "en": "Change color" }, + "Abbreviation": {}, "Code": "8.3.3.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124304,7 +129732,11 @@ "Name": { "en": "Rodent" }, + "Abbreviation": {}, "Code": "1.6.1.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124313,7 +129745,11 @@ "Name": { "en": "Gather wild plants" }, + "Abbreviation": {}, "Code": "6.2.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124322,7 +129758,11 @@ "Name": { "en": "Caution" }, + "Abbreviation": {}, "Code": "4.4.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124331,7 +129771,11 @@ "Name": { "en": "Path (of movement)" }, + "Abbreviation": {}, "Code": "9.5.1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124340,7 +129784,11 @@ "Name": { "en": "Say farewell" }, + "Abbreviation": {}, "Code": "3.5.1.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124349,7 +129797,11 @@ "Name": { "en": "High status" }, + "Abbreviation": {}, "Code": "4.5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124358,7 +129810,11 @@ "Name": { "en": "Drip" }, + "Abbreviation": {}, "Code": "1.3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124367,7 +129823,11 @@ "Name": { "en": "Trim plants" }, + "Abbreviation": {}, "Code": "6.2.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124376,7 +129836,11 @@ "Name": { "en": "Compose music" }, + "Abbreviation": {}, "Code": "4.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124385,7 +129849,11 @@ "Name": { "en": "Narrow" }, + "Abbreviation": {}, "Code": "8.2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124394,7 +129862,11 @@ "Name": { "en": "Egg dishes" }, + "Abbreviation": {}, "Code": "5.2.3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124403,7 +129875,11 @@ "Name": { "en": "Nature, environment" }, + "Abbreviation": {}, "Code": "1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124412,7 +129888,11 @@ "Name": { "en": "Come" }, + "Abbreviation": {}, "Code": "7.2.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124421,7 +129901,11 @@ "Name": { "en": "Case" }, + "Abbreviation": {}, "Code": "9.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124430,7 +129914,11 @@ "Name": { "en": "Attendant circumstances" }, + "Abbreviation": {}, "Code": "9.5.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124439,7 +129927,11 @@ "Name": { "en": "Authority" }, + "Abbreviation": {}, "Code": "4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124448,7 +129940,11 @@ "Name": { "en": "Part" }, + "Abbreviation": {}, "Code": "8.1.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124457,7 +129953,11 @@ "Name": { "en": "Hope" }, + "Abbreviation": {}, "Code": "3.2.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124466,7 +129966,11 @@ "Name": { "en": "Degree" }, + "Abbreviation": {}, "Code": "9.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124475,7 +129979,11 @@ "Name": { "en": "Lower something" }, + "Abbreviation": {}, "Code": "7.3.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124484,7 +129992,11 @@ "Name": { "en": "Exaggerate" }, + "Abbreviation": {}, "Code": "3.5.1.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124493,7 +130005,11 @@ "Name": { "en": "Can\u0027t" }, + "Abbreviation": {}, "Code": "9.4.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124502,7 +130018,11 @@ "Name": { "en": "Snow, ice" }, + "Abbreviation": {}, "Code": "1.1.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124511,7 +130031,11 @@ "Name": { "en": "Islam" }, + "Abbreviation": {}, "Code": "4.9.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124520,7 +130044,11 @@ "Name": { "en": "Weigh" }, + "Abbreviation": {}, "Code": "8.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124529,7 +130057,11 @@ "Name": { "en": "Animal life cycle" }, + "Abbreviation": {}, "Code": "1.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124538,7 +130070,11 @@ "Name": { "en": "True" }, + "Abbreviation": {}, "Code": "3.5.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124547,7 +130083,11 @@ "Name": { "en": "Card game" }, + "Abbreviation": {}, "Code": "4.2.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124556,7 +130096,11 @@ "Name": { "en": "Pattern, model" }, + "Abbreviation": {}, "Code": "8.3.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124565,7 +130109,11 @@ "Name": { "en": "Popular" }, + "Abbreviation": {}, "Code": "3.4.1.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124574,7 +130122,11 @@ "Name": { "en": "Grind flour" }, + "Abbreviation": {}, "Code": "5.2.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124583,7 +130135,11 @@ "Name": { "en": "Quality" }, + "Abbreviation": {}, "Code": "8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124592,7 +130148,11 @@ "Name": { "en": "Animal diseases" }, + "Abbreviation": {}, "Code": "6.3.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124601,7 +130161,11 @@ "Name": { "en": "Sound" }, + "Abbreviation": {}, "Code": "2.3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124610,7 +130174,11 @@ "Name": { "en": "Demonstrative pronouns" }, + "Abbreviation": {}, "Code": "9.2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124619,7 +130187,11 @@ "Name": { "en": "Insist" }, + "Abbreviation": {}, "Code": "3.3.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124628,7 +130200,11 @@ "Name": { "en": "Certainly, definitely" }, + "Abbreviation": {}, "Code": "9.4.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124637,7 +130213,11 @@ "Name": { "en": "Working with wood" }, + "Abbreviation": {}, "Code": "6.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124646,7 +130226,11 @@ "Name": { "en": "Initiation" }, + "Abbreviation": {}, "Code": "2.6.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124655,7 +130239,11 @@ "Name": { "en": "Get" }, + "Abbreviation": {}, "Code": "7.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124664,7 +130252,11 @@ "Name": { "en": "Sentence conjunctions" }, + "Abbreviation": {}, "Code": "9.2.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124673,7 +130265,11 @@ "Name": { "en": "Woman" }, + "Abbreviation": {}, "Code": "2.6.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124682,7 +130278,11 @@ "Name": { "en": "Show affection" }, + "Abbreviation": {}, "Code": "4.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124691,7 +130291,11 @@ "Name": { "en": "Social class" }, + "Abbreviation": {}, "Code": "4.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124700,7 +130304,11 @@ "Name": { "en": "Bad" }, + "Abbreviation": {}, "Code": "8.3.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124709,7 +130317,11 @@ "Name": { "en": "Shiny" }, + "Abbreviation": {}, "Code": "8.3.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124718,7 +130330,11 @@ "Name": { "en": "Part of speech" }, + "Abbreviation": {}, "Code": "9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124727,7 +130343,11 @@ "Name": { "en": "Slow" }, + "Abbreviation": {}, "Code": "8.4.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124736,7 +130356,11 @@ "Name": { "en": "Decide, plan" }, + "Abbreviation": {}, "Code": "3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124745,7 +130369,11 @@ "Name": { "en": "Growing fruit" }, + "Abbreviation": {}, "Code": "6.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124754,7 +130382,11 @@ "Name": { "en": "Imitate" }, + "Abbreviation": {}, "Code": "8.3.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124763,7 +130395,11 @@ "Name": { "en": "Sure" }, + "Abbreviation": {}, "Code": "9.4.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124772,7 +130408,11 @@ "Name": { "en": "Write" }, + "Abbreviation": {}, "Code": "3.5.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124781,7 +130421,11 @@ "Name": { "en": "Happy" }, + "Abbreviation": {}, "Code": "3.4.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124790,7 +130434,11 @@ "Name": { "en": "Patient" }, + "Abbreviation": {}, "Code": "4.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124799,7 +130447,11 @@ "Name": { "en": "Almost" }, + "Abbreviation": {}, "Code": "8.1.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124808,7 +130460,11 @@ "Name": { "en": "Day" }, + "Abbreviation": {}, "Code": "8.4.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124817,7 +130473,11 @@ "Name": { "en": "Celebrate" }, + "Abbreviation": {}, "Code": "4.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124826,7 +130486,11 @@ "Name": { "en": "Unusual" }, + "Abbreviation": {}, "Code": "8.3.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124835,7 +130499,11 @@ "Name": { "en": "Old fashioned" }, + "Abbreviation": {}, "Code": "8.4.6.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124844,7 +130512,11 @@ "Name": { "en": "Put in back" }, + "Abbreviation": {}, "Code": "7.3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124853,7 +130525,11 @@ "Name": { "en": "Star" }, + "Abbreviation": {}, "Code": "1.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124862,7 +130538,11 @@ "Name": { "en": "Arrive" }, + "Abbreviation": {}, "Code": "7.2.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124871,7 +130551,11 @@ "Name": { "en": "Sexual immorality" }, + "Abbreviation": {}, "Code": "2.6.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124880,7 +130564,11 @@ "Name": { "en": "Calm, rough" }, + "Abbreviation": {}, "Code": "1.3.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124889,7 +130577,11 @@ "Name": { "en": "Submit to authority" }, + "Abbreviation": {}, "Code": "4.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124898,7 +130590,11 @@ "Name": { "en": "Tear, rip" }, + "Abbreviation": {}, "Code": "7.8.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124907,7 +130603,11 @@ "Name": { "en": "Beekeeping" }, + "Abbreviation": {}, "Code": "6.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124916,7 +130616,11 @@ "Name": { "en": "Plait hair" }, + "Abbreviation": {}, "Code": "5.4.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124925,7 +130629,11 @@ "Name": { "en": "Kidnap" }, + "Abbreviation": {}, "Code": "4.3.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124934,7 +130642,11 @@ "Name": { "en": "Fall" }, + "Abbreviation": {}, "Code": "7.2.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124943,7 +130655,11 @@ "Name": { "en": "Happen" }, + "Abbreviation": {}, "Code": "9.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124952,7 +130668,11 @@ "Name": { "en": "Thick" }, + "Abbreviation": {}, "Code": "8.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124961,7 +130681,11 @@ "Name": { "en": "Run" }, + "Abbreviation": {}, "Code": "7.2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124970,7 +130694,11 @@ "Name": { "en": "Make profit" }, + "Abbreviation": {}, "Code": "6.8.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124979,7 +130707,11 @@ "Name": { "en": "Week" }, + "Abbreviation": {}, "Code": "8.4.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124988,7 +130720,11 @@ "Name": { "en": "Omen, divination" }, + "Abbreviation": {}, "Code": "4.9.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124997,7 +130733,11 @@ "Name": { "en": "Unemployed, not working" }, + "Abbreviation": {}, "Code": "6.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125006,7 +130746,11 @@ "Name": { "en": "Poultry raising" }, + "Abbreviation": {}, "Code": "6.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125015,7 +130759,11 @@ "Name": { "en": "Speak a lot" }, + "Abbreviation": {}, "Code": "3.5.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125024,7 +130772,11 @@ "Name": { "en": "Dependency relations" }, + "Abbreviation": {}, "Code": "9.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125033,7 +130785,11 @@ "Name": { "en": "Holding tool" }, + "Abbreviation": {}, "Code": "6.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125042,7 +130798,11 @@ "Name": { "en": "Marketing" }, + "Abbreviation": {}, "Code": "6.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125051,7 +130811,11 @@ "Name": { "en": "Interjections" }, + "Abbreviation": {}, "Code": "9.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125060,7 +130824,11 @@ "Name": { "en": "Earthquake" }, + "Abbreviation": {}, "Code": "1.2.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125069,7 +130837,11 @@ "Name": { "en": "Underground" }, + "Abbreviation": {}, "Code": "1.2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125078,7 +130850,11 @@ "Name": { "en": "Fast, not eat" }, + "Abbreviation": {}, "Code": "5.2.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125087,7 +130863,11 @@ "Name": { "en": "Substitute" }, + "Abbreviation": {}, "Code": "7.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125096,7 +130876,11 @@ "Name": { "en": "Girlfriend, boyfriend" }, + "Abbreviation": {}, "Code": "4.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125105,7 +130889,11 @@ "Name": { "en": "Small" }, + "Abbreviation": {}, "Code": "8.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125114,7 +130902,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125123,7 +130915,11 @@ "Name": { "en": "Weather" }, + "Abbreviation": {}, "Code": "1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125132,7 +130928,11 @@ "Name": { "en": "Markers expecting an affirmative answer" }, + "Abbreviation": {}, "Code": "9.4.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125141,7 +130941,11 @@ "Name": { "en": "Use up" }, + "Abbreviation": {}, "Code": "6.1.2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125150,7 +130954,11 @@ "Name": { "en": "Eating utensil" }, + "Abbreviation": {}, "Code": "5.2.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125159,7 +130967,11 @@ "Name": { "en": "Take by force" }, + "Abbreviation": {}, "Code": "6.8.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125168,7 +130980,11 @@ "Name": { "en": "Cry, tear" }, + "Abbreviation": {}, "Code": "3.5.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125177,7 +130993,11 @@ "Name": { "en": "Want" }, + "Abbreviation": {}, "Code": "3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125186,7 +131006,11 @@ "Name": { "en": "City" }, + "Abbreviation": {}, "Code": "4.6.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125195,7 +131019,11 @@ "Name": { "en": "Election" }, + "Abbreviation": {}, "Code": "4.6.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125204,7 +131032,11 @@ "Name": { "en": "Chance" }, + "Abbreviation": {}, "Code": "4.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125213,7 +131045,11 @@ "Name": { "en": "Not care" }, + "Abbreviation": {}, "Code": "4.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125222,7 +131058,11 @@ "Name": { "en": "Tired" }, + "Abbreviation": {}, "Code": "2.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125231,7 +131071,11 @@ "Name": { "en": "Mediocre" }, + "Abbreviation": {}, "Code": "8.3.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125240,7 +131084,11 @@ "Name": { "en": "Clumsy" }, + "Abbreviation": {}, "Code": "7.2.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125249,7 +131097,11 @@ "Name": { "en": "Share with" }, + "Abbreviation": {}, "Code": "4.3.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125258,7 +131110,11 @@ "Name": { "en": "Meet for the first time" }, + "Abbreviation": {}, "Code": "4.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125267,7 +131123,11 @@ "Name": { "en": "Blind" }, + "Abbreviation": {}, "Code": "2.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125276,7 +131136,11 @@ "Name": { "en": "God" }, + "Abbreviation": {}, "Code": "4.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125285,7 +131149,11 @@ "Name": { "en": "Crack" }, + "Abbreviation": {}, "Code": "7.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125294,7 +131162,11 @@ "Name": { "en": "Obey" }, + "Abbreviation": {}, "Code": "4.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125303,7 +131175,11 @@ "Name": { "en": "Cardinal numbers" }, + "Abbreviation": {}, "Code": "8.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125312,7 +131188,11 @@ "Name": { "en": "Egg" }, + "Abbreviation": {}, "Code": "1.6.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125321,7 +131201,11 @@ "Name": { "en": "Purpose, goal" }, + "Abbreviation": {}, "Code": "3.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125330,7 +131214,11 @@ "Name": { "en": "Exempt" }, + "Abbreviation": {}, "Code": "3.3.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125339,7 +131227,11 @@ "Name": { "en": "Sorcery" }, + "Abbreviation": {}, "Code": "4.9.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125348,7 +131240,11 @@ "Name": { "en": "Knitting" }, + "Abbreviation": {}, "Code": "6.6.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125357,7 +131253,11 @@ "Name": { "en": "Expert" }, + "Abbreviation": {}, "Code": "6.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125366,7 +131266,11 @@ "Name": { "en": "Work poorly" }, + "Abbreviation": {}, "Code": "6.1.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125375,7 +131279,11 @@ "Name": { "en": "Growing bananas" }, + "Abbreviation": {}, "Code": "6.2.1.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125384,7 +131292,11 @@ "Name": { "en": "List" }, + "Abbreviation": {}, "Code": "3.5.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125393,7 +131305,11 @@ "Name": { "en": "Religious purification" }, + "Abbreviation": {}, "Code": "4.9.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125402,7 +131318,11 @@ "Name": { "en": "Chase away" }, + "Abbreviation": {}, "Code": "7.3.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125411,7 +131331,11 @@ "Name": { "en": "On time" }, + "Abbreviation": {}, "Code": "8.4.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125420,7 +131344,11 @@ "Name": { "en": "Put down" }, + "Abbreviation": {}, "Code": "7.3.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125429,7 +131357,11 @@ "Name": { "en": "Special" }, + "Abbreviation": {}, "Code": "7.5.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125438,7 +131370,11 @@ "Name": { "en": "Lose, misplace" }, + "Abbreviation": {}, "Code": "7.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125447,7 +131383,11 @@ "Name": { "en": "Medicine" }, + "Abbreviation": {}, "Code": "2.5.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125456,7 +131396,11 @@ "Name": { "en": "Tall" }, + "Abbreviation": {}, "Code": "8.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125465,7 +131409,11 @@ "Name": { "en": "Kill" }, + "Abbreviation": {}, "Code": "2.6.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125474,7 +131422,11 @@ "Name": { "en": "Vertical" }, + "Abbreviation": {}, "Code": "8.3.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125483,7 +131435,11 @@ "Name": { "en": "Philosophy" }, + "Abbreviation": {}, "Code": "3.2.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125492,7 +131448,11 @@ "Name": { "en": "Names of cities" }, + "Abbreviation": {}, "Code": "9.7.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125501,7 +131461,11 @@ "Name": { "en": "Have authority" }, + "Abbreviation": {}, "Code": "4.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125510,7 +131474,11 @@ "Name": { "en": "Beside" }, + "Abbreviation": {}, "Code": "8.5.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125519,7 +131487,11 @@ "Name": { "en": "Working with electricity" }, + "Abbreviation": {}, "Code": "6.6.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125528,7 +131500,11 @@ "Name": { "en": "What fires produce" }, + "Abbreviation": {}, "Code": "5.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125537,7 +131513,11 @@ "Name": { "en": "Idol" }, + "Abbreviation": {}, "Code": "4.9.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125546,7 +131526,11 @@ "Name": { "en": "Stomach" }, + "Abbreviation": {}, "Code": "2.1.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125555,7 +131539,11 @@ "Name": { "en": "Practice religion" }, + "Abbreviation": {}, "Code": "4.9.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125564,7 +131552,11 @@ "Name": { "en": "Person" }, + "Abbreviation": {}, "Code": "2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125573,7 +131565,11 @@ "Name": { "en": "Worried" }, + "Abbreviation": {}, "Code": "3.4.2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125582,7 +131578,11 @@ "Name": { "en": "Record" }, + "Abbreviation": {}, "Code": "3.5.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125591,7 +131591,11 @@ "Name": { "en": "Reward" }, + "Abbreviation": {}, "Code": "4.7.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125600,7 +131604,11 @@ "Name": { "en": "Door" }, + "Abbreviation": {}, "Code": "6.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125609,7 +131617,11 @@ "Name": { "en": "Brother, sister" }, + "Abbreviation": {}, "Code": "4.1.9.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125618,7 +131630,11 @@ "Name": { "en": "Attract" }, + "Abbreviation": {}, "Code": "3.4.1.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125627,7 +131643,11 @@ "Name": { "en": "Oppress" }, + "Abbreviation": {}, "Code": "4.7.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125636,7 +131656,11 @@ "Name": { "en": "Primary cases" }, + "Abbreviation": {}, "Code": "9.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125645,7 +131669,11 @@ "Name": { "en": "Far" }, + "Abbreviation": {}, "Code": "8.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125654,7 +131682,11 @@ "Name": { "en": "Both" }, + "Abbreviation": {}, "Code": "8.1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125663,7 +131695,11 @@ "Name": { "en": "Cleaning" }, + "Abbreviation": {}, "Code": "5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125672,7 +131708,11 @@ "Name": { "en": "Past" }, + "Abbreviation": {}, "Code": "8.4.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125681,7 +131721,11 @@ "Name": { "en": "Hoofed animals" }, + "Abbreviation": {}, "Code": "1.6.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125690,7 +131734,11 @@ "Name": { "en": "Title, name of honor" }, + "Abbreviation": {}, "Code": "4.5.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125699,7 +131747,11 @@ "Name": { "en": "Eye" }, + "Abbreviation": {}, "Code": "2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125708,7 +131760,11 @@ "Name": { "en": "Language" }, + "Abbreviation": {}, "Code": "3.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125717,7 +131773,11 @@ "Name": { "en": "Criticize" }, + "Abbreviation": {}, "Code": "3.5.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125726,7 +131786,11 @@ "Name": { "en": "Drive along" }, + "Abbreviation": {}, "Code": "7.3.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125735,7 +131799,11 @@ "Name": { "en": "Next to" }, + "Abbreviation": {}, "Code": "8.5.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125744,7 +131812,11 @@ "Name": { "en": "Change behavior" }, + "Abbreviation": {}, "Code": "4.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125753,7 +131825,11 @@ "Name": { "en": "Fetus" }, + "Abbreviation": {}, "Code": "2.6.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125762,7 +131838,11 @@ "Name": { "en": "Act harshly" }, + "Abbreviation": {}, "Code": "4.7.9.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125771,7 +131851,11 @@ "Name": { "en": "Household equipment" }, + "Abbreviation": {}, "Code": "5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125780,7 +131864,11 @@ "Name": { "en": "Judge, render a verdict" }, + "Abbreviation": {}, "Code": "4.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125789,7 +131877,11 @@ "Name": { "en": "Lack respect" }, + "Abbreviation": {}, "Code": "4.5.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125798,7 +131890,11 @@ "Name": { "en": "Find" }, + "Abbreviation": {}, "Code": "7.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125807,7 +131903,11 @@ "Name": { "en": "After" }, + "Abbreviation": {}, "Code": "8.4.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125816,7 +131916,11 @@ "Name": { "en": "Front" }, + "Abbreviation": {}, "Code": "8.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125825,7 +131929,11 @@ "Name": { "en": "Plant a field" }, + "Abbreviation": {}, "Code": "6.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125834,7 +131942,11 @@ "Name": { "en": "Multiple things moving" }, + "Abbreviation": {}, "Code": "7.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125843,7 +131955,11 @@ "Name": { "en": "Without cause" }, + "Abbreviation": {}, "Code": "9.6.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125852,7 +131968,11 @@ "Name": { "en": "Kick" }, + "Abbreviation": {}, "Code": "7.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125861,7 +131981,11 @@ "Name": { "en": "Lifting tool" }, + "Abbreviation": {}, "Code": "6.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125870,7 +131994,11 @@ "Name": { "en": "Imagine" }, + "Abbreviation": {}, "Code": "3.2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125879,7 +132007,11 @@ "Name": { "en": "Subjugate" }, + "Abbreviation": {}, "Code": "4.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125888,7 +132020,11 @@ "Name": { "en": "Spice" }, + "Abbreviation": {}, "Code": "5.2.3.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125897,7 +132033,11 @@ "Name": { "en": "Appoint, delegate" }, + "Abbreviation": {}, "Code": "4.5.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125906,7 +132046,11 @@ "Name": { "en": "Growing flowers" }, + "Abbreviation": {}, "Code": "6.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125915,7 +132059,11 @@ "Name": { "en": "Be in water" }, + "Abbreviation": {}, "Code": "1.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125924,7 +132072,11 @@ "Name": { "en": "Execute" }, + "Abbreviation": {}, "Code": "4.7.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125933,7 +132085,11 @@ "Name": { "en": "Spring, well" }, + "Abbreviation": {}, "Code": "1.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125942,7 +132098,11 @@ "Name": { "en": "Dark" }, + "Abbreviation": {}, "Code": "8.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125951,7 +132111,11 @@ "Name": { "en": "Rain" }, + "Abbreviation": {}, "Code": "1.1.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125960,7 +132124,11 @@ "Name": { "en": "None, nothing" }, + "Abbreviation": {}, "Code": "8.1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125969,7 +132137,11 @@ "Name": { "en": "Upset" }, + "Abbreviation": {}, "Code": "3.4.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125978,7 +132150,11 @@ "Name": { "en": "Type, kind" }, + "Abbreviation": {}, "Code": "8.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125987,7 +132163,11 @@ "Name": { "en": "Doctor, nurse" }, + "Abbreviation": {}, "Code": "2.5.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125996,7 +132176,11 @@ "Name": { "en": "And, also" }, + "Abbreviation": {}, "Code": "9.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126005,7 +132189,11 @@ "Name": { "en": "Made of, material" }, + "Abbreviation": {}, "Code": "8.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126014,7 +132202,11 @@ "Name": { "en": "Wipe, erase" }, + "Abbreviation": {}, "Code": "5.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126023,7 +132215,11 @@ "Name": { "en": "Travel by land" }, + "Abbreviation": {}, "Code": "7.2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126032,7 +132228,11 @@ "Name": { "en": "Count" }, + "Abbreviation": {}, "Code": "8.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126041,7 +132241,11 @@ "Name": { "en": "Believe" }, + "Abbreviation": {}, "Code": "3.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126050,7 +132254,11 @@ "Name": { "en": "Prompters of attention " }, + "Abbreviation": {}, "Code": "9.6.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126059,7 +132267,11 @@ "Name": { "en": "Prosperity" }, + "Abbreviation": {}, "Code": "4.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126068,7 +132280,11 @@ "Name": { "en": "Above" }, + "Abbreviation": {}, "Code": "8.5.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126077,7 +132293,11 @@ "Name": { "en": "Gather" }, + "Abbreviation": {}, "Code": "7.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126086,7 +132306,11 @@ "Name": { "en": "Tide" }, + "Abbreviation": {}, "Code": "1.3.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126095,7 +132319,11 @@ "Name": { "en": "Rich" }, + "Abbreviation": {}, "Code": "6.8.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126104,7 +132332,11 @@ "Name": { "en": "Threaten" }, + "Abbreviation": {}, "Code": "3.3.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126113,7 +132345,11 @@ "Name": { "en": "Yard" }, + "Abbreviation": {}, "Code": "6.5.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126122,7 +132358,11 @@ "Name": { "en": "Crocodile" }, + "Abbreviation": {}, "Code": "1.6.1.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126131,7 +132371,11 @@ "Name": { "en": "Private, public" }, + "Abbreviation": {}, "Code": "4.1.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126140,7 +132384,11 @@ "Name": { "en": "Harvest" }, + "Abbreviation": {}, "Code": "6.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126149,7 +132397,11 @@ "Name": { "en": "Humor" }, + "Abbreviation": {}, "Code": "4.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126158,7 +132410,11 @@ "Name": { "en": "Take time" }, + "Abbreviation": {}, "Code": "8.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126167,7 +132423,11 @@ "Name": { "en": "Disabled" }, + "Abbreviation": {}, "Code": "2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126176,7 +132436,11 @@ "Name": { "en": "Family names" }, + "Abbreviation": {}, "Code": "9.7.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126185,7 +132449,11 @@ "Name": { "en": "Arm" }, + "Abbreviation": {}, "Code": "2.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126194,7 +132462,11 @@ "Name": { "en": "Grass, herb, vine" }, + "Abbreviation": {}, "Code": "1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126203,7 +132475,11 @@ "Name": { "en": "Meet together" }, + "Abbreviation": {}, "Code": "4.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126212,7 +132488,11 @@ "Name": { "en": "Touch" }, + "Abbreviation": {}, "Code": "7.3.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126221,7 +132501,11 @@ "Name": { "en": "Goat" }, + "Abbreviation": {}, "Code": "6.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126230,7 +132514,11 @@ "Name": { "en": "Clothes for special occasions" }, + "Abbreviation": {}, "Code": "5.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126239,7 +132527,11 @@ "Name": { "en": "Moods" }, + "Abbreviation": {}, "Code": "9.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126248,7 +132540,11 @@ "Name": { "en": "Bow" }, + "Abbreviation": {}, "Code": "7.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126257,7 +132553,11 @@ "Name": { "en": "Interpreting messages" }, + "Abbreviation": {}, "Code": "3.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126266,7 +132566,11 @@ "Name": { "en": "Social event" }, + "Abbreviation": {}, "Code": "4.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126275,7 +132579,11 @@ "Name": { "en": "Clock, watch" }, + "Abbreviation": {}, "Code": "8.4.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126284,7 +132592,11 @@ "Name": { "en": "Limb" }, + "Abbreviation": {}, "Code": "2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126293,7 +132605,11 @@ "Name": { "en": "Mining" }, + "Abbreviation": {}, "Code": "6.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126302,7 +132618,11 @@ "Name": { "en": "Dig" }, + "Abbreviation": {}, "Code": "7.8.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126311,7 +132631,11 @@ "Name": { "en": "Rebel against authority" }, + "Abbreviation": {}, "Code": "4.5.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126320,7 +132644,11 @@ "Name": { "en": "Balance" }, + "Abbreviation": {}, "Code": "7.2.1.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126329,7 +132657,11 @@ "Name": { "en": "Tobacco" }, + "Abbreviation": {}, "Code": "5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126338,7 +132670,11 @@ "Name": { "en": "Infrastructure" }, + "Abbreviation": {}, "Code": "6.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126347,7 +132683,11 @@ "Name": { "en": "Quantity" }, + "Abbreviation": {}, "Code": "8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126356,7 +132696,11 @@ "Name": { "en": "States" }, + "Abbreviation": {}, "Code": "8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126365,7 +132709,11 @@ "Name": { "en": "Sexual relations" }, + "Abbreviation": {}, "Code": "2.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126374,7 +132722,11 @@ "Name": { "en": "Farmland" }, + "Abbreviation": {}, "Code": "6.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126383,7 +132735,11 @@ "Name": { "en": "Blame" }, + "Abbreviation": {}, "Code": "3.5.1.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126392,7 +132748,11 @@ "Name": { "en": "Cooking oil" }, + "Abbreviation": {}, "Code": "5.2.3.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126401,7 +132761,11 @@ "Name": { "en": "Between" }, + "Abbreviation": {}, "Code": "8.5.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126410,7 +132774,11 @@ "Name": { "en": "Attribution of an attribute" }, + "Abbreviation": {}, "Code": "9.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126419,7 +132787,11 @@ "Name": { "en": "Move" }, + "Abbreviation": {}, "Code": "7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126428,7 +132800,11 @@ "Name": { "en": "Perfect" }, + "Abbreviation": {}, "Code": "8.3.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126437,7 +132813,11 @@ "Name": { "en": "Convenient" }, + "Abbreviation": {}, "Code": "8.3.7.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126446,7 +132826,11 @@ "Name": { "en": "Care for the teeth" }, + "Abbreviation": {}, "Code": "5.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126455,7 +132839,11 @@ "Name": { "en": "Clothes for special people" }, + "Abbreviation": {}, "Code": "5.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126464,7 +132852,11 @@ "Name": { "en": "Forever" }, + "Abbreviation": {}, "Code": "8.4.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126473,7 +132865,11 @@ "Name": { "en": "Work and occupation" }, + "Abbreviation": {}, "Code": "6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126482,7 +132878,11 @@ "Name": { "en": "Win" }, + "Abbreviation": {}, "Code": "4.8.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126491,7 +132891,11 @@ "Name": { "en": "Tooth" }, + "Abbreviation": {}, "Code": "2.1.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126500,7 +132904,11 @@ "Name": { "en": "Wool production" }, + "Abbreviation": {}, "Code": "6.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126509,7 +132917,11 @@ "Name": { "en": "Pig" }, + "Abbreviation": {}, "Code": "6.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126518,7 +132930,11 @@ "Name": { "en": "Furrow" }, + "Abbreviation": {}, "Code": "8.3.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126527,7 +132943,11 @@ "Name": { "en": "Free to do what you want" }, + "Abbreviation": {}, "Code": "3.3.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126536,7 +132956,11 @@ "Name": { "en": "Disaster" }, + "Abbreviation": {}, "Code": "4.4.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126545,7 +132969,11 @@ "Name": { "en": "Region" }, + "Abbreviation": {}, "Code": "4.6.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126554,7 +132982,11 @@ "Name": { "en": "Types of houses" }, + "Abbreviation": {}, "Code": "6.5.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126563,7 +132995,11 @@ "Name": { "en": "Predict" }, + "Abbreviation": {}, "Code": "3.2.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126572,7 +133008,11 @@ "Name": { "en": "Receive" }, + "Abbreviation": {}, "Code": "7.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126581,7 +133021,11 @@ "Name": { "en": "Physical, non-physical" }, + "Abbreviation": {}, "Code": "9.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126590,7 +133034,11 @@ "Name": { "en": "Growing potatoes" }, + "Abbreviation": {}, "Code": "6.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126599,7 +133047,11 @@ "Name": { "en": "Communication" }, + "Abbreviation": {}, "Code": "3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126608,7 +133060,11 @@ "Name": { "en": "Improve" }, + "Abbreviation": {}, "Code": "8.3.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126617,7 +133073,11 @@ "Name": { "en": "Beneficiary (of a patient)" }, + "Abbreviation": {}, "Code": "9.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126626,7 +133086,11 @@ "Name": { "en": "Don\u0027t think so, doubt it" }, + "Abbreviation": {}, "Code": "9.4.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126635,7 +133099,11 @@ "Name": { "en": "Witness, testify" }, + "Abbreviation": {}, "Code": "4.7.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126644,7 +133112,11 @@ "Name": { "en": "Approximate" }, + "Abbreviation": {}, "Code": "8.1.5.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126653,7 +133125,11 @@ "Name": { "en": "Rear a child" }, + "Abbreviation": {}, "Code": "2.6.4.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126662,7 +133138,11 @@ "Name": { "en": "Destroy" }, + "Abbreviation": {}, "Code": "7.9.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126671,7 +133151,11 @@ "Name": { "en": "Bury" }, + "Abbreviation": {}, "Code": "2.6.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126680,7 +133164,11 @@ "Name": { "en": "Misunderstand" }, + "Abbreviation": {}, "Code": "3.2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126689,7 +133177,11 @@ "Name": { "en": "Mass communication" }, + "Abbreviation": {}, "Code": "3.5.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126698,7 +133190,11 @@ "Name": { "en": "Growing crops" }, + "Abbreviation": {}, "Code": "6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126707,7 +133203,11 @@ "Name": { "en": "Reputation" }, + "Abbreviation": {}, "Code": "4.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126716,7 +133216,11 @@ "Name": { "en": "Emotion" }, + "Abbreviation": {}, "Code": "3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126725,7 +133229,11 @@ "Name": { "en": "Animal sounds" }, + "Abbreviation": {}, "Code": "1.6.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126734,7 +133242,11 @@ "Name": { "en": "Understandable" }, + "Abbreviation": {}, "Code": "3.2.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126743,7 +133255,11 @@ "Name": { "en": "Shadow" }, + "Abbreviation": {}, "Code": "8.3.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126752,7 +133268,11 @@ "Name": { "en": "Laugh" }, + "Abbreviation": {}, "Code": "3.5.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126761,7 +133281,11 @@ "Name": { "en": "Defecate, feces" }, + "Abbreviation": {}, "Code": "2.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126770,7 +133294,11 @@ "Name": { "en": "Some" }, + "Abbreviation": {}, "Code": "8.1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126779,7 +133307,11 @@ "Name": { "en": "Stubborn" }, + "Abbreviation": {}, "Code": "3.3.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126788,7 +133320,11 @@ "Name": { "en": "Report" }, + "Abbreviation": {}, "Code": "3.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126797,7 +133333,11 @@ "Name": { "en": "Old, not young" }, + "Abbreviation": {}, "Code": "8.4.6.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126806,7 +133346,11 @@ "Name": { "en": "Legal personnel" }, + "Abbreviation": {}, "Code": "4.7.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126815,7 +133359,11 @@ "Name": { "en": "Aspect--dynamic verbs" }, + "Abbreviation": {}, "Code": "9.4.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126824,7 +133372,11 @@ "Name": { "en": "Land" }, + "Abbreviation": {}, "Code": "1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126833,7 +133385,11 @@ "Name": { "en": "Serve food" }, + "Abbreviation": {}, "Code": "5.2.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126842,7 +133398,11 @@ "Name": { "en": "Valley" }, + "Abbreviation": {}, "Code": "1.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126851,7 +133411,11 @@ "Name": { "en": "Value" }, + "Abbreviation": {}, "Code": "8.3.7.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126860,7 +133424,11 @@ "Name": { "en": "Commerce" }, + "Abbreviation": {}, "Code": "6.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126869,7 +133437,11 @@ "Name": { "en": "Transparent" }, + "Abbreviation": {}, "Code": "2.3.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126878,7 +133450,11 @@ "Name": { "en": "Mistake" }, + "Abbreviation": {}, "Code": "4.3.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126887,7 +133463,11 @@ "Name": { "en": "Working with buildings" }, + "Abbreviation": {}, "Code": "6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126896,7 +133476,11 @@ "Name": { "en": "Forget" }, + "Abbreviation": {}, "Code": "3.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126905,7 +133489,11 @@ "Name": { "en": "Unlucky" }, + "Abbreviation": {}, "Code": "4.4.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126914,7 +133502,11 @@ "Name": { "en": "Self-esteem" }, + "Abbreviation": {}, "Code": "3.4.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126923,7 +133515,11 @@ "Name": { "en": "Store the harvest" }, + "Abbreviation": {}, "Code": "6.2.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126932,7 +133528,11 @@ "Name": { "en": "Disease" }, + "Abbreviation": {}, "Code": "2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126941,7 +133541,11 @@ "Name": { "en": "Evaluator" }, + "Abbreviation": {}, "Code": "9.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126950,7 +133554,11 @@ "Name": { "en": "Lose your way" }, + "Abbreviation": {}, "Code": "7.2.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126959,7 +133567,11 @@ "Name": { "en": "Spider" }, + "Abbreviation": {}, "Code": "1.6.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126968,7 +133580,11 @@ "Name": { "en": "Color" }, + "Abbreviation": {}, "Code": "8.3.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126977,7 +133593,11 @@ "Name": { "en": "Like, love" }, + "Abbreviation": {}, "Code": "3.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126986,7 +133606,11 @@ "Name": { "en": "Drunk" }, + "Abbreviation": {}, "Code": "5.2.3.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126995,7 +133619,11 @@ "Name": { "en": "Moss, fungus, algae" }, + "Abbreviation": {}, "Code": "1.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127004,7 +133632,11 @@ "Name": { "en": "Two" }, + "Abbreviation": {}, "Code": "8.1.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127013,7 +133645,11 @@ "Name": { "en": "Way, manner" }, + "Abbreviation": {}, "Code": "9.5.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127022,7 +133658,11 @@ "Name": { "en": "Fit, size" }, + "Abbreviation": {}, "Code": "8.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127031,7 +133671,11 @@ "Name": { "en": "Understand" }, + "Abbreviation": {}, "Code": "3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127040,7 +133684,11 @@ "Name": { "en": "Parts of a plant" }, + "Abbreviation": {}, "Code": "1.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127049,7 +133697,11 @@ "Name": { "en": "Most, almost all" }, + "Abbreviation": {}, "Code": "8.1.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127058,7 +133710,11 @@ "Name": { "en": "Produce wealth" }, + "Abbreviation": {}, "Code": "6.8.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127067,7 +133723,11 @@ "Name": { "en": "Need" }, + "Abbreviation": {}, "Code": "8.1.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127076,7 +133736,11 @@ "Name": { "en": "Grandfather, grandmother" }, + "Abbreviation": {}, "Code": "4.1.9.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127085,7 +133749,11 @@ "Name": { "en": "Across" }, + "Abbreviation": {}, "Code": "8.5.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127094,7 +133762,11 @@ "Name": { "en": "Earn" }, + "Abbreviation": {}, "Code": "6.8.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127103,7 +133775,11 @@ "Name": { "en": "Hit" }, + "Abbreviation": {}, "Code": "7.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127112,7 +133788,11 @@ "Name": { "en": "Soon" }, + "Abbreviation": {}, "Code": "8.4.6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127121,7 +133801,11 @@ "Name": { "en": "Room" }, + "Abbreviation": {}, "Code": "6.5.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127130,7 +133814,11 @@ "Name": { "en": "Growth of plants" }, + "Abbreviation": {}, "Code": "1.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127139,7 +133827,11 @@ "Name": { "en": "Agree to do something" }, + "Abbreviation": {}, "Code": "3.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127148,7 +133840,11 @@ "Name": { "en": "Mute" }, + "Abbreviation": {}, "Code": "2.5.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127157,7 +133853,11 @@ "Name": { "en": "Foreigner" }, + "Abbreviation": {}, "Code": "4.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127166,7 +133866,11 @@ "Name": { "en": "Land preparation" }, + "Abbreviation": {}, "Code": "6.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127175,7 +133879,11 @@ "Name": { "en": "Sweat" }, + "Abbreviation": {}, "Code": "2.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127184,7 +133892,11 @@ "Name": { "en": "Each other" }, + "Abbreviation": {}, "Code": "9.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127193,7 +133905,11 @@ "Name": { "en": "Indefinite pronouns" }, + "Abbreviation": {}, "Code": "9.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127202,7 +133918,11 @@ "Name": { "en": "Milk products" }, + "Abbreviation": {}, "Code": "5.2.3.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127211,7 +133931,11 @@ "Name": { "en": "Create" }, + "Abbreviation": {}, "Code": "9.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127220,7 +133944,11 @@ "Name": { "en": "Neighbor" }, + "Abbreviation": {}, "Code": "4.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127229,7 +133957,11 @@ "Name": { "en": "Sleep" }, + "Abbreviation": {}, "Code": "5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127238,7 +133970,11 @@ "Name": { "en": "Volcano" }, + "Abbreviation": {}, "Code": "1.2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127247,7 +133983,11 @@ "Name": { "en": "Heavy" }, + "Abbreviation": {}, "Code": "8.2.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127256,7 +133996,11 @@ "Name": { "en": "Letter" }, + "Abbreviation": {}, "Code": "3.5.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127265,7 +134009,11 @@ "Name": { "en": "Disunity" }, + "Abbreviation": {}, "Code": "4.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127274,7 +134022,11 @@ "Name": { "en": "Physical actions" }, + "Abbreviation": {}, "Code": "7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127283,7 +134035,11 @@ "Name": { "en": "Work" }, + "Abbreviation": {}, "Code": "6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127292,7 +134048,11 @@ "Name": { "en": "Work well" }, + "Abbreviation": {}, "Code": "6.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127301,7 +134061,11 @@ "Name": { "en": "Prevent from moving" }, + "Abbreviation": {}, "Code": "7.2.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127310,7 +134074,11 @@ "Name": { "en": "Informal justice" }, + "Abbreviation": {}, "Code": "4.6.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127319,7 +134087,11 @@ "Name": { "en": "Partly" }, + "Abbreviation": {}, "Code": "9.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127328,7 +134100,11 @@ "Name": { "en": "Look" }, + "Abbreviation": {}, "Code": "2.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127337,7 +134113,11 @@ "Name": { "en": "Cheat" }, + "Abbreviation": {}, "Code": "6.8.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127346,7 +134126,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127355,7 +134139,11 @@ "Name": { "en": "Fish with hooks" }, + "Abbreviation": {}, "Code": "6.4.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127364,7 +134152,11 @@ "Name": { "en": "Shut, close" }, + "Abbreviation": {}, "Code": "7.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127373,7 +134165,11 @@ "Name": { "en": "Growing wheat" }, + "Abbreviation": {}, "Code": "6.2.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127382,7 +134178,11 @@ "Name": { "en": "Before" }, + "Abbreviation": {}, "Code": "8.4.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127391,7 +134191,11 @@ "Name": { "en": "Method" }, + "Abbreviation": {}, "Code": "6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127400,7 +134204,11 @@ "Name": { "en": "Working with paper" }, + "Abbreviation": {}, "Code": "6.6.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127409,7 +134217,11 @@ "Name": { "en": "Lose consciousness" }, + "Abbreviation": {}, "Code": "2.5.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127418,7 +134230,11 @@ "Name": { "en": "Quiet" }, + "Abbreviation": {}, "Code": "2.3.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127427,7 +134243,11 @@ "Name": { "en": "Milk" }, + "Abbreviation": {}, "Code": "6.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127436,7 +134256,11 @@ "Name": { "en": "Number of times" }, + "Abbreviation": {}, "Code": "8.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127445,7 +134269,11 @@ "Name": { "en": "Politics" }, + "Abbreviation": {}, "Code": "4.6.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127454,7 +134282,11 @@ "Name": { "en": "Wait" }, + "Abbreviation": {}, "Code": "7.2.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127463,7 +134295,11 @@ "Name": { "en": "Dissociation" }, + "Abbreviation": {}, "Code": "9.6.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127472,7 +134308,11 @@ "Name": { "en": "Group of things" }, + "Abbreviation": {}, "Code": "8.1.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127481,7 +134321,11 @@ "Name": { "en": "Army" }, + "Abbreviation": {}, "Code": "4.8.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127490,7 +134334,11 @@ "Name": { "en": "Names of mountains" }, + "Abbreviation": {}, "Code": "9.7.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127499,7 +134347,11 @@ "Name": { "en": "Move out" }, + "Abbreviation": {}, "Code": "7.2.3.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127508,7 +134360,11 @@ "Name": { "en": "Put aside" }, + "Abbreviation": {}, "Code": "7.3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127517,7 +134373,11 @@ "Name": { "en": "Head" }, + "Abbreviation": {}, "Code": "2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127526,7 +134386,11 @@ "Name": { "en": "General adverbs" }, + "Abbreviation": {}, "Code": "9.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127535,7 +134399,11 @@ "Name": { "en": "Own, possess" }, + "Abbreviation": {}, "Code": "6.8.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127544,7 +134412,11 @@ "Name": { "en": "Move something in a direction" }, + "Abbreviation": {}, "Code": "7.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127553,7 +134425,11 @@ "Name": { "en": "Arrange an event" }, + "Abbreviation": {}, "Code": "6.1.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127562,7 +134438,11 @@ "Name": { "en": "Sorry" }, + "Abbreviation": {}, "Code": "3.4.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127571,7 +134451,11 @@ "Name": { "en": "Classifiers" }, + "Abbreviation": {}, "Code": "9.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127580,7 +134464,11 @@ "Name": { "en": "Have, of" }, + "Abbreviation": {}, "Code": "9.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127589,7 +134477,11 @@ "Name": { "en": "Wash clothes" }, + "Abbreviation": {}, "Code": "5.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127598,7 +134490,11 @@ "Name": { "en": "Postpone" }, + "Abbreviation": {}, "Code": "8.4.5.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127607,7 +134503,11 @@ "Name": { "en": "Accept" }, + "Abbreviation": {}, "Code": "3.3.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127616,7 +134516,11 @@ "Name": { "en": "Steal" }, + "Abbreviation": {}, "Code": "6.8.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127625,7 +134529,11 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": {}, "Code": "5.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127634,7 +134542,11 @@ "Name": { "en": "Miscarriage" }, + "Abbreviation": {}, "Code": "2.6.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127643,7 +134555,11 @@ "Name": { "en": "Building" }, + "Abbreviation": {}, "Code": "6.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127652,7 +134568,11 @@ "Name": { "en": "Sun" }, + "Abbreviation": {}, "Code": "1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127661,7 +134581,11 @@ "Name": { "en": "Describe" }, + "Abbreviation": {}, "Code": "3.5.1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127670,7 +134594,11 @@ "Name": { "en": "Sweep, rake" }, + "Abbreviation": {}, "Code": "5.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127679,7 +134607,11 @@ "Name": { "en": "Bathe" }, + "Abbreviation": {}, "Code": "5.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127688,7 +134620,11 @@ "Name": { "en": "Names of languages" }, + "Abbreviation": {}, "Code": "9.7.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127697,7 +134633,11 @@ "Name": { "en": "Greedy" }, + "Abbreviation": {}, "Code": "6.8.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127706,7 +134646,11 @@ "Name": { "en": "Festival, show" }, + "Abbreviation": {}, "Code": "4.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127715,7 +134659,11 @@ "Name": { "en": "Put in front" }, + "Abbreviation": {}, "Code": "7.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127724,7 +134672,11 @@ "Name": { "en": "Sensible" }, + "Abbreviation": {}, "Code": "4.3.1.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127733,7 +134685,11 @@ "Name": { "en": "Days of the week" }, + "Abbreviation": {}, "Code": "8.4.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127742,7 +134698,11 @@ "Name": { "en": "Sing" }, + "Abbreviation": {}, "Code": "4.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127751,7 +134711,11 @@ "Name": { "en": "Blemish" }, + "Abbreviation": {}, "Code": "8.3.7.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127760,7 +134724,11 @@ "Name": { "en": "King\u0027s family" }, + "Abbreviation": {}, "Code": "4.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127769,7 +134737,11 @@ "Name": { "en": "Wander" }, + "Abbreviation": {}, "Code": "7.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127778,7 +134750,11 @@ "Name": { "en": "Speed" }, + "Abbreviation": {}, "Code": "8.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127787,7 +134763,11 @@ "Name": { "en": "Skin" }, + "Abbreviation": {}, "Code": "2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127796,7 +134776,11 @@ "Name": { "en": "Tense" }, + "Abbreviation": {}, "Code": "9.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127805,7 +134789,11 @@ "Name": { "en": "Extend" }, + "Abbreviation": {}, "Code": "7.3.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127814,7 +134802,11 @@ "Name": { "en": "Buddhism" }, + "Abbreviation": {}, "Code": "4.9.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127823,7 +134815,11 @@ "Name": { "en": "Think" }, + "Abbreviation": {}, "Code": "3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127832,7 +134828,11 @@ "Name": { "en": "Measure" }, + "Abbreviation": {}, "Code": "8.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127841,7 +134841,11 @@ "Name": { "en": "Fill, cover" }, + "Abbreviation": {}, "Code": "7.5.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127850,7 +134854,11 @@ "Name": { "en": "Contact" }, + "Abbreviation": {}, "Code": "3.5.1.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127859,7 +134867,11 @@ "Name": { "en": "Fight for something good" }, + "Abbreviation": {}, "Code": "4.8.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127868,7 +134880,11 @@ "Name": { "en": "Explain" }, + "Abbreviation": {}, "Code": "3.5.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127877,7 +134893,11 @@ "Name": { "en": "Embarrassed" }, + "Abbreviation": {}, "Code": "3.4.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127886,7 +134906,11 @@ "Name": { "en": "Confident" }, + "Abbreviation": {}, "Code": "3.4.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127895,7 +134919,11 @@ "Name": { "en": "Up" }, + "Abbreviation": {}, "Code": "8.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127904,7 +134932,11 @@ "Name": { "en": "Maybe" }, + "Abbreviation": {}, "Code": "9.4.4.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127913,7 +134945,11 @@ "Name": { "en": "Uncertain" }, + "Abbreviation": {}, "Code": "9.4.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127922,7 +134958,11 @@ "Name": { "en": "Danger" }, + "Abbreviation": {}, "Code": "4.4.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127931,7 +134971,11 @@ "Name": { "en": "Secret" }, + "Abbreviation": {}, "Code": "3.2.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127940,7 +134984,11 @@ "Name": { "en": "Investigate a crime" }, + "Abbreviation": {}, "Code": "4.7.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127949,7 +134997,11 @@ "Name": { "en": "Leaven" }, + "Abbreviation": {}, "Code": "5.2.3.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127958,7 +135010,11 @@ "Name": { "en": "Reason" }, + "Abbreviation": {}, "Code": "9.6.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127967,7 +135023,11 @@ "Name": { "en": "Leave an organization" }, + "Abbreviation": {}, "Code": "4.2.1.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127976,7 +135036,11 @@ "Name": { "en": "Slave" }, + "Abbreviation": {}, "Code": "4.5.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127985,7 +135049,11 @@ "Name": { "en": "Completely" }, + "Abbreviation": {}, "Code": "9.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127994,7 +135062,11 @@ "Name": { "en": "End, point" }, + "Abbreviation": {}, "Code": "8.6.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128003,7 +135075,11 @@ "Name": { "en": "Sea mammal" }, + "Abbreviation": {}, "Code": "1.6.1.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128012,7 +135088,11 @@ "Name": { "en": "Drama" }, + "Abbreviation": {}, "Code": "4.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128021,7 +135101,11 @@ "Name": { "en": "Outer part" }, + "Abbreviation": {}, "Code": "8.6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128030,7 +135114,11 @@ "Name": { "en": "Do" }, + "Abbreviation": {}, "Code": "9.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128039,7 +135127,11 @@ "Name": { "en": "Mock" }, + "Abbreviation": {}, "Code": "3.5.1.8.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128048,7 +135140,11 @@ "Name": { "en": "Religious things" }, + "Abbreviation": {}, "Code": "4.9.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128057,7 +135153,11 @@ "Name": { "en": "Area of knowledge" }, + "Abbreviation": {}, "Code": "3.2.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128066,7 +135166,11 @@ "Name": { "en": "Join an organization" }, + "Abbreviation": {}, "Code": "4.2.1.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128075,7 +135179,11 @@ "Name": { "en": "Stick together" }, + "Abbreviation": {}, "Code": "7.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128084,7 +135192,11 @@ "Name": { "en": "Move slowly" }, + "Abbreviation": {}, "Code": "7.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128093,7 +135205,11 @@ "Name": { "en": "Beautiful" }, + "Abbreviation": {}, "Code": "2.3.1.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128102,7 +135218,11 @@ "Name": { "en": "Talk about a subject" }, + "Abbreviation": {}, "Code": "3.5.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128111,7 +135231,11 @@ "Name": { "en": "Speech style" }, + "Abbreviation": {}, "Code": "3.5.1.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128120,7 +135244,11 @@ "Name": { "en": "Food from leaves" }, + "Abbreviation": {}, "Code": "5.2.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128129,7 +135257,11 @@ "Name": { "en": "Class, lesson" }, + "Abbreviation": {}, "Code": "3.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128138,7 +135270,11 @@ "Name": { "en": "Something used to see" }, + "Abbreviation": {}, "Code": "2.3.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128147,7 +135283,11 @@ "Name": { "en": "Quarrel" }, + "Abbreviation": {}, "Code": "3.5.1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128156,7 +135296,11 @@ "Name": { "en": "Beast of burden" }, + "Abbreviation": {}, "Code": "6.3.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128165,7 +135309,11 @@ "Name": { "en": "Fashionable" }, + "Abbreviation": {}, "Code": "3.4.1.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128174,7 +135322,11 @@ "Name": { "en": "Divide into pieces" }, + "Abbreviation": {}, "Code": "7.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128183,7 +135335,11 @@ "Name": { "en": "Parts of a bird" }, + "Abbreviation": {}, "Code": "1.6.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128192,7 +135348,11 @@ "Name": { "en": "Mouth" }, + "Abbreviation": {}, "Code": "2.1.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128201,7 +135361,11 @@ "Name": { "en": "Markers expecting a negative answer" }, + "Abbreviation": {}, "Code": "9.4.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128210,7 +135374,11 @@ "Name": { "en": "Drought" }, + "Abbreviation": {}, "Code": "1.1.3.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128219,7 +135387,11 @@ "Name": { "en": "Organize" }, + "Abbreviation": {}, "Code": "7.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128228,7 +135400,11 @@ "Name": { "en": "Altruistic, selfless" }, + "Abbreviation": {}, "Code": "4.3.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128237,7 +135413,11 @@ "Name": { "en": "Control" }, + "Abbreviation": {}, "Code": "3.3.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128246,7 +135426,11 @@ "Name": { "en": "Not have" }, + "Abbreviation": {}, "Code": "7.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128255,7 +135439,11 @@ "Name": { "en": "Animal actions" }, + "Abbreviation": {}, "Code": "1.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128264,7 +135452,11 @@ "Name": { "en": "Free time" }, + "Abbreviation": {}, "Code": "4.2.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128273,7 +135465,11 @@ "Name": { "en": "Kinship" }, + "Abbreviation": {}, "Code": "4.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128282,7 +135478,11 @@ "Name": { "en": "Love" }, + "Abbreviation": {}, "Code": "4.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128291,7 +135491,11 @@ "Name": { "en": "Solutions of water" }, + "Abbreviation": {}, "Code": "1.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128300,7 +135504,11 @@ "Name": { "en": "Urinate, urine" }, + "Abbreviation": {}, "Code": "2.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128309,7 +135517,11 @@ "Name": { "en": "Defend against accusation" }, + "Abbreviation": {}, "Code": "4.7.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128318,7 +135530,11 @@ "Name": { "en": "Air" }, + "Abbreviation": {}, "Code": "1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128327,7 +135543,11 @@ "Name": { "en": "Strong, brittle" }, + "Abbreviation": {}, "Code": "8.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128336,7 +135556,11 @@ "Name": { "en": "Names of rivers" }, + "Abbreviation": {}, "Code": "9.7.2.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128345,7 +135569,11 @@ "Name": { "en": "Take somewhere" }, + "Abbreviation": {}, "Code": "7.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128354,7 +135582,11 @@ "Name": { "en": "Strong" }, + "Abbreviation": {}, "Code": "2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128363,7 +135595,11 @@ "Name": { "en": "Only" }, + "Abbreviation": {}, "Code": "8.1.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128372,7 +135608,11 @@ "Name": { "en": "Speak well" }, + "Abbreviation": {}, "Code": "3.5.1.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128381,7 +135621,11 @@ "Name": { "en": "Independent" }, + "Abbreviation": {}, "Code": "4.5.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128390,7 +135634,11 @@ "Name": { "en": "Empty" }, + "Abbreviation": {}, "Code": "8.1.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128399,7 +135647,11 @@ "Name": { "en": "Alert" }, + "Abbreviation": {}, "Code": "3.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128408,7 +135660,11 @@ "Name": { "en": "Sacred writings" }, + "Abbreviation": {}, "Code": "4.9.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128417,7 +135673,11 @@ "Name": { "en": "Big container, volume" }, + "Abbreviation": {}, "Code": "8.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128426,7 +135686,11 @@ "Name": { "en": "Move past, over, through" }, + "Abbreviation": {}, "Code": "7.2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128435,7 +135699,11 @@ "Name": { "en": "Fishing" }, + "Abbreviation": {}, "Code": "6.4.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128444,7 +135712,11 @@ "Name": { "en": "Distribution" }, + "Abbreviation": {}, "Code": "9.6.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128453,7 +135725,11 @@ "Name": { "en": "Accustomed to" }, + "Abbreviation": {}, "Code": "6.1.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128462,7 +135738,11 @@ "Name": { "en": "Realize" }, + "Abbreviation": {}, "Code": "3.2.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128471,7 +135751,11 @@ "Name": { "en": "Unfriendly" }, + "Abbreviation": {}, "Code": "4.1.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128480,7 +135764,11 @@ "Name": { "en": "Debate" }, + "Abbreviation": {}, "Code": "3.5.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128489,7 +135777,11 @@ "Name": { "en": "Damage" }, + "Abbreviation": {}, "Code": "7.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128498,7 +135790,11 @@ "Name": { "en": "Fishing equipment" }, + "Abbreviation": {}, "Code": "6.4.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128507,7 +135803,11 @@ "Name": { "en": "Nephew, niece" }, + "Abbreviation": {}, "Code": "4.1.9.1.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128516,7 +135816,11 @@ "Name": { "en": "Early" }, + "Abbreviation": {}, "Code": "8.4.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128525,7 +135829,11 @@ "Name": { "en": "Support" }, + "Abbreviation": {}, "Code": "7.3.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128534,7 +135842,11 @@ "Name": { "en": "Air force" }, + "Abbreviation": {}, "Code": "4.8.3.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128543,7 +135855,11 @@ "Name": { "en": "Demonstrate" }, + "Abbreviation": {}, "Code": "3.5.1.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128552,7 +135868,11 @@ "Name": { "en": "Terms of endearment" }, + "Abbreviation": {}, "Code": "9.7.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128561,7 +135881,11 @@ "Name": { "en": "Reflect, mirror" }, + "Abbreviation": {}, "Code": "2.3.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128570,7 +135894,11 @@ "Name": { "en": "Speak with others" }, + "Abbreviation": {}, "Code": "3.5.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128579,7 +135907,11 @@ "Name": { "en": "Vicinity" }, + "Abbreviation": {}, "Code": "8.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128588,7 +135920,11 @@ "Name": { "en": "Do evil to" }, + "Abbreviation": {}, "Code": "4.3.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128597,7 +135933,11 @@ "Name": { "en": "Cloth" }, + "Abbreviation": {}, "Code": "6.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128606,7 +135946,11 @@ "Name": { "en": "Give pledge, bond" }, + "Abbreviation": {}, "Code": "6.8.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128615,7 +135959,11 @@ "Name": { "en": "Community" }, + "Abbreviation": {}, "Code": "4.6.7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128624,7 +135972,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128633,7 +135985,11 @@ "Name": { "en": "Design" }, + "Abbreviation": {}, "Code": "9.1.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128642,7 +135998,11 @@ "Name": { "en": "Cheap" }, + "Abbreviation": {}, "Code": "6.8.4.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128651,7 +136011,11 @@ "Name": { "en": "Insect" }, + "Abbreviation": {}, "Code": "1.6.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128660,7 +136024,11 @@ "Name": { "en": "Combinative relation" }, + "Abbreviation": {}, "Code": "9.6.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128669,7 +136037,11 @@ "Name": { "en": "Go first" }, + "Abbreviation": {}, "Code": "7.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128678,7 +136050,11 @@ "Name": { "en": "Accounting" }, + "Abbreviation": {}, "Code": "6.8.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128687,7 +136063,11 @@ "Name": { "en": "Wedding" }, + "Abbreviation": {}, "Code": "2.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128696,7 +136076,11 @@ "Name": { "en": "Smell" }, + "Abbreviation": {}, "Code": "2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128705,7 +136089,11 @@ "Name": { "en": "Back" }, + "Abbreviation": {}, "Code": "8.6.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128714,7 +136102,11 @@ "Name": { "en": "Romantic love" }, + "Abbreviation": {}, "Code": "2.6.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128723,7 +136115,11 @@ "Name": { "en": "Hortative" }, + "Abbreviation": {}, "Code": "9.4.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128732,7 +136128,11 @@ "Name": { "en": "Meaningless" }, + "Abbreviation": {}, "Code": "3.5.8.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128741,7 +136141,11 @@ "Name": { "en": "Names of countries" }, + "Abbreviation": {}, "Code": "9.7.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128750,7 +136154,11 @@ "Name": { "en": "Reptile" }, + "Abbreviation": {}, "Code": "1.6.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128759,7 +136167,11 @@ "Name": { "en": "Men\u0027s clothing" }, + "Abbreviation": {}, "Code": "5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128768,7 +136180,11 @@ "Name": { "en": "Alcohol preparation" }, + "Abbreviation": {}, "Code": "5.2.3.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128777,7 +136193,11 @@ "Name": { "en": "Faithful" }, + "Abbreviation": {}, "Code": "4.3.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128786,7 +136206,11 @@ "Name": { "en": "Roof" }, + "Abbreviation": {}, "Code": "6.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128795,7 +136219,11 @@ "Name": { "en": "Window" }, + "Abbreviation": {}, "Code": "6.5.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128804,7 +136232,11 @@ "Name": { "en": "Radio, television" }, + "Abbreviation": {}, "Code": "3.5.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128813,7 +136245,11 @@ "Name": { "en": "Catch" }, + "Abbreviation": {}, "Code": "7.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128822,7 +136258,11 @@ "Name": { "en": "Prefer" }, + "Abbreviation": {}, "Code": "3.4.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128831,7 +136271,11 @@ "Name": { "en": "Growing trees" }, + "Abbreviation": {}, "Code": "6.2.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128840,7 +136284,11 @@ "Name": { "en": "Legal contract" }, + "Abbreviation": {}, "Code": "4.7.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128849,7 +136297,11 @@ "Name": { "en": "Religious person" }, + "Abbreviation": {}, "Code": "4.9.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128858,7 +136310,11 @@ "Name": { "en": "Point at" }, + "Abbreviation": {}, "Code": "3.5.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128867,7 +136323,11 @@ "Name": { "en": "Participate" }, + "Abbreviation": {}, "Code": "4.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128876,7 +136336,11 @@ "Name": { "en": "Cutting tool" }, + "Abbreviation": {}, "Code": "6.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128885,7 +136349,11 @@ "Name": { "en": "New" }, + "Abbreviation": {}, "Code": "8.4.6.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128894,7 +136362,11 @@ "Name": { "en": "Prepared food" }, + "Abbreviation": {}, "Code": "5.2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128903,7 +136375,11 @@ "Name": { "en": "Discourse markers" }, + "Abbreviation": {}, "Code": "9.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128912,7 +136388,11 @@ "Name": { "en": "Fable, myth" }, + "Abbreviation": {}, "Code": "3.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128921,7 +136401,11 @@ "Name": { "en": "Live, stay" }, + "Abbreviation": {}, "Code": "5.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128930,7 +136414,11 @@ "Name": { "en": "Malnutrition, starvation" }, + "Abbreviation": {}, "Code": "2.5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128939,7 +136427,11 @@ "Name": { "en": "Study" }, + "Abbreviation": {}, "Code": "3.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128948,7 +136440,11 @@ "Name": { "en": "Poetry" }, + "Abbreviation": {}, "Code": "3.5.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128957,7 +136453,11 @@ "Name": { "en": "Contentment" }, + "Abbreviation": {}, "Code": "3.4.1.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128966,7 +136466,11 @@ "Name": { "en": "Working with machines" }, + "Abbreviation": {}, "Code": "6.6.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128975,7 +136479,11 @@ "Name": { "en": "Guess" }, + "Abbreviation": {}, "Code": "3.2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128984,7 +136492,11 @@ "Name": { "en": "Increase" }, + "Abbreviation": {}, "Code": "8.1.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128993,7 +136505,11 @@ "Name": { "en": "Judaism" }, + "Abbreviation": {}, "Code": "4.9.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129002,7 +136518,11 @@ "Name": { "en": "News, message" }, + "Abbreviation": {}, "Code": "3.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129011,7 +136531,11 @@ "Name": { "en": "Right, proper" }, + "Abbreviation": {}, "Code": "8.3.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129020,7 +136544,11 @@ "Name": { "en": "Mourn" }, + "Abbreviation": {}, "Code": "2.6.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129029,7 +136557,11 @@ "Name": { "en": "First" }, + "Abbreviation": {}, "Code": "8.4.5.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129038,7 +136570,11 @@ "Name": { "en": "Medicinal plants" }, + "Abbreviation": {}, "Code": "2.5.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129047,7 +136583,11 @@ "Name": { "en": "Discontent" }, + "Abbreviation": {}, "Code": "3.4.2.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129056,7 +136596,11 @@ "Name": { "en": "Wet" }, + "Abbreviation": {}, "Code": "1.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129065,7 +136609,11 @@ "Name": { "en": "Check" }, + "Abbreviation": {}, "Code": "3.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129074,7 +136622,11 @@ "Name": { "en": "Temporary" }, + "Abbreviation": {}, "Code": "8.4.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129083,7 +136635,11 @@ "Name": { "en": "Unusual birth" }, + "Abbreviation": {}, "Code": "2.6.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129092,7 +136648,11 @@ "Name": { "en": "Complain" }, + "Abbreviation": {}, "Code": "3.5.1.8.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129101,7 +136661,11 @@ "Name": { "en": "Language and thought" }, + "Abbreviation": {}, "Code": "3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129110,7 +136674,11 @@ "Name": { "en": "Travel by water" }, + "Abbreviation": {}, "Code": "7.2.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129119,7 +136687,11 @@ "Name": { "en": "Space, room" }, + "Abbreviation": {}, "Code": "8.5.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129128,7 +136700,11 @@ "Name": { "en": "Hang" }, + "Abbreviation": {}, "Code": "7.3.2.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129137,7 +136713,11 @@ "Name": { "en": "Grandson, granddaughter" }, + "Abbreviation": {}, "Code": "4.1.9.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129146,7 +136726,11 @@ "Name": { "en": "Out, outside" }, + "Abbreviation": {}, "Code": "8.5.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129155,7 +136739,11 @@ "Name": { "en": "Move sideways" }, + "Abbreviation": {}, "Code": "7.2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129164,7 +136752,11 @@ "Name": { "en": "Foolish talk" }, + "Abbreviation": {}, "Code": "3.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129173,7 +136765,11 @@ "Name": { "en": "Impolite" }, + "Abbreviation": {}, "Code": "4.3.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129182,7 +136778,11 @@ "Name": { "en": "Natural" }, + "Abbreviation": {}, "Code": "1.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129191,7 +136791,11 @@ "Name": { "en": "Multiple births" }, + "Abbreviation": {}, "Code": "2.6.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129200,7 +136804,11 @@ "Name": { "en": "Break, wear out" }, + "Abbreviation": {}, "Code": "7.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129209,7 +136817,11 @@ "Name": { "en": "Laws" }, + "Abbreviation": {}, "Code": "4.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129218,7 +136830,11 @@ "Name": { "en": "Custom" }, + "Abbreviation": {}, "Code": "4.3.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129227,7 +136843,11 @@ "Name": { "en": "Say nothing" }, + "Abbreviation": {}, "Code": "3.5.1.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129236,7 +136856,11 @@ "Name": { "en": "Liquid" }, + "Abbreviation": {}, "Code": "1.2.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129245,7 +136869,11 @@ "Name": { "en": "Military organization" }, + "Abbreviation": {}, "Code": "4.8.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129254,7 +136882,11 @@ "Name": { "en": "Soldier" }, + "Abbreviation": {}, "Code": "4.8.3.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129263,7 +136895,11 @@ "Name": { "en": "Animism " }, + "Abbreviation": {}, "Code": "4.9.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129272,7 +136908,11 @@ "Name": { "en": "Usual" }, + "Abbreviation": {}, "Code": "8.3.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129281,7 +136921,11 @@ "Name": { "en": "Divorce" }, + "Abbreviation": {}, "Code": "2.6.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129290,7 +136934,11 @@ "Name": { "en": "Crafts" }, + "Abbreviation": {}, "Code": "6.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129299,7 +136947,11 @@ "Name": { "en": "Lead" }, + "Abbreviation": {}, "Code": "4.5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129308,7 +136960,11 @@ "Name": { "en": "Grow, get bigger" }, + "Abbreviation": {}, "Code": "2.6.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129317,7 +136973,11 @@ "Name": { "en": "Business organization" }, + "Abbreviation": {}, "Code": "6.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129326,7 +136986,11 @@ "Name": { "en": "Table" }, + "Abbreviation": {}, "Code": "5.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129335,7 +136999,11 @@ "Name": { "en": "Youth" }, + "Abbreviation": {}, "Code": "2.6.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129344,7 +137012,11 @@ "Name": { "en": "Here, there" }, + "Abbreviation": {}, "Code": "8.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129353,7 +137025,11 @@ "Name": { "en": "Prepare something for use" }, + "Abbreviation": {}, "Code": "6.1.2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129362,7 +137038,11 @@ "Name": { "en": "Body condition" }, + "Abbreviation": {}, "Code": "2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129371,7 +137051,11 @@ "Name": { "en": "All" }, + "Abbreviation": {}, "Code": "8.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129380,7 +137064,11 @@ "Name": { "en": "Plant diseases" }, + "Abbreviation": {}, "Code": "1.5.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129389,7 +137077,11 @@ "Name": { "en": "Conflict" }, + "Abbreviation": {}, "Code": "4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129398,7 +137090,11 @@ "Name": { "en": "Unmarried" }, + "Abbreviation": {}, "Code": "2.6.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129407,7 +137103,11 @@ "Name": { "en": "Social group" }, + "Abbreviation": {}, "Code": "4.2.1.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129416,7 +137116,11 @@ "Name": { "en": "Condition" }, + "Abbreviation": {}, "Code": "9.6.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129425,7 +137129,11 @@ "Name": { "en": "Impossible" }, + "Abbreviation": {}, "Code": "9.4.4.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129434,7 +137142,11 @@ "Name": { "en": "Wide" }, + "Abbreviation": {}, "Code": "8.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129443,7 +137155,11 @@ "Name": { "en": "Substance, matter" }, + "Abbreviation": {}, "Code": "1.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129452,7 +137168,11 @@ "Name": { "en": "Calendar" }, + "Abbreviation": {}, "Code": "8.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129461,7 +137181,11 @@ "Name": { "en": "Instead" }, + "Abbreviation": {}, "Code": "9.6.1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129470,7 +137194,11 @@ "Name": { "en": "Conjunctions" }, + "Abbreviation": {}, "Code": "9.2.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129479,7 +137207,11 @@ "Name": { "en": "Discriminate, be unfair" }, + "Abbreviation": {}, "Code": "4.7.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129488,7 +137220,11 @@ "Name": { "en": "Cousin" }, + "Abbreviation": {}, "Code": "4.1.9.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129497,7 +137233,11 @@ "Name": { "en": "Governing body" }, + "Abbreviation": {}, "Code": "4.6.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129506,7 +137246,11 @@ "Name": { "en": "Interested" }, + "Abbreviation": {}, "Code": "3.4.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129515,7 +137259,11 @@ "Name": { "en": "Cause of disease" }, + "Abbreviation": {}, "Code": "2.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129524,7 +137272,11 @@ "Name": { "en": "Non-relative" }, + "Abbreviation": {}, "Code": "4.1.9.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129533,7 +137285,11 @@ "Name": { "en": "Accuse, confront" }, + "Abbreviation": {}, "Code": "4.7.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129542,7 +137298,11 @@ "Name": { "en": "Adverbial clauses" }, + "Abbreviation": {}, "Code": "9.4.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129551,7 +137311,11 @@ "Name": { "en": "Turtle" }, + "Abbreviation": {}, "Code": "1.6.1.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129560,7 +137324,11 @@ "Name": { "en": "Number" }, + "Abbreviation": {}, "Code": "8.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129569,7 +137337,11 @@ "Name": { "en": "Like, similar" }, + "Abbreviation": {}, "Code": "8.3.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129578,7 +137350,11 @@ "Name": { "en": "Markers of identificational and explanatory clauses " }, + "Abbreviation": {}, "Code": "9.6.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129587,7 +137363,11 @@ "Name": { "en": "Cooking methods" }, + "Abbreviation": {}, "Code": "5.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129596,7 +137376,11 @@ "Name": { "en": "Edge" }, + "Abbreviation": {}, "Code": "8.6.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129605,7 +137389,11 @@ "Name": { "en": "Crazy" }, + "Abbreviation": {}, "Code": "4.3.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129614,7 +137402,11 @@ "Name": { "en": "Comb hair" }, + "Abbreviation": {}, "Code": "5.4.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129623,7 +137415,11 @@ "Name": { "en": "Adult" }, + "Abbreviation": {}, "Code": "2.6.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129632,7 +137428,11 @@ "Name": { "en": "Less" }, + "Abbreviation": {}, "Code": "8.1.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129641,7 +137441,11 @@ "Name": { "en": "Move toward something" }, + "Abbreviation": {}, "Code": "7.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129650,7 +137454,11 @@ "Name": { "en": "Year" }, + "Abbreviation": {}, "Code": "8.4.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129659,7 +137467,11 @@ "Name": { "en": "Types of sounds" }, + "Abbreviation": {}, "Code": "2.3.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129668,7 +137480,11 @@ "Name": { "en": "Appease" }, + "Abbreviation": {}, "Code": "4.8.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129677,7 +137493,11 @@ "Name": { "en": "Agree with someone" }, + "Abbreviation": {}, "Code": "3.2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129686,7 +137506,11 @@ "Name": { "en": "Watch" }, + "Abbreviation": {}, "Code": "2.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129695,7 +137519,11 @@ "Name": { "en": "Mix" }, + "Abbreviation": {}, "Code": "7.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129704,7 +137532,11 @@ "Name": { "en": "Meddle" }, + "Abbreviation": {}, "Code": "4.3.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129713,7 +137545,11 @@ "Name": { "en": "Cabinet" }, + "Abbreviation": {}, "Code": "5.1.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129722,7 +137558,11 @@ "Name": { "en": "Compare" }, + "Abbreviation": {}, "Code": "8.3.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129731,7 +137571,11 @@ "Name": { "en": "Fine" }, + "Abbreviation": {}, "Code": "4.7.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129740,7 +137584,11 @@ "Name": { "en": "Choose" }, + "Abbreviation": {}, "Code": "3.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129749,7 +137597,11 @@ "Name": { "en": "Rule" }, + "Abbreviation": {}, "Code": "4.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129758,7 +137610,11 @@ "Name": { "en": "Resurrection" }, + "Abbreviation": {}, "Code": "4.9.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129767,7 +137623,11 @@ "Name": { "en": "Have wealth" }, + "Abbreviation": {}, "Code": "6.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129776,7 +137636,11 @@ "Name": { "en": "Black" }, + "Abbreviation": {}, "Code": "8.3.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129785,7 +137649,11 @@ "Name": { "en": "Fire" }, + "Abbreviation": {}, "Code": "5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129794,7 +137662,11 @@ "Name": { "en": "Farm worker" }, + "Abbreviation": {}, "Code": "6.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129803,7 +137675,11 @@ "Name": { "en": "Numbered group" }, + "Abbreviation": {}, "Code": "8.1.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129812,7 +137688,11 @@ "Name": { "en": "Marriage" }, + "Abbreviation": {}, "Code": "2.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129821,7 +137701,11 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": {}, "Code": "1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129830,7 +137714,11 @@ "Name": { "en": "Free of charge" }, + "Abbreviation": {}, "Code": "6.8.4.3.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129839,7 +137727,11 @@ "Name": { "en": "Swim" }, + "Abbreviation": {}, "Code": "7.2.4.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } diff --git a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs index cedd2e8bed..e10cbb8767 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs @@ -391,6 +391,7 @@ public async Task SemanticDomainsSyncBothWays() { Id = new Guid("f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"), Name = new MultiString() { { "en", "Language and thought" } }, + Abbreviation = new MultiString() { { "en", "3" } }, Code = "3", Predefined = true, }; @@ -400,6 +401,7 @@ public async Task SemanticDomainsSyncBothWays() { Id = new Guid("62b4ae33-f3c2-447a-9ef7-7e41805b6a02"), Name = new MultiString() { { "en", "Social behavior" } }, + Abbreviation = new MultiString() { { "en", "4" } }, Code = "4", Predefined = true, }; @@ -430,6 +432,7 @@ public async Task SemanticDomainsSyncInEntries() { Id = new Guid("f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"), Name = new MultiString() { { "en", "Language and thought" } }, + Abbreviation = new MultiString() { { "en", "3" } }, Code = "3", Predefined = true, }; diff --git a/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs index 7daa8468a4..32773b501c 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs @@ -88,4 +88,18 @@ public void MorphTypeDiffShouldUpdateAllFields() .Excluding(x => x.Id) .Excluding(x => x.DeletedAt)); } + + [Fact] + public void SemanticDomainDiffShouldUpdateAllFields() + { + var before = new SemanticDomain(); + var after = AutoFaker.Generate(); + var semanticDomainDiffToUpdate = SemanticDomainSync.SemanticDomainDiffToUpdate(before, after); + ArgumentNullException.ThrowIfNull(semanticDomainDiffToUpdate); + semanticDomainDiffToUpdate.Apply(before); + before.Should().BeEquivalentTo(after, options => options + .Excluding(x => x.Id) + .Excluding(x => x.DeletedAt) + .Excluding(x => x.Predefined)); + } } diff --git a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite index 9519d70662..456ecf7caf 100644 Binary files a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite and b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite differ diff --git a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt index 5798bee4ef..58b58cc43c 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt +++ b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt @@ -1778,7 +1778,11 @@ "Name": { "en": "Escape" }, + "Abbreviation": {}, "Code": "7.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2412,7 +2416,11 @@ "Name": { "en": "Grass, herb, vine" }, + "Abbreviation": {}, "Code": "1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2541,7 +2549,11 @@ "Name": { "en": "Chair" }, + "Abbreviation": {}, "Code": "5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2628,7 +2640,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2767,7 +2783,11 @@ "Name": { "en": "Work" }, + "Abbreviation": {}, "Code": "6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -2991,7 +3011,11 @@ "Name": { "en": "Poultry raising" }, + "Abbreviation": {}, "Code": "6.3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -3524,7 +3548,11 @@ "Name": { "en": "Men\u0027s clothing" }, + "Abbreviation": {}, "Code": "5.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -3905,7 +3933,11 @@ "Name": { "en": "Wave" }, + "Abbreviation": {}, "Code": "1.3.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -3993,7 +4025,11 @@ "Name": { "en": "Sheep" }, + "Abbreviation": {}, "Code": "6.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -4952,7 +4988,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -6551,7 +6591,11 @@ "Name": { "en": "Covenant" }, + "Abbreviation": {}, "Code": "4.7.8.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -6560,7 +6604,11 @@ "Name": { "en": "Unity" }, + "Abbreviation": {}, "Code": "4.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -8352,7 +8400,11 @@ "Name": { "en": "Insect" }, + "Abbreviation": {}, "Code": "1.6.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -8502,7 +8554,11 @@ "Name": { "en": "Food" }, + "Abbreviation": {}, "Code": "5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -9249,7 +9305,11 @@ "Name": { "en": "White" }, + "Abbreviation": {}, "Code": "8.3.3.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -9300,7 +9360,11 @@ "Name": { "en": "Good" }, + "Abbreviation": {}, "Code": "8.3.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -10644,7 +10708,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -11259,7 +11327,11 @@ "Name": { "en": "Disabled" }, + "Abbreviation": {}, "Code": "2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -12096,7 +12168,11 @@ "Name": { "en": "Trap" }, + "Abbreviation": {}, "Code": "6.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -12105,7 +12181,11 @@ "Name": { "en": "Hunting birds" }, + "Abbreviation": {}, "Code": "6.4.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -12545,7 +12625,11 @@ "Name": { "en": "Food" }, + "Abbreviation": {}, "Code": "5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -12554,7 +12638,11 @@ "Name": { "en": "Commerce" }, + "Abbreviation": {}, "Code": "6.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -12772,7 +12860,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -14566,7 +14658,11 @@ "Name": { "en": "Class, lesson" }, + "Abbreviation": {}, "Code": "3.6.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -14639,7 +14735,11 @@ "Name": { "en": "Teach" }, + "Abbreviation": {}, "Code": "3.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -15730,7 +15830,11 @@ "Name": { "en": "City" }, + "Abbreviation": {}, "Code": "4.6.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -15968,7 +16072,11 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": {}, "Code": "5.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -16404,7 +16512,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -16413,7 +16525,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -16589,7 +16705,11 @@ "Name": { "en": "Sign, symbol" }, + "Abbreviation": {}, "Code": "3.5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -18250,7 +18370,11 @@ "Name": { "en": "Hunt" }, + "Abbreviation": {}, "Code": "6.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -19178,7 +19302,11 @@ "Name": { "en": "Telling time" }, + "Abbreviation": {}, "Code": "8.4.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -19187,7 +19315,11 @@ "Name": { "en": "Sun" }, + "Abbreviation": {}, "Code": "1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -19910,7 +20042,11 @@ "Name": { "en": "Sick" }, + "Abbreviation": {}, "Code": "2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -21519,7 +21655,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -21528,7 +21668,11 @@ "Name": { "en": "Land" }, + "Abbreviation": {}, "Code": "1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -21998,7 +22142,11 @@ "Name": { "en": "Race" }, + "Abbreviation": {}, "Code": "4.1.9.9", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -22049,7 +22197,11 @@ "Name": { "en": "Family, clan" }, + "Abbreviation": {}, "Code": "4.1.9.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -22107,7 +22259,11 @@ "Name": { "en": "Related by birth" }, + "Abbreviation": {}, "Code": "4.1.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -22579,7 +22735,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -24322,7 +24482,11 @@ "Name": { "en": "Walk" }, + "Abbreviation": {}, "Code": "7.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -24923,7 +25087,11 @@ "Name": { "en": "Explain" }, + "Abbreviation": {}, "Code": "3.5.1.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -25028,7 +25196,11 @@ "Name": { "en": "Manner of eating" }, + "Abbreviation": {}, "Code": "5.2.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -25613,7 +25785,11 @@ "Name": { "en": "Like, love" }, + "Abbreviation": {}, "Code": "3.4.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -27372,7 +27548,11 @@ "Name": { "en": "Island, shore" }, + "Abbreviation": {}, "Code": "1.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -27741,7 +27921,11 @@ "Name": { "en": "Sell" }, + "Abbreviation": {}, "Code": "6.8.4.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -28142,7 +28326,11 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": {}, "Code": "5.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -31624,7 +31812,11 @@ "Name": { "en": "Chair" }, + "Abbreviation": {}, "Code": "5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -32670,7 +32862,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -32767,7 +32963,11 @@ "Name": { "en": "Crawl" }, + "Abbreviation": {}, "Code": "7.2.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -32896,7 +33096,11 @@ "Name": { "en": "Beast of burden" }, + "Abbreviation": {}, "Code": "6.3.1.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -34668,7 +34872,11 @@ "Name": { "en": "Skin" }, + "Abbreviation": {}, "Code": "2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -34816,7 +35024,11 @@ "Name": { "en": "Carnivore" }, + "Abbreviation": {}, "Code": "1.6.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -35163,7 +35375,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -35172,7 +35388,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -35415,7 +35635,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -37632,7 +37856,11 @@ "Name": { "en": "Fish with net" }, + "Abbreviation": {}, "Code": "6.4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -38008,7 +38236,11 @@ "Name": { "en": "Condemn, find guilty" }, + "Abbreviation": {}, "Code": "4.7.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -39594,7 +39826,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -41420,7 +41656,11 @@ "Name": { "en": "Punish" }, + "Abbreviation": {}, "Code": "4.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -42108,7 +42348,11 @@ "Name": { "en": "Food from fruit" }, + "Abbreviation": {}, "Code": "5.2.3.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -42905,7 +43149,11 @@ "Name": { "en": "Write" }, + "Abbreviation": {}, "Code": "3.5.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -42985,7 +43233,11 @@ "Name": { "en": "Written material" }, + "Abbreviation": {}, "Code": "3.5.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43065,7 +43317,11 @@ "Name": { "en": "Honor" }, + "Abbreviation": {}, "Code": "4.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43428,7 +43684,11 @@ "Name": { "en": "Deceive" }, + "Abbreviation": {}, "Code": "4.3.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43669,7 +43929,11 @@ "Name": { "en": "Eating utensil" }, + "Abbreviation": {}, "Code": "5.2.2.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -43749,7 +44013,11 @@ "Name": { "en": "Agriculture" }, + "Abbreviation": {}, "Code": "6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -44109,7 +44377,11 @@ "Name": { "en": "Cry, tear" }, + "Abbreviation": {}, "Code": "3.5.6.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -44640,7 +44912,11 @@ "Name": { "en": "Pursue" }, + "Abbreviation": {}, "Code": "7.2.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -45883,7 +46159,11 @@ "Name": { "en": "Grass, herb, vine" }, + "Abbreviation": {}, "Code": "1.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -47346,7 +47626,11 @@ "Name": { "en": "Water" }, + "Abbreviation": {}, "Code": "1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -48534,7 +48818,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -48543,7 +48831,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -49037,7 +49329,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -49046,7 +49342,11 @@ "Name": { "en": "Ruler" }, + "Abbreviation": {}, "Code": "4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -51115,7 +51415,11 @@ "Name": { "en": "Spit, saliva" }, + "Abbreviation": {}, "Code": "2.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -51588,7 +51892,11 @@ "Name": { "en": "Soil, dirt" }, + "Abbreviation": {}, "Code": "1.2.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -52165,7 +52473,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -52707,7 +53019,11 @@ "Name": { "en": "Hoofed animals" }, + "Abbreviation": {}, "Code": "1.6.1.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53072,7 +53388,11 @@ "Name": { "en": "Bone, joint" }, + "Abbreviation": {}, "Code": "2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53152,7 +53472,11 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": {}, "Code": "5.2.1.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53363,7 +53687,11 @@ "Name": { "en": "Manner of movement" }, + "Abbreviation": {}, "Code": "7.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -53719,7 +54047,11 @@ "Name": { "en": "Grandfather, grandmother" }, + "Abbreviation": {}, "Code": "4.1.9.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -54777,7 +55109,11 @@ "Name": { "en": "Table" }, + "Abbreviation": {}, "Code": "5.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -55584,7 +55920,11 @@ "Name": { "en": "Chair" }, + "Abbreviation": {}, "Code": "5.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -55714,7 +56054,11 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": {}, "Code": "5.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -56633,7 +56977,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -56642,7 +56990,11 @@ "Name": { "en": "Ruler" }, + "Abbreviation": {}, "Code": "4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -56736,7 +57088,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -56745,7 +57101,11 @@ "Name": { "en": "Ruler" }, + "Abbreviation": {}, "Code": "4.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -57393,7 +57753,11 @@ "Name": { "en": "Orphan" }, + "Abbreviation": {}, "Code": "4.1.9.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -58389,7 +58753,11 @@ "Name": { "en": "Cleaning" }, + "Abbreviation": {}, "Code": "5.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -58633,7 +59001,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -59648,7 +60020,11 @@ "Name": { "en": "Taboo" }, + "Abbreviation": {}, "Code": "4.9.5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -59800,7 +60176,11 @@ "Name": { "en": "In-law" }, + "Abbreviation": {}, "Code": "4.1.9.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -59913,7 +60293,11 @@ "Name": { "en": "Trial" }, + "Abbreviation": {}, "Code": "4.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -60660,7 +61044,11 @@ "Name": { "en": "God" }, + "Abbreviation": {}, "Code": "4.9.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61182,7 +61570,11 @@ "Name": { "en": "Salt" }, + "Abbreviation": {}, "Code": "5.2.3.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61547,7 +61939,11 @@ "Name": { "en": "Tree" }, + "Abbreviation": {}, "Code": "1.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -61556,7 +61952,11 @@ "Name": { "en": "Bush, shrub" }, + "Abbreviation": {}, "Code": "1.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61730,7 +62130,11 @@ "Name": { "en": "Wind" }, + "Abbreviation": {}, "Code": "1.1.3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -61850,7 +62254,11 @@ "Name": { "en": "Drink" }, + "Abbreviation": {}, "Code": "5.2.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -62063,7 +62471,11 @@ "Name": { "en": "Rock" }, + "Abbreviation": {}, "Code": "1.2.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -63360,7 +63772,11 @@ "Name": { "en": "Islam" }, + "Abbreviation": {}, "Code": "4.9.7.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -63920,7 +64336,11 @@ "Name": { "en": "Road" }, + "Abbreviation": {}, "Code": "6.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64033,7 +64453,11 @@ "Name": { "en": "Island, shore" }, + "Abbreviation": {}, "Code": "1.3.1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64096,7 +64520,11 @@ "Name": { "en": "Women\u0027s clothing" }, + "Abbreviation": {}, "Code": "5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64399,7 +64827,11 @@ "Name": { "en": "Have, be with" }, + "Abbreviation": {}, "Code": "7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -64760,7 +65192,11 @@ "Name": { "en": "Have, be with" }, + "Abbreviation": {}, "Code": "7.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -65189,7 +65625,11 @@ "Name": { "en": "Spring, well" }, + "Abbreviation": {}, "Code": "1.3.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -67316,7 +67756,11 @@ "Name": { "en": "City" }, + "Abbreviation": {}, "Code": "4.6.7.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -67477,7 +67921,11 @@ "Name": { "en": "Heaven, hell" }, + "Abbreviation": {}, "Code": "4.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -67486,7 +67934,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -70036,7 +70488,11 @@ "Name": { "en": "Road" }, + "Abbreviation": {}, "Code": "6.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -71352,7 +71808,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -71361,7 +71821,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -71790,7 +72254,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -72089,7 +72557,11 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": {}, "Code": "5.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -72098,7 +72570,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -72834,7 +73310,11 @@ "Name": { "en": "River" }, + "Abbreviation": {}, "Code": "1.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -73621,7 +74101,11 @@ "Name": { "en": "Torso" }, + "Abbreviation": {}, "Code": "2.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -73995,7 +74479,11 @@ "Name": { "en": "Traditional medicine" }, + "Abbreviation": {}, "Code": "2.5.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -74571,7 +75059,11 @@ "Name": { "en": "Trial" }, + "Abbreviation": {}, "Code": "4.7.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -74653,7 +75145,11 @@ "Name": { "en": "Road" }, + "Abbreviation": {}, "Code": "6.5.4.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -75062,7 +75558,11 @@ "Name": { "en": "Plant" }, + "Abbreviation": {}, "Code": "1.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -76841,7 +77341,11 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": {}, "Code": "1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -77538,7 +78042,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -77547,7 +78055,11 @@ "Name": { "en": "Judge, render a verdict" }, + "Abbreviation": {}, "Code": "4.7.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -77692,7 +78204,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -77913,7 +78429,11 @@ "Name": { "en": "Food storage" }, + "Abbreviation": {}, "Code": "5.2.1.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -77922,7 +78442,11 @@ "Name": { "en": "Container" }, + "Abbreviation": {}, "Code": "6.7.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78179,7 +78703,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -78188,7 +78716,11 @@ "Name": { "en": "Guide" }, + "Abbreviation": {}, "Code": "7.2.5.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -78197,7 +78729,11 @@ "Name": { "en": "Go first" }, + "Abbreviation": {}, "Code": "7.2.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78268,7 +78804,11 @@ "Name": { "en": "Chicken" }, + "Abbreviation": {}, "Code": "6.3.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78365,7 +78905,11 @@ "Name": { "en": "Play, fun" }, + "Abbreviation": {}, "Code": "4.2.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78462,7 +79006,11 @@ "Name": { "en": "Communication devices" }, + "Abbreviation": {}, "Code": "3.5.9.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78797,7 +79345,11 @@ "Name": { "en": "Soul, spirit" }, + "Abbreviation": {}, "Code": "3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -78806,7 +79358,11 @@ "Name": { "en": "Supernatural being" }, + "Abbreviation": {}, "Code": "4.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -78895,7 +79451,11 @@ "Name": { "en": "Family, clan" }, + "Abbreviation": {}, "Code": "4.1.9.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -79812,7 +80372,11 @@ "Name": { "en": "Musical instrument" }, + "Abbreviation": {}, "Code": "4.2.3.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -80845,7 +81409,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -80916,7 +81484,11 @@ "Name": { "en": "Government official" }, + "Abbreviation": {}, "Code": "4.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -80925,7 +81497,11 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": {}, "Code": "4.5.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81236,7 +81812,11 @@ "Name": { "en": "Meat" }, + "Abbreviation": {}, "Code": "5.2.3.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81287,7 +81867,11 @@ "Name": { "en": "Animal" }, + "Abbreviation": {}, "Code": "1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81857,7 +82441,11 @@ "Name": { "en": "Prophecy" }, + "Abbreviation": {}, "Code": "4.9.4.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -81866,7 +82454,11 @@ "Name": { "en": "Omen, divination" }, + "Abbreviation": {}, "Code": "4.9.4.7", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -81968,7 +82560,11 @@ "Name": { "en": "Disabled" }, + "Abbreviation": {}, "Code": "2.5.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82288,7 +82884,11 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": {}, "Code": "1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82436,7 +83036,11 @@ "Name": { "en": "Mental illness" }, + "Abbreviation": {}, "Code": "2.5.8", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82514,7 +83118,11 @@ "Name": { "en": "Offering, sacrifice" }, + "Abbreviation": {}, "Code": "4.9.5.5", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82587,7 +83195,11 @@ "Name": { "en": "Smell" }, + "Abbreviation": {}, "Code": "2.3.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -82731,7 +83343,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -82740,7 +83356,11 @@ "Name": { "en": "River" }, + "Abbreviation": {}, "Code": "1.3.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -84181,7 +84801,11 @@ "Name": { "en": "Soul, spirit" }, + "Abbreviation": {}, "Code": "3.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -84190,7 +84814,11 @@ "Name": { "en": "Supernatural being" }, + "Abbreviation": {}, "Code": "4.9.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -85443,7 +86071,11 @@ "Name": { "en": "Cat" }, + "Abbreviation": {}, "Code": "6.3.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -85452,7 +86084,11 @@ "Name": { "en": "Carnivore" }, + "Abbreviation": {}, "Code": "1.6.1.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -87570,7 +88206,11 @@ "Name": { "en": "Acquit" }, + "Abbreviation": {}, "Code": "4.7.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -88579,7 +89219,11 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": {}, "Code": "5.2.1.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -89141,7 +89785,11 @@ "Name": { "en": "Kill" }, + "Abbreviation": {}, "Code": "2.6.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -89448,7 +90096,11 @@ "Name": { "en": "Stomach illness" }, + "Abbreviation": {}, "Code": "2.5.2.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -90316,7 +90968,11 @@ "Name": { "en": "Food preparation" }, + "Abbreviation": {}, "Code": "5.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -90664,7 +91320,11 @@ "Name": { "en": "Clean, dirty" }, + "Abbreviation": {}, "Code": "5.6.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -90892,7 +91552,11 @@ "Name": { "en": "Mountain" }, + "Abbreviation": {}, "Code": "1.2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -91428,7 +92092,11 @@ "Name": { "en": "Tooth decay" }, + "Abbreviation": {}, "Code": "2.5.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -91656,7 +92324,11 @@ "Name": { "en": "Escape" }, + "Abbreviation": {}, "Code": "7.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -94967,7 +95639,11 @@ "Name": { "en": "Tend a field" }, + "Abbreviation": {}, "Code": "6.2.4", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -100838,7 +101514,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -100925,7 +101605,11 @@ "Name": { "en": "Forest, grassland, desert" }, + "Abbreviation": {}, "Code": "1.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -101544,7 +102228,11 @@ "Name": { "en": "Escape" }, + "Abbreviation": {}, "Code": "7.2.6.3", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -101622,7 +102310,11 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": {}, "Code": "1.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -103882,7 +104574,11 @@ "Name": { "en": "Follow" }, + "Abbreviation": {}, "Code": "7.2.5.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -104415,7 +105111,11 @@ "Name": { "en": "Forest, grassland, desert" }, + "Abbreviation": {}, "Code": "1.2.1.6", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -104966,7 +105666,11 @@ "Name": { "en": "Bird" }, + "Abbreviation": {}, "Code": "1.6.1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -105323,7 +106027,11 @@ "Name": { "en": "Roof" }, + "Abbreviation": {}, "Code": "6.5.2.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -107755,7 +108463,11 @@ "Name": { "en": "Food from seeds" }, + "Abbreviation": {}, "Code": "5.2.3.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -108651,7 +109363,11 @@ "Name": { "en": "Country" }, + "Abbreviation": {}, "Code": "4.6.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -110348,7 +111064,11 @@ "Name": { "en": "Country" }, + "Abbreviation": {}, "Code": "4.6.7.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -110566,7 +111286,11 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": {}, "Code": "1.6.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -113720,7 +114444,22 @@ "Name": { "en": "Series" }, + "Abbreviation": { + "en": "8.4.5.1.1" + }, "Code": "8.4.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a series--several things that happen one after another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113729,7 +114468,22 @@ "Name": { "en": "Order, sequence" }, + "Abbreviation": { + "en": "8.4.5.1" + }, "Code": "8.4.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to temporal order or sequence--the order in which a group of events happen. Things and people may also be in order based on the order in which something happened or should happen to them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "61 Sequence", "DeletedAt": null, "Predefined": true }, @@ -113738,7 +114492,22 @@ "Name": { "en": "Excited" }, + "Abbreviation": { + "en": "3.4.1.4.1" + }, "Code": "3.4.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling excited--to feel good when something good has happening or is about to happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113747,7 +114516,22 @@ "Name": { "en": "Thing" }, + "Abbreviation": { + "en": "9.1.3" + }, "Code": "9.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113756,7 +114540,22 @@ "Name": { "en": "Verb affixes" }, + "Abbreviation": { + "en": "9.2.9.1" + }, "Code": "9.2.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all verb affixes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113765,7 +114564,22 @@ "Name": { "en": "Betray" }, + "Abbreviation": { + "en": "4.8.2.7" + }, "Code": "4.8.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to betraying someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37G Hand Over, Betray", "DeletedAt": null, "Predefined": true }, @@ -113774,7 +114588,22 @@ "Name": { "en": "Pray" }, + "Abbreviation": { + "en": "4.9.5.2" + }, "Code": "4.9.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to praying--talking to God.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33M Pray", "DeletedAt": null, "Predefined": true }, @@ -113783,7 +114612,22 @@ "Name": { "en": "Stingy" }, + "Abbreviation": { + "en": "6.8.3.3" + }, "Code": "6.8.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being stingy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113792,7 +114636,22 @@ "Name": { "en": "Sports" }, + "Abbreviation": { + "en": "4.2.6.2" + }, "Code": "4.2.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sports.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "526 Athletic Sports; 542 Commercialized Sports", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113801,7 +114660,22 @@ "Name": { "en": "Trouble" }, + "Abbreviation": { + "en": "4.4.2" + }, "Code": "4.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to bad things that happen in life.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "730 Social Problems; 732 Disabilities; Handicapped; 733 Alcoholism and Drug Addiction; 734 Invalidism; 735 Poverty; 736 Dependency; 737 Old Age Dependency; 738 Delinquency", + "LouwNidaCodes": "22A Trouble, Hardship, Distress; 22B Experience Trouble, Hardship; 22C Cause Trouble, Hardship; 22D Difficult, Hard; 22F Easy, Light", "DeletedAt": null, "Predefined": true }, @@ -113810,7 +114684,22 @@ "Name": { "en": "Expose falsehood" }, + "Abbreviation": { + "en": "3.5.1.3.4" + }, "Code": "3.5.1.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to exposing falsehood--to do something to show that someone has told a lie.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113819,7 +114708,22 @@ "Name": { "en": "Weaving baskets and mats" }, + "Abbreviation": { + "en": "6.6.4.2" + }, "Code": "6.6.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to weaving baskets, mats, and other things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "285 Mats and Basketry", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113828,7 +114732,22 @@ "Name": { "en": "Conveying water" }, + "Abbreviation": { + "en": "6.6.7.2" + }, "Code": "6.6.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to conveying water--moving water from one place to another place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113837,7 +114756,22 @@ "Name": { "en": "Plant" }, + "Abbreviation": { + "en": "1.5" + }, "Code": "1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for all plants. Use a book of pictures to identify plant names and the scientific name. Languages divide plants into various domains that are not always comparable from language to language. Criterial features may be characteristics (trees and bushes are distinguished by size and number of trunks) and use (grass and weeds are distinguished by their desirability). A common distinction is between trees and non-trees, with trees described as being big, woody, and having a life expectancy of several years, while non-trees are small, non-woody, and have a life expectancy of typically not more than one year (Heine, Bernd and Karsten Legere. 1995. Swahili plants. Rudiger Koppe Verlag: Koln.). Agricultural societies will divide plants into wild and cultivated. However most plants for which there are names have some use. Therefore it does not seem helpful to divide plant names into domains for useful and non-useful plants. Since only parts of plants are eaten, edible parts of plants are listed under the domain \u0027Food\u0027. Some languages may have more domains than are used in this list, others may have fewer. The classification system used here does not agree entirely with the system used by botanists. For instance botanists do not classify all the tree species together. The palm trees belong to the class Monocotyledoneae and are classified with lilies, bananas, and orchids. Apple and cherry trees belong to the class Dicotyledoneae and are classified in the rose family along with roses and blackberries. The acacia tree also belongs to the class Dicotyledoneae and is classified in the pulse family along with lupines and beans. However most folk taxonomies bring all the trees together. The scientific classification system for plants and animals is taken from: Carruth, Gorton, ed. 1989. The Volume Library, Vols. 1 and 2. The Southwestern Company: Nashville.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137 Flora", + "LouwNidaCodes": "3 Plants; 3A Plants", "DeletedAt": null, "Predefined": true }, @@ -113846,7 +114780,22 @@ "Name": { "en": "Life after death" }, + "Abbreviation": { + "en": "2.6.6.8" + }, "Code": "2.6.6.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to life after death.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "769 Cult of the Dead", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113855,7 +114804,22 @@ "Name": { "en": "Pronouns" }, + "Abbreviation": { + "en": "9.2.3" + }, "Code": "9.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the personal pronouns, including independent, subject, object, and possessive pronouns. It is best to collect all the pronouns in a chart. This way you are more certain of collecting them all and seeing how they are related to each other. A language may have more sets and more distinctions than English does, or it may have less. For instance some languages have a pronoun \u0027we\u0027 which includes the hearer, and another pronoun \u0027we\u0027 which excludes the hearer. Other languages have an indefinite pronoun that means something like the English word \u0027someone\u0027. Many languages do not have the masculine (he), feminine (she), and neuter (it) distinctions that English has. It is necessary to determine the sets and functions of the pronouns for each language.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "92 Discourse Referentials; 92A Speaker; 92B Speaker and Those Associated with the Speaker; 92C Receptor, Receptors; 92D Whom or What Spoken or Written About; 92H Emphatic Adjunct", "DeletedAt": null, "Predefined": true }, @@ -113864,7 +114828,22 @@ "Name": { "en": "Stimulant" }, + "Abbreviation": { + "en": "5.2.6" + }, "Code": "5.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to stimulants--substances that are drunk, eaten, or chewed to make a person more alert or give him more energy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "276 Recreational and Non-therapeutic Drugs; Narcotics and Stimulants", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113873,7 +114852,22 @@ "Name": { "en": "Contradict" }, + "Abbreviation": { + "en": "3.5.1.3.3" + }, "Code": "3.5.1.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to contradicting someone--to say that something someone has said is not true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33Z\u0027 Oppose, Contradict", "DeletedAt": null, "Predefined": true }, @@ -113882,7 +114876,22 @@ "Name": { "en": "Meal" }, + "Abbreviation": { + "en": "5.2.2.2" + }, "Code": "5.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a meal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113891,7 +114900,22 @@ "Name": { "en": "Garbage" }, + "Abbreviation": { + "en": "8.3.7.8.3" + }, "Code": "8.3.7.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to garbage--something that is no longer wanted.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113900,7 +114924,22 @@ "Name": { "en": "All the time" }, + "Abbreviation": { + "en": "8.4.6.6.4" + }, "Code": "8.4.6.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening all the time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113909,7 +114948,22 @@ "Name": { "en": "Anoint the body" }, + "Abbreviation": { + "en": "5.4.5" + }, "Code": "5.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to anointing the body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6U Perfumes and Incense; 47C Application and Removal of Liquids or Masses", "DeletedAt": null, "Predefined": true }, @@ -113918,7 +114972,22 @@ "Name": { "en": "Animal products" }, + "Abbreviation": { + "en": "6.3.7" + }, "Code": "6.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to animal products.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "237 Animal By-Products", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113927,7 +114996,22 @@ "Name": { "en": "Hairstyle" }, + "Abbreviation": { + "en": "5.4.3.4" + }, "Code": "5.4.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hairstyles.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113936,7 +115020,22 @@ "Name": { "en": "Widow, widower" }, + "Abbreviation": { + "en": "4.1.9.3" + }, "Code": "4.1.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to widows and widowers. Some languages also have words for a parent who has lost a child, someone who has lost a brother or sister, or a general word for someone who has lost a relative.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113945,7 +115044,22 @@ "Name": { "en": "Hide" }, + "Abbreviation": { + "en": "7.6" + }, "Code": "7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hiding things so that they cannot be seen or found, and for hiding oneself.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113954,7 +115068,22 @@ "Name": { "en": "Arrest" }, + "Abbreviation": { + "en": "4.6.6.1.1" + }, "Code": "4.6.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to arresting a criminal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37F Seize, Take into Custody", "DeletedAt": null, "Predefined": true }, @@ -113963,7 +115092,22 @@ "Name": { "en": "Collect" }, + "Abbreviation": { + "en": "6.8.2.6" + }, "Code": "6.8.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to collecting things you find interesting. In some cultures people collect rare or valuable things that they think are attractive or interesting, such as art, stamps, coins, books, or antiques.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113972,7 +115116,22 @@ "Name": { "en": "Immediately" }, + "Abbreviation": { + "en": "8.4.6.4.4" + }, "Code": "8.4.6.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening immediately--without any time passing before it happens.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68G Rapidity, Suddenness", "DeletedAt": null, "Predefined": true }, @@ -113981,7 +115140,22 @@ "Name": { "en": "Man" }, + "Abbreviation": { + "en": "2.6.5.1" + }, "Code": "2.6.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a man or any male person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "9B Males", "DeletedAt": null, "Predefined": true }, @@ -113990,7 +115164,22 @@ "Name": { "en": "Evidentials" }, + "Abbreviation": { + "en": "9.4.5" + }, "Code": "9.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate evidentials. An evidential is when the speaker indicates the source of the information on which an assertion about a situation is based. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -113999,7 +115188,22 @@ "Name": { "en": "Shake" }, + "Abbreviation": { + "en": "7.3.1.3" + }, "Code": "7.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving something back and forth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "16 Non-Linear Movement", "DeletedAt": null, "Predefined": true }, @@ -114008,7 +115212,22 @@ "Name": { "en": "Repeat" }, + "Abbreviation": { + "en": "3.5.1.2.6" + }, "Code": "3.5.1.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to repeating something--saying something a second time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114017,7 +115236,22 @@ "Name": { "en": "Make speech" }, + "Abbreviation": { + "en": "3.5.2" + }, "Code": "3.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to making a speech--to talk for a long time to many people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "537 Oratory; 544 Public Lectures", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114026,7 +115260,22 @@ "Name": { "en": "Show off" }, + "Abbreviation": { + "en": "4.3.2.4" + }, "Code": "4.3.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to showing off--to behave in a way that attracts people\u0027s attention because you want them to admire you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114035,7 +115284,22 @@ "Name": { "en": "Solve a problem" }, + "Abbreviation": { + "en": "4.4.3.5" + }, "Code": "4.4.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to solving a problem.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114044,7 +115308,22 @@ "Name": { "en": "Pass laws" }, + "Abbreviation": { + "en": "4.7.2" + }, "Code": "4.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to passing a law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114053,7 +115332,22 @@ "Name": { "en": "Limitation of topic" }, + "Abbreviation": { + "en": "9.6.2.2" + }, "Code": "9.6.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating the topic that is being talked about.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89D Specification", "DeletedAt": null, "Predefined": true }, @@ -114062,7 +115356,22 @@ "Name": { "en": "Tendency" }, + "Abbreviation": { + "en": "3.2.8" + }, "Code": "3.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that the speaker thinks that something tends to be a certain way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114071,7 +115380,22 @@ "Name": { "en": "Interval, space" }, + "Abbreviation": { + "en": "8.5.4.4" + }, "Code": "8.5.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to an interval or space between things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "209 Proxemics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114080,7 +115404,22 @@ "Name": { "en": "Season" }, + "Abbreviation": { + "en": "8.4.1.5" + }, "Code": "8.4.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to seasons of the year that are related to the time of year, the weather, or times of cultivation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114089,7 +115428,22 @@ "Name": { "en": "End a relationship" }, + "Abbreviation": { + "en": "4.1.7.1" + }, "Code": "4.1.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to ending a relationship.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114098,7 +115452,22 @@ "Name": { "en": "Buy" }, + "Abbreviation": { + "en": "6.8.4.1" + }, "Code": "6.8.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to buying something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "432 Buying and Selling", + "LouwNidaCodes": "57O Sell, Buy, Price", "DeletedAt": null, "Predefined": true }, @@ -114107,7 +115476,22 @@ "Name": { "en": "Working with land" }, + "Abbreviation": { + "en": "6.6.6" + }, "Code": "6.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with land.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "311 Land Use; 332 Earth Moving", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114116,7 +115500,22 @@ "Name": { "en": "Recently" }, + "Abbreviation": { + "en": "8.4.6.2.1" + }, "Code": "8.4.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something happened recently--a short time before now.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114125,7 +115524,22 @@ "Name": { "en": "Illegitimate child" }, + "Abbreviation": { + "en": "4.1.9.5" + }, "Code": "4.1.9.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an illegitimate child.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "848 Illegitimacy", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114134,7 +115548,22 @@ "Name": { "en": "Knock over" }, + "Abbreviation": { + "en": "7.3.1.4" + }, "Code": "7.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to knocking something over so that it falls, and for knocking a container over so that it spills its contents.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114143,7 +115572,22 @@ "Name": { "en": "Neglect plants" }, + "Abbreviation": { + "en": "6.2.4.5" + }, "Code": "6.2.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to neglecting plants.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114152,7 +115596,22 @@ "Name": { "en": "Common" }, + "Abbreviation": { + "en": "8.3.5.3" + }, "Code": "8.3.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is common.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114161,7 +115620,22 @@ "Name": { "en": "Dead things" }, + "Abbreviation": { + "en": "1.4.1" + }, "Code": "1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to dead things--things that were alive before, but aren\u0027t now.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114170,7 +115644,22 @@ "Name": { "en": "Save from trouble" }, + "Abbreviation": { + "en": "4.4.4.4" + }, "Code": "4.4.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to saving someone or something from trouble (something bad is happening) or danger (something bad will happen).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "21C Safe, Free from Danger; 21D Become Safe, Free from Danger; 21E Cause To Be Safe, Free from Danger", "DeletedAt": null, "Predefined": true }, @@ -114179,7 +115668,22 @@ "Name": { "en": "Be about, subject" }, + "Abbreviation": { + "en": "3.5.1.2.9" + }, "Code": "3.5.1.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that express the idea that something (said, written, thought, or made) depicts or is about a subject, or that something is logically related to some topic. Also use this domain for words that mark the topic or subject of what is being thought about, talked about, or written about. Verbs of thinking, knowing, or speaking (including other types of expression) can take a \u0027topic\u0027 role. We can think of a \u0027topic\u0027 as the main idea. Use this domain also for the important thing in a picture.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114188,7 +115692,22 @@ "Name": { "en": "Mark" }, + "Abbreviation": { + "en": "7.7.7" + }, "Code": "7.7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to making a mark on something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114197,7 +115716,22 @@ "Name": { "en": "Telling time" }, + "Abbreviation": { + "en": "8.4.4" + }, "Code": "8.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to telling time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114206,7 +115740,22 @@ "Name": { "en": "Know" }, + "Abbreviation": { + "en": "3.2.3" + }, "Code": "3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the results of thinking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "28 Know; 28A Know; 28B Known", "DeletedAt": null, "Predefined": true }, @@ -114215,7 +115764,22 @@ "Name": { "en": "Monetary units" }, + "Abbreviation": { + "en": "6.8.6.1" + }, "Code": "6.8.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to monetary units.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114224,7 +115788,22 @@ "Name": { "en": "Lose wealth" }, + "Abbreviation": { + "en": "6.8.2.3" + }, "Code": "6.8.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to losing wealth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114233,7 +115812,22 @@ "Name": { "en": "Line" }, + "Abbreviation": { + "en": "8.3.1.2" + }, "Code": "8.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a line.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114242,7 +115836,22 @@ "Name": { "en": "Shape" }, + "Abbreviation": { + "en": "8.3.1" + }, "Code": "8.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to the shape of something, and for general words referring to changing the shape of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79W Shapes; 79R Two-Dimensional and Three-Dimensional Shapes", "DeletedAt": null, "Predefined": true }, @@ -114251,7 +115860,22 @@ "Name": { "en": "Join, attach" }, + "Abbreviation": { + "en": "7.5.2" + }, "Code": "7.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to joining two or more things together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "18 Attachment; 18B Fasten, Stick To; 63B Unite", "DeletedAt": null, "Predefined": true }, @@ -114260,7 +115884,22 @@ "Name": { "en": "Start again" }, + "Abbreviation": { + "en": "8.4.7.2" + }, "Code": "8.4.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to starting to do something after stopping for some time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114269,7 +115908,22 @@ "Name": { "en": "Working with stone" }, + "Abbreviation": { + "en": "6.6.2.7" + }, "Code": "6.6.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with stone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "324 Lithic Industries; Stone Industry", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114278,7 +115932,22 @@ "Name": { "en": "Feast" }, + "Abbreviation": { + "en": "5.2.2.3" + }, "Code": "5.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a feast.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114287,7 +115956,22 @@ "Name": { "en": "Thin person" }, + "Abbreviation": { + "en": "8.2.3.3" + }, "Code": "8.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a person or animal who is thin.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81D Narrow, Wide", "DeletedAt": null, "Predefined": true }, @@ -114296,7 +115980,22 @@ "Name": { "en": "Funeral" }, + "Abbreviation": { + "en": "2.6.6.3" + }, "Code": "2.6.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a funeral and other things that are done after a person dies.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "764 Burial Practices and Funerals", + "LouwNidaCodes": "52 Funerals and Burial", "DeletedAt": null, "Predefined": true }, @@ -114305,7 +116004,22 @@ "Name": { "en": "Become, change state" }, + "Abbreviation": { + "en": "9.1.1.2" + }, "Code": "9.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Many languages have general words that indicate some kind of change of state. These general words may be used with a wide variety of specific meanings. For instance in English the word \u0027become\u0027 may be used to a change in identity, a change in characteristic, a change in nature, and many other ideas.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "13B Change of State", "DeletedAt": null, "Predefined": true }, @@ -114314,7 +116028,22 @@ "Name": { "en": "Forward" }, + "Abbreviation": { + "en": "8.5.2.1" + }, "Code": "8.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a forward direction.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114323,7 +116052,22 @@ "Name": { "en": "Names of continents" }, + "Abbreviation": { + "en": "9.7.2.6" + }, "Code": "9.7.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the continents. Only include the names of continents if your language has borrowed or adapted the name and you talk about them in your language.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114332,7 +116076,22 @@ "Name": { "en": "Under, below" }, + "Abbreviation": { + "en": "8.5.1.3.2" + }, "Code": "8.5.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that express the idea that something is under another thing. The concept \u0027under\u0027 is inherently relational, expressing the relative positions of two things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114341,7 +116100,22 @@ "Name": { "en": "Musician" }, + "Abbreviation": { + "en": "4.2.3.4" + }, "Code": "4.2.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a musician.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114350,7 +116124,22 @@ "Name": { "en": "Hungry, thirsty" }, + "Abbreviation": { + "en": "5.2.2.5" + }, "Code": "5.2.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being hungry or thirsty.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "261 Gratification and Control of Hunger; 271 Water and Thirst", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114359,7 +116148,22 @@ "Name": { "en": "Parts of an insect" }, + "Abbreviation": { + "en": "1.6.2.4" + }, "Code": "1.6.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of an insect.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114368,7 +116172,22 @@ "Name": { "en": "Protect" }, + "Abbreviation": { + "en": "4.4.4.5" + }, "Code": "4.4.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to protecting someone from danger or being hurt.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114377,7 +116196,22 @@ "Name": { "en": "Press" }, + "Abbreviation": { + "en": "7.7.4" + }, "Code": "7.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to pressing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19E Press", "DeletedAt": null, "Predefined": true }, @@ -114386,7 +116220,22 @@ "Name": { "en": "Most, least" }, + "Abbreviation": { + "en": "8.1.5.5" + }, "Code": "8.1.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the most--the largest number or amount; or the least--the smallest number or amount. Most/least may refer to the largest/smallest number possible or needed. If there are several groups being counted, most/least may refer to the largest/smallest group.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114395,7 +116244,22 @@ "Name": { "en": "Lie down" }, + "Abbreviation": { + "en": "7.1.3" + }, "Code": "7.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to lying down.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "17G Lie x; 17F Recline x", "DeletedAt": null, "Predefined": true }, @@ -114404,7 +116268,22 @@ "Name": { "en": "Short, not tall" }, + "Abbreviation": { + "en": "8.2.2.3" + }, "Code": "8.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being short in height.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81C Long, Short, Far", "DeletedAt": null, "Predefined": true }, @@ -114413,7 +116292,22 @@ "Name": { "en": "Mountain" }, + "Abbreviation": { + "en": "1.2.1.1" + }, "Code": "1.2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to mountains.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1G Elevated Land Formations", "DeletedAt": null, "Predefined": true }, @@ -114422,7 +116316,22 @@ "Name": { "en": "Independent person" }, + "Abbreviation": { + "en": "4.1.6.4" + }, "Code": "4.1.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing an independent person--someone who does things without other people\u0027s help.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114431,7 +116340,22 @@ "Name": { "en": "Leaning, sloping" }, + "Abbreviation": { + "en": "8.3.1.4.2" + }, "Code": "8.3.1.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a leaning orientation in relation to the ground, or a surface that is sloping.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114440,7 +116364,22 @@ "Name": { "en": "Dry" }, + "Abbreviation": { + "en": "1.3.3.1" + }, "Code": "1.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is dry.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79O Wet, Dry; 47C Application and Removal of Liquids or Masses; 79O Wet, Dry", "DeletedAt": null, "Predefined": true }, @@ -114449,7 +116388,22 @@ "Name": { "en": "Peace" }, + "Abbreviation": { + "en": "4.8.4" + }, "Code": "4.8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to peace--when people or countries are not fighting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88N Peaceful Behavior", "DeletedAt": null, "Predefined": true }, @@ -114458,7 +116412,22 @@ "Name": { "en": "Cordage" }, + "Abbreviation": { + "en": "6.6.4.1" + }, "Code": "6.6.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with cords and ropes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "283 Cordage; 284 Knots and Lashing", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114467,7 +116436,22 @@ "Name": { "en": "Management" }, + "Abbreviation": { + "en": "6.9.1" + }, "Code": "6.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to managing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "429 Administration", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114476,7 +116460,22 @@ "Name": { "en": "Dive" }, + "Abbreviation": { + "en": "7.2.4.2.3" + }, "Code": "7.2.4.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving under the water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114485,7 +116484,22 @@ "Name": { "en": "Art" }, + "Abbreviation": { + "en": "6.6.5" + }, "Code": "6.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to art.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "530 Fine Arts; 531 Decorative Art; 5311 Visual Arts; 532 Representative Art; 543 Exhibitions", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114494,7 +116508,22 @@ "Name": { "en": "Acquit" }, + "Abbreviation": { + "en": "4.7.6.1" + }, "Code": "4.7.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to acquitting a person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114503,7 +116532,22 @@ "Name": { "en": "Lazy" }, + "Abbreviation": { + "en": "6.1.2.4.2" + }, "Code": "6.1.2.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being lazy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88F\u0027 Laziness, Idleness", "DeletedAt": null, "Predefined": true }, @@ -114512,7 +116556,22 @@ "Name": { "en": "Copy" }, + "Abbreviation": { + "en": "8.3.5.6" + }, "Code": "8.3.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to copying something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114521,7 +116580,22 @@ "Name": { "en": "Pay" }, + "Abbreviation": { + "en": "6.8.4.5" + }, "Code": "6.8.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to paying money for something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57L Pay, Price, Cost", "DeletedAt": null, "Predefined": true }, @@ -114530,7 +116604,22 @@ "Name": { "en": "Time of the day" }, + "Abbreviation": { + "en": "8.4.1.2.3" + }, "Code": "8.4.1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a time of the day.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67 Points of Time; 67D A Point of Time with Reference to Units of Time: Daybreak, Midday, Midnight, Late", "DeletedAt": null, "Predefined": true }, @@ -114539,7 +116628,22 @@ "Name": { "en": "Search" }, + "Abbreviation": { + "en": "7.6.1" + }, "Code": "7.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to searching for something that has been hidden or lost.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114548,7 +116652,22 @@ "Name": { "en": "Young" }, + "Abbreviation": { + "en": "8.4.6.5.1" + }, "Code": "8.4.6.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something young--a word describing a living thing that has only existed for a short time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114557,7 +116676,22 @@ "Name": { "en": "Different" }, - "Code": "8.3.5.2.3", + "Abbreviation": { + "en": "8.3.5.2.3" + }, + "Code": "8.3.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing two things that are different--not the same.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58F Different Kind or Class", "DeletedAt": null, "Predefined": true }, @@ -114566,7 +116700,22 @@ "Name": { "en": "Exist" }, + "Abbreviation": { + "en": "9.1.1.1" + }, "Code": "9.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something exists.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "13C Exist", "DeletedAt": null, "Predefined": true }, @@ -114575,7 +116724,22 @@ "Name": { "en": "Interrupt" }, + "Abbreviation": { + "en": "8.4.7.1" + }, "Code": "8.4.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to interrupting someone--speaking when someone is speaking, or doing something to stop someone from doing what they are doing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114584,7 +116748,22 @@ "Name": { "en": "Busy" }, + "Abbreviation": { + "en": "6.1.2.3.3" + }, "Code": "6.1.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being busy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114593,7 +116772,22 @@ "Name": { "en": "Agricultural tool" }, + "Abbreviation": { + "en": "6.2.8" + }, "Code": "6.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to agricultural tools.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6B Instruments Used in Agriculture and Husbandry", "DeletedAt": null, "Predefined": true }, @@ -114602,7 +116796,22 @@ "Name": { "en": "Male, female" }, + "Abbreviation": { + "en": "2.6.5" + }, "Code": "2.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to male and female people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79V Male, Female", "DeletedAt": null, "Predefined": true }, @@ -114611,7 +116820,22 @@ "Name": { "en": "Listen" }, + "Abbreviation": { + "en": "2.3.2.1" + }, "Code": "2.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to listening--to deliberately hear something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114620,7 +116844,22 @@ "Name": { "en": "Number series" }, + "Abbreviation": { + "en": "8.1.1.7" + }, "Code": "8.1.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for other series of numbers that are different from those in the previous domains.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114629,7 +116868,22 @@ "Name": { "en": "Surprise" }, + "Abbreviation": { + "en": "3.4.1.3" + }, "Code": "3.4.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling surprised--to feel something when something unexpected, unusual, or amazing happens.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25T Surprise, Astonish", "DeletedAt": null, "Predefined": true }, @@ -114638,7 +116892,22 @@ "Name": { "en": "First fruits" }, + "Abbreviation": { + "en": "6.2.5.1" + }, "Code": "6.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the first fruits or crops to be harvested.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114647,7 +116916,22 @@ "Name": { "en": "Relationships" }, + "Abbreviation": { + "en": "4.1" + }, "Code": "4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to relationships between people and groups of people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "570 Interpersonal Relations", + "LouwNidaCodes": "34 Association; 34A Associate; 89T Association; 89A Relation; 89Z Mediation", "DeletedAt": null, "Predefined": true }, @@ -114656,7 +116940,22 @@ "Name": { "en": "Plural" }, + "Abbreviation": { + "en": "8.1.3" + }, "Code": "8.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words and affixes that indicate that there is more than one of something. Some languages, such as Indo-European languages, indicate plural with an affix. Other languages, such as Austronesian languages, use a separate word. Some languages also have words or affixes that indicate that there are two of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114665,7 +116964,22 @@ "Name": { "en": "Risk" }, + "Abbreviation": { + "en": "4.4.4.8" + }, "Code": "4.4.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to risk--exposing oneself or something to danger.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "21B Expose Oneself to Danger", "DeletedAt": null, "Predefined": true }, @@ -114674,7 +116988,22 @@ "Name": { "en": "Condemn, find guilty" }, + "Abbreviation": { + "en": "4.7.6.2" + }, "Code": "4.7.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to condemning someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114683,7 +117012,22 @@ "Name": { "en": "Tree" }, + "Abbreviation": { + "en": "1.5.1" + }, "Code": "1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for trees--flowering plants with roots, stems, and leaves, which are large and have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the evergreen trees (Phylum Spermatophyta, Subdivision Gymnospermae). Evergreen trees do not have flowers, but have cone like fruits (pinecones) that contain seeds. Their leaves are shaped like needles and are retained for over a year.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137d Trees and wood", + "LouwNidaCodes": "3B Trees", "DeletedAt": null, "Predefined": true }, @@ -114692,7 +117036,22 @@ "Name": { "en": "Semantically similar events" }, + "Abbreviation": { + "en": "9.5.2" + }, "Code": "9.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for words that join semantically similar events into one sentence. Each sentence is actually reporting two or more situations, which may differ in one or two respects. The words to be included in these domains indicate that two situations are being reported, or mark the differences between the two situations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114701,7 +117060,22 @@ "Name": { "en": "Conform" }, + "Abbreviation": { + "en": "4.3.8.1" + }, "Code": "4.3.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to conforming to the behavior of others--to try to behave the same way as other people, or to try to behave the way other people want you to act.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114710,7 +117084,22 @@ "Name": { "en": "Rock" }, + "Abbreviation": { + "en": "1.2.2.2" + }, "Code": "1.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to rock.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "2E Earth, Mud, Sand, Rock", "DeletedAt": null, "Predefined": true }, @@ -114719,7 +117108,22 @@ "Name": { "en": "Provide for, support" }, + "Abbreviation": { + "en": "4.3.4.5.1" + }, "Code": "4.3.4.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to providing someone with what they need to live each day, such as providing for an elderly parent who can no longer earn what they need.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "35C Provide For, Support", "DeletedAt": null, "Predefined": true }, @@ -114728,7 +117132,22 @@ "Name": { "en": "Disbelief" }, + "Abbreviation": { + "en": "3.2.5.2" + }, "Code": "3.2.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to not believing something or someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114737,7 +117156,22 @@ "Name": { "en": "Eat" }, + "Abbreviation": { + "en": "5.2.2" + }, "Code": "5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to eating.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "260 Food Consumption; 262 Diet; 264 Eating", + "LouwNidaCodes": "23A Eat, Drink", "DeletedAt": null, "Predefined": true }, @@ -114746,7 +117180,22 @@ "Name": { "en": "Price" }, + "Abbreviation": { + "en": "6.8.4.3" + }, "Code": "6.8.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the price of something--how much money you have to pay to buy something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "435 Price and Value", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114755,7 +117204,22 @@ "Name": { "en": "Daily life" }, + "Abbreviation": { + "en": "5" + }, "Code": "5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to daily life at home.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "46 Household Activities", "DeletedAt": null, "Predefined": true }, @@ -114764,7 +117228,22 @@ "Name": { "en": "Countryside" }, + "Abbreviation": { + "en": "4.6.7.3" + }, "Code": "4.6.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the countryside--the area away from a city", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1M Areas Which Are Uninhabited or Only Sparsely Populated", "DeletedAt": null, "Predefined": true }, @@ -114773,7 +117252,22 @@ "Name": { "en": "Uninterested, bored" }, + "Abbreviation": { + "en": "3.4.1.4.6" + }, "Code": "3.4.1.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling uninterested or bored--when someone is not interested in something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114782,7 +117276,22 @@ "Name": { "en": "Square" }, + "Abbreviation": { + "en": "8.3.1.7" + }, "Code": "8.3.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being square.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114791,7 +117300,22 @@ "Name": { "en": "Wood" }, + "Abbreviation": { + "en": "6.6.3.2" + }, "Code": "6.6.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to wood.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "314 Forest Products", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114800,7 +117324,22 @@ "Name": { "en": "Shy, timid" }, + "Abbreviation": { + "en": "3.4.2.4.3" + }, "Code": "3.4.2.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling shy--to feel bad (afraid) when you are with people because you think they might think something bad about you if you say or do something (for instance, being afraid to talk, feeling inadequate to do what is required in a social situation, or not feeling as good as other people).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114809,7 +117348,22 @@ "Name": { "en": "Move quickly" }, + "Abbreviation": { + "en": "7.2.1.2" + }, "Code": "7.2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving quickly or slowly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15A\u0027 Movement with Speed x; 15B\u0027 Goal-Oriented Movement", "DeletedAt": null, "Predefined": true }, @@ -114818,7 +117372,22 @@ "Name": { "en": "Treat disease" }, + "Abbreviation": { + "en": "2.5.7" + }, "Code": "2.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the treatment of disease and injury.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "742 Medical Research; 751 Preventive Medicine; 757 Medical Therapy; 758 Medical Care", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114827,7 +117396,22 @@ "Name": { "en": "Recover from sickness" }, + "Abbreviation": { + "en": "2.5.1.1" + }, "Code": "2.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to recovering from sickness or injury.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114836,7 +117420,22 @@ "Name": { "en": "Curse" }, + "Abbreviation": { + "en": "4.9.4.4" + }, "Code": "4.9.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cursing someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33C\u0022 Bless, Curse", "DeletedAt": null, "Predefined": true }, @@ -114845,7 +117444,22 @@ "Name": { "en": "To a small degree" }, + "Abbreviation": { + "en": "9.3.1.2" + }, "Code": "9.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a small degree.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "78A Much, Little", "DeletedAt": null, "Predefined": true }, @@ -114854,7 +117468,22 @@ "Name": { "en": "Night" }, + "Abbreviation": { + "en": "8.4.1.2.1" + }, "Code": "8.4.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to night.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114863,7 +117492,22 @@ "Name": { "en": "Dog" }, + "Abbreviation": { + "en": "6.3.1.5" + }, "Code": "6.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dogs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114872,7 +117516,22 @@ "Name": { "en": "Change something" }, + "Abbreviation": { + "en": "9.1.2.6" + }, "Code": "9.1.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to someone changing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114881,7 +117540,22 @@ "Name": { "en": "Near" }, + "Abbreviation": { + "en": "8.2.6.2" + }, "Code": "8.2.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is near something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83E At, Beside, Near, Far x", "DeletedAt": null, "Predefined": true }, @@ -114890,7 +117564,22 @@ "Name": { "en": "Refuse to do something" }, + "Abbreviation": { + "en": "3.3.2.2" + }, "Code": "3.3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to refusing to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114899,7 +117588,22 @@ "Name": { "en": "Announce" }, + "Abbreviation": { + "en": "3.5.1.2.1" + }, "Code": "3.5.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to announcing something--communicating something to many people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114908,7 +117612,22 @@ "Name": { "en": "Important" }, + "Abbreviation": { + "en": "8.3.7.5" + }, "Code": "8.3.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is important.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "65F Important, Unimportant", "DeletedAt": null, "Predefined": true }, @@ -114917,7 +117636,22 @@ "Name": { "en": "Patient-related cases" }, + "Abbreviation": { + "en": "9.5.3" + }, "Code": "9.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for cases that bear a relationship to the \u0027Patient\u0027 of a proposition.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114926,7 +117660,22 @@ "Name": { "en": "Take something from somewhere" }, + "Abbreviation": { + "en": "7.3.3.1" + }, "Code": "7.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to taking something or someone from its place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114935,7 +117684,22 @@ "Name": { "en": "Christianity" }, + "Abbreviation": { + "en": "4.9.7.2" + }, "Code": "4.9.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words used in Christianity.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114944,7 +117708,22 @@ "Name": { "en": "Newspaper" }, + "Abbreviation": { + "en": "3.5.9.3" + }, "Code": "3.5.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to newspapers and magazines.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "203 Dissemination of News and Information; 204 Press", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114953,7 +117732,22 @@ "Name": { "en": "React, respond" }, + "Abbreviation": { + "en": "9.1.2.2" + }, "Code": "9.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to reacting or responding to something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114962,7 +117756,22 @@ "Name": { "en": "Manner of eating" }, + "Abbreviation": { + "en": "5.2.2.4" + }, "Code": "5.2.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing the manner in which a person eats.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114971,7 +117780,22 @@ "Name": { "en": "Plan a time" }, + "Abbreviation": { + "en": "8.4.4.1" + }, "Code": "8.4.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to planning the time of an event.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114980,7 +117804,22 @@ "Name": { "en": "Often" }, + "Abbreviation": { + "en": "8.4.6.6.3" + }, "Code": "8.4.6.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening often--happening or done many times.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114989,7 +117828,22 @@ "Name": { "en": "Move in a direction" }, + "Abbreviation": { + "en": "7.2.2" + }, "Code": "7.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use the domains in this section for words referring to moving in a direction related to the orientation of the person\u0027s body (not in relation to the position of the destination).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -114998,7 +117852,22 @@ "Name": { "en": "Decorated" }, + "Abbreviation": { + "en": "8.3.8" + }, "Code": "8.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is decorated.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "353 Building Interiors and Arrangement; Interior Decoration and Arrangement", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115007,7 +117876,22 @@ "Name": { "en": "Citizen" }, + "Abbreviation": { + "en": "4.6.2" + }, "Code": "4.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a citizen of a country.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "641 Citizenship; 160 Demography; 161 Population; 162 Composition of Population; 163 Birth Statistics; 164 Morbidity; 165 Mortality; 168 Population Policy", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115016,7 +117900,22 @@ "Name": { "en": "Without result " }, + "Abbreviation": { + "en": "9.6.2.6.1" + }, "Code": "9.6.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something had no result.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89H Result", "DeletedAt": null, "Predefined": true }, @@ -115025,7 +117924,22 @@ "Name": { "en": "Growing cassava" }, + "Abbreviation": { + "en": "6.2.1.2.2" + }, "Code": "6.2.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing cassava.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115034,7 +117948,22 @@ "Name": { "en": "Reflexive pronouns" }, + "Abbreviation": { + "en": "9.2.3.1" + }, "Code": "9.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for pronouns that refer back to the subject of the sentence. These pronouns should be added to the chart of personal pronouns.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "92E Reciprocal Reference", "DeletedAt": null, "Predefined": true }, @@ -115043,7 +117972,22 @@ "Name": { "en": "Think so" }, + "Abbreviation": { + "en": "9.4.4.6.1" + }, "Code": "9.4.4.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that you think something is true, but you are not completely sure about it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "31E Suppose, Think Possible", "DeletedAt": null, "Predefined": true }, @@ -115052,7 +117996,22 @@ "Name": { "en": "Association" }, + "Abbreviation": { + "en": "9.6.1.3" + }, "Code": "9.6.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating an association between two things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115061,7 +118020,22 @@ "Name": { "en": "Imprison" }, + "Abbreviation": { + "en": "4.7.7.3" + }, "Code": "4.7.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to imprisoning someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "697 Prisons and Jails", + "LouwNidaCodes": "37H Imprison; 37I Guard, Watch Over", "DeletedAt": null, "Predefined": true }, @@ -115070,7 +118044,22 @@ "Name": { "en": "Light a fire" }, + "Abbreviation": { + "en": "5.5.1" + }, "Code": "5.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lighting a fire.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115079,7 +118068,22 @@ "Name": { "en": "Food from seeds" }, + "Abbreviation": { + "en": "5.2.3.1.1" + }, "Code": "5.2.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to food from seeds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115088,7 +118092,22 @@ "Name": { "en": "Below standard" }, + "Abbreviation": { + "en": "4.3.1.2.1" + }, "Code": "4.3.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to behaving below a standard.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115097,7 +118116,22 @@ "Name": { "en": "Prophecy" }, + "Abbreviation": { + "en": "4.9.4.6" + }, "Code": "4.9.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to speaking for God, including foretelling the future through divine knowledge.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33A\u0022 Prophesy; 33X Foretell, Tell Fortunes", "DeletedAt": null, "Predefined": true }, @@ -115106,7 +118140,22 @@ "Name": { "en": "Known, unknown" }, + "Abbreviation": { + "en": "3.2.3.1" + }, "Code": "3.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe whether or not something is known.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "28C Well Known, Clearly Shown, Revealed; 28D Able To Be Known; 28E Not Able To Be Known, Secret", "DeletedAt": null, "Predefined": true }, @@ -115115,7 +118164,22 @@ "Name": { "en": "Call" }, + "Abbreviation": { + "en": "3.5.1.4.1" + }, "Code": "3.5.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to calling someone--to say something loud because you want someone who is far away to listen to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33C\u0027 Call", "DeletedAt": null, "Predefined": true }, @@ -115124,7 +118188,22 @@ "Name": { "en": "Period of time" }, + "Abbreviation": { + "en": "8.4.1" + }, "Code": "8.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a period of time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67 Units of Time; 67H Indefinite Units of Time: Age, Lifetime, Interval, Period; 67I Definite Units of Time: Year, Month, Week, Day, Hour", "DeletedAt": null, "Predefined": true }, @@ -115133,7 +118212,22 @@ "Name": { "en": "Ocean, lake" }, + "Abbreviation": { + "en": "1.3.1.1" + }, "Code": "1.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to bodies of standing water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115142,7 +118236,22 @@ "Name": { "en": "Adornment" }, + "Abbreviation": { + "en": "5.4" + }, "Code": "5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to adornment.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "300 Adornment; 515 Personal Hygiene; 302 Toilet; 305 Beauty Specialists", + "LouwNidaCodes": "49 Activities Involving Clothing and Adorning", "DeletedAt": null, "Predefined": true }, @@ -115151,7 +118260,22 @@ "Name": { "en": "Markers of focus" }, + "Abbreviation": { + "en": "9.6.3.6" + }, "Code": "9.6.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that one of several things is in focus.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115160,7 +118284,22 @@ "Name": { "en": "Determined" }, + "Abbreviation": { + "en": "3.3.1.6" + }, "Code": "3.3.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being determined to do something--deciding to do something and not letting anything stop you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25O Patience, Endurance, Perseverance; 25F Be Eager, Be Earnest, In a Devoted Manner", "DeletedAt": null, "Predefined": true }, @@ -115169,7 +118308,22 @@ "Name": { "en": "Move down" }, + "Abbreviation": { + "en": "7.2.2.5" + }, "Code": "7.2.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving in a downward direction or to moving to a lower place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15K Come/Go Down, Descend", "DeletedAt": null, "Predefined": true }, @@ -115178,7 +118332,22 @@ "Name": { "en": "Travel in space" }, + "Abbreviation": { + "en": "7.2.4.4" + }, "Code": "7.2.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to traveling in space.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115187,7 +118356,22 @@ "Name": { "en": "Lack" }, + "Abbreviation": { + "en": "8.1.7.2" + }, "Code": "8.1.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having insufficient--to not have enough.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57E Need, Lack", "DeletedAt": null, "Predefined": true }, @@ -115196,7 +118380,22 @@ "Name": { "en": "Tend herds in fields" }, + "Abbreviation": { + "en": "6.3.2" + }, "Code": "6.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tending a herd in the fields.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "233 Pastoral Activities", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115205,7 +118404,22 @@ "Name": { "en": "Evaluate, test" }, + "Abbreviation": { + "en": "3.2.2.3" + }, "Code": "3.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the process of determining the truth or falsehood of something, or for determining the nature or value of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "125 Tests and Schedules Administered In the Field; 208 Public Opinion", + "LouwNidaCodes": "30G To Distinguish, To Evaluate, To Judge", "DeletedAt": null, "Predefined": true }, @@ -115214,7 +118428,22 @@ "Name": { "en": "Test" }, + "Abbreviation": { + "en": "3.6.7" + }, "Code": "3.6.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a test.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115223,7 +118452,22 @@ "Name": { "en": "Era" }, + "Abbreviation": { + "en": "8.4.1.7" + }, "Code": "8.4.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an era--a very long period of time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115232,7 +118476,22 @@ "Name": { "en": "Police" }, + "Abbreviation": { + "en": "4.6.6.1" + }, "Code": "4.6.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the police.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "625 Police", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115241,7 +118500,22 @@ "Name": { "en": "Hide your thoughts" }, + "Abbreviation": { + "en": "3.5.1.5.3" + }, "Code": "3.5.1.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hiding your thoughts.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115250,7 +118524,22 @@ "Name": { "en": "Animal color, marking" }, + "Abbreviation": { + "en": "8.3.3.3.5" + }, "Code": "8.3.3.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to animal colors and markings.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115259,7 +118548,22 @@ "Name": { "en": "Hard, firm" }, + "Abbreviation": { + "en": "8.3.6.2" + }, "Code": "8.3.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe something that is hard--not easily cut, or broken.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115268,7 +118572,22 @@ "Name": { "en": "Lose a fight" }, + "Abbreviation": { + "en": "4.8.3.3" + }, "Code": "4.8.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to losing a fight.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115277,7 +118596,22 @@ "Name": { "en": "Show hospitality" }, + "Abbreviation": { + "en": "4.2.1.4.2" + }, "Code": "4.2.1.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to showing hospitality to a visitor.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "576 Etiquette", + "LouwNidaCodes": "34H Show Hospitality", "DeletedAt": null, "Predefined": true }, @@ -115286,7 +118620,22 @@ "Name": { "en": "Animal home" }, + "Abbreviation": { + "en": "1.6.5" + }, "Code": "1.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for animal homes. It is necessary to think through the homes of each type of animal, especially the important ones.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136e Homes", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115295,7 +118644,22 @@ "Name": { "en": "Growing coconuts" }, + "Abbreviation": { + "en": "6.2.1.7.1" + }, "Code": "6.2.1.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing coconuts.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115304,7 +118668,22 @@ "Name": { "en": "Soil, dirt" }, + "Abbreviation": { + "en": "1.2.2.1" + }, "Code": "1.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to soil and dirt.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "134 Soil", + "LouwNidaCodes": "2E Earth, Mud, Sand, Rock", "DeletedAt": null, "Predefined": true }, @@ -115313,7 +118692,22 @@ "Name": { "en": "Blow air" }, + "Abbreviation": { + "en": "1.1.2.1" + }, "Code": "1.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to causing air to move.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115322,7 +118716,22 @@ "Name": { "en": "Science" }, + "Abbreviation": { + "en": "3.6.6" + }, "Code": "3.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to science.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "378 Atomic Energy; 810 Sciences and Humanities; Exact Knowledge; 811 Logic; 812 Philosophy; 813 Scientific Method; 814 Humanistic Studies; 815 Science; 816 Applied Science; 820 Ideas about Nature and People; Ideas about Nature and Man; 821 Ethnometeorology; 822 Ethnophysics; 823 Ethnogeography; 824 Ethnobotany; 825 Ethnozoology; 826 Ethnoanatomy; 827 Ethnophysiology; 828 Ethnopyschology; 829 Ethnosociology", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115331,7 +118740,22 @@ "Name": { "en": "Hostility" }, + "Abbreviation": { + "en": "4.8.1" + }, "Code": "4.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "The words in this domain describe a situation in which people disagree about something so strongly that they might start fighting. But these words imply that they have not started fighting yet.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "578 Ingroup Antagonisms", + "LouwNidaCodes": "39 Hostility, Strife; 39E Strife, Struggle", "DeletedAt": null, "Predefined": true }, @@ -115340,7 +118764,22 @@ "Name": { "en": "Aspectual time" }, + "Abbreviation": { + "en": "8.4.6" + }, "Code": "8.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a time period that is part of a longer time period.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68 Aspect; 67 Duration of Time; 67F Duration of Time with Reference to Some Point of Time: Until, Delay, Still, From", "DeletedAt": null, "Predefined": true }, @@ -115349,7 +118788,22 @@ "Name": { "en": "Proud" }, + "Abbreviation": { + "en": "4.3.2.3" + }, "Code": "4.3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being proud--to think that something or someone is very good and to feel very good about them, especially to think and feel very good about yourself--to think that you are better than others, to think that you are better than you really are, or to talk and act as if you were better than other people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88A\u0027 Arrogance, Haughtiness, Pride", "DeletedAt": null, "Predefined": true }, @@ -115358,7 +118812,22 @@ "Name": { "en": "Purpose " }, + "Abbreviation": { + "en": "9.6.2.7" + }, "Code": "9.6.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something was done for the purpose of another thing happening.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89I Purpose", "DeletedAt": null, "Predefined": true }, @@ -115367,7 +118836,22 @@ "Name": { "en": "House" }, + "Abbreviation": { + "en": "6.5.1.1" + }, "Code": "6.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to a house where people live.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115376,7 +118860,22 @@ "Name": { "en": "Accompany" }, + "Abbreviation": { + "en": "7.2.5" + }, "Code": "7.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving with someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15T Follow, Accompany; 15S Come/Go With, Travel With", "DeletedAt": null, "Predefined": true }, @@ -115385,7 +118884,22 @@ "Name": { "en": "Trap" }, + "Abbreviation": { + "en": "6.4.2" + }, "Code": "6.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to trapping an animal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "224 Hunting and Trapping", + "LouwNidaCodes": "6E Traps, Snares", "DeletedAt": null, "Predefined": true }, @@ -115394,7 +118908,22 @@ "Name": { "en": "Growing grass" }, + "Abbreviation": { + "en": "6.2.1.5" + }, "Code": "6.2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing grass, such as sod, hay, alfalfa, bamboo, papyrus, sugarcane, and tobacco. If one type of grass is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for sugarcane and tobacco, since they are so common around the world.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "246 Forage Crops", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115403,7 +118932,22 @@ "Name": { "en": "Pursue" }, + "Abbreviation": { + "en": "7.2.6" + }, "Code": "7.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pursuing someone--to follow someone in order to catch them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15U Pursue, Follow", "DeletedAt": null, "Predefined": true }, @@ -115412,7 +118956,22 @@ "Name": { "en": "Twist, wring" }, + "Abbreviation": { + "en": "8.3.1.5.2" + }, "Code": "8.3.1.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to twisting something--to take something long and turn one end one way and the other end the other way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115421,7 +118980,22 @@ "Name": { "en": "Tear down" }, + "Abbreviation": { + "en": "7.9.2" + }, "Code": "7.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to tearing down buildings and other structures.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115430,7 +119004,22 @@ "Name": { "en": "Unsure" }, + "Abbreviation": { + "en": "9.4.4.6" + }, "Code": "9.4.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to not feeling sure about something or someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115439,7 +119028,22 @@ "Name": { "en": "Right, left" }, + "Abbreviation": { + "en": "8.5.2.3" + }, "Code": "8.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to right and left.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115448,7 +119052,22 @@ "Name": { "en": "Body" }, + "Abbreviation": { + "en": "2.1" + }, "Code": "2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for the whole human body, and general words for any part of the body. Use a drawing or photo to label each part. Some words may be more general than others are and include some of the other words. For instance \u0027head\u0027 is more general than \u0027face\u0027 or \u0027nose\u0027. Be sure that both general and specific parts are labeled.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "140 Human Biology; 141 Anthropometry; 142 Descriptive Somatology", + "LouwNidaCodes": "8 Body, Body Parts, and Body Products; 8A Body; 8B Parts of the Body", "DeletedAt": null, "Predefined": true }, @@ -115457,7 +119076,22 @@ "Name": { "en": "Food storage" }, + "Abbreviation": { + "en": "5.2.1.4" + }, "Code": "5.2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to food preservation and storage.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115466,7 +119100,22 @@ "Name": { "en": "Leave something" }, + "Abbreviation": { + "en": "7.4.5.1" + }, "Code": "7.4.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to leaving something or someone in a place and going away.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "85D Leave in a Place", "DeletedAt": null, "Predefined": true }, @@ -115475,7 +119124,22 @@ "Name": { "en": "In general" }, + "Abbreviation": { + "en": "9.6.2.2.1" + }, "Code": "9.6.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is generally true, but not true in every case.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115484,7 +119148,22 @@ "Name": { "en": "Many, much" }, + "Abbreviation": { + "en": "8.1.3.1" + }, "Code": "8.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that there are many things or people, or that there is much of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59A Many, Few; 59B Much, Little; 59F Abundance, Excess, Sparing", "DeletedAt": null, "Predefined": true }, @@ -115493,7 +119172,22 @@ "Name": { "en": "Follow" }, + "Abbreviation": { + "en": "7.2.5.2" + }, "Code": "7.2.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to following someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15T Follow, Accompany; 15Q Come/Go Behind", "DeletedAt": null, "Predefined": true }, @@ -115502,7 +119196,22 @@ "Name": { "en": "Moon" }, + "Abbreviation": { + "en": "1.1.1.1" + }, "Code": "1.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the moon. In your culture people may believe things about the moon. For instance in European culture people used to believe that the moon caused people to become crazy. So in English we have words like \u0022moon-struck\u0022 and \u0022lunatic.\u0022 You should include such words in this domain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115511,7 +119220,22 @@ "Name": { "en": "Obsessed" }, + "Abbreviation": { + "en": "3.4.1.4.3" + }, "Code": "3.4.1.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling obsessed--to be very interested in something for a long time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115520,7 +119244,22 @@ "Name": { "en": "Die" }, + "Abbreviation": { + "en": "2.6.6" + }, "Code": "2.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dying.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "165 Mortality; 760 Death; 763 Dying", + "LouwNidaCodes": "23G Live, Die", "DeletedAt": null, "Predefined": true }, @@ -115529,7 +119268,22 @@ "Name": { "en": "Heaven, hell" }, + "Abbreviation": { + "en": "4.9.6" + }, "Code": "4.9.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to heaven and hell--the place where people go after they die.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "772 Cosmology; 775 Eschatology", + "LouwNidaCodes": "1C Regions Below the Surface of the Earth", "DeletedAt": null, "Predefined": true }, @@ -115538,7 +119292,22 @@ "Name": { "en": "Spirits of things" }, + "Abbreviation": { + "en": "1.4.2" + }, "Code": "1.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the spirits of things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115547,7 +119316,22 @@ "Name": { "en": "Every time" }, + "Abbreviation": { + "en": "8.4.6.6.5" + }, "Code": "8.4.6.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening every time something else happens.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115556,7 +119340,22 @@ "Name": { "en": "Repent" }, + "Abbreviation": { + "en": "4.8.4.6" + }, "Code": "4.8.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to repenting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "41E Change Behavior", "DeletedAt": null, "Predefined": true }, @@ -115565,7 +119364,22 @@ "Name": { "en": "Soul, spirit" }, + "Abbreviation": { + "en": "3.1" + }, "Code": "3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to the immaterial, non-physical part of a person, as opposed to the body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "26 Psychological Faculties", "DeletedAt": null, "Predefined": true }, @@ -115574,7 +119388,22 @@ "Name": { "en": "Piece" }, + "Abbreviation": { + "en": "8.1.6.2" + }, "Code": "8.1.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a part of something that has been broken or cut off.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115583,7 +119412,22 @@ "Name": { "en": "Disagree" }, + "Abbreviation": { + "en": "3.2.5.4.1" + }, "Code": "3.2.5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for when two people disagree about something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "31C Agree, Consent", "DeletedAt": null, "Predefined": true }, @@ -115592,7 +119436,22 @@ "Name": { "en": "Bone, joint" }, + "Abbreviation": { + "en": "2.1.6" + }, "Code": "2.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the bones and joints.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115601,7 +119460,22 @@ "Name": { "en": "Repay debt" }, + "Abbreviation": { + "en": "6.8.5.4" + }, "Code": "6.8.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to repaying a debt.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115610,7 +119484,22 @@ "Name": { "en": "Break the law" }, + "Abbreviation": { + "en": "4.7.3" + }, "Code": "4.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to breaking the law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "674 Crime; 677 Organized Crime; 672 Liability; 673 Wrongs", + "LouwNidaCodes": "88R Act Lawlessly", "DeletedAt": null, "Predefined": true }, @@ -115619,7 +119508,22 @@ "Name": { "en": "Subordinating particles" }, + "Abbreviation": { + "en": "9.4.7" + }, "Code": "9.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a subordinate clause. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115628,7 +119532,22 @@ "Name": { "en": "Vehicle" }, + "Abbreviation": { + "en": "7.2.4.1.1" + }, "Code": "7.2.4.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for things used to move.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6I Vehicles", "DeletedAt": null, "Predefined": true }, @@ -115637,7 +119556,22 @@ "Name": { "en": "Hold" }, + "Abbreviation": { + "en": "7.3.4.4" + }, "Code": "7.3.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for holding something in the hand.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "18 Attachment; 18A Grasp, Hold", "DeletedAt": null, "Predefined": true }, @@ -115646,7 +119580,22 @@ "Name": { "en": "Voice" }, + "Abbreviation": { + "en": "3.5.1.1" + }, "Code": "3.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a person\u0027s voice and the way it sounds--the kind of sound a person makes when they speak or sing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115655,7 +119604,22 @@ "Name": { "en": "Inherit" }, + "Abbreviation": { + "en": "2.6.6.7" + }, "Code": "2.6.6.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to inheriting something from your parents after they die.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "428 Inheritance", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115664,7 +119628,22 @@ "Name": { "en": "Stupid" }, + "Abbreviation": { + "en": "3.2.1.4" + }, "Code": "3.2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe a person who does not think well.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "32E Lack of Capacity for Understanding", "DeletedAt": null, "Predefined": true }, @@ -115673,7 +119652,22 @@ "Name": { "en": "Relative time" }, + "Abbreviation": { + "en": "8.4.5" + }, "Code": "8.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use the domains in this section for words that relate one time to another. Use this domain for words that indicate a temporal relation between situations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67 Points of Time; 67B A Point of Time with Reference to Other Points of Time: Before, Long Ago, Now, At the Same Time, When, About, After", "DeletedAt": null, "Predefined": true }, @@ -115682,7 +119676,22 @@ "Name": { "en": "Food from animals" }, + "Abbreviation": { + "en": "5.2.3.2" + }, "Code": "5.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to eating meat and to types of animals that are eaten. Only include those animals that are commonly eaten, especially those that are domesticated.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "266 Cannibalism", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115691,7 +119700,22 @@ "Name": { "en": "Subject of teaching" }, + "Abbreviation": { + "en": "3.6.3" + }, "Code": "3.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a subject that is taught or a subject that you study at school.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115700,7 +119724,22 @@ "Name": { "en": "Explode" }, + "Abbreviation": { + "en": "6.6.2.9.1" + }, "Code": "6.6.2.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to bombs or chemicals exploding.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115709,7 +119748,22 @@ "Name": { "en": "Food preparation" }, + "Abbreviation": { + "en": "5.2.1" + }, "Code": "5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to food preparation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "252 Food Preparation; 265 Food Service Industries", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115718,7 +119772,22 @@ "Name": { "en": "Decrease" }, + "Abbreviation": { + "en": "8.1.4.3" + }, "Code": "8.1.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something decreasing in number or amount--to be less than before.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59G Increase, Decrease", "DeletedAt": null, "Predefined": true }, @@ -115727,7 +119796,22 @@ "Name": { "en": "Parts of a reptile" }, + "Abbreviation": { + "en": "1.6.2.2" + }, "Code": "1.6.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of a reptile.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115736,7 +119820,22 @@ "Name": { "en": "Push" }, + "Abbreviation": { + "en": "7.3.2.9" + }, "Code": "7.3.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for when someone or something causes something to move away from him.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115745,7 +119844,22 @@ "Name": { "en": "Leave" }, + "Abbreviation": { + "en": "7.2.3.3" + }, "Code": "7.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving away from a place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15D Leave, Depart, Flee, Escape, Send", "DeletedAt": null, "Predefined": true }, @@ -115754,7 +119868,22 @@ "Name": { "en": "Avoid" }, + "Abbreviation": { + "en": "4.4.3.3" + }, "Code": "4.4.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to avoiding something bad, such as trouble or someone you don\u0027t want to meet.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115763,7 +119892,22 @@ "Name": { "en": "Time" }, + "Abbreviation": { + "en": "8.4" + }, "Code": "8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to time, and for words indicating the temporal location of an event.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "805 Ordering of Time", + "LouwNidaCodes": "67 Time", "DeletedAt": null, "Predefined": true }, @@ -115772,7 +119916,22 @@ "Name": { "en": "Prisoner of war" }, + "Abbreviation": { + "en": "4.8.3.5" + }, "Code": "4.8.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a prisoner of war.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "55E Prisoner of War", "DeletedAt": null, "Predefined": true }, @@ -115781,7 +119940,22 @@ "Name": { "en": "Wake up" }, + "Abbreviation": { + "en": "5.7.3" + }, "Code": "5.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to waking up from sleep.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115790,7 +119964,22 @@ "Name": { "en": "Hopeless" }, + "Abbreviation": { + "en": "3.2.7.2" + }, "Code": "3.2.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling hopeless--to thinking that nothing good will happen in the future.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25D Hope, Look Forward To", "DeletedAt": null, "Predefined": true }, @@ -115799,7 +119988,22 @@ "Name": { "en": "Towards" }, + "Abbreviation": { + "en": "8.5.2.7" + }, "Code": "8.5.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a direction toward something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115808,7 +120012,22 @@ "Name": { "en": "Jewel" }, + "Abbreviation": { + "en": "1.2.2.5" + }, "Code": "1.2.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to jewels and precious stones.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "2F Precious and Semiprecious Stones and Substances", "DeletedAt": null, "Predefined": true }, @@ -115817,7 +120036,22 @@ "Name": { "en": "Basketball" }, + "Abbreviation": { + "en": "4.2.6.2.2" + }, "Code": "4.2.6.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a particular sport. The example words are from the sport of basketball. If you do not play basketball in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115826,7 +120060,22 @@ "Name": { "en": "Wrong, unsuitable" }, + "Abbreviation": { + "en": "8.3.7.7.1" + }, "Code": "8.3.7.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something, such as a tool or way of doing something, that is unsuitable for a particular time, place, purpose, or job.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "66 Proper, Improper", "DeletedAt": null, "Predefined": true }, @@ -115835,7 +120084,22 @@ "Name": { "en": "Growing coffee" }, + "Abbreviation": { + "en": "6.2.1.7.2" + }, "Code": "6.2.1.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing coffee.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115844,7 +120108,22 @@ "Name": { "en": "Defeat" }, + "Abbreviation": { + "en": "4.8.3.1" + }, "Code": "4.8.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to defeating someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39L Conquer", "DeletedAt": null, "Predefined": true }, @@ -115853,7 +120132,22 @@ "Name": { "en": "Inside" }, + "Abbreviation": { + "en": "8.5.1.4" + }, "Code": "8.5.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is outside something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83C Among, Between, In, Inside", "DeletedAt": null, "Predefined": true }, @@ -115862,7 +120156,22 @@ "Name": { "en": "Parts of a building" }, + "Abbreviation": { + "en": "6.5.2" + }, "Code": "6.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the parts and areas of a building.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "7C Parts and Areas of Buildings", "DeletedAt": null, "Predefined": true }, @@ -115871,7 +120180,22 @@ "Name": { "en": "Figurative" }, + "Abbreviation": { + "en": "3.5.2.3" + }, "Code": "3.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to figurative speech--saying something that is not meant to be understood literally (according to the normal meaning of each word), or saying something that compares one thing to another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115880,7 +120204,22 @@ "Name": { "en": "Attract sexually" }, + "Abbreviation": { + "en": "2.6.2.2" + }, "Code": "2.6.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to attracting someone sexually--to cause someone to want to have sex with you, and for words related to being sexually attracted to someone--to want to have sex with someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115889,7 +120228,22 @@ "Name": { "en": "Bright" }, + "Abbreviation": { + "en": "8.3.3.1.2" + }, "Code": "8.3.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is bright.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115898,7 +120252,22 @@ "Name": { "en": "Again" }, + "Abbreviation": { + "en": "8.4.6.6.1" + }, "Code": "8.4.6.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening again or doing something again.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115907,7 +120276,22 @@ "Name": { "en": "Break" }, + "Abbreviation": { + "en": "7.8.1" + }, "Code": "7.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring breaking something into pieces, perhaps with the added idea of doing it accidentally or without being careful.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19D Break, Break Through", "DeletedAt": null, "Predefined": true }, @@ -115916,7 +120300,22 @@ "Name": { "en": "Cause" }, + "Abbreviation": { + "en": "9.6.2.5" + }, "Code": "9.6.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that someone or something is the cause for an event or state, that one event is the cause for another event or state, or that an event or state is reasonable (having sufficient cause). For instance in the sentence, \u0022John caused David to fall,\u0022 \u0022John caused\u0022 is an enabling proposition that brings about the primary proposition \u0022David fell.\u0022", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89G Cause and/or Reason", "DeletedAt": null, "Predefined": true }, @@ -115925,7 +120324,22 @@ "Name": { "en": "Opposite" }, + "Abbreviation": { + "en": "8.3.5.2.6" + }, "Code": "8.3.5.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing two things that are opposite.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115934,7 +120348,22 @@ "Name": { "en": "Poor eyesight" }, + "Abbreviation": { + "en": "2.5.4.2" + }, "Code": "2.5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having poor eyesight.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115943,7 +120372,22 @@ "Name": { "en": "Taboo" }, + "Abbreviation": { + "en": "4.9.5.6.1" + }, "Code": "4.9.5.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to things that are taboo--something to be avoided; a religious, social, or cultural restriction on behavior, as opposed to a government law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "784 Avoidance and Taboo", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115952,7 +120396,22 @@ "Name": { "en": "Have, be with" }, + "Abbreviation": { + "en": "7.4" + }, "Code": "7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115961,7 +120420,22 @@ "Name": { "en": "Defend" }, + "Abbreviation": { + "en": "4.8.2.4" + }, "Code": "4.8.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to defending someone from attack.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115970,7 +120444,22 @@ "Name": { "en": "Religious organization" }, + "Abbreviation": { + "en": "4.9.7" + }, "Code": "4.9.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to official religions, groups within a religion, and religious meetings. Each religion will have different names for its groups. Answer each question for each religion.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "779 Theological Systems; 790 Ecclesiastical Organization; 794 Congregations; 795 Religious Denominations; Sects; 797 Missions", + "LouwNidaCodes": "11B Socio-Religious", "DeletedAt": null, "Predefined": true }, @@ -115979,7 +120468,22 @@ "Name": { "en": "Adverbs" }, + "Abbreviation": { + "en": "9.2.2" + }, "Code": "9.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all adverbs. If there are many adverbs in your language, it is probably not worth the trouble to list them here. The Shoebox program (and other dictionary programs) can sort your dictionary by part of speech.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115988,7 +120492,22 @@ "Name": { "en": "Hospital" }, + "Abbreviation": { + "en": "2.5.7.4" + }, "Code": "2.5.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to a place where the sick and injured are treated.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "743 Hospitals and Clinics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -115997,7 +120516,22 @@ "Name": { "en": "Graceful" }, + "Abbreviation": { + "en": "7.2.1.4" + }, "Code": "7.2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving in a graceful manner.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116006,7 +120540,22 @@ "Name": { "en": "Equivalence" }, + "Abbreviation": { + "en": "9.6.1.8" + }, "Code": "9.6.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating equivalence between two things or propositions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89S Equivalence", "DeletedAt": null, "Predefined": true }, @@ -116015,7 +120564,22 @@ "Name": { "en": "Welcome, receive" }, + "Abbreviation": { + "en": "4.2.1.4.1" + }, "Code": "4.2.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to welcoming a visitor.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "34G Welcome, Receive", "DeletedAt": null, "Predefined": true }, @@ -116024,7 +120588,22 @@ "Name": { "en": "Nature, character" }, + "Abbreviation": { + "en": "8.3.5.1" + }, "Code": "8.3.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the nature of character of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58A Nature, Character; 58C Basic Principles or Features Defining the Nature of Something", "DeletedAt": null, "Predefined": true }, @@ -116033,7 +120612,22 @@ "Name": { "en": "Stretch" }, + "Abbreviation": { + "en": "8.3.1.9" + }, "Code": "8.3.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to stretching something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116042,7 +120636,22 @@ "Name": { "en": "Theology" }, + "Abbreviation": { + "en": "4.9.3" + }, "Code": "4.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to theology--the study of God and what people believe about God.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "779 Theological Systems; 770 Religious Beliefs; 772 Cosmology; 773 Mythology; 774 Animism; 775 Eschatology", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116051,7 +120660,22 @@ "Name": { "en": "Wrap" }, + "Abbreviation": { + "en": "7.3.7.2" + }, "Code": "7.3.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to wrapping something--to cover something on all sides with something like leaves, cloth, or paper.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79Z Wrapped", "DeletedAt": null, "Predefined": true }, @@ -116060,7 +120684,22 @@ "Name": { "en": "Texture" }, + "Abbreviation": { + "en": "8.3.2" + }, "Code": "8.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to the texture of something--how the surface of something feels when you touch it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116069,7 +120708,22 @@ "Name": { "en": "History" }, + "Abbreviation": { + "en": "3.5.4.5" + }, "Code": "3.5.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to history.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "1210 Archaeological Excavation Methods; 1211 Dating Methods in Archaeology; 1212 Laboratory Analysis of Materials Other Than Dating Methods in Archaeology; 1213 Comparative Data [in Reconstructing History]; 129 Archaiological Survey Methods; 138 Post Depositional Processes in Archaeological Sites; 159 Life History Materials; 170 History and Culture Change; 171 Comparative Evidence; Distributional Evidence; 1710 Cultural Revitalization and Ethnogenesis; 172 Prehistory; Archaeology; 173 Traditional History; 174 Historical Reconstruction; 175 History; Recorded History; 176 Innovation; 177 Acculturation and Culture Contact; 178 Sociocultural Trends; 910 Archaeological Measures, Techniques and Analysis; 911 Chronologies and Cultural Sequences; 912 Cultural Stratigraphy; 913 Functional Specialization; 914 Typologies and Classification; 915 Archaeological Inventories", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116078,7 +120732,22 @@ "Name": { "en": "Jealous" }, + "Abbreviation": { + "en": "3.4.2.1.8" + }, "Code": "3.4.2.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling jealous--to feel bad when someone does well, has something good, receives something good, or something good happens to them, because you want what they have. Also use this domain for words for when a husband (or wife) is jealous because he thinks his wife loves someone else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88V Envy, Jealousy", "DeletedAt": null, "Predefined": true }, @@ -116087,7 +120756,22 @@ "Name": { "en": "Coordinate relations" }, + "Abbreviation": { + "en": "9.6.1" + }, "Code": "9.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for words indicating coordinate relations. Do not put any words in this domain. It is only for organizational purposes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116096,7 +120780,22 @@ "Name": { "en": "Notice" }, + "Abbreviation": { + "en": "3.1.2.2" + }, "Code": "3.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to noticing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116105,7 +120804,22 @@ "Name": { "en": "Sheep" }, + "Abbreviation": { + "en": "6.3.1.2" + }, "Code": "6.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sheep.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116114,7 +120828,22 @@ "Name": { "en": "Deliberately" }, + "Abbreviation": { + "en": "3.3.1.5" + }, "Code": "3.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to doing something deliberately--to intend to do something, as opposed to doing something accidentally.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116123,7 +120852,22 @@ "Name": { "en": "Riddle" }, + "Abbreviation": { + "en": "3.5.4.3" + }, "Code": "3.5.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a riddle--something someone says that is hard to understand.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116132,7 +120876,22 @@ "Name": { "en": "Relaxed" }, + "Abbreviation": { + "en": "3.4.1.2.1" + }, "Code": "3.4.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling relaxed--to feel good when you are not working and nothing bad is happening.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116141,7 +120900,22 @@ "Name": { "en": "Thank" }, + "Abbreviation": { + "en": "3.5.1.7.1" + }, "Code": "3.5.1.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to thanking someone--to tell someone that you feel good about something they did for you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33J\u0027 Thanks; 25I Thankful, Grateful", "DeletedAt": null, "Predefined": true }, @@ -116150,7 +120924,22 @@ "Name": { "en": "Show, let someone see" }, + "Abbreviation": { + "en": "2.3.1.4" + }, "Code": "2.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to showing something to someone so that they can see it--to cause someone to see something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116159,7 +120948,22 @@ "Name": { "en": "Move something" }, + "Abbreviation": { + "en": "7.3" + }, "Code": "7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to moving something or someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "480 Travel and Transportation", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116168,7 +120972,22 @@ "Name": { "en": "Animal movement" }, + "Abbreviation": { + "en": "1.6.4.1" + }, "Code": "1.6.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for ways in which animals move. Only include words specific for the movement of animals. For the movement of people use the domains under Movement. It is necessary to think through how each type of animal moves, especially the important ones.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136c Movements", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116177,7 +120996,22 @@ "Name": { "en": "Growing vegetables" }, + "Abbreviation": { + "en": "6.2.1.3" + }, "Code": "6.2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing vegetables, such as asparagus, beans, broccoli, cabbage, celery, chard, cucumbers, eggplant, melons, peas, peppers, pumpkins, spinach, squash, tomatoes, and watermelons. If one type of vegetable is cultivated extensively and there are many words related to it, set up a separate domain for it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "244 Vegetable Production", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116186,7 +121020,22 @@ "Name": { "en": "Protest" }, + "Abbreviation": { + "en": "3.2.5.4.2" + }, "Code": "3.2.5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to protesting--to say publicly that you do not like something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116195,7 +121044,22 @@ "Name": { "en": "Enough" }, + "Abbreviation": { + "en": "8.1.7" + }, "Code": "8.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being or having enough--to have as much of something or as many of something as you need or want.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57B Have Sufficient; 59E Enough, Sufficient", "DeletedAt": null, "Predefined": true }, @@ -116204,7 +121068,22 @@ "Name": { "en": "Set upright" }, + "Abbreviation": { + "en": "7.3.1.5" + }, "Code": "7.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to setting something upright.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116213,7 +121092,22 @@ "Name": { "en": "Set free" }, + "Abbreviation": { + "en": "7.2.6.4" + }, "Code": "7.2.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to setting someone free.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37J Release, Set Free", "DeletedAt": null, "Predefined": true }, @@ -116222,7 +121116,22 @@ "Name": { "en": "Disobey" }, + "Abbreviation": { + "en": "4.5.4.2" + }, "Code": "4.5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to disobeying someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "36C Obey, Disobey", "DeletedAt": null, "Predefined": true }, @@ -116231,7 +121140,22 @@ "Name": { "en": "Exercise" }, - "Code": "4.2.6.3", + "Abbreviation": { + "en": "4.2.6.3" + }, + "Code": "4.2.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to exercise.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116240,7 +121164,22 @@ "Name": { "en": "Relief" }, + "Abbreviation": { + "en": "4.4.4.7" + }, "Code": "4.4.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to relief.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "22E Relief from Trouble", "DeletedAt": null, "Predefined": true }, @@ -116249,7 +121188,22 @@ "Name": { "en": "Burn" }, + "Abbreviation": { + "en": "5.5.4" + }, "Code": "5.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for verbs that are used of fire: \u0022The fire is ____.\u0022 In some languages there are verbs for what is happening to the thing that is burning: \u0022The house is ____.\u0022", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "14H Burning", "DeletedAt": null, "Predefined": true }, @@ -116258,7 +121212,22 @@ "Name": { "en": "Comfortable" }, + "Abbreviation": { + "en": "2.3.5.1" + }, "Code": "2.3.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling comfortable--to feel good in your body because there is nothing around you that makes you feel bad. This includes comfortable clothes, chair, bed, temperature, or journey.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116267,7 +121236,22 @@ "Name": { "en": "Word" }, + "Abbreviation": { + "en": "3.5.3.1" + }, "Code": "3.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to words and groups of words.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "104 Glossary", + "LouwNidaCodes": "33B Word, Passage", "DeletedAt": null, "Predefined": true }, @@ -116276,7 +121260,22 @@ "Name": { "en": "Useless" }, + "Abbreviation": { + "en": "6.1.2.2.2" + }, "Code": "6.1.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being useless--words describing something that cannot be used to do anything.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "65D Useful, Useless; 65E Advantageous, Not Advantageous", "DeletedAt": null, "Predefined": true }, @@ -116285,7 +121284,22 @@ "Name": { "en": "Think about" }, + "Abbreviation": { + "en": "3.2.1.1" + }, "Code": "3.2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to thinking about something for some time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "30 Think; 30A To Think, Thought; 30B To Think About, with the Implied Purpose of Responding Appropriately", "DeletedAt": null, "Predefined": true }, @@ -116294,7 +121308,22 @@ "Name": { "en": "Angry" }, + "Abbreviation": { + "en": "3.4.2.3" + }, "Code": "3.4.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling angry--to feel bad when someone does something wrong and to want to do something bad to them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88X Anger, Be Indignant With; 25P Offend, Be Offended; 88W Resentful, Hold a Grudge Against", "DeletedAt": null, "Predefined": true }, @@ -116303,7 +121332,22 @@ "Name": { "en": "Endure" }, + "Abbreviation": { + "en": "4.4.3.6" + }, "Code": "4.4.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to enduring a problem.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116312,7 +121356,22 @@ "Name": { "en": "Add to something" }, + "Abbreviation": { + "en": "7.5.2.3" + }, "Code": "7.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to adding something to another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59H Add, Subtract", "DeletedAt": null, "Predefined": true }, @@ -116321,7 +121380,22 @@ "Name": { "en": "Compatible" }, + "Abbreviation": { + "en": "8.3.7.7.3" + }, "Code": "8.3.7.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being compatible--words that describe two things or people that can be together or work together without problems or conflict.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116330,7 +121404,22 @@ "Name": { "en": "Afraid" }, + "Abbreviation": { + "en": "3.4.2.4" + }, "Code": "3.4.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fear--to feel bad because you think something bad might happen to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25V Fear, Terror, Alarm", "DeletedAt": null, "Predefined": true }, @@ -116339,7 +121428,22 @@ "Name": { "en": "Immature in behavior" }, + "Abbreviation": { + "en": "4.3.1.3.1" + }, "Code": "4.3.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to behaving in an immature way--for either a child or an adult to act like a child.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88M Mature Behavior", "DeletedAt": null, "Predefined": true }, @@ -116348,7 +121452,22 @@ "Name": { "en": "Finance" }, + "Abbreviation": { + "en": "6.8" + }, "Code": "6.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to finance.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "450 Finance", + "LouwNidaCodes": "57 Possess, Transfer, Exchange", "DeletedAt": null, "Predefined": true }, @@ -116357,7 +121476,22 @@ "Name": { "en": "One" }, + "Abbreviation": { + "en": "8.1.1.1.1" + }, "Code": "8.1.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the number one. It appears that every language has a word for \u0027one\u0027 and \u0027two\u0027, but not every language has a word for the numbers higher than two. Many languages have several words that mean \u0027one\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116366,7 +121500,22 @@ "Name": { "en": "Indefinite location" }, + "Abbreviation": { + "en": "8.5.1.7" + }, "Code": "8.5.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is at an indefinite location.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116375,7 +121524,22 @@ "Name": { "en": "Bat" }, + "Abbreviation": { + "en": "1.6.1.1.8" + }, "Code": "1.6.1.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for bats--flying mammals (phylum Chordata, class Mammalia, order Chiroptera).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116384,7 +121548,22 @@ "Name": { "en": "Rest" }, + "Abbreviation": { + "en": "2.4.5" + }, "Code": "2.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to resting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23F Tire, Rest", "DeletedAt": null, "Predefined": true }, @@ -116393,7 +121572,22 @@ "Name": { "en": "Stop something" }, + "Abbreviation": { + "en": "8.4.6.1.2" + }, "Code": "8.4.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the end of an action or situation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116402,7 +121596,22 @@ "Name": { "en": "Clause conjunctions" }, + "Abbreviation": { + "en": "9.2.5.2" + }, "Code": "9.2.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all clause level conjunctions--conjunctions that join two clauses.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116411,7 +121620,22 @@ "Name": { "en": "Go" }, + "Abbreviation": { + "en": "7.2.3.2" + }, "Code": "7.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving away from the speaker. In Australian languages many movement words are marked for direction toward or away from the speaker.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116420,7 +121644,22 @@ "Name": { "en": "Worship" }, + "Abbreviation": { + "en": "4.9.5.3" + }, "Code": "4.9.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for personal expressions of devotion to God, in whatever ways the religion defines and expresses it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "53G Worship, Reverence", "DeletedAt": null, "Predefined": true }, @@ -116429,7 +121668,22 @@ "Name": { "en": "Unique" }, + "Abbreviation": { + "en": "8.3.5.3.3" + }, "Code": "8.3.5.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is unique--not like anything else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58G Distinctive, Unique", "DeletedAt": null, "Predefined": true }, @@ -116438,7 +121692,22 @@ "Name": { "en": "Vindicate" }, + "Abbreviation": { + "en": "4.7.5.8" + }, "Code": "4.7.5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to vindicating someone--to prove that someone is innocent of an accusation made against them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116447,7 +121716,22 @@ "Name": { "en": "Heart" }, + "Abbreviation": { + "en": "2.1.8.1" + }, "Code": "2.1.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for functions of the heart and blood veins.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116456,7 +121740,22 @@ "Name": { "en": "Concave" }, + "Abbreviation": { + "en": "8.3.1.6.1" + }, "Code": "8.3.1.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is concave--extending inward in shape away from the viewer. The inside of a bowl is concave in shape.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116465,7 +121764,22 @@ "Name": { "en": "Make" }, + "Abbreviation": { + "en": "9.1.2.5" + }, "Code": "9.1.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to making something--joining things together to create something to be that did not exist before.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "42C Make, Create", "DeletedAt": null, "Predefined": true }, @@ -116474,7 +121788,22 @@ "Name": { "en": "Alcoholic beverage" }, + "Abbreviation": { + "en": "5.2.3.7" + }, "Code": "5.2.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for types of beverages containing alcohol.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "273 Alcoholic Beverages; 270 Drink and Drugs; Drink, Drugs and Indulgence", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116483,7 +121812,22 @@ "Name": { "en": "Chess" }, + "Abbreviation": { + "en": "4.2.6.1.2" + }, "Code": "4.2.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a particular game. The example words are from the game of chess. If you do not play chess in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116492,7 +121836,22 @@ "Name": { "en": "Energetic" }, + "Abbreviation": { + "en": "2.4.3" + }, "Code": "2.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being energetic.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116501,7 +121860,22 @@ "Name": { "en": "Location" }, + "Abbreviation": { + "en": "8.5" + }, "Code": "8.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to the place where something is located and for words indicating the location of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "131 Location", + "LouwNidaCodes": "83 Spatial Positions; 83B Where, Somewhere, Everywhere", "DeletedAt": null, "Predefined": true }, @@ -116510,7 +121884,22 @@ "Name": { "en": "Rough" }, + "Abbreviation": { + "en": "8.3.2.2" + }, "Code": "8.3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being rough.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79P Uneven, Level", "DeletedAt": null, "Predefined": true }, @@ -116519,7 +121908,22 @@ "Name": { "en": "Store wealth" }, + "Abbreviation": { + "en": "6.8.1.4" + }, "Code": "6.8.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to storing wealth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "454 Saving and Investment; 453 Banking", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116528,7 +121932,22 @@ "Name": { "en": "Disappointed" }, + "Abbreviation": { + "en": "3.4.2.1.4" + }, "Code": "3.4.2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling disappointed--to feel bad because something did not happen that you wanted to happen or someone did not do something that you wanted them to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116537,7 +121956,22 @@ "Name": { "en": "Honorifics " }, + "Abbreviation": { + "en": "9.6.3.8" + }, "Code": "9.6.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that the speaker uses to show respect or a lack of respect to the person he is addressing. Some languages have elaborate systems of honorifics. Other languages have none. Languages with a stratified social structure often use honorifics. Egalitarian societies generally lack them, but some egalitarian societies may use them. For instance in Nahuatl there are four levels of honorifics. Level 1 is how one addresses intimates, small children, and pets. Level 2 is for strangers and persons treated formally. Level 3 is for respected persons, the dead, and God. Level 4 is for obsequious respect, as for the archbishop in an interview with a priest, and for ritual kin. (Jane H. Hill and Kenneth C. Hill. 1978. Honorific usage in modern Nahuatl: the expression of social distance and respect in the Nahuatl of the Malinche Volcano area, Language 54:123-155.) In Japanese, which has a stratified social structure, a person uses one set of words and affixes when speaking to someone below you in the social hierarchy, such as your wife, children, and pets. A different set of words is used when speaking to peers. Another set is used when speaking to a superior. A fourth set is used when speaking to the emperor. English used to have two pronouns for second person singular. \u0027Thou\u0027 was used for equals and inferiors, and \u0027you\u0027 was used for superiors. Your language may have special honorific words used as (1) pronouns, (2) affixes, (3) particles, (4) terms of direct address, (5) greetings (6) requests, (7) apologies.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116546,7 +121980,22 @@ "Name": { "en": "Hair" }, + "Abbreviation": { + "en": "2.1.5" + }, "Code": "2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116555,7 +122004,22 @@ "Name": { "en": "Arrange a marriage" }, + "Abbreviation": { + "en": "2.6.1.1" + }, "Code": "2.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for all the words related to arranging a marriage. Cultures vary widely in their practices. In some cultures marriages are arranged by the parents. In other cultures a man must seek a wife for himself. Some cultures allow either practice or a combination of the two. So some of the questions below may be inappropriate to your culture.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "583 Mode of Marriage; 584 Arranging a Marriage", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116564,7 +122028,22 @@ "Name": { "en": "Ear" }, + "Abbreviation": { + "en": "2.1.1.2" + }, "Code": "2.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the ear.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116573,7 +122052,22 @@ "Name": { "en": "Job satisfaction" }, + "Abbreviation": { + "en": "6.1.4" + }, "Code": "6.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being satisfied with your job.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116582,7 +122076,22 @@ "Name": { "en": "Prohibited food" }, + "Abbreviation": { + "en": "5.2.3.5" + }, "Code": "5.2.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe food that is prohibited by the culture or religion. Do not list the foods that are prohibited.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116591,7 +122100,22 @@ "Name": { "en": "Ugly" }, + "Abbreviation": { + "en": "2.3.1.8.2" + }, "Code": "2.3.1.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing someone or something that is ugly--not pleasing in appearance.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79D Beautiful, Ugly", "DeletedAt": null, "Predefined": true }, @@ -116600,7 +122124,22 @@ "Name": { "en": "Concession" }, + "Abbreviation": { + "en": "9.6.2.9" + }, "Code": "9.6.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that the speaker is conceding a point in a debate.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89K Concession", "DeletedAt": null, "Predefined": true }, @@ -116609,7 +122148,22 @@ "Name": { "en": "Various" }, + "Abbreviation": { + "en": "8.3.5.2.5" + }, "Code": "8.3.5.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a group of things that are all different from each other.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116618,7 +122172,22 @@ "Name": { "en": "Quick" }, + "Abbreviation": { + "en": "8.4.8.1" + }, "Code": "8.4.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to doing something at a quick speed or something happening quickly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116627,7 +122196,22 @@ "Name": { "en": "Middle" }, + "Abbreviation": { + "en": "8.6.5" + }, "Code": "8.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the middle part or center of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116636,7 +122220,22 @@ "Name": { "en": "Shark, ray" }, + "Abbreviation": { + "en": "1.6.1.6" + }, "Code": "1.6.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for sharks and rays--animals with cartilage instead of bones (phylum Chordata, class Chondrichthyes), and eels (phylum Chordata, class Cyclostomata).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136j Fish and Mollusk", + "LouwNidaCodes": "4E Fishes and Other Sea Creatures", "DeletedAt": null, "Predefined": true }, @@ -116645,7 +122244,22 @@ "Name": { "en": "Possession, property" }, + "Abbreviation": { + "en": "6.8.1.5" + }, "Code": "6.8.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to property--the things you own.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "422 Property in Movables; 423 Real Property; 424 Incorporeal Property", + "LouwNidaCodes": "57D Treasure", "DeletedAt": null, "Predefined": true }, @@ -116654,7 +122268,22 @@ "Name": { "en": "Power, force" }, + "Abbreviation": { + "en": "6.1.2.3.4" + }, "Code": "6.1.2.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the power used to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "370 Energy and Power; 371 Power Development; 379 Miscellaneous Power Production", + "LouwNidaCodes": "76 Power, Force", "DeletedAt": null, "Predefined": true }, @@ -116663,7 +122292,22 @@ "Name": { "en": "Separate, scatter" }, + "Abbreviation": { + "en": "7.5.1.1" + }, "Code": "7.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to separating things into groups, and scattering things. The basic idea of this domain involves a situation in which two or more things are together, and someone moves them so that they are no longer together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "63G Separate; 15N Disperse, Scatter", "DeletedAt": null, "Predefined": true }, @@ -116672,7 +122316,22 @@ "Name": { "en": "Good, moral" }, + "Abbreviation": { + "en": "4.3.1" + }, "Code": "4.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being good or moral in behavior.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88B Just, Righteous; 88C Holy, Pure; 41C Particular Patterns of Behavior", "DeletedAt": null, "Predefined": true }, @@ -116681,7 +122340,22 @@ "Name": { "en": "Court of law" }, + "Abbreviation": { + "en": "4.7.4" + }, "Code": "4.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a court of law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "698 Special Courts", + "LouwNidaCodes": "56A Court of Justice; 56B Lawsuit, Case", "DeletedAt": null, "Predefined": true }, @@ -116690,7 +122364,22 @@ "Name": { "en": "But" }, + "Abbreviation": { + "en": "9.6.1.5" + }, "Code": "9.6.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a contrast between two thoughts that are different in some way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89W Contrast", "DeletedAt": null, "Predefined": true }, @@ -116699,7 +122388,22 @@ "Name": { "en": "Marsupial" }, + "Abbreviation": { + "en": "1.6.1.1.5" + }, "Code": "1.6.1.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for marsupials (phylum Chordata, class Mammalia, order Marsupialia). Marsupials carry their young in a pouch.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116708,7 +122412,22 @@ "Name": { "en": "Glory" }, + "Abbreviation": { + "en": "8.3.8.2" + }, "Code": "8.3.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing the appearance of something that has pleasing aspects or inspires awe and wonder in the viewer. For instance, the palace of a king, the home of a rich man, or a temple may be elaborately decorated and be described as glorious or magnificent. Or something in nature such as a sunset or flower may inspire awe and wonder.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79E Glorious", "DeletedAt": null, "Predefined": true }, @@ -116717,7 +122436,22 @@ "Name": { "en": "Make hole, opening" }, + "Abbreviation": { + "en": "7.8.5" + }, "Code": "7.8.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to making a hole or opening in something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19B Pierce, Cut", "DeletedAt": null, "Predefined": true }, @@ -116726,7 +122460,22 @@ "Name": { "en": "Sharp" }, + "Abbreviation": { + "en": "8.3.2.3" + }, "Code": "8.3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is sharp.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79S Sharp", "DeletedAt": null, "Predefined": true }, @@ -116735,7 +122484,22 @@ "Name": { "en": "Growing sugarcane" }, + "Abbreviation": { + "en": "6.2.1.5.1" + }, "Code": "6.2.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing sugarcane.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116744,7 +122508,22 @@ "Name": { "en": "Stiff, flexible" }, + "Abbreviation": { + "en": "8.3.6.3" + }, "Code": "8.3.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe something that is stiff--not easy to bend.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116753,7 +122532,22 @@ "Name": { "en": "Story" }, + "Abbreviation": { + "en": "3.5.4" + }, "Code": "3.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a story.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33C Discourse Types", "DeletedAt": null, "Predefined": true }, @@ -116762,7 +122556,22 @@ "Name": { "en": "General adjectives" }, + "Abbreviation": { + "en": "9.1.4" + }, "Code": "9.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general adjectives that can replace or stand for a specific adjective.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116771,7 +122580,22 @@ "Name": { "en": "Swamp" }, + "Abbreviation": { + "en": "1.3.1.2" + }, "Code": "1.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to bodies of standing water with plants growing in them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116780,7 +122604,22 @@ "Name": { "en": "Return something" }, + "Abbreviation": { + "en": "7.3.3.2" + }, "Code": "7.3.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving something back to an original place or person. (Something is in a place, someone (or something) moves it, then someone moves it back to the first place.)", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116789,7 +122628,22 @@ "Name": { "en": "Difficult, impossible" }, + "Abbreviation": { + "en": "6.1.3" + }, "Code": "6.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is difficult or impossible to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116798,7 +122652,22 @@ "Name": { "en": "Beverage" }, + "Abbreviation": { + "en": "5.2.3.6" + }, "Code": "5.2.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to things people drink.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "272 Nonalcoholic Beverages", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116807,7 +122676,22 @@ "Name": { "en": "Road" }, + "Abbreviation": { + "en": "6.5.4.1" + }, "Code": "6.5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a road.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "363 Streets and Traffic", + "LouwNidaCodes": "1P Thoroughfares: Roads, Streets, Paths, etc.", "DeletedAt": null, "Predefined": true }, @@ -116816,7 +122700,22 @@ "Name": { "en": "Modern" }, + "Abbreviation": { + "en": "8.4.6.5.5" + }, "Code": "8.4.6.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something modern--a word that describes something like a machine, system, or country that uses the most recent equipment, ideas, and methods.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116825,7 +122724,22 @@ "Name": { "en": "Food from plants" }, + "Abbreviation": { + "en": "5.2.3.1" + }, "Code": "5.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to food from plants.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137h Crops and vegetables", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116834,7 +122748,22 @@ "Name": { "en": "Aspect--stative verbs" }, + "Abbreviation": { + "en": "9.4.1.3" + }, "Code": "9.4.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of stative verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116843,7 +122772,22 @@ "Name": { "en": "Healthy" }, + "Abbreviation": { + "en": "2.5" + }, "Code": "2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a person being healthy--not sick.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "147 Physiological Data; 740 Health and Welfare", + "LouwNidaCodes": "23H Health, Vigor, Strength", "DeletedAt": null, "Predefined": true }, @@ -116852,7 +122796,22 @@ "Name": { "en": "Telephone" }, + "Abbreviation": { + "en": "3.5.9.2" + }, "Code": "3.5.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the telephone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "206 Telephone and Telegraph", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116861,7 +122820,22 @@ "Name": { "en": "Grave" }, + "Abbreviation": { + "en": "2.6.6.6" + }, "Code": "2.6.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a grave--the place where a dead body is put.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "7G Miscellaneous Constructions", "DeletedAt": null, "Predefined": true }, @@ -116870,7 +122844,22 @@ "Name": { "en": "Move noisily" }, + "Abbreviation": { + "en": "7.2.1.7" + }, "Code": "7.2.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to making a noise while moving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116879,7 +122868,22 @@ "Name": { "en": "Cut grass" }, + "Abbreviation": { + "en": "6.2.4.1" + }, "Code": "6.2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cutting grass.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116888,7 +122892,22 @@ "Name": { "en": "Cattle" }, + "Abbreviation": { + "en": "6.3.1.1" + }, "Code": "6.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cattle and the care of cattle.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116897,7 +122916,22 @@ "Name": { "en": "Working with bricks" }, + "Abbreviation": { + "en": "6.6.2.8" + }, "Code": "6.6.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with bricks.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "333 Masonry", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116906,7 +122940,22 @@ "Name": { "en": "Average" }, + "Abbreviation": { + "en": "8.1.5.9" + }, "Code": "8.1.5.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to an average number.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116915,7 +122964,22 @@ "Name": { "en": "Try, attempt" }, + "Abbreviation": { + "en": "6.1.2.1" + }, "Code": "6.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that someone is trying to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68E Try, Attempt", "DeletedAt": null, "Predefined": true }, @@ -116924,7 +122988,22 @@ "Name": { "en": "Generous" }, + "Abbreviation": { + "en": "6.8.3.2" + }, "Code": "6.8.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being generous.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116933,7 +123012,22 @@ "Name": { "en": "Facial expression" }, + "Abbreviation": { + "en": "3.5.6.3" + }, "Code": "3.5.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for facial expressions--ways in which people move the parts of their faces to show feeling or communicate something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23B Processes Involving the Mouth, Other Than Eating and Drinking", "DeletedAt": null, "Predefined": true }, @@ -116942,7 +123036,22 @@ "Name": { "en": "Away from" }, + "Abbreviation": { + "en": "8.5.2.6" + }, "Code": "8.5.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a direction away from something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116951,7 +123060,22 @@ "Name": { "en": "Warn" }, + "Abbreviation": { + "en": "3.3.3.7" + }, "Code": "3.3.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to warning someone--saying something to someone so that he will not do something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33U\u0027 Warn", "DeletedAt": null, "Predefined": true }, @@ -116960,7 +123084,22 @@ "Name": { "en": "Lumbering" }, + "Abbreviation": { + "en": "6.6.3.1" + }, "Code": "6.6.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lumbering--cutting down trees and cutting them up.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "313 Lumbering", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116969,7 +123108,22 @@ "Name": { "en": "Flood" }, + "Abbreviation": { + "en": "1.1.3.7" + }, "Code": "1.1.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to floods.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116978,7 +123132,22 @@ "Name": { "en": "Grammar" }, + "Abbreviation": { + "en": "9" + }, "Code": "9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for technical linguistic terms that refer to grammatical words and constructions. Most languages have few if any words in this domain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116987,7 +123156,22 @@ "Name": { "en": "Birth ceremony" }, + "Abbreviation": { + "en": "2.6.3.9" + }, "Code": "2.6.3.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a birth ceremony.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "852 Ceremonial During Infancy and Childhood; 851 Social Placement", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -116996,7 +123180,22 @@ "Name": { "en": "Gas" }, + "Abbreviation": { + "en": "1.2.3.3" + }, "Code": "1.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to gas.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117005,7 +123204,22 @@ "Name": { "en": "Catch, capture" }, + "Abbreviation": { + "en": "7.2.6.1" + }, "Code": "7.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to catching someone who is trying to escape.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37F Seize, Take into Custody", "DeletedAt": null, "Predefined": true }, @@ -117014,7 +123228,22 @@ "Name": { "en": "Available" }, + "Abbreviation": { + "en": "6.1.2.2.3" + }, "Code": "6.1.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something being available to use.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117023,7 +123252,22 @@ "Name": { "en": "Working with minerals" }, + "Abbreviation": { + "en": "6.6.2" + }, "Code": "6.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with minerals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "320 Processing of Basic Materials; 310 Exploitative Activities; 306 Jewelry Manufacture", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117032,7 +123276,22 @@ "Name": { "en": "Pointed" }, + "Abbreviation": { + "en": "8.3.2.3.1" + }, "Code": "8.3.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is pointed.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117041,7 +123300,22 @@ "Name": { "en": "No, not" }, + "Abbreviation": { + "en": "9.4.6.1" + }, "Code": "9.4.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that negate or deny the truth of something, or that answer a yes/no question in the negative.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "69B Negation; 69C Negation Combined with Clitics", "DeletedAt": null, "Predefined": true }, @@ -117050,7 +123324,22 @@ "Name": { "en": "Affixes" }, + "Abbreviation": { + "en": "9.2.9" + }, "Code": "9.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all affixes that do not fit in any of the subdomains under it. This section should be filled out by a linguist.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117059,7 +123348,22 @@ "Name": { "en": "Names of streets" }, + "Abbreviation": { + "en": "9.7.2.4" + }, "Code": "9.7.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of highways, roads, streets, and trails in the language area. If there are many such names, only include the important names (e.g. King\u0027s Highway) or commonly used names (e.g. Main Street).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117068,7 +123372,22 @@ "Name": { "en": "Birth" }, + "Abbreviation": { + "en": "2.6.3" + }, "Code": "2.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to giving birth and being born.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "163 Birth Statistics; 840 Reproduction; 841 Menstruation; 844 Childbirth; 846 Postnatal Care", + "LouwNidaCodes": "23C Birth, Procreation", "DeletedAt": null, "Predefined": true }, @@ -117077,7 +123396,22 @@ "Name": { "en": "Crop failure" }, + "Abbreviation": { + "en": "6.2.5.2" + }, "Code": "6.2.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to crop failure.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117086,7 +123420,22 @@ "Name": { "en": "Bargain" }, + "Abbreviation": { + "en": "6.8.4.4" + }, "Code": "6.8.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to bargaining over the price of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117095,7 +123444,22 @@ "Name": { "en": "Plunder" }, + "Abbreviation": { + "en": "4.8.3.8" + }, "Code": "4.8.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to plundering--stealing something from an enemy during a war.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117104,7 +123468,22 @@ "Name": { "en": "Move straight without turning" }, + "Abbreviation": { + "en": "7.2.2.9" + }, "Code": "7.2.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving straight without changing direction.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117113,7 +123492,22 @@ "Name": { "en": "Spy" }, + "Abbreviation": { + "en": "4.8.3.6.5" + }, "Code": "4.8.3.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a spy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117122,7 +123516,22 @@ "Name": { "en": "Few, little" }, + "Abbreviation": { + "en": "8.1.3.2" + }, "Code": "8.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related there being few or little of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59B Much, Little", "DeletedAt": null, "Predefined": true }, @@ -117131,7 +123540,22 @@ "Name": { "en": "Growing grain" }, + "Abbreviation": { + "en": "6.2.1.1" + }, "Code": "6.2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to growing grain crops such as barley, maize (corn), millet, oats, rice, rye, sesame, sorghum, and wheat. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for rice, wheat, and maize, since they are so common around the world.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "243 Cereal Agriculture", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117140,7 +123564,22 @@ "Name": { "en": "Cooking ingredients" }, + "Abbreviation": { + "en": "5.2.3.3" + }, "Code": "5.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to ingredients--the things that are added together when preparing food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "5B Condiments", "DeletedAt": null, "Predefined": true }, @@ -117149,7 +123588,22 @@ "Name": { "en": "Lizard" }, + "Abbreviation": { + "en": "1.6.1.3.2" + }, "Code": "1.6.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lizards.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117158,7 +123612,22 @@ "Name": { "en": "Escape" }, + "Abbreviation": { + "en": "7.2.6.3" + }, "Code": "7.2.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to escaping from danger.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117167,7 +123636,22 @@ "Name": { "en": "Narcotic" }, + "Abbreviation": { + "en": "5.2.5" + }, "Code": "5.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to narcotics and drugs that are not used as medicine but as stimulants. Narcotics are often addicting and harmful to a person\u0027s health.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "276 Recreational and Non-therapeutic Drugs; Narcotics and Stimulants", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117176,7 +123660,22 @@ "Name": { "en": "Relations involving correspondences" }, + "Abbreviation": { + "en": "9.6.2.3" + }, "Code": "9.6.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating relations involving correspondences--a situation in which one thing is the same or similar in some respect to something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89E Relations Involving Correspondence", "DeletedAt": null, "Predefined": true }, @@ -117185,7 +123684,22 @@ "Name": { "en": "Spatial relations" }, + "Abbreviation": { + "en": "8.5.5" + }, "Code": "8.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate a spatial relation between situations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117194,7 +123708,22 @@ "Name": { "en": "Serious" }, + "Abbreviation": { + "en": "4.2.8.1" + }, "Code": "4.2.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being serious--not laughing or joking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25L Laugh, Cry, Groan x", "DeletedAt": null, "Predefined": true }, @@ -117203,7 +123732,22 @@ "Name": { "en": "Fight against something bad" }, + "Abbreviation": { + "en": "4.8.2.2" + }, "Code": "4.8.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to fighting against something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39C Resistance", "DeletedAt": null, "Predefined": true }, @@ -117212,7 +123756,22 @@ "Name": { "en": "Growing maize" }, + "Abbreviation": { + "en": "6.2.1.1.3" + }, "Code": "6.2.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing maize.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117221,7 +123780,22 @@ "Name": { "en": "Storm" }, + "Abbreviation": { + "en": "1.1.3.5" + }, "Code": "1.1.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to storms.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117230,7 +123804,22 @@ "Name": { "en": "Small animals" }, + "Abbreviation": { + "en": "1.6.1.9" + }, "Code": "1.6.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the names of worms, animals with shells, and other animals that do not fit into any of the other categories.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136g Amphibian, worm; 136j Fish and Mollusk", + "LouwNidaCodes": "4E Fishes and Other Sea Creatures", "DeletedAt": null, "Predefined": true }, @@ -117239,7 +123828,22 @@ "Name": { "en": "Pick up" }, + "Abbreviation": { + "en": "7.3.4.2" + }, "Code": "7.3.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to picking something up.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117248,7 +123852,22 @@ "Name": { "en": "Send someone" }, + "Abbreviation": { + "en": "7.2.8" + }, "Code": "7.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to causing someone to go somewhere.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117257,7 +123876,22 @@ "Name": { "en": "Sense, perceive" }, + "Abbreviation": { + "en": "2.3" + }, "Code": "2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to all the senses--sight, hearing, smell, taste, and feeling. Some languages may not distinguish some of these senses, and some languages may have words for other senses. There are also other senses that animals have. If your language has words for other senses, include them here.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "151 Sensation and Perception", + "LouwNidaCodes": "24 Sensory Events and States; 24G General Sensory Perception", "DeletedAt": null, "Predefined": true }, @@ -117266,7 +123900,22 @@ "Name": { "en": "Impartial" }, + "Abbreviation": { + "en": "4.7.9.1" + }, "Code": "4.7.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being impartial.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117275,7 +123924,22 @@ "Name": { "en": "Bless" }, + "Abbreviation": { + "en": "4.9.4.3" + }, "Code": "4.9.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to blessing someone--saying something that causes something good to happen, or requests God to do something good to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33C\u0022 Bless, Curse", "DeletedAt": null, "Predefined": true }, @@ -117284,7 +123948,22 @@ "Name": { "en": "Map" }, + "Abbreviation": { + "en": "7.2.4.8" + }, "Code": "7.2.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a map--a drawing of the world or part of the world.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "102 Maps", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117293,7 +123972,22 @@ "Name": { "en": "Lonely" }, + "Abbreviation": { + "en": "3.4.2.1.5" + }, "Code": "3.4.2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling lonely--to feel bad because you are alone and not with people you love.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117302,7 +123996,22 @@ "Name": { "en": "Blunt" }, + "Abbreviation": { + "en": "8.3.2.4" + }, "Code": "8.3.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is blunt.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117311,7 +124020,22 @@ "Name": { "en": "Work hard" }, + "Abbreviation": { + "en": "6.1.2.3.2" + }, "Code": "6.1.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working hard.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117320,7 +124044,22 @@ "Name": { "en": "Stomach illness" }, + "Abbreviation": { + "en": "2.5.2.3" + }, "Code": "2.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to stomach illness.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117329,7 +124068,22 @@ "Name": { "en": "Yesterday, today, tomorrow" }, + "Abbreviation": { + "en": "8.4.1.2.2" + }, "Code": "8.4.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to days relative to each other.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67J Units of Time with Reference to Other Units or Points of Time: Yesterday, Today, Next Day", "DeletedAt": null, "Predefined": true }, @@ -117338,7 +124092,22 @@ "Name": { "en": "Kneel" }, + "Abbreviation": { + "en": "7.1.4" + }, "Code": "7.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to kneeling.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "17C Kneel x", "DeletedAt": null, "Predefined": true }, @@ -117347,7 +124116,22 @@ "Name": { "en": "General words" }, + "Abbreviation": { + "en": "9.1" + }, "Code": "9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use the following section for words that don\u0027t belong in any other domain because they are so general in meaning that you can use them to talk about any topic. Use this domain for general and indefinite words that can be used in the place of any word. Some languages have a general word that can replace a noun or a verb. For instance some Philippine languages use the word \u0027kwan\u0027 in this way. Colloquial German can use the word \u0027dings\u0027 as a noun or verb. Often these words are used when you can\u0027t remember the particular word you are trying to think of. In English we use the word \u0027blank\u0027 when we don\u0027t want to say a word, for instance when we are testing someone and want them to say the word.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "13 Be, Become, Exist, Happen", "DeletedAt": null, "Predefined": true }, @@ -117356,7 +124140,22 @@ "Name": { "en": "With, be with" }, + "Abbreviation": { + "en": "9.5.2.2" + }, "Code": "9.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a person who accompanied the subject of a proposition.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117365,7 +124164,22 @@ "Name": { "en": "Floor" }, + "Abbreviation": { + "en": "6.5.2.3" + }, "Code": "6.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a floor.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117374,7 +124188,22 @@ "Name": { "en": "Extreme belief" }, + "Abbreviation": { + "en": "3.2.5.7" + }, "Code": "3.2.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an extreme belief--something that you believe, that most people think is not good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117383,7 +124212,22 @@ "Name": { "en": "Sheath" }, + "Abbreviation": { + "en": "6.7.7.2" + }, "Code": "6.7.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a sheath--a container for a weapon.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117392,7 +124236,22 @@ "Name": { "en": "Sculpture" }, + "Abbreviation": { + "en": "6.6.5.3" + }, "Code": "6.6.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sculpture.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117401,7 +124260,22 @@ "Name": { "en": "Parts of tools" }, + "Abbreviation": { + "en": "6.7.8" + }, "Code": "6.7.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to parts of tools and machines. You need to think of different tools and machines, and think of each part.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117410,7 +124284,22 @@ "Name": { "en": "Handle something" }, + "Abbreviation": { + "en": "7.3.4" + }, "Code": "7.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for using the hands to move something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117419,7 +124308,22 @@ "Name": { "en": "Hire, rent" }, + "Abbreviation": { + "en": "6.8.4.6" + }, "Code": "6.8.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hiring or renting something--to pay money so that you can use something that belongs to someone else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "427 Renting and Leasing", + "LouwNidaCodes": "57M Hire, Rent Out", "DeletedAt": null, "Predefined": true }, @@ -117428,7 +124332,22 @@ "Name": { "en": "Tell the truth" }, + "Abbreviation": { + "en": "3.5.1.3.1" + }, "Code": "3.5.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to telling the truth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33R Speak Truth, Speak Falsehood; 88E Honesty, Sincerity", "DeletedAt": null, "Predefined": true }, @@ -117437,7 +124356,22 @@ "Name": { "en": "Deaf" }, + "Abbreviation": { + "en": "2.5.4.3" + }, "Code": "2.5.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being deaf.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117446,7 +124380,22 @@ "Name": { "en": "Move back and forth" }, + "Abbreviation": { + "en": "7.2.2.8" + }, "Code": "7.2.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to moving back and forth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "16 Non-Linear Movement", "DeletedAt": null, "Predefined": true }, @@ -117455,7 +124404,22 @@ "Name": { "en": "Pregnancy" }, + "Abbreviation": { + "en": "2.6.3.1" + }, "Code": "2.6.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being pregnant.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "843 Pregnancy; 842 Conception", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117464,7 +124428,22 @@ "Name": { "en": "Short, not long" }, + "Abbreviation": { + "en": "8.2.2.1" + }, "Code": "8.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being short in length.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81C Long, Short, Far", "DeletedAt": null, "Predefined": true }, @@ -117473,7 +124452,22 @@ "Name": { "en": "Hollow" }, + "Abbreviation": { + "en": "8.3.1.6.3" + }, "Code": "8.3.1.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is hollow--empty on the inside.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117482,7 +124476,22 @@ "Name": { "en": "Female organs" }, + "Abbreviation": { + "en": "2.1.8.4" + }, "Code": "2.1.8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the female reproductive organs and a woman\u0027s monthly menstrual cycle. Some of these terms may be taboo. Care must be exercised in which terms are included in the dictionary. A group of women should decide which terms are \u0027public\u0027 and can go in the dictionary, and which would be considered taboo, overly crude, or embarrassing. For example some societies have been afraid that their women will be taken advantage of if these terms are known.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "841 Menstruation", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117491,7 +124500,22 @@ "Name": { "en": "Promise" }, + "Abbreviation": { + "en": "3.5.1.9" + }, "Code": "3.5.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to promising to do something--to say that you will do something in the future.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33Y Promise", "DeletedAt": null, "Predefined": true }, @@ -117500,7 +124524,22 @@ "Name": { "en": "Respond to someone in trouble" }, + "Abbreviation": { + "en": "4.4.4" + }, "Code": "4.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to responding to someone in trouble.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "748 Social Work", + "LouwNidaCodes": "25M Encouragement, Consolation", "DeletedAt": null, "Predefined": true }, @@ -117509,7 +124548,22 @@ "Name": { "en": "Metal" }, + "Abbreviation": { + "en": "1.2.2.3" + }, "Code": "1.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to metal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "2G Metals", "DeletedAt": null, "Predefined": true }, @@ -117518,7 +124572,22 @@ "Name": { "en": "Lack self-control" }, + "Abbreviation": { + "en": "4.3.6.1" + }, "Code": "4.3.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a lack of self-control.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88K Self-Control, Lack of Self-Control; 88G\u0027 Extravagant Living, Intemperate Living", "DeletedAt": null, "Predefined": true }, @@ -117527,7 +124596,22 @@ "Name": { "en": "Epistemic moods" }, + "Abbreviation": { + "en": "9.4.4" + }, "Code": "9.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate epistemic moods. Epistemic moods have the whole proposition in their scope and indicate the degree of commitment of the speaker to the truth or future truth of the proposition. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71 Mode", "DeletedAt": null, "Predefined": true }, @@ -117536,7 +124620,22 @@ "Name": { "en": "Demon possession" }, + "Abbreviation": { + "en": "4.9.4.2" + }, "Code": "4.9.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to demon possession--when a demon or spirit influences or controls the behavior of a person. Use this domain for all words related to the relationship between spirits and people, including communication between people and spirits. Also use this domain for words referring to casting out demons--causing a demon to stop influencing or controlling a person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "53K Exorcism", "DeletedAt": null, "Predefined": true }, @@ -117545,7 +124644,22 @@ "Name": { "en": "Since, from" }, + "Abbreviation": { + "en": "8.4.6.1.5" + }, "Code": "8.4.6.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that something will start to happen at some time and continue for some time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117554,7 +124668,22 @@ "Name": { "en": "Reconcile" }, + "Abbreviation": { + "en": "4.8.4.9" + }, "Code": "4.8.4.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to reconciling with someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "40A Reconciliation; 40 Reconciliation, Forgiveness", "DeletedAt": null, "Predefined": true }, @@ -117563,7 +124692,22 @@ "Name": { "en": "Start something" }, + "Abbreviation": { + "en": "8.4.6.1" + }, "Code": "8.4.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to starting something, or for something beginning to happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68A Begin, Start", "DeletedAt": null, "Predefined": true }, @@ -117572,7 +124716,22 @@ "Name": { "en": "Visible" }, + "Abbreviation": { + "en": "2.3.1.5" + }, "Code": "2.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being able to see something--words that describe something that can be seen, something that cannot be seen, something that is easy to see, or something that is difficult to see.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117581,7 +124740,22 @@ "Name": { "en": "Slip, slide" }, + "Abbreviation": { + "en": "7.2.1.5.1" + }, "Code": "7.2.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for moving across a smooth or lubricated surface.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117590,7 +124764,22 @@ "Name": { "en": "Working with oil and gas" }, + "Abbreviation": { + "en": "6.6.2.6" + }, "Code": "6.6.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with oil and gas.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "315 Oil and Gas Wells", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117599,7 +124788,22 @@ "Name": { "en": "Put" }, + "Abbreviation": { + "en": "7.5.9" + }, "Code": "7.5.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to putting something somewhere.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "85B Put, Place", "DeletedAt": null, "Predefined": true }, @@ -117608,7 +124812,22 @@ "Name": { "en": "Now" }, + "Abbreviation": { + "en": "8.4.6.3.1" + }, "Code": "8.4.6.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to now.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117617,7 +124836,22 @@ "Name": { "en": "Instinct" }, + "Abbreviation": { + "en": "3.2.1.6" + }, "Code": "3.2.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to instinct--to know something without being told, to know what to do without taught how to do it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117626,7 +124860,22 @@ "Name": { "en": "School" }, + "Abbreviation": { + "en": "3.6.2" + }, "Code": "3.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to school.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "870 Education; 871 Educational System; 872 Elementary Education; 873 Liberal Arts Education; 874 Vocational Education; 875 Teachers; 876 Educational Theory and Methods; 877 Students", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117635,7 +124884,22 @@ "Name": { "en": "Source (of movement)" }, + "Abbreviation": { + "en": "9.5.1.6.1" + }, "Code": "9.5.1.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark the Source (original location) of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117644,7 +124908,22 @@ "Name": { "en": "Cowardice" }, + "Abbreviation": { + "en": "4.4.3.2" + }, "Code": "4.4.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling cowardly--to be afraid to do something because you think something bad might happen to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117653,7 +124932,22 @@ "Name": { "en": "Primate" }, + "Abbreviation": { + "en": "1.6.1.1.1" + }, "Code": "1.6.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for primates (phylum Chordata, class Mammalia, order Primates).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117662,7 +124956,22 @@ "Name": { "en": "Parts of clothing" }, + "Abbreviation": { + "en": "5.3.6" + }, "Code": "5.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to parts of clothing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "293 Paraphernalia", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117671,7 +124980,22 @@ "Name": { "en": "Turn something" }, + "Abbreviation": { + "en": "7.3.5" + }, "Code": "7.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for turning something--to cause something to change direction, or to cause something to revolve or move in a circle.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "16 Non-Linear Movement", "DeletedAt": null, "Predefined": true }, @@ -117680,7 +125004,22 @@ "Name": { "en": "Load, pile" }, + "Abbreviation": { + "en": "7.5.9.1" + }, "Code": "7.5.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to putting lots of things on something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117689,7 +125028,22 @@ "Name": { "en": "Show, explain" }, + "Abbreviation": { + "en": "3.6.1" + }, "Code": "3.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to showing someone how something works, or explaining something to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117698,7 +125052,22 @@ "Name": { "en": "Food" }, + "Abbreviation": { + "en": "5.2" + }, "Code": "5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "146 Nutrition", + "LouwNidaCodes": "5 Foods and Condiments; 5A Food", "DeletedAt": null, "Predefined": true }, @@ -117707,7 +125076,22 @@ "Name": { "en": "Satiated, full" }, + "Abbreviation": { + "en": "5.2.2.6" + }, "Code": "5.2.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being full of food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117716,7 +125100,22 @@ "Name": { "en": "Women\u0027s clothing" }, + "Abbreviation": { + "en": "5.3.2" + }, "Code": "5.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to women\u0027s clothing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117725,7 +125124,22 @@ "Name": { "en": "River" }, + "Abbreviation": { + "en": "1.3.1.3" + }, "Code": "1.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to bodies of flowing water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117734,7 +125148,22 @@ "Name": { "en": "Hesitation fillers" }, + "Abbreviation": { + "en": "9.6.3.7" + }, "Code": "9.6.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses when he hesitates or pauses while he is speaking in order to think about what he is saying.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117743,7 +125172,22 @@ "Name": { "en": "Lust" }, + "Abbreviation": { + "en": "3.3.1.8" + }, "Code": "3.3.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lusting for something--to want something bad or forbidden.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25B Desire Strongly", "DeletedAt": null, "Predefined": true }, @@ -117752,7 +125196,22 @@ "Name": { "en": "Repair" }, + "Abbreviation": { + "en": "7.9.4" + }, "Code": "7.9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to repairing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117761,7 +125220,22 @@ "Name": { "en": "Gambling" }, + "Abbreviation": { + "en": "4.2.6.4" + }, "Code": "4.2.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to gambling.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "525 Gambling", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117770,7 +125244,22 @@ "Name": { "en": "Names of buildings" }, + "Abbreviation": { + "en": "9.7.3.2" + }, "Code": "9.7.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the name of a building.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117779,7 +125268,22 @@ "Name": { "en": "Take care of something" }, + "Abbreviation": { + "en": "6.1.2.2.5" + }, "Code": "6.1.2.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to taking care of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117788,7 +125292,22 @@ "Name": { "en": "Mature in behavior" }, + "Abbreviation": { + "en": "4.3.1.3" + }, "Code": "4.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to acting maturely--to act like an adult rather than a child.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88M Mature Behavior", "DeletedAt": null, "Predefined": true }, @@ -117797,7 +125316,22 @@ "Name": { "en": "Appearance" }, + "Abbreviation": { + "en": "2.3.1.8" + }, "Code": "2.3.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to how something appears.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58B Appearance as an Outward Manifestation of Form", "DeletedAt": null, "Predefined": true }, @@ -117806,7 +125340,22 @@ "Name": { "en": "Together" }, + "Abbreviation": { + "en": "9.5.2.1" + }, "Code": "9.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating when two or more people each do the same thing and do it together, or when they do it separately.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117815,7 +125364,22 @@ "Name": { "en": "Cut" }, + "Abbreviation": { + "en": "7.8.3" + }, "Code": "7.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cutting something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19B Pierce, Cut", "DeletedAt": null, "Predefined": true }, @@ -117824,7 +125388,22 @@ "Name": { "en": "Serve" }, + "Abbreviation": { + "en": "4.5.4.3" + }, "Code": "4.5.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to serving someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "35B Serve", "DeletedAt": null, "Predefined": true }, @@ -117833,7 +125412,22 @@ "Name": { "en": "Money" }, + "Abbreviation": { + "en": "6.8.6" + }, "Code": "6.8.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to money.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "436 Medium of Exchange; 457 Foreign Exchange", + "LouwNidaCodes": "6K Money and Monetary Units", "DeletedAt": null, "Predefined": true }, @@ -117842,7 +125436,22 @@ "Name": { "en": "Better" }, + "Abbreviation": { + "en": "8.3.7.2" + }, "Code": "8.3.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is better than something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117851,7 +125460,22 @@ "Name": { "en": "Ashamed" }, + "Abbreviation": { + "en": "3.4.2.2.1" + }, "Code": "3.4.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling ashamed--to feel bad because people think you did something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25R Shame, Disgrace, Humiliation; 88T Act Shamefully", "DeletedAt": null, "Predefined": true }, @@ -117860,7 +125484,22 @@ "Name": { "en": "Adopt" }, + "Abbreviation": { + "en": "4.1.9.6" + }, "Code": "4.1.9.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to adopting a child.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "597 Adoption", + "LouwNidaCodes": "35G Adopt", "DeletedAt": null, "Predefined": true }, @@ -117869,7 +125508,22 @@ "Name": { "en": "Limit" }, + "Abbreviation": { + "en": "7.3.6.3" + }, "Code": "7.3.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a limit beyond which something may or should not go, and for words referring to imposing a limit.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "80B Limits, Boundaries of Space", "DeletedAt": null, "Predefined": true }, @@ -117878,7 +125532,22 @@ "Name": { "en": "Instrument" }, + "Abbreviation": { + "en": "9.5.1.2" + }, "Code": "9.5.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark an instrument used to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "90B Instrument", "DeletedAt": null, "Predefined": true }, @@ -117887,7 +125556,22 @@ "Name": { "en": "Stage of life" }, + "Abbreviation": { + "en": "2.6.4" + }, "Code": "2.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a stage of life--a time period in a person\u0027s life.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "145 Ontogenetic Data; 850 Infancy and Childhood; 880 Adolescence, Adulthood, and Old Age", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117896,7 +125580,22 @@ "Name": { "en": "Wear clothing" }, + "Abbreviation": { + "en": "5.3.7" + }, "Code": "5.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to wearing clothing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "49 Activities Involving Clothing and Adorning", "DeletedAt": null, "Predefined": true }, @@ -117905,7 +125604,22 @@ "Name": { "en": "Anteater, aardvark" }, - "Code": "1.6.1.1.6", + "Abbreviation": { + "en": "1.6.1.1.6" + }, + "Code": "1.6.1.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for mammals with few or no teeth--anteaters (phylum Chordata, class Mammalia, order Edentata), pangolins (phylum Chordata, class Mammalia, order Pholidota), aardvarks (phylum Chordata, class Mammalia, order Tubulidentata), and platypus--mammals that lay eggs (phylum Chordata, class Mammalia, order Monotremata).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117914,7 +125628,22 @@ "Name": { "en": "Fertile, infertile" }, + "Abbreviation": { + "en": "2.6.3.8" + }, "Code": "2.6.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unable to have children.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117923,7 +125652,22 @@ "Name": { "en": "Furniture" }, + "Abbreviation": { + "en": "5.1.1" + }, "Code": "5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to furniture.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "352 Furniture", + "LouwNidaCodes": "6O Furniture", "DeletedAt": null, "Predefined": true }, @@ -117932,7 +125676,22 @@ "Name": { "en": "Father, mother" }, + "Abbreviation": { + "en": "4.1.9.1.2" + }, "Code": "4.1.9.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to parents.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117941,7 +125700,22 @@ "Name": { "en": "Delay" }, + "Abbreviation": { + "en": "8.4.5.3.4" + }, "Code": "8.4.5.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something delaying someone or something--to cause something to happen at a later time, cause someone to do something at a later time, or cause someone or something to be late.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117950,7 +125724,22 @@ "Name": { "en": "Once" }, + "Abbreviation": { + "en": "8.4.6.6" + }, "Code": "8.4.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening once.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117959,7 +125748,22 @@ "Name": { "en": "Poor" }, + "Abbreviation": { + "en": "6.8.1.3" + }, "Code": "6.8.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being poor.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "735 Poverty", + "LouwNidaCodes": "57F Be Poor, Be Needy, Poverty; 57S Be a Financial Burden", "DeletedAt": null, "Predefined": true }, @@ -117968,7 +125772,22 @@ "Name": { "en": "Symmetrical" }, + "Abbreviation": { + "en": "8.3.1.8.1" + }, "Code": "8.3.1.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe something that is symmetrical--having the same shape on both sides", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117977,7 +125796,22 @@ "Name": { "en": "Speak in unison" }, + "Abbreviation": { + "en": "3.5.1.4.5" + }, "Code": "3.5.1.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to speaking in unison--to say something at the same time as someone else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117986,7 +125820,22 @@ "Name": { "en": "Fat person" }, + "Abbreviation": { + "en": "8.2.3.2" + }, "Code": "8.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a person or animal who is fat.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81D Narrow, Wide", "DeletedAt": null, "Predefined": true }, @@ -117995,7 +125844,22 @@ "Name": { "en": "Remind" }, + "Abbreviation": { + "en": "3.2.6.4" + }, "Code": "3.2.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to reminding someone about something--to make someone remember something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118004,7 +125868,22 @@ "Name": { "en": "Request" }, + "Abbreviation": { + "en": "3.3.2" + }, "Code": "3.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to requesting something--to ask for something, or ask someone to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33L Ask For, Request", "DeletedAt": null, "Predefined": true }, @@ -118013,7 +125892,22 @@ "Name": { "en": "Food from roots" }, + "Abbreviation": { + "en": "5.2.3.1.5" + }, "Code": "5.2.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to food from roots.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118022,7 +125916,22 @@ "Name": { "en": "Alone" }, + "Abbreviation": { + "en": "4.1.6.3" + }, "Code": "4.1.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being alone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118031,7 +125940,22 @@ "Name": { "en": "Simple, complicated" }, + "Abbreviation": { + "en": "7.5.8" + }, "Code": "7.5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being simple or complicated--words describing the organization of a group of things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118040,7 +125964,22 @@ "Name": { "en": "Know someone" }, + "Abbreviation": { + "en": "4.1.3" + }, "Code": "4.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to knowing someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118049,7 +125988,22 @@ "Name": { "en": "Clean, dirty" }, + "Abbreviation": { + "en": "5.6.1" + }, "Code": "5.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing whether something is clean or dirty.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "318 Environmental Quality", + "LouwNidaCodes": "79J Clean, Dirty; 79K Spotted, Spotless", "DeletedAt": null, "Predefined": true }, @@ -118058,7 +126012,22 @@ "Name": { "en": "Pleased with" }, + "Abbreviation": { + "en": "3.4.1.1.8" + }, "Code": "3.4.1.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling pleased with someone--to feel good because someone did something good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25H Acceptable To, To Be Pleased With", "DeletedAt": null, "Predefined": true }, @@ -118067,7 +126036,22 @@ "Name": { "en": "Months of the year" }, + "Abbreviation": { + "en": "8.4.1.4.1" + }, "Code": "8.4.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the months of the year.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118076,7 +126060,22 @@ "Name": { "en": "Feel good" }, + "Abbreviation": { + "en": "3.4.1" + }, "Code": "3.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to positive emotions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118085,7 +126084,22 @@ "Name": { "en": "Thresh" }, + "Abbreviation": { + "en": "6.2.6.3" + }, "Code": "6.2.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to threshing grain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118094,7 +126108,22 @@ "Name": { "en": "Soft, flimsy" }, + "Abbreviation": { + "en": "8.3.6.5" + }, "Code": "8.3.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is soft or flimsy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79U Soft, Tender", "DeletedAt": null, "Predefined": true }, @@ -118103,7 +126132,22 @@ "Name": { "en": "Necessary " }, + "Abbreviation": { + "en": "9.4.2.3" + }, "Code": "9.4.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses to indicate that he thinks something must happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71E Necessary, Unnecessary", "DeletedAt": null, "Predefined": true }, @@ -118112,7 +126156,22 @@ "Name": { "en": "Lend" }, + "Abbreviation": { + "en": "6.8.5.1" + }, "Code": "6.8.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lending something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118121,7 +126180,22 @@ "Name": { "en": "Intelligent" }, + "Abbreviation": { + "en": "3.2.1.3" + }, "Code": "3.2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe a person who thinks well.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "32D Capacity for Understanding", "DeletedAt": null, "Predefined": true }, @@ -118130,7 +126204,22 @@ "Name": { "en": "Result" }, + "Abbreviation": { + "en": "9.6.2.6" + }, "Code": "9.6.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is the result of another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89H Result", "DeletedAt": null, "Predefined": true }, @@ -118139,7 +126228,22 @@ "Name": { "en": "Working with bone" }, + "Abbreviation": { + "en": "6.6.4.4" + }, "Code": "6.6.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with bone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "321 Work in Bone, Horn, and Shell", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118148,7 +126252,22 @@ "Name": { "en": "Last" }, + "Abbreviation": { + "en": "8.4.5.1.4" + }, "Code": "8.4.5.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening last--to happen after all other things in a sequence, or to be the last person or thing in a sequence.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118157,7 +126276,22 @@ "Name": { "en": "Related by marriage" }, + "Abbreviation": { + "en": "4.1.9.2" + }, "Code": "4.1.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being related by marriage.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "10D Kinship Relations Based upon Marriage", "DeletedAt": null, "Predefined": true }, @@ -118166,7 +126300,22 @@ "Name": { "en": "Flesh" }, + "Abbreviation": { + "en": "2.1.7" + }, "Code": "2.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the soft tissue of the body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118175,7 +126324,22 @@ "Name": { "en": "Cat" }, + "Abbreviation": { + "en": "6.3.1.6" + }, "Code": "6.3.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cats.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118184,7 +126348,22 @@ "Name": { "en": "Emphasize" }, + "Abbreviation": { + "en": "3.5.1.2.8" + }, "Code": "3.5.1.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to emphasizing something--to say something in a way that other people know that you think this thing is important.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118193,7 +126372,22 @@ "Name": { "en": "Borrow" }, + "Abbreviation": { + "en": "6.8.5" + }, "Code": "6.8.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to borrowing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118202,7 +126396,22 @@ "Name": { "en": "Except" }, + "Abbreviation": { + "en": "9.6.1.5.1" + }, "Code": "9.6.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is an exception to a group, rule or pattern--something is true of all the things (or people) in a group, but it is not true of one thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118211,7 +126420,22 @@ "Name": { "en": "Information" }, + "Abbreviation": { + "en": "3.5.3.2" + }, "Code": "3.5.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to information--something someone says about something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33O Inform, Announce", "DeletedAt": null, "Predefined": true }, @@ -118220,7 +126444,22 @@ "Name": { "en": "Building equipment and maintenance" }, + "Abbreviation": { + "en": "6.5.3.1" + }, "Code": "6.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the equipment and maintenance of a building.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "350 Equipment and Maintenance of Buildings; 358 Maintenance of Non-domestic Buildings", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118229,7 +126468,22 @@ "Name": { "en": "Birth defect" }, + "Abbreviation": { + "en": "2.5.4.5" + }, "Code": "2.5.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having a birth defect.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "143 Genetics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118238,7 +126492,22 @@ "Name": { "en": "Honor" }, + "Abbreviation": { + "en": "4.5.5" + }, "Code": "4.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to honoring someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "87B Honor or Respect in Relation to Status", "DeletedAt": null, "Predefined": true }, @@ -118247,7 +126516,22 @@ "Name": { "en": "Tidy" }, + "Abbreviation": { + "en": "4.3.6.2" + }, "Code": "4.3.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being tidy in your habits, such as keeping your belongings neat and organized,.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118256,7 +126540,22 @@ "Name": { "en": "Happy for" }, + "Abbreviation": { + "en": "3.4.1.1.7" + }, "Code": "3.4.1.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling happy for someone--to feel good because something good happened to someone. The opposite is jealousy and envy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118265,7 +126564,22 @@ "Name": { "en": "Dance" }, + "Abbreviation": { + "en": "4.2.4" + }, "Code": "4.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dancing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "535 Dancing", + "LouwNidaCodes": "15F\u0027 Dance", "DeletedAt": null, "Predefined": true }, @@ -118274,7 +126588,22 @@ "Name": { "en": "Request forgiveness" }, + "Abbreviation": { + "en": "4.8.4.6.1" + }, "Code": "4.8.4.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to asking for forgiveness.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118283,7 +126612,22 @@ "Name": { "en": "Plant product" }, + "Abbreviation": { + "en": "6.2.5.4" + }, "Code": "6.2.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to materials and substances that are taken from plants and used for various purposes. It is necessary to think through various types of plants to think of what materials are taken from each.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6S Plant Products; 3F Wood and Wood Products", "DeletedAt": null, "Predefined": true }, @@ -118292,7 +126636,22 @@ "Name": { "en": "Light" }, + "Abbreviation": { + "en": "8.3.3" + }, "Code": "8.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to light.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "373 Light", + "LouwNidaCodes": "14F Light", "DeletedAt": null, "Predefined": true }, @@ -118301,7 +126660,22 @@ "Name": { "en": "Boat" }, + "Abbreviation": { + "en": "7.2.4.2.1" + }, "Code": "7.2.4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a boat.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6H Boats and Parts of Boats", "DeletedAt": null, "Predefined": true }, @@ -118310,7 +126684,22 @@ "Name": { "en": "Sudden" }, + "Abbreviation": { + "en": "8.4.8.3" + }, "Code": "8.4.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a sudden event--something happens that I don\u0027t expect.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68G Rapidity, Suddenness", "DeletedAt": null, "Predefined": true }, @@ -118319,7 +126708,22 @@ "Name": { "en": "Problem" }, + "Abbreviation": { + "en": "4.4.2.1" + }, "Code": "4.4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to problems.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118328,7 +126732,22 @@ "Name": { "en": "Internal organs" }, + "Abbreviation": { + "en": "2.1.8" + }, "Code": "2.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the internal organs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118337,7 +126756,22 @@ "Name": { "en": "Devout" }, + "Abbreviation": { + "en": "4.9.5.1" + }, "Code": "4.9.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being devout.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118346,7 +126780,22 @@ "Name": { "en": "Hinduism" }, + "Abbreviation": { + "en": "4.9.7.4" + }, "Code": "4.9.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words used in Hinduism.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118355,7 +126804,22 @@ "Name": { "en": "Water quality" }, + "Abbreviation": { + "en": "1.3.6" + }, "Code": "1.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing the quality or condition of water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118364,7 +126828,22 @@ "Name": { "en": "Railroad" }, + "Abbreviation": { + "en": "7.2.4.1.2" + }, "Code": "7.2.4.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to railroads.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118373,7 +126852,22 @@ "Name": { "en": "Inner part" }, + "Abbreviation": { + "en": "8.6.4" + }, "Code": "8.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the inside part of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118382,7 +126876,22 @@ "Name": { "en": "Skin disease" }, + "Abbreviation": { + "en": "2.5.2.2" + }, "Code": "2.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to skin diseases such as leprosy, boils, and rashes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118391,7 +126900,22 @@ "Name": { "en": "Bag" }, + "Abbreviation": { + "en": "6.7.7.1" + }, "Code": "6.7.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to bags.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118400,7 +126924,22 @@ "Name": { "en": "Tight" }, + "Abbreviation": { + "en": "8.2.7.1" + }, "Code": "8.2.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being tight--when something is too small.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118409,7 +126948,22 @@ "Name": { "en": "Hunting birds" }, + "Abbreviation": { + "en": "6.4.3" + }, "Code": "6.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hunting birds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "223 Fowling", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118418,7 +126972,22 @@ "Name": { "en": "Month" }, + "Abbreviation": { + "en": "8.4.1.4" + }, "Code": "8.4.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a month.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118427,7 +126996,22 @@ "Name": { "en": "Never" }, + "Abbreviation": { + "en": "8.4.6.6.6" + }, "Code": "8.4.6.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that something that never happens, or that something has not once happened.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118436,7 +127020,22 @@ "Name": { "en": "Holiday" }, + "Abbreviation": { + "en": "4.2.9" + }, "Code": "4.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a holiday.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118445,7 +127044,22 @@ "Name": { "en": "Deep, shallow" }, + "Abbreviation": { + "en": "8.2.6.5" + }, "Code": "8.2.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being deep or shallow--how far something such as a hole extends below the ground or other surface, or how far something is below the surface of the water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81B High, Low, Deep", "DeletedAt": null, "Predefined": true }, @@ -118454,7 +127068,22 @@ "Name": { "en": "Owe" }, + "Abbreviation": { + "en": "6.8.5.3" + }, "Code": "6.8.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to owing money.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "426 Borrowing and Lending", + "LouwNidaCodes": "57R Owe, Debt, Cancel; 57Q Lend, Loan, Interest, Borrow, Bank", "DeletedAt": null, "Predefined": true }, @@ -118463,7 +127092,22 @@ "Name": { "en": "Visit" }, + "Abbreviation": { + "en": "4.2.1.4" + }, "Code": "4.2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to visiting someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "574 Visiting and Hospitality", + "LouwNidaCodes": "34F Visit", "DeletedAt": null, "Predefined": true }, @@ -118472,7 +127116,22 @@ "Name": { "en": "Accumulate wealth" }, + "Abbreviation": { + "en": "6.8.2" + }, "Code": "6.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to accumulating wealth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "556 Accumulation of Wealth", + "LouwNidaCodes": "57G Take, Obtain, Gain, Lose", "DeletedAt": null, "Predefined": true }, @@ -118481,7 +127140,22 @@ "Name": { "en": "Direction" }, + "Abbreviation": { + "en": "8.5.2" + }, "Code": "8.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to a direction.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "82 Spatial Orientation; 82B Left, Right, Straight Ahead, Opposite", "DeletedAt": null, "Predefined": true }, @@ -118490,7 +127164,22 @@ "Name": { "en": "Movie" }, + "Abbreviation": { + "en": "3.5.9.4" + }, "Code": "3.5.9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to movies and the cinema.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118499,7 +127188,22 @@ "Name": { "en": "Means" }, + "Abbreviation": { + "en": "9.5.1.3" + }, "Code": "9.5.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating the means by which something is done.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89L Means", "DeletedAt": null, "Predefined": true }, @@ -118508,7 +127212,22 @@ "Name": { "en": "Castrate animal" }, + "Abbreviation": { + "en": "6.3.8.2" + }, "Code": "6.3.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to castrating animals. There are sometimes specific terms for castrated animals, such as \u0027steer--a male cow that has been castrated before maturity\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118517,7 +127236,22 @@ "Name": { "en": "Plain, plateau" }, + "Abbreviation": { + "en": "1.2.1.3" + }, "Code": "1.2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to land that is flat.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118526,7 +127260,22 @@ "Name": { "en": "Chair" }, + "Abbreviation": { + "en": "5.1.1.2" + }, "Code": "5.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a chair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118535,7 +127284,22 @@ "Name": { "en": "Without purpose " }, + "Abbreviation": { + "en": "9.6.2.7.1" + }, "Code": "9.6.2.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something had no purpose.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89I Purpose", "DeletedAt": null, "Predefined": true }, @@ -118544,7 +127308,22 @@ "Name": { "en": "Wall" }, + "Abbreviation": { + "en": "6.5.2.1" + }, "Code": "6.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to walls.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "7F Walls and Fences", "DeletedAt": null, "Predefined": true }, @@ -118553,7 +127332,22 @@ "Name": { "en": "Movement of water" }, + "Abbreviation": { + "en": "1.3.2" + }, "Code": "1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the way in which water and other liquids move.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "47 Activities Involving Liquids or Masses; 47A Movement of Liquids or Masses; 14E Events Involving Liquids and Dry Masses", "DeletedAt": null, "Predefined": true }, @@ -118562,7 +127356,22 @@ "Name": { "en": "Publish" }, + "Abbreviation": { + "en": "3.5.7.4" + }, "Code": "3.5.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to publishing books.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "214 Publishing; 213 Printing", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118571,7 +127380,22 @@ "Name": { "en": "Future" }, + "Abbreviation": { + "en": "8.4.6.4" + }, "Code": "8.4.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the future.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118580,7 +127404,22 @@ "Name": { "en": "Life" }, + "Abbreviation": { + "en": "2.6" + }, "Code": "2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to being alive and to a person\u0027s lifetime.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "761 Life and Death; 159 Life History Materials", + "LouwNidaCodes": "23G Live, Die", "DeletedAt": null, "Predefined": true }, @@ -118589,7 +127428,22 @@ "Name": { "en": "Cooperate with" }, + "Abbreviation": { + "en": "4.3.4.3" + }, "Code": "4.3.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cooperating with someone to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118598,7 +127452,22 @@ "Name": { "en": "Care for" }, + "Abbreviation": { + "en": "4.3.4.5.2" + }, "Code": "4.3.4.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to caring for someone--to do something good for someone, because they need something and cannot do it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "35D Care For, Take Care Of", "DeletedAt": null, "Predefined": true }, @@ -118607,7 +127476,22 @@ "Name": { "en": "Enjoy doing something" }, + "Abbreviation": { + "en": "3.4.1.1.1" + }, "Code": "3.4.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to enjoying doing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118616,7 +127500,22 @@ "Name": { "en": "Working relationship" }, + "Abbreviation": { + "en": "4.1.2.1" + }, "Code": "4.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a relationship between people who work together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118625,7 +127524,22 @@ "Name": { "en": "Extinguish a fire" }, + "Abbreviation": { + "en": "5.5.3" + }, "Code": "5.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for all the ways a person can stop a fire.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118634,7 +127548,22 @@ "Name": { "en": "Plumber" }, + "Abbreviation": { + "en": "6.6.7.1" + }, "Code": "6.6.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with water pipes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118643,7 +127572,22 @@ "Name": { "en": "Mercy" }, + "Abbreviation": { + "en": "4.4.4.1" + }, "Code": "4.4.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having mercy on someone who has done something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88J Mercy, Merciless", "DeletedAt": null, "Predefined": true }, @@ -118652,7 +127596,22 @@ "Name": { "en": "Answer in a test" }, + "Abbreviation": { + "en": "3.6.8" + }, "Code": "3.6.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the answer to a question in a test.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118661,7 +127620,22 @@ "Name": { "en": "Real" }, + "Abbreviation": { + "en": "3.5.1.3.5" + }, "Code": "3.5.1.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate if something is real.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "70 Real, Unreal; 73 Genuine, Phony", "DeletedAt": null, "Predefined": true }, @@ -118670,7 +127644,22 @@ "Name": { "en": "Fever" }, + "Abbreviation": { + "en": "2.5.6.2" + }, "Code": "2.5.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having a fever.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118679,7 +127668,22 @@ "Name": { "en": "Beginning" }, + "Abbreviation": { + "en": "8.4.6.1.1" + }, "Code": "8.4.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something beginning to happen, to beginning to do something, to cause something to start happening, or to cause people to start doing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118688,7 +127692,22 @@ "Name": { "en": "Related by birth" }, + "Abbreviation": { + "en": "4.1.9.1" + }, "Code": "4.1.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being related by birth--when one of your ancestors and one of someone else\u0027s ancestors are the same person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "602 Kin Relationships", + "LouwNidaCodes": "10A Groups and Members of Groups of Persons Regarded as Related by Blood but without Special Reference to Successive Generations; 10B Kinship Relations Involving Successive Generations", "DeletedAt": null, "Predefined": true }, @@ -118697,7 +127716,22 @@ "Name": { "en": "Greet" }, + "Abbreviation": { + "en": "3.5.1.4.3" + }, "Code": "3.5.1.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to greeting someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "34I Kiss, Embrace", "DeletedAt": null, "Predefined": true }, @@ -118706,7 +127740,22 @@ "Name": { "en": "In groups" }, + "Abbreviation": { + "en": "9.5.2.5" + }, "Code": "9.5.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that the subjects of a clause do something in groups.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118715,7 +127764,22 @@ "Name": { "en": "Revenge" }, + "Abbreviation": { + "en": "4.8.2.5" + }, "Code": "4.8.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to revenge--to do something bad to someone because they did something bad to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39F Revenge", "DeletedAt": null, "Predefined": true }, @@ -118724,7 +127788,22 @@ "Name": { "en": "Bush, shrub" }, + "Abbreviation": { + "en": "1.5.2" + }, "Code": "1.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for bushes and shrubs--plants that are smaller than trees and have several wooden trunks (Phylum Spermatophyta, Subdivision Angiospermae).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137e Shrubs", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118733,7 +127812,22 @@ "Name": { "en": "Indefinite time" }, + "Abbreviation": { + "en": "8.4.3" + }, "Code": "8.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an indefinite time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67A A Point of Time without Reference to Other Points of Time: Time, Occasion, Ever, Often", "DeletedAt": null, "Predefined": true }, @@ -118742,7 +127836,22 @@ "Name": { "en": "Colors of the spectrum" }, + "Abbreviation": { + "en": "8.3.3.3.4" + }, "Code": "8.3.3.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is colored.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118751,7 +127860,22 @@ "Name": { "en": "Gray" }, + "Abbreviation": { + "en": "8.3.3.3.3" + }, "Code": "8.3.3.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is gray.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118760,7 +127884,22 @@ "Name": { "en": "Plan" }, + "Abbreviation": { + "en": "6.1.2.5" + }, "Code": "6.1.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to planning.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "121 Theoretical Orientation in Research and Its Results", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118769,7 +127908,22 @@ "Name": { "en": "Flatter" }, + "Abbreviation": { + "en": "3.5.1.7.2" + }, "Code": "3.5.1.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to flattering someone--saying something nice to someone but not meaning it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33L\u0027 Flatter", "DeletedAt": null, "Predefined": true }, @@ -118778,7 +127932,22 @@ "Name": { "en": "Opinion" }, + "Abbreviation": { + "en": "3.2.5" + }, "Code": "3.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for situations in which a question or issues are being debated, more than one option is possible, and a person chooses to think in one way about the question or issue.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "31A Have an Opinion, Hold a View; 31 Hold a View, Believe, Trust; 31D Acknowledge; 31G Accept as True; 31H Change an Opinion Concerning Truth", "DeletedAt": null, "Predefined": true }, @@ -118787,7 +127956,22 @@ "Name": { "en": "Very" }, + "Abbreviation": { + "en": "9.3" + }, "Code": "9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that intensify an attribute.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118796,7 +127980,22 @@ "Name": { "en": "Music" }, + "Abbreviation": { + "en": "4.2.3" + }, "Code": "4.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to music.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "533 Music; 545 Musical and Theatrical Productions", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118805,7 +128004,22 @@ "Name": { "en": "Naked" }, + "Abbreviation": { + "en": "5.3.8" + }, "Code": "5.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being naked--not wearing any clothes, and for words referring to how a person feels about being naked. It is a part of universal human experience that people do not want to be naked. So there are words that refer to feeling bad if one does not have enough clothes on (shame). Other words refer to wanting to have enough clothes (modest). Other words refer to how people feel about other people who do not wear enough clothes (indecent).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118814,7 +128028,22 @@ "Name": { "en": "Move to a new house" }, + "Abbreviation": { + "en": "7.2.4.5" + }, "Code": "7.2.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to permanently leaving your home or country, and for words related to migrating--moving every year to the same places because of the weather and food supplies.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "166 Internal Migration", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118823,7 +128052,22 @@ "Name": { "en": "Ambush" }, + "Abbreviation": { + "en": "4.8.2.3.1" + }, "Code": "4.8.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to ambushing someone--to attacking someone without warning.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39K Ambush", "DeletedAt": null, "Predefined": true }, @@ -118832,7 +128076,22 @@ "Name": { "en": "Meeting, assembly" }, + "Abbreviation": { + "en": "4.2.1.5" + }, "Code": "4.2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a meeting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118841,7 +128100,22 @@ "Name": { "en": "Relational tenses" }, + "Abbreviation": { + "en": "9.4.1.4" + }, "Code": "9.4.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate relational tenses. Relational tenses describe situations where the reference time is not the same as the moment of speech. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118850,7 +128124,22 @@ "Name": { "en": "Fight" }, + "Abbreviation": { + "en": "4.8.2" + }, "Code": "4.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to fighting someone. The words in this domain describe a situation in which two people or groups of people fight each other over something or in order to reach some goal. A fight can use words, various kinds of weapons, or other actions. For fights that only use words use the domain \u0027Quarrel\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "55B To Fight", "DeletedAt": null, "Predefined": true }, @@ -118859,7 +128148,22 @@ "Name": { "en": "Ostracize" }, + "Abbreviation": { + "en": "4.7.7.5" + }, "Code": "4.7.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to ostracizing someone--excluding someone from society as punishment for some wrong.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118868,7 +128172,22 @@ "Name": { "en": "With (a patient)" }, + "Abbreviation": { + "en": "9.5.3.3" + }, "Code": "9.5.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark a second Patient that accompanies the primary Patient of an activity. In this type of sentence there are actually two Patients, but one of them has more prominence than the other. The primary patient is usually expressed as the object of the sentence. The second Patient may be marked by an oblique case or preposition/postposition. For instance it may be conceived as accompanying the first Patient.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89R Linkage", "DeletedAt": null, "Predefined": true }, @@ -118877,7 +128196,22 @@ "Name": { "en": "Frugal" }, + "Abbreviation": { + "en": "6.8.2.4" + }, "Code": "6.8.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being frugal--to not spend a lot of money.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118886,7 +128220,22 @@ "Name": { "en": "Government organization" }, + "Abbreviation": { + "en": "4.6.3" + }, "Code": "4.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a government organization.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "621 Community Structure; 628 Inter-community Relations; 629 Inter-ethnic Relations; 642 Constitution", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118895,7 +128244,22 @@ "Name": { "en": "Dishonest" }, + "Abbreviation": { + "en": "4.3.5.1" + }, "Code": "4.3.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being dishonest.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118904,7 +128268,22 @@ "Name": { "en": "Lean" }, + "Abbreviation": { + "en": "7.1.6" + }, "Code": "7.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a person who is leaning.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118913,7 +128292,22 @@ "Name": { "en": "Labor and birth pains" }, + "Abbreviation": { + "en": "2.6.3.4" + }, "Code": "2.6.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to labor and birth pains.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118922,7 +128316,22 @@ "Name": { "en": "Mineral" }, + "Abbreviation": { + "en": "1.2.2.4" + }, "Code": "1.2.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for naturally occurring elements, compounds, and minerals--things you can find in the ground.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "135 Mineral Resources", + "LouwNidaCodes": "2A Elements", "DeletedAt": null, "Predefined": true }, @@ -118931,7 +128340,22 @@ "Name": { "en": "Give, hand to" }, + "Abbreviation": { + "en": "7.4.1" + }, "Code": "7.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to giving something to someone, in which there is no transaction of ownership, merely the movement of the thing from one person to another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57H Give", "DeletedAt": null, "Predefined": true }, @@ -118940,7 +128364,22 @@ "Name": { "en": "Carnivore" }, + "Abbreviation": { + "en": "1.6.1.1.2" + }, "Code": "1.6.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for carnivores--meat-eating animals (phylum Chordata, class Mammalia, order Carnivora).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118949,7 +128388,22 @@ "Name": { "en": "Aim at a target" }, + "Abbreviation": { + "en": "7.7.2" + }, "Code": "7.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to aiming at a target, and for hitting or missing the target.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118958,7 +128412,22 @@ "Name": { "en": "Social activity" }, + "Abbreviation": { + "en": "4.2" + }, "Code": "4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to social activities.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "517 Leisure Time Activities", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118967,7 +128436,22 @@ "Name": { "en": "Orphan" }, + "Abbreviation": { + "en": "4.1.9.4" + }, "Code": "4.1.9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to orphans.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118976,7 +128460,22 @@ "Name": { "en": "Deserve" }, + "Abbreviation": { + "en": "4.7.9.3" + }, "Code": "4.7.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to deserving something--if you do something, either good or bad, something can happen to you as a result of what you did. For instance you can receive a reward for doing good, or a punishment for doing wrong. If what happened to you is like what you did, people can think it is right that this thing happened to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118985,7 +128484,22 @@ "Name": { "en": "Fish with net" }, + "Abbreviation": { + "en": "6.4.5.1" + }, "Code": "6.4.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fishing with a net.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -118994,7 +128508,22 @@ "Name": { "en": "Exercise authority" }, + "Abbreviation": { + "en": "4.5.3" + }, "Code": "4.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to exercising authority.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37C Exercise Authority", "DeletedAt": null, "Predefined": true }, @@ -119003,7 +128532,22 @@ "Name": { "en": "Tribal names" }, + "Abbreviation": { + "en": "9.7.1.4" + }, "Code": "9.7.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the tribes that exist around the language community, including the name of your own tribe. These tribal names may or may not correspond with the names of countries.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119012,7 +128556,22 @@ "Name": { "en": "Markers of direct address " }, + "Abbreviation": { + "en": "9.6.3.4" + }, "Code": "9.6.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that the speaker uses to refer to the person he is addressing. These words are usually used when you start talking to someone, but can be used during a speech or conversation to refer to the person you are talking to.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "91D Markers of Direct Address", "DeletedAt": null, "Predefined": true }, @@ -119021,7 +128580,22 @@ "Name": { "en": "Spoil" }, + "Abbreviation": { + "en": "4.3.4.6.1" + }, "Code": "4.3.4.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to spoiling something that is happening, such as an event, work, relationship, or feeling, by doing something that makes it less attractive, less enjoyable, or less effective--to do something bad to something that is happening, so that people can\u0027t do what they were doing or don\u0027t enjoy it as much.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119030,7 +128604,22 @@ "Name": { "en": "Spend" }, + "Abbreviation": { + "en": "6.8.4.7" + }, "Code": "6.8.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to spending money.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57K Spend, Waste", "DeletedAt": null, "Predefined": true }, @@ -119039,7 +128628,22 @@ "Name": { "en": "Represent" }, + "Abbreviation": { + "en": "4.6.6.3" + }, "Code": "4.6.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to representing another person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119048,7 +128652,22 @@ "Name": { "en": "Multiply numbers" }, + "Abbreviation": { + "en": "8.1.2.4" + }, "Code": "8.1.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to multiplying one number times another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119057,7 +128676,22 @@ "Name": { "en": "Move away" }, + "Abbreviation": { + "en": "7.2.3.1" + }, "Code": "7.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving away from a place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119066,7 +128700,22 @@ "Name": { "en": "Disorganized" }, + "Abbreviation": { + "en": "7.5.5.1" + }, "Code": "7.5.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to things becoming disorganized.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119075,7 +128724,22 @@ "Name": { "en": "Foundation" }, + "Abbreviation": { + "en": "6.5.2.6" + }, "Code": "6.5.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the foundation of a building.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119084,7 +128748,22 @@ "Name": { "en": "Fertilize a field" }, + "Abbreviation": { + "en": "6.2.2.3" + }, "Code": "6.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fertilizing a field.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119093,7 +128772,22 @@ "Name": { "en": "Succeed" }, + "Abbreviation": { + "en": "6.1.3.2" + }, "Code": "6.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to succeeding in doing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68C Complete, Finish, Succeed", "DeletedAt": null, "Predefined": true }, @@ -119102,7 +128796,22 @@ "Name": { "en": "Until" }, + "Abbreviation": { + "en": "8.4.6.1.4" + }, "Code": "8.4.6.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that something will continue to happen until a particular time or until something else happens, and then it will stop.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119111,7 +128820,22 @@ "Name": { "en": "Mucus" }, + "Abbreviation": { + "en": "2.2.4" + }, "Code": "2.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to mucus in the nose.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119120,7 +128844,22 @@ "Name": { "en": "Intercede" }, + "Abbreviation": { + "en": "3.3.2.3" + }, "Code": "3.3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to interceding for someone--to say something to someone because you want them to do something good for someone else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33I\u0027 Intercede", "DeletedAt": null, "Predefined": true }, @@ -119129,7 +128868,22 @@ "Name": { "en": "Justice" }, + "Abbreviation": { + "en": "4.7.9" + }, "Code": "4.7.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to justice.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119138,7 +128892,22 @@ "Name": { "en": "Obscenity" }, + "Abbreviation": { + "en": "3.5.5.1" + }, "Code": "3.5.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for obscene words related to sex, defecation, death, damnation, and other taboo or offensive subjects. It is important to check the appropriateness of including obscene words in the dictionary. It should be the choice of the speakers of the language whether a word should be included or excluded. Obscene words included in the dictionary should be clearly marked as such. Obscenity is often used to heighten the emotion of an expression, and is often used when someone is angry. Obscenity is often associated with sex or defecation. Cursing is often associated with God, religion, or the afterlife. Insults often involve equating a person with an animal that is associated with an undesirable characteristic, questioning someone\u0027s parentage/legitimacy, questioning someone\u0027s character, or questioning someone\u0027s intelligence/sanity.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119147,7 +128916,22 @@ "Name": { "en": "Take oath" }, + "Abbreviation": { + "en": "4.7.5.7" + }, "Code": "4.7.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to taking an oath.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33B\u0022 Swear, Put Under Oath, Vow", "DeletedAt": null, "Predefined": true }, @@ -119156,7 +128940,22 @@ "Name": { "en": "Can" }, + "Abbreviation": { + "en": "9.4.2.1" + }, "Code": "9.4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that someone can do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "74 Able, Capable", "DeletedAt": null, "Predefined": true }, @@ -119165,7 +128964,22 @@ "Name": { "en": "Return" }, + "Abbreviation": { + "en": "7.2.3.6" + }, "Code": "7.2.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to returning to a place--to go back to a place you earlier left.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15G Return", "DeletedAt": null, "Predefined": true }, @@ -119174,7 +128988,22 @@ "Name": { "en": "Credit" }, + "Abbreviation": { + "en": "6.8.5.5" + }, "Code": "6.8.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to credit--when a lending institution, such as a bank, has some of your money, so they owe you something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "452 Credit", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119183,7 +129012,22 @@ "Name": { "en": "Take something out of something" }, + "Abbreviation": { + "en": "7.3.2.7" + }, "Code": "7.3.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to taking something out of something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119192,7 +129036,22 @@ "Name": { "en": "Religious ceremony" }, + "Abbreviation": { + "en": "4.9.5.4" + }, "Code": "4.9.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to religious ceremonies.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "796 Organized Ceremonial; 788 Ritual; 786 Ecstatic religious practices; Orgies", + "LouwNidaCodes": "33S Preach, Proclaim", "DeletedAt": null, "Predefined": true }, @@ -119201,7 +129060,22 @@ "Name": { "en": "Working with glass" }, + "Abbreviation": { + "en": "6.6.2.5" + }, "Code": "6.6.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with glass.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "323 Ceramic Technology; Ceramic Industries", + "LouwNidaCodes": "7G Miscellaneous Constructions", "DeletedAt": null, "Predefined": true }, @@ -119210,7 +129084,22 @@ "Name": { "en": "Jump" }, + "Abbreviation": { + "en": "7.2.1.1.3" + }, "Code": "7.2.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to jumping--moving your body off the ground by pushing hard with your legs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15E\u0027 Jump, Leap x", "DeletedAt": null, "Predefined": true }, @@ -119219,7 +129108,22 @@ "Name": { "en": "Cloud" }, + "Abbreviation": { + "en": "1.1.3.2" + }, "Code": "1.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the clouds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1E Atmospheric Objects", "DeletedAt": null, "Predefined": true }, @@ -119228,7 +129132,22 @@ "Name": { "en": "Careful" }, + "Abbreviation": { + "en": "6.1.2.3.1" + }, "Code": "6.1.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being careful.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119237,7 +129156,22 @@ "Name": { "en": "Traditional clothing" }, + "Abbreviation": { + "en": "5.3.3" + }, "Code": "5.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to traditional clothing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119246,7 +129180,22 @@ "Name": { "en": "Attention" }, + "Abbreviation": { + "en": "3.1.2.3" + }, "Code": "3.1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a mental state when the mind is working hard.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "27F Be Ready To Learn, Pay Attention", "DeletedAt": null, "Predefined": true }, @@ -119255,7 +129204,22 @@ "Name": { "en": "Name" }, + "Abbreviation": { + "en": "9.7" + }, "Code": "9.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to proper nouns--the name given to a particular person or thing to distinguish it from other things like it. Proper nouns are often not included in a dictionary, or are included in an appendix at the front or back of a dictionary. This is because there are so many of them, they are sometimes difficult to define, and it saves space in the dictionary. For instance place names can be included in a map. So it might be good to type the proper nouns into a special file.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "93 Names of Persons and Places", "DeletedAt": null, "Predefined": true }, @@ -119264,7 +129228,22 @@ "Name": { "en": "Uncover" }, + "Abbreviation": { + "en": "7.3.7.1" + }, "Code": "7.3.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to uncovering something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119273,7 +129252,22 @@ "Name": { "en": "Agriculture" }, + "Abbreviation": { + "en": "6.2" + }, "Code": "6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to agriculture--working with plants.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "240 Agriculture; 242 Agricultural Science", + "LouwNidaCodes": "43 Agriculture", "DeletedAt": null, "Predefined": true }, @@ -119282,7 +129276,22 @@ "Name": { "en": "A short time" }, + "Abbreviation": { + "en": "8.4.2.1" + }, "Code": "8.4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a short time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119291,7 +129300,22 @@ "Name": { "en": "Types of food" }, + "Abbreviation": { + "en": "5.2.3" + }, "Code": "5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to types of food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119300,7 +129324,22 @@ "Name": { "en": "Cosmetics" }, + "Abbreviation": { + "en": "5.4.2" + }, "Code": "5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cosmetics--things you put on your skin to make yourself beautiful in appearance.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119309,7 +129348,22 @@ "Name": { "en": "Vision, hallucination" }, + "Abbreviation": { + "en": "2.5.6.6" + }, "Code": "2.5.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having a vision--when a person sees something that isn\u0027t there because something unusual has happened to their mind. Include unusual, abnormal, and paranormal states of consciousness, visions, hallucinations, and spiritually induced trances.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119318,7 +129372,22 @@ "Name": { "en": "Indifferent" }, + "Abbreviation": { + "en": "3.4.1.4.5" + }, "Code": "3.4.1.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling indifferent about something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119327,7 +129396,22 @@ "Name": { "en": "Meat" }, + "Abbreviation": { + "en": "5.2.3.2.1" + }, "Code": "5.2.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to meat and types of animals that are eaten. Only include those animals that are commonly eaten.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119336,7 +129420,22 @@ "Name": { "en": "Bend" }, + "Abbreviation": { + "en": "8.3.1.5" + }, "Code": "8.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to bending something and for words that describe something that is bent or curved.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79Q Straight, Crooked", "DeletedAt": null, "Predefined": true }, @@ -119345,7 +129444,22 @@ "Name": { "en": "Help to give birth" }, + "Abbreviation": { + "en": "2.6.3.5" + }, "Code": "2.6.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to helping a woman to give birth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119354,7 +129468,22 @@ "Name": { "en": "Work for someone" }, + "Abbreviation": { + "en": "6.9.2" + }, "Code": "6.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working for someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "460 Labor; 461 Labor and Leisure; 462 Division of Labor by Gender; Division of Labor by Sex; 463 Occupational Specialization; 464 Labor Supply and Employment; 465 Wages and Salaries; 466 Labor Relations; 467 Labor Organization; 468 Collective Bargaining; 890 Gender Roles and Issues", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119363,7 +129492,22 @@ "Name": { "en": "Manner of movement" }, + "Abbreviation": { + "en": "7.2.1" + }, "Code": "7.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to the way in which a person moves.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119372,7 +129516,22 @@ "Name": { "en": "Fastening tool" }, + "Abbreviation": { + "en": "6.7.5" + }, "Code": "6.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fastening tools.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6D Instruments Used in Binding and Fastening", "DeletedAt": null, "Predefined": true }, @@ -119381,7 +129540,22 @@ "Name": { "en": "Humble" }, + "Abbreviation": { + "en": "4.3.2.2" + }, "Code": "4.3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being humble--to not think that you are better than other people, or to not think that you are better than you really are, and to not talk or act as if you were better than other people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88F Modesty, Propriety; 88G Humility", "DeletedAt": null, "Predefined": true }, @@ -119390,7 +129564,22 @@ "Name": { "en": "Parts of small animals" }, + "Abbreviation": { + "en": "1.6.2.5" + }, "Code": "1.6.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of small animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119399,7 +129588,22 @@ "Name": { "en": "Experienced" }, + "Abbreviation": { + "en": "6.1.8" + }, "Code": "6.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being experienced at doing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119408,7 +129612,22 @@ "Name": { "en": "Entrust to the care of" }, + "Abbreviation": { + "en": "4.3.4.5.3" + }, "Code": "4.3.4.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to entrusting something to the care of someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "35E Entrust To the Care Of", "DeletedAt": null, "Predefined": true }, @@ -119417,7 +129636,22 @@ "Name": { "en": "Actions of the hand" }, + "Abbreviation": { + "en": "7.3.4.5" + }, "Code": "7.3.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the functions and actions of the hand.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119426,7 +129660,22 @@ "Name": { "en": "Selfish" }, + "Abbreviation": { + "en": "4.3.4.4.1" + }, "Code": "4.3.4.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being selfish.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119435,7 +129684,22 @@ "Name": { "en": "Names of animals" }, + "Abbreviation": { + "en": "9.7.3.1" + }, "Code": "9.7.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the name of an animal. Some cultures give names to domesticated animals or to animals in stories. Think through each kind of domesticated animal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119444,7 +129708,22 @@ "Name": { "en": "Expect" }, + "Abbreviation": { + "en": "3.2.7" + }, "Code": "3.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to thinking about the future.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "30C To Think Concerning Future Contingencies", "DeletedAt": null, "Predefined": true }, @@ -119453,7 +129732,22 @@ "Name": { "en": "Government functions" }, + "Abbreviation": { + "en": "4.6.6" + }, "Code": "4.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to government functions--the things a government does.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "626 Social Control; 650 Government Activities; 653 Public Works; 654 Research and Development; 655 Government Enterprises; 656 Government Regulation; 657 Public Welfare; 658 Public Education; 659 Miscellaneous Government Activities; 744 Public Health and Sanitation; 745 Social Insurance; 746 Public Assistance", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119462,7 +129756,22 @@ "Name": { "en": "Mammal" }, + "Abbreviation": { + "en": "1.6.1.1" + }, "Code": "1.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to mammals (phylum Chordata, class Mammalia).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136f Mammals", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119471,7 +129780,22 @@ "Name": { "en": "Influence" }, + "Abbreviation": { + "en": "3.3.3" + }, "Code": "3.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to influencing someone--to do something because you want someone to change his thinking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119480,7 +129804,22 @@ "Name": { "en": "Top" }, + "Abbreviation": { + "en": "8.6.2" + }, "Code": "8.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the top part of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119489,7 +129828,22 @@ "Name": { "en": "Government official" }, + "Abbreviation": { + "en": "4.6.1.2" + }, "Code": "4.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a government official.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "645 Cabinet", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119498,7 +129852,22 @@ "Name": { "en": "Ambitious" }, + "Abbreviation": { + "en": "6.1.2.3.6" + }, "Code": "6.1.2.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being ambitious.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119507,7 +129876,22 @@ "Name": { "en": "Tangle" }, + "Abbreviation": { + "en": "7.5.4.2" + }, "Code": "7.5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to becoming tangled--when something long and thin, such as rope, string, thread, hair, grass, or vines, becomes disorganized, twisted, or knotted, so that it is hard to separate it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119516,7 +129900,22 @@ "Name": { "en": "Amputate" }, + "Abbreviation": { + "en": "2.5.3.1" + }, "Code": "2.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to amputating or losing a limb or other part of your body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119525,7 +129924,22 @@ "Name": { "en": "Answer" }, + "Abbreviation": { + "en": "3.5.1.5.1" + }, "Code": "3.5.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to answering a question.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33N Question, Answer", "DeletedAt": null, "Predefined": true }, @@ -119534,7 +129948,22 @@ "Name": { "en": "Water" }, + "Abbreviation": { + "en": "1.3" + }, "Code": "1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "2D Water", "DeletedAt": null, "Predefined": true }, @@ -119543,7 +129972,22 @@ "Name": { "en": "Arrange" }, + "Abbreviation": { + "en": "7.5" + }, "Code": "7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to arranging things--to physically move a group of things or people and put them in a pattern.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "62 Arrange, Organize; 62A Put Together, Arrange", "DeletedAt": null, "Predefined": true }, @@ -119552,7 +129996,22 @@ "Name": { "en": "Flow" }, + "Abbreviation": { + "en": "1.3.2.1" + }, "Code": "1.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the way water moves over a surface, such as in a river or along the ground.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119561,7 +130020,22 @@ "Name": { "en": "Turn" }, + "Abbreviation": { + "en": "7.2.2.6" + }, "Code": "7.2.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to turning and changing the direction in which one is moving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119570,7 +130044,22 @@ "Name": { "en": "Remain, remainder" }, + "Abbreviation": { + "en": "8.1.7.4" + }, "Code": "8.1.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the remainder of something--the part or amount of something that remains behind after the other parts have been taken away. Something can be left because everything else has been used or eaten, or everything else has been destroyed or burned.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "63E Remnant", "DeletedAt": null, "Predefined": true }, @@ -119579,7 +130068,22 @@ "Name": { "en": "Feel bad" }, - "Code": "3.4.2", + "Abbreviation": { + "en": "3.4.2" + }, + "Code": "3.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to feeling bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119588,7 +130092,22 @@ "Name": { "en": "Hinder" }, + "Abbreviation": { + "en": "4.3.4.2.1" + }, "Code": "4.3.4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hindering someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119597,7 +130116,22 @@ "Name": { "en": "Salvation" }, + "Abbreviation": { + "en": "4.9.5.7" + }, "Code": "4.9.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the primary goal or goals of a religion, for instance in Christianity salvation from sin, death and Hell. Each religion has different beliefs about salvation. Our purpose here is not to preach or argue, but to list those words that people use to talk about this topic.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "21F Save in a Religious Sense", "DeletedAt": null, "Predefined": true }, @@ -119606,7 +130140,22 @@ "Name": { "en": "Abandon" }, + "Abbreviation": { + "en": "4.3.3.3" + }, "Code": "4.3.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to abandoning someone or something--to leave and not return to them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "35H Desert, Forsake", "DeletedAt": null, "Predefined": true }, @@ -119615,7 +130164,22 @@ "Name": { "en": "Reject" }, + "Abbreviation": { + "en": "3.3.5.2" + }, "Code": "3.3.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to rejecting something such as an offer, invitation, or request.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119624,7 +130188,22 @@ "Name": { "en": "Teach" }, + "Abbreviation": { + "en": "3.6" + }, "Code": "3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to teaching.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33Q Teach", "DeletedAt": null, "Predefined": true }, @@ -119633,7 +130212,22 @@ "Name": { "en": "Sad" }, + "Abbreviation": { + "en": "3.4.2.1" + }, "Code": "3.4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling sad--to feel bad because something bad has happened (such as losing something, hearing bad news, or watching something bad happening).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25W Sorrow, Regret; 25X Discouragement", "DeletedAt": null, "Predefined": true }, @@ -119642,7 +130236,22 @@ "Name": { "en": "Age" }, + "Abbreviation": { + "en": "8.4.6.5" + }, "Code": "8.4.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the age of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58K New, Old", "DeletedAt": null, "Predefined": true }, @@ -119651,7 +130260,22 @@ "Name": { "en": "Football, soccer" }, + "Abbreviation": { + "en": "4.2.6.2.1" + }, "Code": "4.2.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a particular sport. The example words are from the sport of football (also called soccer). If you do not play football in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119660,7 +130284,22 @@ "Name": { "en": "Semantic constituents related to verbs" }, + "Abbreviation": { + "en": "9.4" + }, "Code": "9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that modify verbs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119669,7 +130308,22 @@ "Name": { "en": "Flat" }, + "Abbreviation": { + "en": "8.3.1.3.1" + }, "Code": "8.3.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is flat--having a surface that is even. A board or wall is flat when its surface is even and it does not bend.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119678,7 +130332,22 @@ "Name": { "en": "Miracle, supernatural power" }, + "Abbreviation": { + "en": "4.9.4" + }, "Code": "4.9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to miracles--the use of supernatural power to do something good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "12B Supernatural Powers", "DeletedAt": null, "Predefined": true }, @@ -119687,7 +130356,22 @@ "Name": { "en": "Plow a field" }, + "Abbreviation": { + "en": "6.2.2.2" + }, "Code": "6.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to plowing a field.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119696,7 +130380,22 @@ "Name": { "en": "Thin thing" }, + "Abbreviation": { + "en": "8.2.3.1" + }, "Code": "8.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is thin.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81D Narrow, Wide", "DeletedAt": null, "Predefined": true }, @@ -119705,7 +130404,22 @@ "Name": { "en": "Carrying tool" }, + "Abbreviation": { + "en": "6.7.3" + }, "Code": "6.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to carrying tools.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119714,7 +130428,22 @@ "Name": { "en": "Track an animal" }, + "Abbreviation": { + "en": "6.4.1.1" + }, "Code": "6.4.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tracking an animal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119723,7 +130452,22 @@ "Name": { "en": "Social behavior" }, + "Abbreviation": { + "en": "4" + }, "Code": "4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for very general words having to do with how people behave in relationship to other people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119732,7 +130476,22 @@ "Name": { "en": "Dedicate to religious use" }, + "Abbreviation": { + "en": "4.9.5.8" + }, "Code": "4.9.5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dedicating someone or something to religious use.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "53F Dedicate, Consecrate", "DeletedAt": null, "Predefined": true }, @@ -119741,7 +130500,22 @@ "Name": { "en": "Atone, restitution" }, + "Abbreviation": { + "en": "4.7.7.7" + }, "Code": "4.7.7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to atoning for a past sin--doing something to make up for something bad you did, or giving something to pay for something bad you did.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119750,7 +130524,22 @@ "Name": { "en": "Not moving" }, + "Abbreviation": { + "en": "7.2.7" + }, "Code": "7.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to not moving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119759,7 +130548,22 @@ "Name": { "en": "Universe, creation" }, + "Abbreviation": { + "en": "1" + }, "Code": "1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to the physical universe. Some languages may not have a single word for the universe and may have to use a phrase such as \u0027rain, soil, and things of the sky\u0027 or \u0027sky, land, and water\u0027 or a descriptive phrase such as \u0027everything you can see\u0027 or \u0027everything that exists\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "772 Cosmology; 130 Geography", + "LouwNidaCodes": "1A Universe, Creation; 14 Physical Events and States", "DeletedAt": null, "Predefined": true }, @@ -119768,7 +130572,22 @@ "Name": { "en": "Tool" }, + "Abbreviation": { + "en": "6.7" + }, "Code": "6.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for tools and machines. The domains in this section should be used for general tools and machines that are used in a variety of tasks. Specialized tools and machines should be classified under the specific work or activity for which they are used.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "410 Tools and Appliances; 412 General Tools; 413 Special Tools; 414 Miscellaneous Hardware; 417 Apparatus", + "LouwNidaCodes": "6 Artifacts; 6A Artifacts; 6W Miscellaneous", "DeletedAt": null, "Predefined": true }, @@ -119777,7 +130596,22 @@ "Name": { "en": "Markers of transition " }, + "Abbreviation": { + "en": "9.6.3.1" + }, "Code": "9.6.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for conjunctions that simply move the discourse forward without any specific relationship indicated between what comes before and what comes after.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "91A Markers of Transition", "DeletedAt": null, "Predefined": true }, @@ -119786,7 +130620,22 @@ "Name": { "en": "Dishonest financial practices" }, + "Abbreviation": { + "en": "6.8.9" + }, "Code": "6.8.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dishonest financial practices.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119795,7 +130644,22 @@ "Name": { "en": "Lightning, thunder" }, + "Abbreviation": { + "en": "1.1.3.6" + }, "Code": "1.1.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lightning and thunder.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "14D Thunder and Lightning", "DeletedAt": null, "Predefined": true }, @@ -119804,7 +130668,22 @@ "Name": { "en": "Hate, ill will" }, + "Abbreviation": { + "en": "4.3.3.1" + }, "Code": "4.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to hating someone--to want something bad to happen to someone, or to want to do something bad to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88Z Hate, Hateful", "DeletedAt": null, "Predefined": true }, @@ -119813,7 +130692,22 @@ "Name": { "en": "Carry" }, + "Abbreviation": { + "en": "7.3.1" + }, "Code": "7.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to carrying something--to pick something up and hold it while moving oneself.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "482 Burden Carrying; 483 Weight Moving", + "LouwNidaCodes": "15X Carry, Bear", "DeletedAt": null, "Predefined": true }, @@ -119822,7 +130716,22 @@ "Name": { "en": "Walk" }, + "Abbreviation": { + "en": "7.2.1.1" + }, "Code": "7.2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to walking--moving slowly using your legs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15C\u0027 Walk, Step x", "DeletedAt": null, "Predefined": true }, @@ -119831,7 +130740,22 @@ "Name": { "en": "Use" }, + "Abbreviation": { + "en": "6.1.2.2" + }, "Code": "6.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to using something to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119840,7 +130764,22 @@ "Name": { "en": "Friend" }, + "Abbreviation": { + "en": "4.1.1" + }, "Code": "4.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to friendship.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "572 Friendships; 573 Cliques", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119849,7 +130788,22 @@ "Name": { "en": "Pour" }, + "Abbreviation": { + "en": "1.3.2.2" + }, "Code": "1.3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to water coming out of something (such as a container), or causing water to come out of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119858,7 +130812,22 @@ "Name": { "en": "Nervous" }, + "Abbreviation": { + "en": "3.4.2.4.2" + }, "Code": "3.4.2.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling nervous--to be worried and frightened that something bad may happen, so that you are unable to relax.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119867,7 +130836,22 @@ "Name": { "en": "Light source" }, + "Abbreviation": { + "en": "8.3.3.1.1" + }, "Code": "8.3.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a source of light--something that makes or gives light.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6N Lights and Light Holders", "DeletedAt": null, "Predefined": true }, @@ -119876,7 +130860,22 @@ "Name": { "en": "Fraction" }, + "Abbreviation": { + "en": "8.1.1.6" + }, "Code": "8.1.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the numbers that refer to a fraction of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "60D Half, Third, Fourth", "DeletedAt": null, "Predefined": true }, @@ -119885,7 +130884,22 @@ "Name": { "en": "Adjectives" }, + "Abbreviation": { + "en": "9.2.1" + }, "Code": "9.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all adjectives. If there are many adjectives in your language, you should not try to list them all here. If you want to find all the adjectives, most dictionary programs can sort your dictionary by part of speech. However if your language only has a few adjectives, you can list them all in this domain. In the book, \u0022Where Have All the Adjectives Gone?\u0022 R. M. W. Dixon [Dixon, R. M. W. 1982. Where have all the adjectives gone? Berlin: Mouton.] identifies seven universal semantic types that are often expressed by adjectives. They are: Age (new, young, old), Dimension (big, little, long, short, wide, narrow, thick, fat, thin), Value (good, bad, proper, perfect, excellent, fine, delicious, atrocious, poor), Color (black, white, red), Human propensity (jealous, happy, kind, clever, generous, cruel, rude, proud, wicked), Physical property (hard, soft, heavy, light, rough, smooth, hot, cold, sweet, sour), Speed (fast, slow). Words in the Human propensity class may be nouns. Words in the Physical property and Speed classes may be verbs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119894,7 +130908,22 @@ "Name": { "en": "Dye hair" }, + "Abbreviation": { + "en": "5.4.3.3" + }, "Code": "5.4.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dying your hair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119903,7 +130932,22 @@ "Name": { "en": "Gentle" }, + "Abbreviation": { + "en": "4.4.4.3" + }, "Code": "4.4.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being gentle.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88H Gentleness, Mildness", "DeletedAt": null, "Predefined": true }, @@ -119912,7 +130956,22 @@ "Name": { "en": "Special days" }, + "Abbreviation": { + "en": "8.4.1.8" + }, "Code": "8.4.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a special day.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "527 Rest Days and Holidays; 528 Vacations", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119921,7 +130980,22 @@ "Name": { "en": "Memorize" }, + "Abbreviation": { + "en": "3.2.6.3" + }, "Code": "3.2.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to memorizing something--to think hard about something so that you will not forget it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "29A Storing of Information", "DeletedAt": null, "Predefined": true }, @@ -119930,7 +131004,22 @@ "Name": { "en": "Respond to trouble" }, + "Abbreviation": { + "en": "4.4.3" + }, "Code": "4.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to responding to trouble.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119939,7 +131028,22 @@ "Name": { "en": "Pounding tool" }, + "Abbreviation": { + "en": "6.7.2" + }, "Code": "6.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pounding tools.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119948,7 +131052,22 @@ "Name": { "en": "Saying, proverb" }, + "Abbreviation": { + "en": "3.5.4.2" + }, "Code": "3.5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a saying or proverb--a short thing that people say to teach something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119957,7 +131076,22 @@ "Name": { "en": "Beg" }, + "Abbreviation": { + "en": "6.8.3.4" + }, "Code": "6.8.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to begging--for a poor person to ask other people to give them money, food, or other things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -119966,7 +131100,22 @@ "Name": { "en": "Working with clay" }, + "Abbreviation": { + "en": "6.6.2.4" + }, "Code": "6.6.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with clay.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "323 Ceramic Technology; Ceramic Industries", + "LouwNidaCodes": "7G Miscellaneous Constructions", "DeletedAt": null, "Predefined": true }, @@ -119975,7 +131124,22 @@ "Name": { "en": "Physical impact" }, + "Abbreviation": { + "en": "7.7" + }, "Code": "7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to making a physical impact on something, including the words for the action itself and the result of the action.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19 Physical Impact", "DeletedAt": null, "Predefined": true }, @@ -119984,7 +131148,22 @@ "Name": { "en": "Derivation " }, + "Abbreviation": { + "en": "9.6.2.1" + }, "Code": "9.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something derives from another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89C Derivation", "DeletedAt": null, "Predefined": true }, @@ -119993,7 +131172,22 @@ "Name": { "en": "Origin (of a person)" }, + "Abbreviation": { + "en": "9.5.1.6.4" + }, "Code": "9.5.1.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark the place where someone was born or the place where they have been living.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120002,7 +131196,22 @@ "Name": { "en": "Prevent" }, + "Abbreviation": { + "en": "3.3.4.4" + }, "Code": "3.3.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to preventing someone from doing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120011,7 +131220,22 @@ "Name": { "en": "Person in authority" }, + "Abbreviation": { + "en": "4.5.1" + }, "Code": "4.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a person in authority.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "622 Community Heads; Headmen; 624 Local Officials", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120020,7 +131244,22 @@ "Name": { "en": "Encounter" }, + "Abbreviation": { + "en": "4.2.1.2" + }, "Code": "4.2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to encountering someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120029,7 +131268,22 @@ "Name": { "en": "Regular" }, + "Abbreviation": { + "en": "8.4.5.1.5" + }, "Code": "8.4.5.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something that happens regularly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "512 Daily Routine", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120038,7 +131292,22 @@ "Name": { "en": "Made by hand" }, + "Abbreviation": { + "en": "6.1.6" + }, "Code": "6.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something made by hand instead of by a machine.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120047,7 +131316,22 @@ "Name": { "en": "Dream" }, + "Abbreviation": { + "en": "5.7.2" + }, "Code": "5.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dreaming.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120056,7 +131340,22 @@ "Name": { "en": "Entertainment, recreation" }, + "Abbreviation": { + "en": "4.2.6" + }, "Code": "4.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to entertainment and recreation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "540 Commercialized Entertainment; 520 Recreation; 517 Leisure Time Activities; 523 Hobbies; 529 Recreational Facilities; 541 Spectacles; 543 Exhibitions; 546 Motion Picture Industry; 547 Night Clubs and Cabarets; 548 Illegal Entertainment; Organized Vice", + "LouwNidaCodes": "50 Contests and Play", "DeletedAt": null, "Predefined": true }, @@ -120065,7 +131364,22 @@ "Name": { "en": "Begin a relationship" }, + "Abbreviation": { + "en": "4.1.7" + }, "Code": "4.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to beginning a relationship.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "34B Join, Begin To Associate; 34E Establish or Confirm a Relation", "DeletedAt": null, "Predefined": true }, @@ -120074,7 +131388,22 @@ "Name": { "en": "Negotiate" }, + "Abbreviation": { + "en": "4.8.4.4" + }, "Code": "4.8.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to negotiating with someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120083,7 +131412,22 @@ "Name": { "en": "Move together" }, + "Abbreviation": { + "en": "7.2.5.4" + }, "Code": "7.2.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to more than one thing moving together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120092,7 +131436,22 @@ "Name": { "en": "Financial transaction" }, + "Abbreviation": { + "en": "6.8.4" + }, "Code": "6.8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to financial transactions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "425 Acquisition and Relinquishment of Property; 430 Exchange", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120101,7 +131460,22 @@ "Name": { "en": "Shock" }, + "Abbreviation": { + "en": "3.4.2.1.7" + }, "Code": "3.4.2.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling shocked--feeling both surprised and angry when something very bad suddenly happens or when someone does something very bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120110,7 +131484,22 @@ "Name": { "en": "Introduce" }, + "Abbreviation": { + "en": "3.5.1.2.5" + }, "Code": "3.5.1.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to introducing a new subject--to start talking or writing about something new for the first time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120119,7 +131508,22 @@ "Name": { "en": "Suspect" }, + "Abbreviation": { + "en": "4.7.5.2" + }, "Code": "4.7.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to suspecting someone--to think that someone might have done something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120128,7 +131532,22 @@ "Name": { "en": "Big area" }, + "Abbreviation": { + "en": "8.2.5" + }, "Code": "8.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a big area.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120137,7 +131556,22 @@ "Name": { "en": "Loud" }, + "Abbreviation": { + "en": "2.3.2.4" + }, "Code": "2.3.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe loud sounds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120146,7 +131580,22 @@ "Name": { "en": "Working with water" }, + "Abbreviation": { + "en": "6.6.7" + }, "Code": "6.6.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "376 Water Power", + "LouwNidaCodes": "7E Constructions for Holding Water", "DeletedAt": null, "Predefined": true }, @@ -120155,7 +131604,22 @@ "Name": { "en": "Clear a field" }, + "Abbreviation": { + "en": "6.2.2.1" + }, "Code": "6.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to clearing a field.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120164,7 +131628,22 @@ "Name": { "en": "Logical" }, + "Abbreviation": { + "en": "3.2.1.5" + }, "Code": "3.2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing logical thinking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120173,7 +131652,22 @@ "Name": { "en": "Nose" }, + "Abbreviation": { + "en": "2.1.1.3" + }, "Code": "2.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the nose.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120182,7 +131676,22 @@ "Name": { "en": "With, do with someone" }, + "Abbreviation": { + "en": "9.5.2.3" + }, "Code": "9.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a person who does something with another person who is the subject of the sentence.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120191,7 +131700,22 @@ "Name": { "en": "Trust" }, + "Abbreviation": { + "en": "3.2.5.1.1" + }, "Code": "3.2.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to trusting someone--believing that someone is honest and will not do something bad to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "31I Trust, Rely", "DeletedAt": null, "Predefined": true }, @@ -120200,7 +131724,22 @@ "Name": { "en": "Covenant" }, + "Abbreviation": { + "en": "4.7.8.1" + }, "Code": "4.7.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a covenant between two people or groups of people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120209,7 +131748,22 @@ "Name": { "en": "Name of a place" }, + "Abbreviation": { + "en": "9.7.2" + }, "Code": "9.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the name of a place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "103 Place Names", + "LouwNidaCodes": "93B Places", "DeletedAt": null, "Predefined": true }, @@ -120218,7 +131772,22 @@ "Name": { "en": "During" }, + "Abbreviation": { + "en": "8.4.5.2.3" + }, "Code": "8.4.5.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something happened during some time period, or that something happened while something else was happening.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67G Duration of Time with Reference to Some Unit of Time: During, In, While, Throughout", "DeletedAt": null, "Predefined": true }, @@ -120227,7 +131796,22 @@ "Name": { "en": "Mill grain" }, + "Abbreviation": { + "en": "6.2.6.2" + }, "Code": "6.2.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to milling grain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "7G Miscellaneous Constructions", "DeletedAt": null, "Predefined": true }, @@ -120236,7 +131820,22 @@ "Name": { "en": "Names of heavenly bodies" }, + "Abbreviation": { + "en": "9.7.2.5" + }, "Code": "9.7.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the heavenly bodies.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120245,7 +131844,22 @@ "Name": { "en": "Bottom" }, + "Abbreviation": { + "en": "8.6.2.1" + }, "Code": "8.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the bottom part of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120254,7 +131868,22 @@ "Name": { "en": "Habit" }, + "Abbreviation": { + "en": "4.3.9.2" + }, "Code": "4.3.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a habit--a pattern of behavior of a person; something a person does frequently or regularly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120263,7 +131892,22 @@ "Name": { "en": "Strange" }, + "Abbreviation": { + "en": "8.3.5.3.4" + }, "Code": "8.3.5.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is strange.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120272,7 +131916,22 @@ "Name": { "en": "Break a contract" }, + "Abbreviation": { + "en": "4.7.8.2" + }, "Code": "4.7.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to breaking a contract.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120281,7 +131940,22 @@ "Name": { "en": "Link, connect" }, + "Abbreviation": { + "en": "7.5.2.1" + }, "Code": "7.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a linking or connecting things together--to put something like a road, pipe, or wire between things so that people or things can move between them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120290,7 +131964,22 @@ "Name": { "en": "Willing" }, + "Abbreviation": { + "en": "3.3.2.4" + }, "Code": "3.3.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being willing to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25E Be Willing", "DeletedAt": null, "Predefined": true }, @@ -120299,7 +131988,22 @@ "Name": { "en": "North, south, east, west" }, + "Abbreviation": { + "en": "8.5.2.8" + }, "Code": "8.5.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the directions of the compass.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "82A North, South, East, West", "DeletedAt": null, "Predefined": true }, @@ -120308,7 +132012,22 @@ "Name": { "en": "Photography" }, + "Abbreviation": { + "en": "6.6.5.2" + }, "Code": "6.6.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to photography.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "215 Photography", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120317,7 +132036,22 @@ "Name": { "en": "Care for hair" }, + "Abbreviation": { + "en": "5.4.3" + }, "Code": "5.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to caring for your hair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120326,7 +132060,22 @@ "Name": { "en": "Personal names" }, + "Abbreviation": { + "en": "9.7.1.1" + }, "Code": "9.7.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for those names that are given to people, that people use to call to each other and to talk about each other.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120335,7 +132084,22 @@ "Name": { "en": "Around" }, + "Abbreviation": { + "en": "8.5.1.2.1" + }, "Code": "8.5.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is around something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83D Around, About, Outside", "DeletedAt": null, "Predefined": true }, @@ -120344,7 +132108,22 @@ "Name": { "en": "Pull" }, + "Abbreviation": { + "en": "7.3.2.8" + }, "Code": "7.3.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pulling--causing something to move toward you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15Y Pull, Draw, Drag x", "DeletedAt": null, "Predefined": true }, @@ -120353,7 +132132,22 @@ "Name": { "en": "Punish" }, + "Abbreviation": { + "en": "4.7.7" + }, "Code": "4.7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to punishing someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "681 Sanctions", + "LouwNidaCodes": "38 Punish, Reward; 38A Punish", "DeletedAt": null, "Predefined": true }, @@ -120362,7 +132156,22 @@ "Name": { "en": "Right time" }, + "Abbreviation": { + "en": "8.4.5.3" + }, "Code": "8.4.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the right time to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120371,7 +132180,22 @@ "Name": { "en": "Advise" }, + "Abbreviation": { + "en": "3.3.3.2" + }, "Code": "3.3.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to giving someone advice or counsel, for instance recommending a wise course of action.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33A\u0027 Advise", "DeletedAt": null, "Predefined": true }, @@ -120380,7 +132204,22 @@ "Name": { "en": "Free from bondage" }, + "Abbreviation": { + "en": "4.4.4.6" + }, "Code": "4.4.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to freeing someone from bondage.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120389,7 +132228,22 @@ "Name": { "en": "Dense" }, + "Abbreviation": { + "en": "8.3.6.4" + }, "Code": "8.3.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is dense.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120398,7 +132252,22 @@ "Name": { "en": "Throw away" }, + "Abbreviation": { + "en": "7.4.5.2" + }, "Code": "7.4.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for throwing away something that you no longer want.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120407,7 +132276,22 @@ "Name": { "en": "Round" }, + "Abbreviation": { + "en": "8.3.1.6" + }, "Code": "8.3.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being round.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120416,7 +132300,22 @@ "Name": { "en": "Low" }, + "Abbreviation": { + "en": "8.2.6.4" + }, "Code": "8.2.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is low--in the air but not high above the ground.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81B High, Low, Deep", "DeletedAt": null, "Predefined": true }, @@ -120425,7 +132324,22 @@ "Name": { "en": "Change your mind" }, + "Abbreviation": { + "en": "3.2.5.8" + }, "Code": "3.2.5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to changing your mind--to change what you think about something, or change your plans or decisions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120434,7 +132348,22 @@ "Name": { "en": "Race" }, + "Abbreviation": { + "en": "4.1.9.9" + }, "Code": "4.1.9.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to different races of people--the large groups of people in the world that are different in color and appearance.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120443,7 +132372,22 @@ "Name": { "en": "Efficient" }, + "Abbreviation": { + "en": "6.1.2.8" + }, "Code": "6.1.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being efficient.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120452,7 +132396,22 @@ "Name": { "en": "Drink" }, + "Abbreviation": { + "en": "5.2.2.7" + }, "Code": "5.2.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to drinking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "271 Water and Thirst", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120461,7 +132420,22 @@ "Name": { "en": "Move back" }, + "Abbreviation": { + "en": "7.2.2.2" + }, "Code": "7.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving in a backward direction--the person is facing one direction, but moving toward their back--to move in the opposite direction from the direction the person is facing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120470,7 +132444,22 @@ "Name": { "en": "Careless, irresponsible" }, + "Abbreviation": { + "en": "6.1.2.4.1" + }, "Code": "6.1.2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being careless.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120479,7 +132468,22 @@ "Name": { "en": "Light in weight" }, + "Abbreviation": { + "en": "8.2.9.2" + }, "Code": "8.2.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being light in weight.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "86A Heavy, Light", "DeletedAt": null, "Predefined": true }, @@ -120488,7 +132492,22 @@ "Name": { "en": "Remove shell, skin" }, + "Abbreviation": { + "en": "5.2.1.2.1" + }, "Code": "5.2.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to removing the shell or skin from food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120497,7 +132516,22 @@ "Name": { "en": "Mysterious" }, + "Abbreviation": { + "en": "3.2.4.3" + }, "Code": "3.2.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe something that is difficult to understand.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120506,7 +132540,22 @@ "Name": { "en": "Ritual scar" }, + "Abbreviation": { + "en": "5.4.6" + }, "Code": "5.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to ritual scarring.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "304 Body Alterations; Mutilation", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120515,7 +132564,22 @@ "Name": { "en": "Swell" }, + "Abbreviation": { + "en": "2.5.6.3" + }, "Code": "2.5.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to swelling of the body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120524,7 +132588,22 @@ "Name": { "en": "Rebuke" }, + "Abbreviation": { + "en": "4.8.4.1" + }, "Code": "4.8.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to rebuking someone--to tell someone that he has done something wrong.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33T\u0027 Rebuke", "DeletedAt": null, "Predefined": true }, @@ -120533,7 +132612,22 @@ "Name": { "en": "Effective" }, + "Abbreviation": { + "en": "6.1.2.7" + }, "Code": "6.1.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being effective.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120542,7 +132636,22 @@ "Name": { "en": "Travel" }, + "Abbreviation": { + "en": "7.2.4" + }, "Code": "7.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to traveling--to move a long distance. The words in this domain may imply that the person has to sleep somewhere other than his home.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "484 Travel; 480 Travel and Transportation; 485 Travel Services; 486 Regulation of Travel; 487 Routes; 488 Warehousing; 489 Transportation; 167 External Migration; Immigration and Emigration", + "LouwNidaCodes": "15R Go Around, Surround; 15B Travel, Journey", "DeletedAt": null, "Predefined": true }, @@ -120551,7 +132660,22 @@ "Name": { "en": "Controlling water" }, + "Abbreviation": { + "en": "6.6.7.3" + }, "Code": "6.6.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to controlling the movement of water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120560,7 +132684,22 @@ "Name": { "en": "Interrogative " }, + "Abbreviation": { + "en": "9.4.3.3" + }, "Code": "9.4.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses to indicate that he is asking a question. English has no question word, but other languages such as Japanese do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120569,7 +132708,22 @@ "Name": { "en": "Late" }, + "Abbreviation": { + "en": "8.4.5.3.3" + }, "Code": "8.4.5.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something happening late--after the expected time, after the usual time, or after the time that was agreed on.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120578,7 +132732,22 @@ "Name": { "en": "Compel" }, + "Abbreviation": { + "en": "3.3.3.5" + }, "Code": "3.3.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to compelling someone to do something--to cause or force someone to do something that they do not want to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37B Compel, Force", "DeletedAt": null, "Predefined": true }, @@ -120587,7 +132756,22 @@ "Name": { "en": "Doubt" }, + "Abbreviation": { + "en": "3.2.5.3" + }, "Code": "3.2.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to doubt--not being sure if something is true or not.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120596,7 +132780,22 @@ "Name": { "en": "Cancel an event" }, + "Abbreviation": { + "en": "6.1.2.5.2" + }, "Code": "6.1.2.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to canceling a plan, decision, or event.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120605,7 +132804,22 @@ "Name": { "en": "Personality" }, + "Abbreviation": { + "en": "3.1.1" + }, "Code": "3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe a person\u0027s personality (the way he usually thinks, talks, and how he acts with other people).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "150 Behavior Processes and Personality; 156 Social Personality; 157 Personality Traits", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120614,7 +132828,22 @@ "Name": { "en": "Point, dot" }, + "Abbreviation": { + "en": "8.3.1.1" + }, "Code": "8.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a point--a small mark such as might be made by a pointed object.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120623,7 +132852,22 @@ "Name": { "en": "Fireplace" }, + "Abbreviation": { + "en": "5.5.7" + }, "Code": "5.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for any place where fires are normally burned.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120632,7 +132876,22 @@ "Name": { "en": "Pattern, design" }, + "Abbreviation": { + "en": "8.3.1.8" + }, "Code": "8.3.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to a pattern--a regular arrangement of shapes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120641,7 +132900,22 @@ "Name": { "en": "Way, route" }, + "Abbreviation": { + "en": "7.2.4.6" + }, "Code": "7.2.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the way or route that you take to go somewhere.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120650,7 +132924,22 @@ "Name": { "en": "Drop charges" }, + "Abbreviation": { + "en": "4.7.5.6" + }, "Code": "4.7.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dropping legal charges against someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120659,7 +132948,22 @@ "Name": { "en": "Rub" }, + "Abbreviation": { + "en": "7.7.5" + }, "Code": "7.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to rubbing--to move something smooth against something else, in order to make it smooth or clean.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120668,7 +132972,22 @@ "Name": { "en": "Reading and writing" }, + "Abbreviation": { + "en": "3.5.7" + }, "Code": "3.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to reading and writing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120677,7 +132996,22 @@ "Name": { "en": "In front of" }, + "Abbreviation": { + "en": "8.5.1.1" + }, "Code": "8.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being in front of you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83F In Front Of, Face To Face, In Back Of, Behind", "DeletedAt": null, "Predefined": true }, @@ -120686,7 +133020,22 @@ "Name": { "en": "Read" }, + "Abbreviation": { + "en": "3.5.7.3" + }, "Code": "3.5.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to reading.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120695,7 +133044,22 @@ "Name": { "en": "Stop moving" }, + "Abbreviation": { + "en": "7.2.7.1" + }, "Code": "7.2.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to stopping moving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68D Cease, Stop", "DeletedAt": null, "Predefined": true }, @@ -120704,7 +133068,22 @@ "Name": { "en": "Working with cloth" }, + "Abbreviation": { + "en": "6.6.1" + }, "Code": "6.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with cloth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "280 Leather, Textiles and Fabrics; 287 Nonwoven Fabrics; 288 Textile Industry; 294 Clothing Manufacture; 295 Special Clothing Industries", + "LouwNidaCodes": "48 Activities Involving Cloth", "DeletedAt": null, "Predefined": true }, @@ -120713,7 +133092,22 @@ "Name": { "en": "Admit" }, + "Abbreviation": { + "en": "3.5.2.4" + }, "Code": "3.5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to admitting something--saying that you have done wrong, or that your beliefs were wrong", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33V Admit, Confess, Deny", "DeletedAt": null, "Predefined": true }, @@ -120722,7 +133116,22 @@ "Name": { "en": "Loose" }, + "Abbreviation": { + "en": "8.2.7.2" + }, "Code": "8.2.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being loose--when something is too big.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120731,7 +133140,22 @@ "Name": { "en": "Manage a house" }, + "Abbreviation": { + "en": "5.8" + }, "Code": "5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to managing a house.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "356 Housekeeping; 357 Domestic Service", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120740,7 +133164,22 @@ "Name": { "en": "Spatial location of an event" }, + "Abbreviation": { + "en": "9.5.1.6" + }, "Code": "9.5.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating the spatial location of an event.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120749,7 +133188,22 @@ "Name": { "en": "Mind" }, + "Abbreviation": { + "en": "3.2.1" + }, "Code": "3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to the mind--the part of a person that thinks.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120758,7 +133212,22 @@ "Name": { "en": "Butcher, slaughter" }, + "Abbreviation": { + "en": "6.3.4" + }, "Code": "6.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to killing animals and cutting them up for food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120767,7 +133236,22 @@ "Name": { "en": "Include" }, + "Abbreviation": { + "en": "7.5.1.2" + }, "Code": "7.5.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to including something in a group.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120776,7 +133260,22 @@ "Name": { "en": "Ceremony" }, + "Abbreviation": { + "en": "4.2.2.1" + }, "Code": "4.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a ceremony.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "51 Festivals", "DeletedAt": null, "Predefined": true }, @@ -120785,7 +133284,22 @@ "Name": { "en": "Veterinary science" }, + "Abbreviation": { + "en": "6.3.8" + }, "Code": "6.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to treating animal diseases.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "232 Applied Animal Science", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120794,7 +133308,22 @@ "Name": { "en": "Leg" }, + "Abbreviation": { + "en": "2.1.3.2" + }, "Code": "2.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of the leg and foot.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120803,7 +133332,22 @@ "Name": { "en": "Polite" }, + "Abbreviation": { + "en": "4.3.7" + }, "Code": "4.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to social refinement.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120812,7 +133356,22 @@ "Name": { "en": "Game" }, + "Abbreviation": { + "en": "4.2.6.1" + }, "Code": "4.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to games. Some languages do not make a distinction between \u0022Games\u0022 and \u0022Sports.\u0022", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "524 Games", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120821,7 +133380,22 @@ "Name": { "en": "Sense of touch" }, + "Abbreviation": { + "en": "2.3.5" + }, "Code": "2.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the sense of touch--to feel something with your skin, to feel hot or cold, to feel tired or rested.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24E Touch, Feel", "DeletedAt": null, "Predefined": true }, @@ -120830,7 +133404,22 @@ "Name": { "en": "Irreligion" }, + "Abbreviation": { + "en": "4.9.9" + }, "Code": "4.9.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to thinking and acting against God or religion.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "798 Religious Intolerance", + "LouwNidaCodes": "53L Sacrilege", "DeletedAt": null, "Predefined": true }, @@ -120839,7 +133428,22 @@ "Name": { "en": "Steps in food preparation" }, + "Abbreviation": { + "en": "5.2.1.2" + }, "Code": "5.2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the steps in food preparation. One way to find the words in this domain is to describe how each type of food is prepared.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120848,7 +133452,22 @@ "Name": { "en": "Summarize" }, + "Abbreviation": { + "en": "3.5.1.2.7" + }, "Code": "3.5.1.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to summarizing what you have said or what someone else has said.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120857,7 +133476,22 @@ "Name": { "en": "Style of clothing" }, + "Abbreviation": { + "en": "5.3.9" + }, "Code": "5.3.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to clothing styles.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120866,7 +133500,22 @@ "Name": { "en": "Cast lots" }, + "Abbreviation": { + "en": "3.3.1.3" + }, "Code": "3.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to casting lots--to make a decision by chance.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120875,7 +133524,22 @@ "Name": { "en": "Types of animals" }, + "Abbreviation": { + "en": "1.6.1" + }, "Code": "1.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing types of animals. Use a book of pictures to identify each species and its scientific name. This section is organized according to the scientific, biological classification of animals. It may not correspond to the local classification of animals (folk taxonomy), which are often based on how people relate to animals (tame/wild, edible/work). Use this domain for words referring to large classes of animals that do not correspond to the scientific classification. For instance this would be the place for a word like \u0027flying animal\u0027, which includes birds, bats, and flying insects.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "4A Animals", "DeletedAt": null, "Predefined": true }, @@ -120884,7 +133548,22 @@ "Name": { "en": "Economics" }, + "Abbreviation": { + "en": "6.9.5" + }, "Code": "6.9.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to economics--the study of the money, trade, and industry of a country.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "179 Economic Planning and Development; 433 Production and Supply; 434 Income and Demand; 454 Saving and Investment; 455 Speculation; 458 Business Cycles", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120893,7 +133572,22 @@ "Name": { "en": "Weapon, shoot" }, + "Abbreviation": { + "en": "4.8.3.7" + }, "Code": "4.8.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a weapon and using a weapon.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "411 Weapons; 710 Military Technology; 711 Military Engineering; 712 Military Installations; 713 Ordnance; 714 Uniform and Accouterment; 715 Military Vehicles; 716 Naval Vessels; 717 Military Aircraft; 718 Special Military Equipment", + "LouwNidaCodes": "6G Weapons and Armor; 55A To Arm", "DeletedAt": null, "Predefined": true }, @@ -120902,7 +133596,22 @@ "Name": { "en": "Culture" }, + "Abbreviation": { + "en": "4.3.9" + }, "Code": "4.3.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to culture--the way a group of people (such as a tribe) behaves that is different from other groups.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "180 Total Culture; 181 Ethos; 182 Function and Adaptational Interpretations; 183 Norms; 184 Cultural Participation; 185 Cultural Goals; 186 Cultural Identity and Pride; Ethnocentrism", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120911,7 +133620,22 @@ "Name": { "en": "Boundary" }, + "Abbreviation": { + "en": "6.5.4.2" + }, "Code": "6.5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the boundary of an area.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "80B Limits, Boundaries of Space", "DeletedAt": null, "Predefined": true }, @@ -120920,7 +133644,22 @@ "Name": { "en": "To a larger degree" }, + "Abbreviation": { + "en": "9.3.1.3" + }, "Code": "9.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a larger degree.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "78B More Than, Less Than", "DeletedAt": null, "Predefined": true }, @@ -120929,7 +133668,22 @@ "Name": { "en": "Distance" }, + "Abbreviation": { + "en": "8.2.6" + }, "Code": "8.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the distance between two things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120938,7 +133692,22 @@ "Name": { "en": "Eventually" }, + "Abbreviation": { + "en": "8.4.6.4.3" + }, "Code": "8.4.6.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening eventually.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120947,7 +133716,22 @@ "Name": { "en": "Parts of a fish" }, + "Abbreviation": { + "en": "1.6.2.3" + }, "Code": "1.6.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of a fish.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120956,7 +133740,22 @@ "Name": { "en": "Wave" }, + "Abbreviation": { + "en": "1.3.2.4" + }, "Code": "1.3.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to waves and what they do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -120965,7 +133764,22 @@ "Name": { "en": "Hot" }, + "Abbreviation": { + "en": "8.3.4" + }, "Code": "8.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is hot.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "374 Heat", + "LouwNidaCodes": "79N Hot, Lukewarm, Cold", "DeletedAt": null, "Predefined": true }, @@ -120974,7 +133788,22 @@ "Name": { "en": "Bad, immoral" }, + "Abbreviation": { + "en": "4.3.1.1" + }, "Code": "4.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being bad or immoral in behavior, and for words describing a bad person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "680 Offenses and Sanctions; 682 Offenses against Life; 683 Offenses against the Person; 684 Sex and Marital Offenses; 685 Property Offenses; 686 Nonfulfillment of Obligations; 687 Offenses against the State; 688 Religious Offenses; 689 Social Offenses", + "LouwNidaCodes": "88H\u0027 Impurity; 88T Act Shamefully; 88I\u0027 Licentiousness, Perversion; 88L\u0027 Sin, Wrongdoing, Guilt", "DeletedAt": null, "Predefined": true }, @@ -120983,7 +133812,22 @@ "Name": { "en": "Invite" }, + "Abbreviation": { + "en": "4.2.1.1" + }, "Code": "4.2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to inviting people to meet together--to say something to someone because you want to meet with them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33D\u0027 Invite", "DeletedAt": null, "Predefined": true }, @@ -120992,7 +133836,22 @@ "Name": { "en": "Share wealth" }, + "Abbreviation": { + "en": "6.8.3" + }, "Code": "6.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sharing wealth with others.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "740 Health and Welfare; 741 Philanthropic Foundations; 747 Private Welfare Agencies", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121001,7 +133860,22 @@ "Name": { "en": "Situation" }, + "Abbreviation": { + "en": "9.1.3.2" + }, "Code": "9.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a situation--a particular time and place, and the things that are true about it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121010,7 +133884,22 @@ "Name": { "en": "Unintelligible" }, + "Abbreviation": { + "en": "3.5.8.3" + }, "Code": "3.5.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unintelligible--to say something that someone cannot understand.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121019,7 +133908,22 @@ "Name": { "en": "Derivational affixes" }, + "Abbreviation": { + "en": "9.2.9.3" + }, "Code": "9.2.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all derivational affixes. A derivational affix is joined to a root and changes it into a different word. Derivational affixes often change the root into a different part of speech. Adding a derivational affix usually changes the meaning of the root in a significant way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121028,7 +133932,22 @@ "Name": { "en": "Uncle, aunt" }, + "Abbreviation": { + "en": "4.1.9.1.6" + }, "Code": "4.1.9.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to your uncles and aunts.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "604 Avuncular and Nepotic Relatives", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121037,7 +133956,22 @@ "Name": { "en": "Growing roots" }, + "Abbreviation": { + "en": "6.2.1.2" + }, "Code": "6.2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing root crops such as beets, carrots, cassava, garlic, ginger, leeks, manioc, onions, peanuts, potatoes, radishes, rutabagas, taro, turnips, and yams. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for potatoes and cassava, since they are so common around the world.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121046,7 +133980,22 @@ "Name": { "en": "Event propositions" }, + "Abbreviation": { + "en": "9.1.2.7" + }, "Code": "9.1.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate event propositions. Event propositions are similar in that they are normally expressed by a subject and a verb, possibly including an object, indirect object, or complement clause. However there are multiple ways in which a language can express an event, such as a passive construction, noun phrase, or subordinate clause. In addition each event type is different in its primary cases, and in the ways those cases are marked. Each event type has subtypes, such as intransitive, transitive, and bitransitive verbs. A great deal of research is needed in order to identify all the variations. Ultimately every verb must be investigated to determine how it behaves in each syntactic construction and how its case relations are marked. No two verbs are entirely alike.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121055,7 +134004,22 @@ "Name": { "en": "Religion" }, + "Abbreviation": { + "en": "4.9" + }, "Code": "4.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to religion and the supernatural.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "770 Religious Beliefs; 771 General Character of Religion", + "LouwNidaCodes": "12 Supernatural Beings and Powers", "DeletedAt": null, "Predefined": true }, @@ -121064,7 +134028,22 @@ "Name": { "en": "Government" }, + "Abbreviation": { + "en": "4.6" + }, "Code": "4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to government.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "640 State", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121073,7 +134052,22 @@ "Name": { "en": "Extra" }, + "Abbreviation": { + "en": "8.1.7.1" + }, "Code": "8.1.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having extra--to have more than enough or more than what you need.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59F Abundance, Excess, Sparing", "DeletedAt": null, "Predefined": true }, @@ -121082,7 +134076,22 @@ "Name": { "en": "Solid, liquid, gas" }, + "Abbreviation": { + "en": "1.2.3" + }, "Code": "1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing the different states of matter (solid, liquid, and gas), and words for changing from one to another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79C Solid, Liquid", "DeletedAt": null, "Predefined": true }, @@ -121091,7 +134100,22 @@ "Name": { "en": "Put in" }, + "Abbreviation": { + "en": "7.3.2.6" + }, "Code": "7.3.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to putting something inside something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121100,7 +134124,22 @@ "Name": { "en": "Machine" }, + "Abbreviation": { + "en": "6.7.9" + }, "Code": "6.7.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to machines.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "400 Machines; 401 Mechanics; 402 Industrial Machinery; 403 Electrical Machines and Appliances; 404 Household Machines and Appliances; 405 Weighing, Measuring, and Recording Machines; 406 Weight-moving Machinery; 407 Agricultural Machinery; 408 Computer Technology; 416 Appliances", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121109,7 +134148,22 @@ "Name": { "en": "Spit, saliva" }, + "Abbreviation": { + "en": "2.2.3" + }, "Code": "2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to spitting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121118,7 +134172,22 @@ "Name": { "en": "Fly" }, + "Abbreviation": { + "en": "7.2.4.3" + }, "Code": "7.2.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to traveling by air.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "507 Aviation; 506 Aircraft; 508 Airport Facilities; 509 Air Transport", + "LouwNidaCodes": "15G\u0027 Fly", "DeletedAt": null, "Predefined": true }, @@ -121127,7 +134196,22 @@ "Name": { "en": "Rope, string" }, + "Abbreviation": { + "en": "7.5.4.1" + }, "Code": "7.5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to rope, string, and other things used to tie things together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6D Instruments Used in Binding and Fastening", "DeletedAt": null, "Predefined": true }, @@ -121136,7 +134220,22 @@ "Name": { "en": "Oppose" }, + "Abbreviation": { + "en": "4.8.1.1" + }, "Code": "4.8.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to opposing something that you think is wrong.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "578 Ingroup Antagonisms", + "LouwNidaCodes": "39 Hostility, Strife; 39E Strife, Struggle", "DeletedAt": null, "Predefined": true }, @@ -121145,7 +134244,22 @@ "Name": { "en": "Long" }, + "Abbreviation": { + "en": "8.2.2" + }, "Code": "8.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being long. In many languages there is more than one system of measuring length. These systems may be used for different purposes or in different jobs. For instance measuring the length of an object may use different words than measuring the distance a person travels.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81C Long, Short, Far; 81F Specific Measures of Length", "DeletedAt": null, "Predefined": true }, @@ -121154,7 +134268,22 @@ "Name": { "en": "Question words" }, + "Abbreviation": { + "en": "9.2.3.4" + }, "Code": "9.2.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for pronouns used in questions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121163,7 +134292,22 @@ "Name": { "en": "Sign, symbol" }, + "Abbreviation": { + "en": "3.5.6" + }, "Code": "3.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a sign or symbol--a picture or shape that has a meaning.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121172,7 +134316,22 @@ "Name": { "en": "Pain" }, + "Abbreviation": { + "en": "2.5.6.1" + }, "Code": "2.5.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pain", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24F Pain, Suffering", "DeletedAt": null, "Predefined": true }, @@ -121181,7 +134340,22 @@ "Name": { "en": "Decay" }, + "Abbreviation": { + "en": "8.3.7.8" + }, "Code": "8.3.7.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something decaying--when a living thing dies and becomes bad, or when a part of a living thing becomes bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23M Rot, Decay", "DeletedAt": null, "Predefined": true }, @@ -121190,7 +134364,22 @@ "Name": { "en": "Brave" }, + "Abbreviation": { + "en": "4.4.3.1" + }, "Code": "4.4.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing someone who is brave--not afraid to do something dangerous.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25N Courage, Boldness", "DeletedAt": null, "Predefined": true }, @@ -121199,7 +134388,22 @@ "Name": { "en": "Interval" }, + "Abbreviation": { + "en": "8.4.7.3" + }, "Code": "8.4.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an interval between two events.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "209 Proxemics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121208,7 +134412,22 @@ "Name": { "en": "Do good to" }, + "Abbreviation": { + "en": "4.3.4" + }, "Code": "4.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to doing good to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88I Kindness, Harshness; 35 Help, Care For", "DeletedAt": null, "Predefined": true }, @@ -121217,7 +134436,22 @@ "Name": { "en": "Clan names" }, + "Abbreviation": { + "en": "9.7.1.3" + }, "Code": "9.7.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the clans that exist within the language community. The distinction between family, clan, tribe, and nation is based on politics and emotion. Our purpose here is not to make political statements, but merely to list the names. There may be no distinction between family and clan, in which case ignore this domain and use the domain \u0027Family names\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121226,7 +134460,22 @@ "Name": { "en": "Behind" }, + "Abbreviation": { + "en": "8.5.1.1.1" + }, "Code": "8.5.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is behind you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121235,7 +134484,22 @@ "Name": { "en": "Sometimes" }, + "Abbreviation": { + "en": "8.4.6.6.2" + }, "Code": "8.4.6.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening sometimes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121244,7 +134508,22 @@ "Name": { "en": "Basis" }, + "Abbreviation": { + "en": "9.6.2.4" + }, "Code": "9.6.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is the basis for another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89F Basis", "DeletedAt": null, "Predefined": true }, @@ -121253,7 +134532,22 @@ "Name": { "en": "Ask" }, - "Code": "3.5.1.5", + "Abbreviation": { + "en": "3.5.1.5" + }, + "Code": "3.5.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to asking a question.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "124 Interviewing in Research", + "LouwNidaCodes": "33L Ask For, Request; 33N Question, Answer", "DeletedAt": null, "Predefined": true }, @@ -121262,7 +134556,22 @@ "Name": { "en": "Easy, possible" }, + "Abbreviation": { + "en": "6.1.3.1" + }, "Code": "6.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is easy or possible to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121271,7 +134580,22 @@ "Name": { "en": "Weaving cloth" }, + "Abbreviation": { + "en": "6.6.1.4" + }, "Code": "6.6.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to weaving cloth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "286 Woven Fabrics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121280,7 +134604,22 @@ "Name": { "en": "Tooth decay" }, + "Abbreviation": { + "en": "2.5.2.4" + }, "Code": "2.5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tooth decay.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121289,7 +134628,22 @@ "Name": { "en": "Enemy" }, + "Abbreviation": { + "en": "4.8.2.9" + }, "Code": "4.8.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to an enemy--someone you are fighting against.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121298,7 +134652,22 @@ "Name": { "en": "Continue, persevere" }, + "Abbreviation": { + "en": "8.4.7" + }, "Code": "8.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to continuing to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68B Continue", "DeletedAt": null, "Predefined": true }, @@ -121307,7 +134676,22 @@ "Name": { "en": "Throw" }, + "Abbreviation": { + "en": "7.3.1.1" + }, "Code": "7.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to throwing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15Z Throw, Hurl", "DeletedAt": null, "Predefined": true }, @@ -121316,7 +134700,22 @@ "Name": { "en": "Status" }, + "Abbreviation": { + "en": "4.5.6" + }, "Code": "4.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a person\u0027s social status.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "550 Individuation and Mobility; 554 Status, Role, and Prestige; 555 Talent Mobility; 557 Manipulative Mobility; 558 Downward Mobility", + "LouwNidaCodes": "87 Status; 87A Position, Rank", "DeletedAt": null, "Predefined": true }, @@ -121325,7 +134724,22 @@ "Name": { "en": "Speak little" }, + "Abbreviation": { + "en": "3.5.1.1.4" + }, "Code": "3.5.1.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to speaking a little, either because you do not like to talk, or you think you should not talk.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121334,7 +134748,22 @@ "Name": { "en": "Tense and aspect" }, + "Abbreviation": { + "en": "9.4.1" + }, "Code": "9.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate tense and aspect.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121343,7 +134772,22 @@ "Name": { "en": "Unfair" }, + "Abbreviation": { + "en": "4.7.9.2" + }, "Code": "4.7.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unfair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121352,7 +134796,22 @@ "Name": { "en": "Land, property" }, + "Abbreviation": { + "en": "6.5.1.3" + }, "Code": "6.5.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to land that a person owns or the land on which a house is built.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121361,7 +134820,22 @@ "Name": { "en": "Forest, grassland, desert" }, + "Abbreviation": { + "en": "1.2.1.6" + }, "Code": "1.2.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an area of land that has particular types of plants growing in it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121370,7 +134844,22 @@ "Name": { "en": "Block, dam up" }, + "Abbreviation": { + "en": "7.3.6.2" + }, "Code": "7.3.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to preventing someone or something from moving", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121379,7 +134868,22 @@ "Name": { "en": "Appear" }, + "Abbreviation": { + "en": "2.3.1.5.1" + }, "Code": "2.3.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something appearing (becoming visible) and disappearing (becoming invisible).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121388,7 +134892,22 @@ "Name": { "en": "Animal husbandry" }, + "Abbreviation": { + "en": "6.3" + }, "Code": "6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to animal husbandry--working with animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "230 Animal Husbandry", + "LouwNidaCodes": "44 Animal Husbandry, Fishing; 1O Pastures and Cultivated Lands", "DeletedAt": null, "Predefined": true }, @@ -121397,7 +134916,22 @@ "Name": { "en": "Baby" }, + "Abbreviation": { + "en": "2.6.4.1" + }, "Code": "2.6.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a baby.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "850 Infancy and Childhood", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121406,7 +134940,22 @@ "Name": { "en": "Bodies of water" }, + "Abbreviation": { + "en": "1.3.1" + }, "Code": "1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to bodies of water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1J Bodies of Water", "DeletedAt": null, "Predefined": true }, @@ -121415,7 +134964,22 @@ "Name": { "en": "Fasting" }, + "Abbreviation": { + "en": "4.9.5.9" + }, "Code": "4.9.5.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fasting--to not eat for a period of time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "785 Asceticism", + "LouwNidaCodes": "53H Fasting", "DeletedAt": null, "Predefined": true }, @@ -121424,7 +134988,22 @@ "Name": { "en": "Fence, wall" }, + "Abbreviation": { + "en": "6.5.1.5" + }, "Code": "6.5.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a fence, wall, hedge, or other barrier separating one house from another, and a gate or entryway through a fence or wall.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "7F Walls and Fences", "DeletedAt": null, "Predefined": true }, @@ -121433,7 +135012,22 @@ "Name": { "en": "Mention" }, + "Abbreviation": { + "en": "3.5.1.2.4" + }, "Code": "3.5.1.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to mentioning something--to talk about something but without saying much about it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121442,7 +135036,22 @@ "Name": { "en": "White" }, + "Abbreviation": { + "en": "8.3.3.3.1" + }, "Code": "8.3.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is white.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121451,7 +135060,22 @@ "Name": { "en": "Divide numbers" }, + "Abbreviation": { + "en": "8.1.2.5" + }, "Code": "8.1.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to dividing one number by another number.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121460,7 +135084,22 @@ "Name": { "en": "Name of a person" }, + "Abbreviation": { + "en": "9.7.1" + }, "Code": "9.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the name of a person. Each culture has a system of personal names to identify individuals and kin groups. The subcategories under this heading should reflect the cultural system. If your language has a special set of names that do not fit any of they domains given here, then set up a special domain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "551 Personal Names", + "LouwNidaCodes": "9E Persons For Whom There Is Affectionate Concern; 93A Persons", "DeletedAt": null, "Predefined": true }, @@ -121469,7 +135108,22 @@ "Name": { "en": "Present" }, + "Abbreviation": { + "en": "8.4.6.3" + }, "Code": "8.4.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the present time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121478,7 +135132,22 @@ "Name": { "en": "Survive" }, + "Abbreviation": { + "en": "4.4.3.7" + }, "Code": "4.4.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to surviving--to live through a time of danger.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121487,7 +135156,22 @@ "Name": { "en": "Gossip" }, + "Abbreviation": { + "en": "3.5.1.8.4" + }, "Code": "3.5.1.8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to gossip--to say something bad about a person who is not with you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33Q\u0027 Gossip", "DeletedAt": null, "Predefined": true }, @@ -121496,7 +135180,22 @@ "Name": { "en": "Salt" }, + "Abbreviation": { + "en": "5.2.3.3.2" + }, "Code": "5.2.3.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to salt.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121505,7 +135204,22 @@ "Name": { "en": "Agent-oriented modalities" }, + "Abbreviation": { + "en": "9.4.2" + }, "Code": "9.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate agent-oriented modalities. Agent-oriented modalities describe internal or external conditions on a willful agent with respect to the completion of the predicate situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71 Mode", "DeletedAt": null, "Predefined": true }, @@ -121514,7 +135228,22 @@ "Name": { "en": "Intend" }, + "Abbreviation": { + "en": "3.3.1.4" + }, "Code": "3.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to intending to do something--to do something intentionally and not by accident.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "30D To Intend, To Purpose, To Plan", "DeletedAt": null, "Predefined": true }, @@ -121523,7 +135252,22 @@ "Name": { "en": "Just, almost not" }, + "Abbreviation": { + "en": "9.4.4.7" + }, "Code": "9.4.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that although something is true, it almost is not true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121532,7 +135276,22 @@ "Name": { "en": "Markers of emphasis " }, + "Abbreviation": { + "en": "9.6.3.2" + }, "Code": "9.6.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that the phrase or sentence is particularly important.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "91B Markers of Emphasis", "DeletedAt": null, "Predefined": true }, @@ -121541,7 +135300,22 @@ "Name": { "en": "Things done to animals" }, + "Abbreviation": { + "en": "6.4.6" + }, "Code": "6.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to things done to animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121550,7 +135324,22 @@ "Name": { "en": "Male and female animals" }, + "Abbreviation": { + "en": "1.6.7" + }, "Code": "1.6.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to male and female animals. Most languages have special words for the male and female of a species only for domesticated animals. Sometimes there will be a word for the male and not the female, and vice versa (male dog, bitch). Sometimes the word for one is also used generically (cow for both female and generic).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "9B Males; 9C Females", "DeletedAt": null, "Predefined": true }, @@ -121559,7 +135348,22 @@ "Name": { "en": "Advantage" }, + "Abbreviation": { + "en": "6.1.3.4" + }, "Code": "6.1.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having an advantage--something that helps you succeed that other people don\u0027t have.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121568,7 +135372,22 @@ "Name": { "en": "Sick" }, + "Abbreviation": { + "en": "2.5.1" + }, "Code": "2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a person who is sick.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "750 Sickness", + "LouwNidaCodes": "23I Sickness, Disease, Weakness", "DeletedAt": null, "Predefined": true }, @@ -121577,7 +135396,22 @@ "Name": { "en": "Destiny" }, + "Abbreviation": { + "en": "4.9.4.5" + }, "Code": "4.9.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to destiny--decisions and actions by God, spirits, or by impersonal forces that determine or influence what happens to a person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "777 Luck and Chance", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121586,7 +135420,22 @@ "Name": { "en": "Lift" }, + "Abbreviation": { + "en": "7.3.2.4" + }, "Code": "7.3.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to putting something above you or above something else, putting something on top of something else, or moving something higher than it was.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121595,7 +135444,22 @@ "Name": { "en": "Cover" }, + "Abbreviation": { + "en": "7.3.7" + }, "Code": "7.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to covering something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79Y Covered Over", "DeletedAt": null, "Predefined": true }, @@ -121604,7 +135468,22 @@ "Name": { "en": "Offer" }, + "Abbreviation": { + "en": "3.3.5" + }, "Code": "3.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to offering to do something for someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33H\u0027 Recommend, Propose", "DeletedAt": null, "Predefined": true }, @@ -121613,7 +135492,22 @@ "Name": { "en": "Subtract numbers" }, + "Abbreviation": { + "en": "8.1.2.3" + }, "Code": "8.1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to subtracting one number from another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121622,7 +135516,22 @@ "Name": { "en": "Whole, complete" }, + "Abbreviation": { + "en": "8.1.6" + }, "Code": "8.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a whole thing--all of something with no parts missing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "63 Whole, Unite, Part, Divide; 63A Whole", "DeletedAt": null, "Predefined": true }, @@ -121631,7 +135540,22 @@ "Name": { "en": "Name of a thing" }, + "Abbreviation": { + "en": "9.7.3" + }, "Code": "9.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the name of a thing. Many cultures give names to particular buildings, ships, airplanes, organizations, companies, schools, and other things. If your language has hundreds of names for some kind of thing, it is best to not try to list them all. But if there are a few important names for one kind of thing, set up a domain for them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "553 Naming; 552 Names of Animals and Things", + "LouwNidaCodes": "33I Name", "DeletedAt": null, "Predefined": true }, @@ -121640,7 +135564,22 @@ "Name": { "en": "Snake" }, + "Abbreviation": { + "en": "1.6.1.3.1" + }, "Code": "1.6.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to snakes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121649,7 +135588,22 @@ "Name": { "en": "Child" }, + "Abbreviation": { + "en": "2.6.4.2" + }, "Code": "2.6.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a child.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "857 Childhood Activities; 858 Status of Children", + "LouwNidaCodes": "9D Children", "DeletedAt": null, "Predefined": true }, @@ -121658,7 +135612,22 @@ "Name": { "en": "Honest" }, + "Abbreviation": { + "en": "4.3.5" + }, "Code": "4.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being honest--words describing someone who does not cheat, steal, or break the law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121667,7 +135636,22 @@ "Name": { "en": "Navy" }, + "Abbreviation": { + "en": "4.8.3.6.2" + }, "Code": "4.8.3.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the navy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "706 Navy", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121676,7 +135660,22 @@ "Name": { "en": "Growing rice" }, + "Abbreviation": { + "en": "6.2.1.1.1" + }, "Code": "6.2.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing rice.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121685,7 +135684,22 @@ "Name": { "en": "Forgive" }, + "Abbreviation": { + "en": "4.8.4.7" + }, "Code": "4.8.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to forgiving someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "40B Forgiveness", "DeletedAt": null, "Predefined": true }, @@ -121694,7 +135708,22 @@ "Name": { "en": "High" }, + "Abbreviation": { + "en": "8.2.6.3" + }, "Code": "8.2.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that express the idea that something is high.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81B High, Low, Deep", "DeletedAt": null, "Predefined": true }, @@ -121703,7 +135732,22 @@ "Name": { "en": "Growing grapes" }, + "Abbreviation": { + "en": "6.2.1.4.1" + }, "Code": "6.2.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing grapes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121712,7 +135756,22 @@ "Name": { "en": "Male organs" }, + "Abbreviation": { + "en": "2.1.8.3" + }, "Code": "2.1.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the male reproductive organs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121721,7 +135780,22 @@ "Name": { "en": "Ruler" }, + "Abbreviation": { + "en": "4.6.1" + }, "Code": "4.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the ruler of a country.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "643 Chief Executive; 644 Executive Household", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121730,7 +135804,22 @@ "Name": { "en": "Keep something" }, + "Abbreviation": { + "en": "7.4.5" + }, "Code": "7.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to keeping something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121739,7 +135828,22 @@ "Name": { "en": "Exchange, trade" }, + "Abbreviation": { + "en": "6.8.4.9" + }, "Code": "6.8.4.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to exchanging or trading things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "437 Exchange Transactions", + "LouwNidaCodes": "57J Exchange", "DeletedAt": null, "Predefined": true }, @@ -121748,7 +135852,22 @@ "Name": { "en": "Corpse" }, + "Abbreviation": { + "en": "2.6.6.2" + }, "Code": "2.6.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a corpse--the body of a person who has died.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121757,7 +135876,22 @@ "Name": { "en": "A long time" }, + "Abbreviation": { + "en": "8.4.2.2" + }, "Code": "8.4.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a long time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121766,7 +135900,22 @@ "Name": { "en": "Show sympathy, support" }, + "Abbreviation": { + "en": "4.4.4.2" + }, "Code": "4.4.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to showing sympathy and support to someone in trouble.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121775,7 +135924,22 @@ "Name": { "en": "Spinning thread" }, + "Abbreviation": { + "en": "6.6.1.2" + }, "Code": "6.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to spinning thread.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "283 Cordage", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121784,7 +135948,22 @@ "Name": { "en": "Working with metal" }, + "Abbreviation": { + "en": "6.6.2.3" + }, "Code": "6.6.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with metal. Answer each question below for each kind of smith.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "326 Smiths and Their Crafts; 328 Nonferrous Metal Industries", + "LouwNidaCodes": "7G Miscellaneous Constructions", "DeletedAt": null, "Predefined": true }, @@ -121793,7 +135972,22 @@ "Name": { "en": "Roll up" }, + "Abbreviation": { + "en": "8.3.1.5.1" + }, "Code": "8.3.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to rolling something up.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79A\u0027 Rolled up", "DeletedAt": null, "Predefined": true }, @@ -121802,7 +135996,22 @@ "Name": { "en": "Working with leather" }, + "Abbreviation": { + "en": "6.6.4.3" + }, "Code": "6.6.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with leather.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "282 Leather Industry; 281 Work in Skins", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121811,7 +136020,22 @@ "Name": { "en": "Circumcision" }, + "Abbreviation": { + "en": "5.4.6.1" + }, "Code": "5.4.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to circumcision.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121820,7 +136044,22 @@ "Name": { "en": "Supernatural being" }, + "Abbreviation": { + "en": "4.9.2" + }, "Code": "4.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to supernatural beings--gods, spirits, other types of beings, which normally cannot be seen and do not belong to this world. Some people accept the existence of certain supernatural beings and not others. Mythological beings are those that were believed in during previous times but that are no longer believed in. Fictional beings are those that no one has ever believed in. An indication of whether most people believe in the supernatural being should be put in the definition.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "776 Spirits and Gods", + "LouwNidaCodes": "12 Supernatural Beings and Powers; 12A Supernatural Beings", "DeletedAt": null, "Predefined": true }, @@ -121829,7 +136068,22 @@ "Name": { "en": "Connected with, related " }, + "Abbreviation": { + "en": "9.6" + }, "Code": "9.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use the domains in this section for words that indicate a logical relation between two or more words or sentences. Use this domain for words that indicate an unspecified logical relation between people, things, or situations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89 Relations; 89A Relation", "DeletedAt": null, "Predefined": true }, @@ -121838,7 +136092,22 @@ "Name": { "en": "To a large degree" }, + "Abbreviation": { + "en": "9.3.1.1" + }, "Code": "9.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a large degree.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "78A Much, Little", "DeletedAt": null, "Predefined": true }, @@ -121847,7 +136116,22 @@ "Name": { "en": "Body functions" }, + "Abbreviation": { + "en": "2.2" + }, "Code": "2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the functions and actions of the whole body. Use the subdomains in this section for functions, actions, secretions, and products of various parts of the body. In each domain include any special words that are used of animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "147 Physiological Data; 514 Elimination", + "LouwNidaCodes": "8C Physiological Products of the Body; 23 Physiological Processes and States", "DeletedAt": null, "Predefined": true }, @@ -121856,7 +136140,22 @@ "Name": { "en": "Play music" }, + "Abbreviation": { + "en": "4.2.3.2" + }, "Code": "4.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to playing music.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121865,7 +136164,22 @@ "Name": { "en": "Boast" }, + "Abbreviation": { + "en": "3.5.1.7.3" + }, "Code": "3.5.1.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to boasting--to say something good about yourself, especially to make it seem that you are better than you really are.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33M\u0027 Boast", "DeletedAt": null, "Predefined": true }, @@ -121874,7 +136188,22 @@ "Name": { "en": "Confused" }, + "Abbreviation": { + "en": "3.4.2.5" + }, "Code": "3.4.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling confused--to be worried and uncertain about what something means or what to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121883,7 +136212,22 @@ "Name": { "en": "Attack" }, + "Abbreviation": { + "en": "4.8.2.3" + }, "Code": "4.8.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to attacking someone--to begin fighting someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39J Attack", "DeletedAt": null, "Predefined": true }, @@ -121892,7 +136236,22 @@ "Name": { "en": "Process harvest" }, + "Abbreviation": { + "en": "6.2.6" + }, "Code": "6.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to processing the harvest.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "250 Food Processing; 251 Preservation and Storage of Food", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121901,7 +136260,22 @@ "Name": { "en": "Cruel" }, + "Abbreviation": { + "en": "4.3.4.9" + }, "Code": "4.3.4.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being cruel.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121910,7 +136284,22 @@ "Name": { "en": "Be at a place" }, + "Abbreviation": { + "en": "8.5.3" + }, "Code": "8.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being at a place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "85A Be in a Place; 83E At, Beside, Near, Far; 85 Existence in Space", "DeletedAt": null, "Predefined": true }, @@ -121919,7 +136308,22 @@ "Name": { "en": "Recorded music" }, + "Abbreviation": { + "en": "3.5.9.5" + }, "Code": "3.5.9.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to recording music.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "216 Sound Records", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121928,7 +136332,22 @@ "Name": { "en": "Occupy an area" }, + "Abbreviation": { + "en": "8.5.4.2" + }, "Code": "8.5.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to occupying an area.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121937,7 +136356,22 @@ "Name": { "en": "Complete, finish" }, + "Abbreviation": { + "en": "6.1.2.3.5" + }, "Code": "6.1.2.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to completing a task.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68C Complete, Finish, Succeed", "DeletedAt": null, "Predefined": true }, @@ -121946,7 +136380,22 @@ "Name": { "en": "Prepositions, postpositions" }, + "Abbreviation": { + "en": "9.2.4" + }, "Code": "9.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all prepositions and postpositions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121955,7 +136404,22 @@ "Name": { "en": "Tend a field" }, + "Abbreviation": { + "en": "6.2.4" + }, "Code": "6.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tending a field.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121964,7 +136428,22 @@ "Name": { "en": "Ordinal numbers" }, + "Abbreviation": { + "en": "8.1.1.2" + }, "Code": "8.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the ordinal numbers (first, second, third)--the numbers used to indicate the order of something in a series, such as \u0022the first child\u0022.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "60C First, Second, Third, Etc.", "DeletedAt": null, "Predefined": true }, @@ -121973,7 +136452,22 @@ "Name": { "en": "Unreliable" }, + "Abbreviation": { + "en": "4.3.5.4" + }, "Code": "4.3.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unreliable.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121982,7 +136476,22 @@ "Name": { "en": "Digging tool" }, + "Abbreviation": { + "en": "6.7.1.2" + }, "Code": "6.7.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to digging tools.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -121991,7 +136500,22 @@ "Name": { "en": "Insult" }, + "Abbreviation": { + "en": "3.5.1.8.2" + }, "Code": "3.5.1.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to insulting someone--to say that someone is bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33P\u0027 Insult, Slander; 33R\u0027 Mock, Ridicule", "DeletedAt": null, "Predefined": true }, @@ -122000,7 +136524,22 @@ "Name": { "en": "Dazed, confused" }, + "Abbreviation": { + "en": "2.5.6.5" + }, "Code": "2.5.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe the state of the mind when a person\u0027s mind is not working well or when he is not thinking very well.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122009,7 +136548,22 @@ "Name": { "en": "Attitude" }, + "Abbreviation": { + "en": "3.2.5.6" + }, "Code": "3.2.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a person\u0027s attitude--the way you think and feel about something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122018,7 +136572,22 @@ "Name": { "en": "Idiophones" }, + "Abbreviation": { + "en": "9.2.8" + }, "Code": "9.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all idiophones. If there are many idiophones in your language, it is probably not worth the trouble to list them here. The Shoebox program (and other dictionary programs) can sort your dictionary by part of speech.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122027,7 +136596,22 @@ "Name": { "en": "More" }, + "Abbreviation": { + "en": "8.1.4" + }, "Code": "8.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to there being more of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122036,7 +136620,22 @@ "Name": { "en": "Show, indicate" }, + "Abbreviation": { + "en": "3.5.8.4" + }, "Code": "3.5.8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to showing or indicating something--if something (such as an object, something said, or something that happens) shows something, it makes people think of something or understand something (e.g. When his face turns red, it indicates he is angry.)", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122045,7 +136644,22 @@ "Name": { "en": "Bite, chew" }, + "Abbreviation": { + "en": "5.2.2.1" + }, "Code": "5.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to biting and chewing with the teeth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23B Processes Involving the Mouth, Other Than Eating and Drinking x", "DeletedAt": null, "Predefined": true }, @@ -122054,7 +136668,22 @@ "Name": { "en": "Horizontal" }, + "Abbreviation": { + "en": "8.3.1.4" + }, "Code": "8.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a horizontal orientation in relation to the ground or something that is level--a flat surface that does not rise in any direction. A person is horizontal when he is sleeping. A field is level when it is not on a hill and it has no uneven areas in it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "17D Prostrate x", "DeletedAt": null, "Predefined": true }, @@ -122063,7 +136692,22 @@ "Name": { "en": "Cold" }, + "Abbreviation": { + "en": "8.3.4.1" + }, "Code": "8.3.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is cold.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79N Hot, Lukewarm, Cold", "DeletedAt": null, "Predefined": true }, @@ -122072,7 +136716,22 @@ "Name": { "en": "Stay, remain" }, + "Abbreviation": { + "en": "7.2.7.2" + }, "Code": "7.2.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to not moving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "85C Remain, Stay", "DeletedAt": null, "Predefined": true }, @@ -122081,7 +136740,22 @@ "Name": { "en": "Dislike" }, + "Abbreviation": { + "en": "3.4.2.1.1" + }, "Code": "3.4.2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to not liking someone or something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25Q Abhor", "DeletedAt": null, "Predefined": true }, @@ -122090,7 +136764,22 @@ "Name": { "en": "Ask permission" }, + "Abbreviation": { + "en": "3.3.4" + }, "Code": "3.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to asking permission to do something. This domain is part of a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission. I obey you or disobey you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122099,7 +136788,22 @@ "Name": { "en": "Add numbers" }, + "Abbreviation": { + "en": "8.1.2.2" + }, "Code": "8.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to adding two numbers together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59H Add, Subtract x", "DeletedAt": null, "Predefined": true }, @@ -122108,7 +136812,22 @@ "Name": { "en": "Good" }, + "Abbreviation": { + "en": "8.3.7" + }, "Code": "8.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "65C Good, Bad; 88A Goodness", "DeletedAt": null, "Predefined": true }, @@ -122117,7 +136836,22 @@ "Name": { "en": "Bird" }, + "Abbreviation": { + "en": "1.6.1.2" + }, "Code": "1.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for birds (phylum Chordata, class Aves).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136i Bird", + "LouwNidaCodes": "4B Birds", "DeletedAt": null, "Predefined": true }, @@ -122126,7 +136860,22 @@ "Name": { "en": "Down" }, + "Abbreviation": { + "en": "8.5.2.5" + }, "Code": "8.5.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the direction down.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122135,7 +136884,22 @@ "Name": { "en": "Useful" }, + "Abbreviation": { + "en": "6.1.2.2.1" + }, "Code": "6.1.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being useful--words describing something that can be used to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "65D Useful, Useless; 65E Advantageous, Not Advantageous", "DeletedAt": null, "Predefined": true }, @@ -122144,7 +136908,22 @@ "Name": { "en": "Jewelry" }, + "Abbreviation": { + "en": "5.4.1" + }, "Code": "5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for objects such as jewelry that are put on or attached to the body or to the clothes as decoration.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "301 Ornament", + "LouwNidaCodes": "6R Adornments", "DeletedAt": null, "Predefined": true }, @@ -122153,7 +136932,22 @@ "Name": { "en": "Taste" }, + "Abbreviation": { + "en": "2.3.3" + }, "Code": "2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tasting something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24D Taste; 79H Sweet, Bitter, Tasteless", "DeletedAt": null, "Predefined": true }, @@ -122162,7 +136956,22 @@ "Name": { "en": "Floor, story" }, + "Abbreviation": { + "en": "6.5.2.8" + }, "Code": "6.5.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the levels of a building.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122171,7 +136980,22 @@ "Name": { "en": "Shave" }, + "Abbreviation": { + "en": "5.4.3.6" + }, "Code": "5.4.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to shaving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122180,7 +137004,22 @@ "Name": { "en": "Probably " }, + "Abbreviation": { + "en": "9.4.4.3" + }, "Code": "9.4.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses to indicate that he thinks something is probable or likely to occur.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71B Probable, Improbable", "DeletedAt": null, "Predefined": true }, @@ -122189,7 +137028,22 @@ "Name": { "en": "Hear" }, + "Abbreviation": { + "en": "2.3.2" + }, "Code": "2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hearing something (in general or without conscious choice).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24B Hear", "DeletedAt": null, "Predefined": true }, @@ -122198,7 +137052,22 @@ "Name": { "en": "Fish" }, + "Abbreviation": { + "en": "1.6.1.5" + }, "Code": "1.6.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for fish (phylum Chordata, class Osteichthyes).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136j Fish and Mollusk", + "LouwNidaCodes": "4E Fishes and Other Sea Creatures", "DeletedAt": null, "Predefined": true }, @@ -122207,7 +137076,22 @@ "Name": { "en": "Trial" }, + "Abbreviation": { + "en": "4.7.5" + }, "Code": "4.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the legal process.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "691 Litigation; 690 Justice; 692 Judicial Authority; 693 Legal and Judicial Personnel; 694 Initiation of Judicial Proceedings; 695 Trial Procedure; 696 Execution of Justice", + "LouwNidaCodes": "56D Judicial Hearing, Inquiry", "DeletedAt": null, "Predefined": true }, @@ -122216,7 +137100,22 @@ "Name": { "en": "Animal group" }, + "Abbreviation": { + "en": "1.6.6" + }, "Code": "1.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to groups of animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122225,7 +137124,22 @@ "Name": { "en": "Fault" }, + "Abbreviation": { + "en": "4.7.6.3" + }, "Code": "4.7.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something being someone\u0027s fault.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122234,7 +137148,22 @@ "Name": { "en": "Seem" }, + "Abbreviation": { + "en": "9.4.4.6.3" + }, "Code": "9.4.4.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something seems to be a certain way--you see (or hear) something and think something about it, but you are not sure that what you think is true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122243,7 +137172,22 @@ "Name": { "en": "Enthusiastic" }, + "Abbreviation": { + "en": "3.4.1.4.2" + }, "Code": "3.4.1.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling enthusiastic--to feel very good because you want to do something or you want something to happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25F Be Eager, Be Earnest, In a Devoted Manner", "DeletedAt": null, "Predefined": true }, @@ -122252,7 +137196,22 @@ "Name": { "en": "Riot" }, + "Abbreviation": { + "en": "4.8.2.6" + }, "Code": "4.8.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a riot--when lots of people are fighting and breaking the law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "579 Brawls, Riots and Banditry", + "LouwNidaCodes": "39H Riot", "DeletedAt": null, "Predefined": true }, @@ -122261,7 +137220,22 @@ "Name": { "en": "Touching, contact" }, + "Abbreviation": { + "en": "8.5.1.5" + }, "Code": "8.5.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that two things are touching or in contact with each other.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83E At, Beside, Near, Far x", "DeletedAt": null, "Predefined": true }, @@ -122270,7 +137244,22 @@ "Name": { "en": "Straight posture" }, + "Abbreviation": { + "en": "7.1.7" + }, "Code": "7.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to straight posture--holding your body straight, stiff, or erect, rather than relaxed.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122279,7 +137268,22 @@ "Name": { "en": "Possible" }, + "Abbreviation": { + "en": "9.4.4.4" + }, "Code": "9.4.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses to indicate that he thinks something is possible. Maybe implies that the speaker doesn\u0027t know something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71A Possible, Impossible", "DeletedAt": null, "Predefined": true }, @@ -122288,7 +137292,22 @@ "Name": { "en": "Names of regions" }, + "Abbreviation": { + "en": "9.7.2.2" + }, "Code": "9.7.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the regions within your country or language area. Some of these may be political regions. Others may be informal terms. Give the local pronunciation, rather than some foreign spelling. You may want to limit this domain to just those areas within your language area. However if you have special names for areas outside of your language area, for example \u0027the Mideast\u0027, you should include them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122297,7 +137316,22 @@ "Name": { "en": "Bend down" }, + "Abbreviation": { + "en": "7.1.8" + }, "Code": "7.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to bending down--to bend your body so that it is closer to the ground (in order to see something, pick up something, or hide).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "17H Bend Over, Straighten Up x", "DeletedAt": null, "Predefined": true }, @@ -122306,7 +137340,22 @@ "Name": { "en": "Give, donate" }, + "Abbreviation": { + "en": "6.8.3.1" + }, "Code": "6.8.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to giving something to someone, in which there is a transference of ownership.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "431 Gift Giving", + "LouwNidaCodes": "57H Give", "DeletedAt": null, "Predefined": true }, @@ -122315,7 +137364,22 @@ "Name": { "en": "On" }, + "Abbreviation": { + "en": "8.5.1.3" + }, "Code": "8.5.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is on another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83H On, Upon, On the Surface Of", "DeletedAt": null, "Predefined": true }, @@ -122324,7 +137388,22 @@ "Name": { "en": "End" }, + "Abbreviation": { + "en": "8.4.6.1.3" + }, "Code": "8.4.6.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the end of an action or situation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67C A Point of Time with Reference to Duration of Time: Beginning, End", "DeletedAt": null, "Predefined": true }, @@ -122333,7 +137412,22 @@ "Name": { "en": "Smooth" }, + "Abbreviation": { + "en": "8.3.2.1" + }, "Code": "8.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being smooth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122342,7 +137436,22 @@ "Name": { "en": "Store, marketplace" }, + "Abbreviation": { + "en": "6.8.4.8" + }, "Code": "6.8.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a store or marketplace where things are sold.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122351,7 +137460,22 @@ "Name": { "en": "Distribute" }, + "Abbreviation": { + "en": "7.4.4" + }, "Code": "7.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to distributing things to several people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122360,7 +137484,22 @@ "Name": { "en": "Move a part of the body" }, + "Abbreviation": { + "en": "7.1.9" + }, "Code": "7.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving various parts of the body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122369,7 +137508,22 @@ "Name": { "en": "Organization" }, + "Abbreviation": { + "en": "4.2.1.8" + }, "Code": "4.2.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an organization.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "575 Sodalities", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122378,7 +137532,22 @@ "Name": { "en": "Ignore" }, + "Abbreviation": { + "en": "3.1.2.4" + }, "Code": "3.1.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to ignoring someone--to not look at, listen to, or talk to someone because you think they are not important or you don\u0027t like them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122387,7 +137556,22 @@ "Name": { "en": "Walk with difficulty" }, + "Abbreviation": { + "en": "7.2.1.5" + }, "Code": "7.2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to walking with some difficulty such as stumbling--to miss your step because of hitting an object such as a stone, hole, or mud; staggering--to walk unsteadily because of weakness, illness, or drunkenness; or limping--to walk unevenly or with difficulty because of injury to a foot.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122396,7 +137580,22 @@ "Name": { "en": "Law" }, + "Abbreviation": { + "en": "4.7" + }, "Code": "4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "670 Law", + "LouwNidaCodes": "56 Courts and Legal Procedures", "DeletedAt": null, "Predefined": true }, @@ -122405,7 +137604,22 @@ "Name": { "en": "Son, daughter" }, + "Abbreviation": { + "en": "4.1.9.1.4" + }, "Code": "4.1.9.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to your children.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122414,7 +137628,22 @@ "Name": { "en": "Send" }, + "Abbreviation": { + "en": "7.3.3.3" + }, "Code": "7.3.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sending something--to cause someone to take something somewhere.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15D Leave, Depart, Flee, Escape, Send", "DeletedAt": null, "Predefined": true }, @@ -122423,7 +137652,22 @@ "Name": { "en": "Help" }, + "Abbreviation": { + "en": "4.3.4.2" + }, "Code": "4.3.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to helping someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "35A Help", "DeletedAt": null, "Predefined": true }, @@ -122432,7 +137676,22 @@ "Name": { "en": "Correct" }, + "Abbreviation": { + "en": "3.6.5" + }, "Code": "3.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to correcting a mistake.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122441,7 +137700,22 @@ "Name": { "en": "Crowd, group" }, + "Abbreviation": { + "en": "4.2.1.7" + }, "Code": "4.2.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a crowd or group of people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "571 Social Relationships and Groups", + "LouwNidaCodes": "11 Groups and Classes of Persons and Members of Such Groups and Classes; 11A General", "DeletedAt": null, "Predefined": true }, @@ -122450,7 +137724,22 @@ "Name": { "en": "Willing to learn" }, + "Abbreviation": { + "en": "3.2.2.7" + }, "Code": "3.2.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being willing to learn or unwilling to learn.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "27E Be Willing To Learn", "DeletedAt": null, "Predefined": true }, @@ -122459,7 +137748,22 @@ "Name": { "en": "Move in" }, + "Abbreviation": { + "en": "7.2.3.4" + }, "Code": "7.2.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to moving into something, such as a house or an area.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15H Come/Go Into", "DeletedAt": null, "Predefined": true }, @@ -122468,7 +137772,22 @@ "Name": { "en": "Stand" }, + "Abbreviation": { + "en": "7.1.1" + }, "Code": "7.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to standing. The words in this domain may include whether the person is standing on one foot or two, whether the person\u0027s feet are together or placed apart, whether something is between the person\u0027s feet, how fast the person stands up.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "17A Stand x", "DeletedAt": null, "Predefined": true }, @@ -122477,7 +137796,22 @@ "Name": { "en": "Meaning" }, + "Abbreviation": { + "en": "3.5.8.1" + }, "Code": "3.5.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the meaning of something that is said.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "196 Semantics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122486,7 +137820,22 @@ "Name": { "en": "Prepare" }, + "Abbreviation": { + "en": "6.1.2.6" + }, "Code": "6.1.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to preparing to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "122 Practical Preparations in Conducting Fieldwork", + "LouwNidaCodes": "77 Ready, Prepared", "DeletedAt": null, "Predefined": true }, @@ -122495,7 +137844,22 @@ "Name": { "en": "Bribe" }, + "Abbreviation": { + "en": "6.8.9.5" + }, "Code": "6.8.9.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for money given to a person to do something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122504,7 +137868,22 @@ "Name": { "en": "Basic" }, + "Abbreviation": { + "en": "8.3.7.5.1" + }, "Code": "8.3.7.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is basic.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122513,7 +137892,22 @@ "Name": { "en": "Follow, be a disciple" }, + "Abbreviation": { + "en": "4.5.4.5" + }, "Code": "4.5.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being a disciple of someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "36D Follow, Be a Disciple", "DeletedAt": null, "Predefined": true }, @@ -122522,7 +137916,22 @@ "Name": { "en": "Birth order" }, + "Abbreviation": { + "en": "4.1.9.1.9" + }, "Code": "4.1.9.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to birth order.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122531,7 +137940,22 @@ "Name": { "en": "In-law" }, + "Abbreviation": { + "en": "4.1.9.2.2" + }, "Code": "4.1.9.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being related by marriage.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "606 Parents-in-Law and Children-in-Law; 607 Siblings-in-Law", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122540,7 +137964,22 @@ "Name": { "en": "Draw, paint" }, + "Abbreviation": { + "en": "6.6.5.1" + }, "Code": "6.6.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to drawing and painting pictures.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122549,7 +137988,22 @@ "Name": { "en": "Big" }, + "Abbreviation": { + "en": "8.2" + }, "Code": "8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is big.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79B\u0027 Large, Small", "DeletedAt": null, "Predefined": true }, @@ -122558,7 +138012,22 @@ "Name": { "en": "Clothing" }, + "Abbreviation": { + "en": "5.3" + }, "Code": "5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to clothing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "290 Clothing; 291 Normal Garb", + "LouwNidaCodes": "6Q Cloth, Leather, and Objects Made of Such Materials", "DeletedAt": null, "Predefined": true }, @@ -122567,7 +138036,22 @@ "Name": { "en": "Surrender" }, + "Abbreviation": { + "en": "4.8.3.4" + }, "Code": "4.8.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to surrendering to an enemy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39D Yielding", "DeletedAt": null, "Predefined": true }, @@ -122576,7 +138060,22 @@ "Name": { "en": "Violent" }, + "Abbreviation": { + "en": "4.8.2.8" + }, "Code": "4.8.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being violent--a word describing someone who is likely to attack and injure or kill people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "20A Violence", "DeletedAt": null, "Predefined": true }, @@ -122585,7 +138084,22 @@ "Name": { "en": "Full" }, + "Abbreviation": { + "en": "8.1.8" + }, "Code": "8.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a container being full of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59D Full, Empty", "DeletedAt": null, "Predefined": true }, @@ -122594,7 +138108,22 @@ "Name": { "en": "Pound in mortar and pestle" }, + "Abbreviation": { + "en": "5.2.1.2.2" + }, "Code": "5.2.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pounding food in a mortar.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122603,7 +138132,22 @@ "Name": { "en": "Self-controlled" }, + "Abbreviation": { + "en": "4.3.6" + }, "Code": "4.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to self-control--deciding not to do something that you want to do, because you think it would be bad to do it; or deciding to do something, because you know it is good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88K Self-Control, Lack of Self-Control", "DeletedAt": null, "Predefined": true }, @@ -122612,7 +138156,22 @@ "Name": { "en": "Absent" }, + "Abbreviation": { + "en": "8.5.3.1" + }, "Code": "8.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being absent--to not be in a particular place, or not be in the correct or expected place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122621,7 +138180,22 @@ "Name": { "en": "Cough, sneeze" }, + "Abbreviation": { + "en": "2.2.2" + }, "Code": "2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to coughing, sneezing, and other actions of the mouth and nose.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23B Processes Involving the Mouth, Other Than Eating and Drinking", "DeletedAt": null, "Predefined": true }, @@ -122630,7 +138204,22 @@ "Name": { "en": "Or, either" }, + "Abbreviation": { + "en": "9.6.1.2" + }, "Code": "9.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating an alternative relation between two things or propositions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89X Alternative Relation", "DeletedAt": null, "Predefined": true }, @@ -122639,7 +138228,22 @@ "Name": { "en": "Diplomacy" }, + "Abbreviation": { + "en": "4.6.6.2" + }, "Code": "4.6.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to diplomacy between nations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "648 International Relations", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122648,7 +138252,22 @@ "Name": { "en": "Working with chemicals" }, + "Abbreviation": { + "en": "6.6.2.9" + }, "Code": "6.6.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with chemicals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "303 Manufacturing of Toilet Accessories; 380 Chemical Industries; 381 Chemical Engineering; 382 Petroleum and Coal Products Industries; 383 Rubber Industry; 384 Synthetics Industry; 385 Industrial Chemicals; 386 Paint and Dye Manufacture; 387 Fertilizer Industry; 388 Soap and Allied Products; 389 Manufacture of Explosives; 549 Art and Recreational Supplies Industries; 719 Munitions Industries", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122657,7 +138276,22 @@ "Name": { "en": "Open" }, + "Abbreviation": { + "en": "7.3.6" + }, "Code": "7.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to opening something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79X Open, Closed", "DeletedAt": null, "Predefined": true }, @@ -122666,7 +138300,22 @@ "Name": { "en": "Move in a circle" }, + "Abbreviation": { + "en": "7.2.2.7" + }, "Code": "7.2.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to continually changing the direction you are facing in until you are once again facing in the same direction, e.g. moving in a circle, moving around something, or rotating.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15R Go Around, Surround; 15I\u0027 Roll", "DeletedAt": null, "Predefined": true }, @@ -122675,7 +138324,22 @@ "Name": { "en": "Mathematics" }, + "Abbreviation": { + "en": "8.1.2.1" + }, "Code": "8.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to mathematics and arithmetic--the study of numbers.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "803 Mathematics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122684,7 +138348,22 @@ "Name": { "en": "Worker" }, + "Abbreviation": { + "en": "6.1.1" + }, "Code": "6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a worker.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122693,7 +138372,22 @@ "Name": { "en": "Domesticated animal" }, + "Abbreviation": { + "en": "6.3.1" + }, "Code": "6.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to domesticated animals. Add extra domains for specific domesticated animals in your culture such as elephants in east Asia, camels in the Middle East, and llamas in South America.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "231 Domesticated Animals", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122702,7 +138396,22 @@ "Name": { "en": "Bleed, blood" }, + "Abbreviation": { + "en": "2.2.5" + }, "Code": "2.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to blood and bleeding.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122711,7 +138420,22 @@ "Name": { "en": "Shout" }, + "Abbreviation": { + "en": "3.5.1.1.1" + }, "Code": "3.5.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to shouting--to speak loudly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122720,7 +138444,22 @@ "Name": { "en": "Annoyed" }, + "Abbreviation": { + "en": "3.4.2.3.1" + }, "Code": "3.4.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling annoyed--to feel a little angry because someone keeps doing something you don\u0027t like.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122729,7 +138468,22 @@ "Name": { "en": "Communication devices" }, + "Abbreviation": { + "en": "3.5.9.6" + }, "Code": "3.5.9.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to communication devices.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "202 Transmission of Messages; 203 Dissemination of News and Information; 204 Press; 205 Mail; Postal System; 206 Telephone and Telegraph; 207 Radio and Television", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122738,7 +138492,22 @@ "Name": { "en": "Living things" }, + "Abbreviation": { + "en": "1.4" + }, "Code": "1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words that relate to all living things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122747,7 +138516,22 @@ "Name": { "en": "Impatient" }, + "Abbreviation": { + "en": "4.3.1.5.1" + }, "Code": "4.3.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being impatient--if you are impatient, you get angry or do something bad when something bad happens to you for a long time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122756,7 +138540,22 @@ "Name": { "en": "Disgusted" }, + "Abbreviation": { + "en": "3.4.2.1.3" + }, "Code": "3.4.2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling disgusted--to dislike something so much that you feel sick.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25Q Abhor", "DeletedAt": null, "Predefined": true }, @@ -122765,7 +138564,22 @@ "Name": { "en": "Amphibian" }, + "Abbreviation": { + "en": "1.6.1.4" + }, "Code": "1.6.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for amphibians (phylum Chordata, class Amphibia).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136g Amphibian, worm", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122774,7 +138588,22 @@ "Name": { "en": "Relative pronouns" }, + "Abbreviation": { + "en": "9.2.3.3" + }, "Code": "9.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for pronouns used in relative clauses.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "92F Relative Reference", "DeletedAt": null, "Predefined": true }, @@ -122783,7 +138612,22 @@ "Name": { "en": "Written material" }, + "Abbreviation": { + "en": "3.5.7.2" + }, "Code": "3.5.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to written material--something that has writing on it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "538 Literature; 539 Literary Texts; 900 Texts; 901 Texts in the Language of the Culture or Ethnic Group; 902 Texts Translated in English; 903 Interlinear Translations", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122792,7 +138636,22 @@ "Name": { "en": "Behavior" }, + "Abbreviation": { + "en": "4.3" + }, "Code": "4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to a person\u0027s behavior.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "577 Ethics", + "LouwNidaCodes": "41 Behavior and Related States; 41A Behavior, Conduct; 88 Moral and Ethical Qualities and Related Behavior", "DeletedAt": null, "Predefined": true }, @@ -122801,7 +138660,22 @@ "Name": { "en": "Move forward" }, + "Abbreviation": { + "en": "7.2.2.1" + }, "Code": "7.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving in a forward direction--in the same direction the person is facing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122810,7 +138684,22 @@ "Name": { "en": "Relaxed posture" }, + "Abbreviation": { + "en": "7.1.7.1" + }, "Code": "7.1.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a relaxed posture.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122819,7 +138708,22 @@ "Name": { "en": "Traditional medicine" }, + "Abbreviation": { + "en": "2.5.7.5" + }, "Code": "2.5.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to traditional medicine. There may be no distinction in terminology between \u0027modern medicine\u0027 and \u0027traditional medicine.\u0027 In that case this domain should be ignored. (Our purpose here is not to judge the value of traditional medicine, but to collect and describe the words used for it.)", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "754 Sorcery; 755 Magical and Mental Therapy", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122828,7 +138732,22 @@ "Name": { "en": "Suggest" }, + "Abbreviation": { + "en": "3.3.3.1" + }, "Code": "3.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to suggesting something--saying that something might be good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122837,7 +138756,22 @@ "Name": { "en": "Refuse permission" }, + "Abbreviation": { + "en": "3.3.4.2" + }, "Code": "3.3.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to refusing to permit someone to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122846,7 +138780,22 @@ "Name": { "en": "Exact" }, + "Abbreviation": { + "en": "8.1.5.8" + }, "Code": "8.1.5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate whether a number or amount is exact--not more and not less.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122855,7 +138804,22 @@ "Name": { "en": "Animal eating" }, + "Abbreviation": { + "en": "1.6.4.2" + }, "Code": "1.6.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to animals eating. Because animals often eat in very different ways from people, many languages will have words that are specific to the way an animal eats.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122864,7 +138828,22 @@ "Name": { "en": "Speak poorly" }, + "Abbreviation": { + "en": "3.5.1.1.8" + }, "Code": "3.5.1.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to speaking poorly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122873,7 +138852,22 @@ "Name": { "en": "Fold" }, + "Abbreviation": { + "en": "8.3.1.5.3" + }, "Code": "8.3.1.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to folding something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122882,7 +138876,22 @@ "Name": { "en": "Winnow grain" }, + "Abbreviation": { + "en": "6.2.6.1" + }, "Code": "6.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to winnowing grain--to separate the chaff from the grain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "7G Miscellaneous Constructions", "DeletedAt": null, "Predefined": true }, @@ -122891,7 +138900,22 @@ "Name": { "en": "Contain" }, + "Abbreviation": { + "en": "8.5.6" + }, "Code": "8.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that express the idea that something contains something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122900,7 +138924,22 @@ "Name": { "en": "Old person" }, + "Abbreviation": { + "en": "2.6.4.5" + }, "Code": "2.6.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to old age and older persons?", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "886 Senescence; 887 Activities of the Aged; 888 Status and Treatment of the Aged", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122909,7 +138948,22 @@ "Name": { "en": "Guide" }, + "Abbreviation": { + "en": "7.2.5.3" + }, "Code": "7.2.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to guiding someone--to show someone where to go by going ahead of them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15S Come/Go With, Travel With", "DeletedAt": null, "Predefined": true }, @@ -122918,7 +138972,22 @@ "Name": { "en": "Enter by force" }, + "Abbreviation": { + "en": "4.3.4.7" + }, "Code": "4.3.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to entering a place, such as a house, by force.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122927,7 +138996,22 @@ "Name": { "en": "Solve" }, - "Code": "3.2.2.5", + "Abbreviation": { + "en": "3.2.2.5" + }, + "Code": "3.2.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to solving something--finding the answer to something that is difficult to understand.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122936,7 +139020,22 @@ "Name": { "en": "Examine" }, + "Abbreviation": { + "en": "2.3.1.3" + }, "Code": "2.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to examining--to look carefully at something because you want to learn something about it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122945,7 +139044,22 @@ "Name": { "en": "Parts of things" }, + "Abbreviation": { + "en": "8.6" + }, "Code": "8.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to a part of something. These words are often based on the parts of a person\u0027s body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122954,7 +139068,22 @@ "Name": { "en": "Worse" }, + "Abbreviation": { + "en": "8.3.7.2.1" + }, "Code": "8.3.7.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is worse than something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122963,7 +139092,22 @@ "Name": { "en": "Musical instrument" }, + "Abbreviation": { + "en": "4.2.3.5" + }, "Code": "4.2.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to musical instruments and people who play a particular instrument.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "534 Musical Instruments", + "LouwNidaCodes": "6L Musical Instruments", "DeletedAt": null, "Predefined": true }, @@ -122972,7 +139116,22 @@ "Name": { "en": "Simple, plain" }, + "Abbreviation": { + "en": "8.3.8.1" + }, "Code": "8.3.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is simple or plain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "353 Building Interiors and Arrangement; Interior Decoration and Arrangement", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122981,7 +139140,22 @@ "Name": { "en": "Island, shore" }, + "Abbreviation": { + "en": "1.3.1.5" + }, "Code": "1.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to land in contrast with the sea or river.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1I Land in Contrast With the Sea", "DeletedAt": null, "Predefined": true }, @@ -122990,7 +139164,22 @@ "Name": { "en": "Food from vegetables" }, + "Abbreviation": { + "en": "5.2.3.1.3" + }, "Code": "5.2.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to food from vegetables.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -122999,7 +139188,22 @@ "Name": { "en": "Compete with" }, + "Abbreviation": { + "en": "4.3.4.3.1" + }, "Code": "4.3.4.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to competing with someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123008,7 +139212,22 @@ "Name": { "en": "Belong to an organization" }, + "Abbreviation": { + "en": "4.2.1.8.3" + }, "Code": "4.2.1.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to belonging to an organization.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "34C Belong to, Be Included in the Membership of, Be Excluded From", "DeletedAt": null, "Predefined": true }, @@ -123017,7 +139236,22 @@ "Name": { "en": "Bad-tempered" }, + "Abbreviation": { + "en": "4.3.1.5.2" + }, "Code": "4.3.1.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being bad-tempered--to behave in an angry, unfriendly way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123026,7 +139260,22 @@ "Name": { "en": "Calm" }, + "Abbreviation": { + "en": "3.4.1.2.2" + }, "Code": "3.4.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling calm.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123035,7 +139284,22 @@ "Name": { "en": "Come together, form a group" }, + "Abbreviation": { + "en": "4.2.1" + }, "Code": "4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to coming together to form a group.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123044,7 +139308,22 @@ "Name": { "en": "Wind" }, + "Abbreviation": { + "en": "1.1.3.1" + }, "Code": "1.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the wind. Some words refer to when the wind begins and ends. The wind changes in speed, so some words refer to how fast the wind is moving. Try to rank these on a scale from very slow to very fast. These words may also be distinguished by what the wind does, since a fast wind does more things. These words may also be distinguished by how long the wind blows. Some words refer to the speed of the wind becoming faster or slower. Some words distinguish a steady wind from a wind in which the speed keeps changing. Some words refer to when the speed of the wind becomes faster for a short time. A steady wind moves in a particular direction, so there are words that include the direction of the wind. The direction of the wind may refer to the points of the compass, a neighboring geographical feature or area, or the direction in which the speaker is moving. Some words refer to a wind that moves in a small circle, making a pillar of dust or a funnel-shaped cloud. Some words refer to what the wind does, such as when it moves or damages something. People can feel the wind, so some words refer to how it feels. The wind makes noise, so there are words that refer to the sound of the wind. In some cultures there is a relation between the wind and spirits, so some words may refer to the activity of the spirits in the wind, or that the wind brings disease.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "14B Wind", "DeletedAt": null, "Predefined": true }, @@ -123053,7 +139332,22 @@ "Name": { "en": "Care for the fingernails" }, + "Abbreviation": { + "en": "5.4.7" + }, "Code": "5.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to caring for the fingernails.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123062,7 +139356,22 @@ "Name": { "en": "Beneficiary of an event" }, + "Abbreviation": { + "en": "9.5.1.1" + }, "Code": "9.5.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark the beneficiary of an event. The sentence \u0022John built a house for his father\u0022 is ambiguous. If the house was for his father to live in, then \u0022for\u0022 would mark the \u0027Beneficiary of a patient\u0027, meaning that the house was for the father. If, on the other hand, the father was intending to build the house to sell, but couldn\u0027t due to an injury, then \u0022for\u0022 would mark the \u0027Beneficiary of an event\u0027, meaning the father benefited from the building of the house.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "90I Benefaction", "DeletedAt": null, "Predefined": true }, @@ -123071,7 +139380,22 @@ "Name": { "en": "Bed" }, + "Abbreviation": { + "en": "5.1.1.3" + }, "Code": "5.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a bed.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123080,7 +139404,22 @@ "Name": { "en": "Animal" }, + "Abbreviation": { + "en": "1.6" + }, "Code": "1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136 Fauna", + "LouwNidaCodes": "4 Animals", "DeletedAt": null, "Predefined": true }, @@ -123089,7 +139428,22 @@ "Name": { "en": "Weak" }, + "Abbreviation": { + "en": "2.4.2" + }, "Code": "2.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being weak.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79M Strong, Weak", "DeletedAt": null, "Predefined": true }, @@ -123098,7 +139452,22 @@ "Name": { "en": "Attribution" }, + "Abbreviation": { + "en": "9.1.1.4" + }, "Code": "9.1.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Attributes often belong to a class of attributes (shape = straight, curved) or to a scale (length = long, short). The class or scale can sometimes be included in the expression, but does not mark the proposition itself. (The towel \u003Cfeels\u003E damp. The box \u003Cweighs\u003E five kilos.)", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123107,7 +139476,22 @@ "Name": { "en": "Rust" }, + "Abbreviation": { + "en": "8.3.7.8.1" + }, "Code": "8.3.7.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to metal rusting--when metal becomes bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123116,7 +139500,22 @@ "Name": { "en": "Nickname" }, + "Abbreviation": { + "en": "9.7.1.6" + }, "Code": "9.7.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for common nicknames--an additional name given to a person later in life, often descriptive. Also include general names used to call or refer to someone when you don\u0027t know their name", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123125,7 +139524,22 @@ "Name": { "en": "Command" }, + "Abbreviation": { + "en": "4.5.3.2" + }, "Code": "4.5.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to commanding someone to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33F\u0027 Command, Order", "DeletedAt": null, "Predefined": true }, @@ -123134,7 +139548,22 @@ "Name": { "en": "Alternate" }, + "Abbreviation": { + "en": "8.4.5.1.6" + }, "Code": "8.4.5.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to alternating--when several things happen one after another in a repeated pattern.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123143,7 +139572,22 @@ "Name": { "en": "Speak quietly" }, + "Abbreviation": { + "en": "3.5.1.1.2" + }, "Code": "3.5.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe a person speaking quietly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123152,7 +139596,22 @@ "Name": { "en": "Poison" }, + "Abbreviation": { + "en": "2.5.3.2" + }, "Code": "2.5.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to poison--something that is bad for your body if you eat it, it gets on you, or an animal injects it into you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123161,7 +139620,22 @@ "Name": { "en": "Oil" }, + "Abbreviation": { + "en": "1.2.3.2" + }, "Code": "1.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to oil.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123170,7 +139644,22 @@ "Name": { "en": "Imperative " }, + "Abbreviation": { + "en": "9.4.3.1" + }, "Code": "9.4.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate imperatives. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press. Use this domain for words and affixes that a speaker uses to indicate that he is making a command. English has no command word. Some languages change the form of the verb by adding an affix. Some languages have special verbs that are only or normally used as commands. Those verbs could be classified here.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123179,7 +139668,22 @@ "Name": { "en": "Gesture" }, + "Abbreviation": { + "en": "3.5.6.1" + }, "Code": "3.5.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to gesturing--moving a part of the body to communicate a message.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "201 Gestures and Signs", + "LouwNidaCodes": "33D\u0022 Non-Verbal Communication", "DeletedAt": null, "Predefined": true }, @@ -123188,7 +139692,22 @@ "Name": { "en": "Hate, detest" }, + "Abbreviation": { + "en": "3.4.2.1.2" + }, "Code": "3.4.2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hating someone or something--to dislike someone or something very much.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88Z Hate, Hateful; 25Q Abhor", "DeletedAt": null, "Predefined": true }, @@ -123197,7 +139716,22 @@ "Name": { "en": "Sit" }, + "Abbreviation": { + "en": "7.1.2" + }, "Code": "7.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to sitting and squatting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "17B Sit x", "DeletedAt": null, "Predefined": true }, @@ -123206,7 +139740,22 @@ "Name": { "en": "Separate, alone" }, + "Abbreviation": { + "en": "4.4.2.5" + }, "Code": "4.4.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a person being separate or alone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123215,7 +139764,22 @@ "Name": { "en": "Building materials" }, + "Abbreviation": { + "en": "6.5.3" + }, "Code": "6.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the materials used to make a building.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "339 Building Supplies Industries", + "LouwNidaCodes": "7H Building Materials", "DeletedAt": null, "Predefined": true }, @@ -123224,7 +139788,22 @@ "Name": { "en": "Multicolored" }, + "Abbreviation": { + "en": "8.3.3.3.7" + }, "Code": "8.3.3.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is multicolored--having many different colors.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123233,7 +139812,22 @@ "Name": { "en": "Artificial" }, + "Abbreviation": { + "en": "6.1.7" + }, "Code": "6.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is artificial--something that is made by people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123242,7 +139836,22 @@ "Name": { "en": "To a smaller degree" }, + "Abbreviation": { + "en": "9.3.1.4" + }, "Code": "9.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a smaller degree.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "78B More Than, Less Than", "DeletedAt": null, "Predefined": true }, @@ -123251,7 +139860,22 @@ "Name": { "en": "Steady, unsteady" }, + "Abbreviation": { + "en": "7.2.1.6" + }, "Code": "7.2.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123260,7 +139884,22 @@ "Name": { "en": "Fort" }, + "Abbreviation": { + "en": "4.8.3.6.6" + }, "Code": "4.8.3.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a fort.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123269,7 +139908,22 @@ "Name": { "en": "Preserve" }, + "Abbreviation": { + "en": "8.3.7.8.4" + }, "Code": "8.3.7.8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to preserving the condition of something from decay.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123278,7 +139932,22 @@ "Name": { "en": "Transport" }, + "Abbreviation": { + "en": "7.3.8" + }, "Code": "7.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving something in a vehicle.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123287,7 +139956,22 @@ "Name": { "en": "Smelting" }, + "Abbreviation": { + "en": "6.6.2.2" + }, "Code": "6.6.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to smelting--melting rocks to get metal out of them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "325 Metallurgy; 327 Iron and Steel Industry", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123296,7 +139980,22 @@ "Name": { "en": "Types of people" }, + "Abbreviation": { + "en": "4.1.2" + }, "Code": "4.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to different types of people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123305,7 +140004,22 @@ "Name": { "en": "Convex" }, + "Abbreviation": { + "en": "8.3.1.6.2" + }, "Code": "8.3.1.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is convex--extending outward in shape toward the viewer.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123314,7 +140028,22 @@ "Name": { "en": "Old, not new" }, + "Abbreviation": { + "en": "8.4.6.5.4" + }, "Code": "8.4.6.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something old--a word describing something that has existed for a long time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58K New, Old", "DeletedAt": null, "Predefined": true }, @@ -123323,7 +140052,22 @@ "Name": { "en": "Sky" }, + "Abbreviation": { + "en": "1.1" + }, "Code": "1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the sky.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1B Regions Above the Earth", "DeletedAt": null, "Predefined": true }, @@ -123332,7 +140076,22 @@ "Name": { "en": "Other" }, + "Abbreviation": { + "en": "8.3.5.2.4" + }, "Code": "8.3.5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to other, as in \u0027the other person\u0027, \u0027another thing\u0027--a thing that is not the same as something that has been mentioned.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123341,7 +140100,22 @@ "Name": { "en": "Lucky" }, + "Abbreviation": { + "en": "4.4.5.1" + }, "Code": "4.4.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being lucky.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123350,7 +140124,22 @@ "Name": { "en": "Same" }, + "Abbreviation": { + "en": "8.3.5.2.1" + }, "Code": "8.3.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is the same thing as you just mentioned, or describing two things that are exactly the same.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58E Same or Equivalent Kind or Class", "DeletedAt": null, "Predefined": true }, @@ -123359,7 +140148,22 @@ "Name": { "en": "Recipient (of a patient)" }, + "Abbreviation": { + "en": "9.5.3.2" + }, "Code": "9.5.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark the recipient of the Patient of an activity. The Patient is usually expressed as the object of a sentence.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123368,7 +140172,22 @@ "Name": { "en": "Growing tobacco" }, + "Abbreviation": { + "en": "6.2.1.5.2" + }, "Code": "6.2.1.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing tobacco.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123377,7 +140196,22 @@ "Name": { "en": "Not yet" }, + "Abbreviation": { + "en": "8.4.6.4.2" + }, "Code": "8.4.6.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something not happening yet.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123386,7 +140220,22 @@ "Name": { "en": "Reliable" }, + "Abbreviation": { + "en": "4.3.5.3" + }, "Code": "4.3.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being reliable--words describe a person who can be relied on to do what he is supposed to.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123395,7 +140244,22 @@ "Name": { "en": "Tend a fire" }, + "Abbreviation": { + "en": "5.5.2" + }, "Code": "5.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to tending a fire--to keep a fire burning so that it burns well and does not go out.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123404,7 +140268,22 @@ "Name": { "en": "Suffer" }, + "Abbreviation": { + "en": "4.4.2.6" + }, "Code": "4.4.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to suffering--to feel very bad because of something very bad that has happened to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123413,7 +140292,22 @@ "Name": { "en": "Tax" }, + "Abbreviation": { + "en": "6.8.8" + }, "Code": "6.8.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tax.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "651 Taxation and Public Income; 652 Public Finance", + "LouwNidaCodes": "57N Tax, Tribute", "DeletedAt": null, "Predefined": true }, @@ -123422,7 +140316,22 @@ "Name": { "en": "Untidy" }, + "Abbreviation": { + "en": "4.3.6.3" + }, "Code": "4.3.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being untidy--to not keep your things tidy and orderly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123431,7 +140340,22 @@ "Name": { "en": "Unity" }, + "Abbreviation": { + "en": "4.1.5" + }, "Code": "4.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to unity--when a group of people agree with each other and are not fighting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "63B Unite", "DeletedAt": null, "Predefined": true }, @@ -123440,7 +140364,22 @@ "Name": { "en": "Make an appeal" }, + "Abbreviation": { + "en": "4.8.4.2" + }, "Code": "4.8.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to making an appeal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123449,7 +140388,22 @@ "Name": { "en": "Admire someone" }, + "Abbreviation": { + "en": "4.3.2" + }, "Code": "4.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to admiring someone--to feel good about someone because you think that he is a good person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123458,7 +140412,22 @@ "Name": { "en": "Pure, unmixed" }, + "Abbreviation": { + "en": "7.5.3.1" + }, "Code": "7.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being pure--words describing something (like water, food, or air) that does not have anything bad in it; or unmixed--words describing something that is only one thing and has not been mixed with something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79T Pure, Unadulterated, Undiluted", "DeletedAt": null, "Predefined": true }, @@ -123467,7 +140436,22 @@ "Name": { "en": "Tie" }, + "Abbreviation": { + "en": "7.5.4" + }, "Code": "7.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tying things together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "18 Attachment; 18B Fasten, Stick To", "DeletedAt": null, "Predefined": true }, @@ -123476,7 +140460,22 @@ "Name": { "en": "Place of worship" }, + "Abbreviation": { + "en": "4.9.8.2" + }, "Code": "4.9.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to places of worship. Each religion has different types of places of worship. These questions must be answered according to the practices of each religion and for each separate type of place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "778 Sacred Objects and Places; 346 Religious and Educational Structures", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123485,7 +140484,22 @@ "Name": { "en": "Renounce claim, concede" }, + "Abbreviation": { + "en": "4.8.4.5" + }, "Code": "4.8.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to renouncing a claim.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123494,7 +140508,22 @@ "Name": { "en": "Occupation" }, + "Abbreviation": { + "en": "6.6" + }, "Code": "6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to occupations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "42E Craft, Trade", "DeletedAt": null, "Predefined": true }, @@ -123503,7 +140532,22 @@ "Name": { "en": "Prosperity, trouble" }, + "Abbreviation": { + "en": "4.4" + }, "Code": "4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to prosperity and trouble", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "22 Trouble, Hardship, Relief, Favorable Circumstances", "DeletedAt": null, "Predefined": true }, @@ -123512,7 +140556,22 @@ "Name": { "en": "Sugar" }, + "Abbreviation": { + "en": "5.2.3.3.1" + }, "Code": "5.2.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sugar.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123521,7 +140580,22 @@ "Name": { "en": "Hypocrite" }, + "Abbreviation": { + "en": "4.3.5.6" + }, "Code": "4.3.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being a hypocrite.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88C\u0027 Hypocrisy, Pretense", "DeletedAt": null, "Predefined": true }, @@ -123530,7 +140604,22 @@ "Name": { "en": "Cut hair" }, + "Abbreviation": { + "en": "5.4.3.5" + }, "Code": "5.4.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cutting hair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123539,7 +140628,22 @@ "Name": { "en": "Food from fruit" }, + "Abbreviation": { + "en": "5.2.3.1.2" + }, "Code": "5.2.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to food from fruit.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "3D Fruit Parts of Plants", "DeletedAt": null, "Predefined": true }, @@ -123548,7 +140652,22 @@ "Name": { "en": "Finger, toe" }, + "Abbreviation": { + "en": "2.1.3.3" + }, "Code": "2.1.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the fingers and toes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123557,7 +140676,22 @@ "Name": { "en": "Persuade" }, + "Abbreviation": { + "en": "3.3.3.3" + }, "Code": "3.3.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to persuading someone--to try to get someone to do something or to change his thinking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33B\u0027 Urge, Persuade; 33H\u0027 Recommend, Propose", "DeletedAt": null, "Predefined": true }, @@ -123566,7 +140700,22 @@ "Name": { "en": "Move up" }, + "Abbreviation": { + "en": "7.2.2.4" + }, "Code": "7.2.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving in an upward direction or to moving to a higher place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15I Come/Go Onto; 15J Come/Go Up, Ascend", "DeletedAt": null, "Predefined": true }, @@ -123575,7 +140724,22 @@ "Name": { "en": "Wash dishes" }, + "Abbreviation": { + "en": "5.6.3" + }, "Code": "5.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to washing dishes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123584,7 +140748,22 @@ "Name": { "en": "Injure" }, + "Abbreviation": { + "en": "2.5.3" + }, "Code": "2.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to injuring someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "752 Bodily Injuries", + "LouwNidaCodes": "20B Harm, wound", "DeletedAt": null, "Predefined": true }, @@ -123593,7 +140772,22 @@ "Name": { "en": "Stop fighting" }, + "Abbreviation": { + "en": "4.8.4.8.1" + }, "Code": "4.8.4.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to stopping fighting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123602,7 +140796,22 @@ "Name": { "en": "Peer group" }, + "Abbreviation": { + "en": "2.6.4.8" + }, "Code": "2.6.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a peer group--all the people who were born during the same time period.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "561 Age Stratification", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123611,7 +140820,22 @@ "Name": { "en": "Hunt and fish" }, + "Abbreviation": { + "en": "6.4" + }, "Code": "6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hunting and fishing--catching and killing wild animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "220 Food Quest; 221 Annual Cycle; 222 Collecting", + "LouwNidaCodes": "44 Animal Husbandry, Fishing", "DeletedAt": null, "Predefined": true }, @@ -123620,7 +140844,22 @@ "Name": { "en": "Side" }, + "Abbreviation": { + "en": "8.6.3" + }, "Code": "8.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the side part of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123629,7 +140868,22 @@ "Name": { "en": "Uproot plants" }, + "Abbreviation": { + "en": "6.2.4.2" + }, "Code": "6.2.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to uprooting plants.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123638,7 +140892,22 @@ "Name": { "en": "Accident" }, + "Abbreviation": { + "en": "4.4.2.3" + }, "Code": "4.4.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to accidents--something bad that happens without anyone wanting it to happen or doing anything to cause it to happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123647,7 +140916,22 @@ "Name": { "en": "Low status" }, + "Abbreviation": { + "en": "4.5.6.2" + }, "Code": "4.5.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to low social status.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "87D Low Status or Rank", "DeletedAt": null, "Predefined": true }, @@ -123656,7 +140940,22 @@ "Name": { "en": "Backward" }, + "Abbreviation": { + "en": "8.5.2.2" + }, "Code": "8.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a backward direction.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123665,7 +140964,22 @@ "Name": { "en": "Say" }, + "Abbreviation": { + "en": "3.5.1" + }, "Code": "3.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to saying something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "191 Speech", + "LouwNidaCodes": "33F Speak, Talk", "DeletedAt": null, "Predefined": true }, @@ -123674,7 +140988,22 @@ "Name": { "en": "Tell a lie" }, + "Abbreviation": { + "en": "3.5.1.3.2" + }, "Code": "3.5.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lying--to say something that is not true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123683,7 +141012,22 @@ "Name": { "en": "Posture" }, + "Abbreviation": { + "en": "7.1" + }, "Code": "7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words indicating the posture or stance of a person\u0027s body. Use the domains in this section for specific words for postures and for moving parts of the body. Many of these words have two meanings. One meaning is stative, indicating that the body is in a particular posture, but not moving. The other meaning is active, indicating that the person is moving his body into a particular posture. Some of these words can be used of animals or even things, if the things are perceived as being similar in posture to that of a human body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "516 Postures", + "LouwNidaCodes": "17 Stances and Events Related to Stances", "DeletedAt": null, "Predefined": true }, @@ -123692,7 +141036,22 @@ "Name": { "en": "Virginity" }, + "Abbreviation": { + "en": "2.6.2.1" + }, "Code": "2.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being a virgin--a person who has never had sex.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123701,7 +141060,22 @@ "Name": { "en": "Offering, sacrifice" }, + "Abbreviation": { + "en": "4.9.5.5" + }, "Code": "4.9.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to offering a sacrifice.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "782 Prayers and Sacrifices; Propitiation; 782 Propitiation", + "LouwNidaCodes": "53B Offering, Sacrifice", "DeletedAt": null, "Predefined": true }, @@ -123710,7 +141084,22 @@ "Name": { "en": "Remember" }, + "Abbreviation": { + "en": "3.2.6" + }, "Code": "3.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to remembering something you know.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "29 Memory and Recall; 29B Recalling from Memory; 29D Recalling and Responding with Appropriate Action", "DeletedAt": null, "Predefined": true }, @@ -123719,7 +141108,22 @@ "Name": { "en": "At the same time" }, + "Abbreviation": { + "en": "8.4.5.2.2" + }, "Code": "8.4.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to two things happening at the same time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67G Duration of Time with Reference to Some Unit of Time: During, In, While, Throughout", "DeletedAt": null, "Predefined": true }, @@ -123728,7 +141132,22 @@ "Name": { "en": "Goal (of movement)" }, + "Abbreviation": { + "en": "9.5.1.6.3" + }, "Code": "9.5.1.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating the Goal of movement.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123737,7 +141156,22 @@ "Name": { "en": "Fuel" }, + "Abbreviation": { + "en": "5.5.6" + }, "Code": "5.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for types of fuel and for words used in making, collecting, storing, or using fuel. This domain includes the scenario of collecting firewood.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123746,7 +141180,22 @@ "Name": { "en": "Pardon, release" }, + "Abbreviation": { + "en": "4.7.7.6" + }, "Code": "4.7.7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pardoning someone who has been found guilty of a crime.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123755,7 +141204,22 @@ "Name": { "en": "Mental illness" }, + "Abbreviation": { + "en": "2.5.8" + }, "Code": "2.5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being mentally ill or disabled.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "158 Personality Disorders; 756 Shamans and Psychotherapists", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123764,7 +141228,22 @@ "Name": { "en": "Yes" }, + "Abbreviation": { + "en": "9.4.6" + }, "Code": "9.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that affirm or agree with the truth of something, or that answer a yes/no question in the affirmative.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "69A Affirmation; 69 Affirmation, Negation", "DeletedAt": null, "Predefined": true }, @@ -123773,7 +141252,22 @@ "Name": { "en": "Planet" }, + "Abbreviation": { + "en": "1.1.1.3" + }, "Code": "1.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to planets (large objects that circle the sun, looking like bright wandering stars in the sky), comets (objects that circle the sun, looking like a star with a tail), meteors (small objects that come from space and burn up when they hit the earth\u0027s atmosphere, causing a streak of light across the sky), and asteroids (small objects that circle the sun), planetary moons (large objects that circle the planets). Some cultures do not study the stars and will have few or no words in this domain. Others cultures that study the stars will have many words. There are only five planets that people can see in the sky--Mercury, Venus, Mars, Jupiter, and Saturn. The others are only known from the scientific study of astronomy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123782,7 +141276,22 @@ "Name": { "en": "Names of oceans and lakes" }, + "Abbreviation": { + "en": "9.7.2.8" + }, "Code": "9.7.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the oceans and lakes in the language area. Only include the names of oceans and lakes outside the language area if your language has borrowed or adapted the name and you talk about them in your language.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123791,7 +141300,22 @@ "Name": { "en": "Personally" }, + "Abbreviation": { + "en": "9.2.3.6" + }, "Code": "9.2.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that someone does something himself, rather than through someone else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123800,7 +141324,22 @@ "Name": { "en": "Breathe, breath" }, + "Abbreviation": { + "en": "2.2.1" + }, "Code": "2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to breathing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23J Breathe, Breath", "DeletedAt": null, "Predefined": true }, @@ -123809,7 +141348,22 @@ "Name": { "en": "Insurance" }, + "Abbreviation": { + "en": "6.9.6" + }, "Code": "6.9.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to insurance.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "456 Insurance", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123818,7 +141372,22 @@ "Name": { "en": "Care for a baby" }, + "Abbreviation": { + "en": "2.6.4.1.1" + }, "Code": "2.6.4.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to caring for a baby.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "853 Infant Feeding; 854 Infant Care; 862 Weaning and Food Training", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123827,7 +141396,22 @@ "Name": { "en": "Hunt" }, + "Abbreviation": { + "en": "6.4.1" + }, "Code": "6.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hunting wild animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "224 Hunting and Trapping", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123836,7 +141420,22 @@ "Name": { "en": "Make peace" }, + "Abbreviation": { + "en": "4.8.4.8" + }, "Code": "4.8.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to making peace--to try to prevent or end a war.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "728 Peacemaking", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123845,7 +141444,22 @@ "Name": { "en": "Household decoration" }, + "Abbreviation": { + "en": "5.1.2" + }, "Code": "5.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to household decorations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "353 Building Interiors and Arrangement; Interior Decoration and Arrangement", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123854,7 +141468,22 @@ "Name": { "en": "Spread, smear" }, + "Abbreviation": { + "en": "7.3.7.3" + }, "Code": "7.3.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to spreading something--to cover something on all sides with something liquid or sticky like paint or mud.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123863,7 +141492,22 @@ "Name": { "en": "Do intensely" }, + "Abbreviation": { + "en": "9.3.4" + }, "Code": "9.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating intensity of an action.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123872,7 +141516,22 @@ "Name": { "en": "Mental state" }, + "Abbreviation": { + "en": "3.1.2" + }, "Code": "3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a person\u0027s mental state.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123881,7 +141540,22 @@ "Name": { "en": "Despise someone" }, + "Abbreviation": { + "en": "4.3.2.1" + }, "Code": "4.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to despising someone--to feel bad about someone because you think they are not as good as you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88Y Despise, Scorn, Contempt", "DeletedAt": null, "Predefined": true }, @@ -123890,7 +141564,22 @@ "Name": { "en": "Give up" }, + "Abbreviation": { + "en": "6.1.2.4.3" + }, "Code": "6.1.2.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to giving up.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123899,7 +141588,22 @@ "Name": { "en": "Crawl" }, + "Abbreviation": { + "en": "7.2.1.1.2" + }, "Code": "7.2.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to crawling--moving on your hands and knees or on your stomach.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123908,7 +141612,22 @@ "Name": { "en": "Irrigate" }, + "Abbreviation": { + "en": "6.2.4.3" + }, "Code": "6.2.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to irrigating a field.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123917,7 +141636,22 @@ "Name": { "en": "Disclose" }, + "Abbreviation": { + "en": "3.5.1.5.2" + }, "Code": "3.5.1.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to discovering and revealing unknown information.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123926,7 +141660,22 @@ "Name": { "en": "Remove, take apart" }, + "Abbreviation": { + "en": "7.5.2.4" + }, "Code": "7.5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to removing part of something, taking something apart, and things coming apart.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123935,7 +141684,22 @@ "Name": { "en": "Next" }, + "Abbreviation": { + "en": "8.4.5.1.3" + }, "Code": "8.4.5.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening next.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123944,7 +141708,22 @@ "Name": { "en": "Smuggle" }, + "Abbreviation": { + "en": "6.8.9.6" + }, "Code": "6.8.9.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to smuggling--taking something secretly into a country, something which is illegal or without paying duty.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123953,7 +141732,22 @@ "Name": { "en": "War" }, + "Abbreviation": { + "en": "4.8.3" + }, "Code": "4.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to war--fighting between countries.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "720 War; 726 Warfare; 721 Instigation of War; 722 Wartime Adjustments; 723 Strategy; 724 Logistics; 725 Tactics; 727 Aftermath of Combat; 729 War Veterans", + "LouwNidaCodes": "39 Hostility, Strife; 55 Military Activities", "DeletedAt": null, "Predefined": true }, @@ -123962,7 +141756,22 @@ "Name": { "en": "Grind" }, + "Abbreviation": { + "en": "7.7.6" + }, "Code": "7.7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to grinding--to rub something rough against something else, while applying force, in order to break it or remove its surface.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123971,7 +141780,22 @@ "Name": { "en": "Poking tool" }, + "Abbreviation": { + "en": "6.7.1.1" + }, "Code": "6.7.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to poking tools--tools used to make holes in things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123980,7 +141804,22 @@ "Name": { "en": "Straight" }, + "Abbreviation": { + "en": "8.3.1.3" + }, "Code": "8.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being straight.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79Q Straight, Crooked", "DeletedAt": null, "Predefined": true }, @@ -123989,7 +141828,22 @@ "Name": { "en": "Play, fun" }, + "Abbreviation": { + "en": "4.2.7" + }, "Code": "4.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to playing and fun.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -123998,7 +141852,22 @@ "Name": { "en": "Give permission" }, + "Abbreviation": { + "en": "3.3.4.1" + }, "Code": "3.3.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to giving someone permission to do something. This domain is about a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37C Exercise Authority", "DeletedAt": null, "Predefined": true }, @@ -124007,7 +141876,22 @@ "Name": { "en": "Approve of something" }, + "Abbreviation": { + "en": "3.2.5.9" + }, "Code": "3.2.5.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to approving of doing something--to think that doing something is good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124016,7 +141900,22 @@ "Name": { "en": "Wedged in, stuck" }, + "Abbreviation": { + "en": "8.2.7.3" + }, "Code": "8.2.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being wedged in or stuck in a hole.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124025,7 +141924,22 @@ "Name": { "en": "Go to sleep" }, + "Abbreviation": { + "en": "5.7.1" + }, "Code": "5.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to going to bed and going to sleep.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124034,7 +141948,22 @@ "Name": { "en": "Phrase conjunctions" }, + "Abbreviation": { + "en": "9.2.5.1" + }, "Code": "9.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all phrase level conjunctions--conjunctions that join two words within a phrase.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124043,7 +141972,22 @@ "Name": { "en": "Learn" }, + "Abbreviation": { + "en": "3.2.2" + }, "Code": "3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to learning something, acquiring information, gaining knowledge (whether done intentionally or unintentionally), or discovering the answer to some question.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "27 Learn; 27A Learn", "DeletedAt": null, "Predefined": true }, @@ -124052,7 +141996,22 @@ "Name": { "en": "Husband, wife" }, + "Abbreviation": { + "en": "4.1.9.2.1" + }, "Code": "4.1.9.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to your spouse.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124061,7 +142020,22 @@ "Name": { "en": "Praise" }, + "Abbreviation": { + "en": "3.5.1.7" + }, "Code": "3.5.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to praising someone or something--to say something good about someone, or to say that someone did something good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33K\u0027 Praise", "DeletedAt": null, "Predefined": true }, @@ -124070,7 +142044,22 @@ "Name": { "en": "Area" }, + "Abbreviation": { + "en": "8.5.4" + }, "Code": "8.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an area.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "80 Space; 80A Space, Place", "DeletedAt": null, "Predefined": true }, @@ -124079,7 +142068,22 @@ "Name": { "en": "Noun affixes" }, + "Abbreviation": { + "en": "9.2.9.2" + }, "Code": "9.2.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all noun affixes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124088,7 +142092,22 @@ "Name": { "en": "Verbal tradition" }, + "Abbreviation": { + "en": "3.5.4.6" + }, "Code": "3.5.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to verbal tradition--something that your ancestors told to each successive generation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124097,7 +142116,22 @@ "Name": { "en": "Multiples" }, + "Abbreviation": { + "en": "8.1.1.4" + }, "Code": "8.1.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to multiples of something (single, double, triple).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "60F Double, Four Times As Much, Etc.", "DeletedAt": null, "Predefined": true }, @@ -124106,7 +142140,22 @@ "Name": { "en": "Working in the sea" }, + "Abbreviation": { + "en": "6.6.7.4" + }, "Code": "6.6.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working in the sea.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "228 Marine Industries; 312 Water Supply; 336 Plumbing; 376 Water Power", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124115,7 +142164,22 @@ "Name": { "en": "Meet a standard" }, + "Abbreviation": { + "en": "4.3.1.2" + }, "Code": "4.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to meeting a standard.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88D Perfect, Perfection; 88F Modesty, Propriety", "DeletedAt": null, "Predefined": true }, @@ -124124,7 +142188,22 @@ "Name": { "en": "Waste" }, + "Abbreviation": { + "en": "6.1.2.2.6" + }, "Code": "6.1.2.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to wasting something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124133,7 +142212,22 @@ "Name": { "en": "Be" }, + "Abbreviation": { + "en": "9.1.1" + }, "Code": "9.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Many languages have general words that indicate some kind of state. These general words may be used with a wide variety of specific meanings. For instance in English the word \u0027be\u0027 may be used to identify something, describe something, and many other ideas.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "13A State", "DeletedAt": null, "Predefined": true }, @@ -124142,7 +142236,22 @@ "Name": { "en": "Deceive" }, + "Abbreviation": { + "en": "4.3.5.5" + }, "Code": "4.3.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to deceiving someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88U Mislead, Lead Astray, Deceive", "DeletedAt": null, "Predefined": true }, @@ -124151,7 +142260,22 @@ "Name": { "en": "Expensive" }, + "Abbreviation": { + "en": "6.8.4.3.1" + }, "Code": "6.8.4.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to an expensive price.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124160,7 +142284,22 @@ "Name": { "en": "Opportunity" }, + "Abbreviation": { + "en": "6.1.2.9" + }, "Code": "6.1.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to an opportunity to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124169,7 +142308,22 @@ "Name": { "en": "Sell" }, + "Abbreviation": { + "en": "6.8.4.2" + }, "Code": "6.8.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to selling something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124178,7 +142332,22 @@ "Name": { "en": "Fail" }, + "Abbreviation": { + "en": "6.1.3.3" + }, "Code": "6.1.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to failing to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124187,7 +142356,22 @@ "Name": { "en": "Family, clan" }, + "Abbreviation": { + "en": "4.1.9.8" + }, "Code": "4.1.9.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to social groups composed of related people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "590 Family; 144 Racial Identification; Racial Affinities; 591 Residence; 592 Household; 593 Family Relationships; 594 Nuclear Family; 595 Polygamy; 596 Extended Families; 610 Kin Groups; 611 Rule of Descent; 612 Kindreds and Ramages; 613 Lineages; 614 Sibs; 615 Phratries; 616 Moieties; 617 Bilinear Kin Groups; 618 Clans; 619 Tribe and Nation", + "LouwNidaCodes": "11D Ethnic-Cultural", "DeletedAt": null, "Predefined": true }, @@ -124196,7 +142380,22 @@ "Name": { "en": "Shine" }, + "Abbreviation": { + "en": "8.3.3.1" + }, "Code": "8.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a light source shining--for something to make light.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124205,7 +142404,22 @@ "Name": { "en": "Particles" }, + "Abbreviation": { + "en": "9.2.6" + }, "Code": "9.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all particles.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124214,7 +142428,22 @@ "Name": { "en": "Country" }, + "Abbreviation": { + "en": "4.6.7.1" + }, "Code": "4.6.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a country.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1L Governmental Administrative Areas", "DeletedAt": null, "Predefined": true }, @@ -124223,7 +142452,22 @@ "Name": { "en": "Use a person" }, + "Abbreviation": { + "en": "4.3.4.4.2" + }, "Code": "4.3.4.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to using someone for your own purpose or gain without helping them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124232,7 +142476,22 @@ "Name": { "en": "Torso" }, + "Abbreviation": { + "en": "2.1.2" + }, "Code": "2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of the torso.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124241,7 +142500,22 @@ "Name": { "en": "Discipline, train" }, + "Abbreviation": { + "en": "4.5.3.3" + }, "Code": "4.5.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to disciplining someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "36B Discipline, Train", "DeletedAt": null, "Predefined": true }, @@ -124250,7 +142524,22 @@ "Name": { "en": "See" }, + "Abbreviation": { + "en": "2.3.1" + }, "Code": "2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to seeing something (in general or without conscious choice).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24A See", "DeletedAt": null, "Predefined": true }, @@ -124259,7 +142548,22 @@ "Name": { "en": "Recognize" }, + "Abbreviation": { + "en": "3.2.6.2" + }, "Code": "3.2.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to recognizing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "27G Recognize", "DeletedAt": null, "Predefined": true }, @@ -124268,7 +142572,22 @@ "Name": { "en": "Symptom of disease" }, + "Abbreviation": { + "en": "2.5.6" + }, "Code": "2.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words for symptoms of disease--something that happens to you when you get sick, something that shows that you are sick.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124277,7 +142596,22 @@ "Name": { "en": "Extort money" }, + "Abbreviation": { + "en": "6.8.9.3" + }, "Code": "6.8.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to extorting money--forcing someone to give you money on a regular basis by threatening them with some harm.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124286,7 +142620,22 @@ "Name": { "en": "Set self apart" }, + "Abbreviation": { + "en": "4.1.6.2" + }, "Code": "4.1.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to setting yourself apart from other people and not relating to them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "34D Limit or Avoid Association", "DeletedAt": null, "Predefined": true }, @@ -124295,7 +142644,22 @@ "Name": { "en": "Change color" }, + "Abbreviation": { + "en": "8.3.3.3.6" + }, "Code": "8.3.3.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to changing the color of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124304,7 +142668,22 @@ "Name": { "en": "Rodent" }, + "Abbreviation": { + "en": "1.6.1.1.4" + }, "Code": "1.6.1.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for rodents--gnawing animals (phylum Chordata, class Mammalia, order Rodentia), insect eating animals (phylum Chordata, class Mammalia, order Insectivora), rabbits (phylum Chordata, class Mammalia, order Lagomorpha), and hyraxes (phylum Chordata, class Mammalia, order Hyracoidea).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124313,7 +142692,22 @@ "Name": { "en": "Gather wild plants" }, + "Abbreviation": { + "en": "6.2.5.3" + }, "Code": "6.2.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to gathering wild plants. In a hunter-gatherer culture this domain might need to be extensively developed.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124322,7 +142716,22 @@ "Name": { "en": "Caution" }, + "Abbreviation": { + "en": "4.4.3.4" + }, "Code": "4.4.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being cautious.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124331,7 +142740,22 @@ "Name": { "en": "Path (of movement)" }, + "Abbreviation": { + "en": "9.5.1.6.2" + }, "Code": "9.5.1.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating the Path of movement.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124340,7 +142764,22 @@ "Name": { "en": "Say farewell" }, + "Abbreviation": { + "en": "3.5.1.4.4" + }, "Code": "3.5.1.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to saying farewell.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124349,7 +142788,22 @@ "Name": { "en": "High status" }, + "Abbreviation": { + "en": "4.5.6.1" + }, "Code": "4.5.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to high social status.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "87C High Status or Rank", "DeletedAt": null, "Predefined": true }, @@ -124358,7 +142812,22 @@ "Name": { "en": "Drip" }, + "Abbreviation": { + "en": "1.3.2.3" + }, "Code": "1.3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to drops of water and what they do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124367,7 +142836,22 @@ "Name": { "en": "Trim plants" }, + "Abbreviation": { + "en": "6.2.4.4" + }, "Code": "6.2.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to trimming plants.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124376,7 +142860,22 @@ "Name": { "en": "Compose music" }, + "Abbreviation": { + "en": "4.2.3.1" + }, "Code": "4.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to composing music.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124385,7 +142884,22 @@ "Name": { "en": "Narrow" }, + "Abbreviation": { + "en": "8.2.4.1" + }, "Code": "8.2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being narrow.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81D Narrow, Wide", "DeletedAt": null, "Predefined": true }, @@ -124394,7 +142908,22 @@ "Name": { "en": "Egg dishes" }, + "Abbreviation": { + "en": "5.2.3.2.3" + }, "Code": "5.2.3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to food made from eggs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124403,7 +142932,22 @@ "Name": { "en": "Nature, environment" }, + "Abbreviation": { + "en": "1.7" + }, "Code": "1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to nature and the environment--the world around us. Include words that refer to how people damage or protect nature.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "318 Environmental Quality", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124412,7 +142956,22 @@ "Name": { "en": "Come" }, + "Abbreviation": { + "en": "7.2.3.2.1" + }, "Code": "7.2.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving toward the speaker.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124421,7 +142980,22 @@ "Name": { "en": "Case" }, + "Abbreviation": { + "en": "9.5" + }, "Code": "9.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Each verb has a set of semantic case relations. For instance in the sentence \u0027I gave flowers to my wife\u0027 the verb give has three case relations. \u0027I\u0027 is the Agent, \u0027flowers\u0027 is the Patient, and \u0027my wife is the \u0027Recipient\u0027. In this sentence the only word that marks a case relation is \u0027to\u0027. English often marks case relations by their position in the sentence. Some languages mark case relations by affixes, prepositions, postpositions, and sometimes special verbs. To completely describe a language, each verb must be investigated, all its case relations must be identified, and all the ways in which these relations are marked must be described. Since verbs are often unique and unpredictable in their case relations, this information should go into the dictionary. This section should be used to classify the words and affixes that are used to mark case relations. This domain should be used for technical terms that refer to case.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "90 Case; 90A Agent, Personal or Nonpersonal, Causative or Immediate, Direct or Indirect; 90C Source of Event or Activity; 90D Responsibility; 90E Viewpoint Participant; 90F Content; 90G Guarantor Participant with Oaths; 90H Opposition; 90J Reason Participant; 90K Agent of a Numerable Event; 90L Agent in a Causative Role Marked by Verbs; 90M Experiencer; 90N To Cause To Experience", "DeletedAt": null, "Predefined": true }, @@ -124430,7 +143004,22 @@ "Name": { "en": "Attendant circumstances" }, + "Abbreviation": { + "en": "9.5.1.5" + }, "Code": "9.5.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating the attendant circumstances in which something happened.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89M Attendant Circumstances", "DeletedAt": null, "Predefined": true }, @@ -124439,7 +143028,22 @@ "Name": { "en": "Authority" }, + "Abbreviation": { + "en": "4.5" + }, "Code": "4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to authority.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124448,7 +143052,22 @@ "Name": { "en": "Part" }, + "Abbreviation": { + "en": "8.1.6.1" + }, "Code": "8.1.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Many things have parts. Use this domain for words referring to a part of something, and for words that express the idea that something has parts, that something is a part of something, or that link the whole with a part.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "63D Part", "DeletedAt": null, "Predefined": true }, @@ -124457,7 +143076,22 @@ "Name": { "en": "Hope" }, + "Abbreviation": { + "en": "3.2.7.1" + }, "Code": "3.2.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hoping that something will happen--to want something good to happen in the future.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25D Hope, Look Forward To", "DeletedAt": null, "Predefined": true }, @@ -124466,7 +143100,22 @@ "Name": { "en": "Degree" }, + "Abbreviation": { + "en": "9.3.1" + }, "Code": "9.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate a degree on a scale.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "78 Degree; 78E Up to, As Much As, To the Degree That", "DeletedAt": null, "Predefined": true }, @@ -124475,7 +143124,22 @@ "Name": { "en": "Lower something" }, + "Abbreviation": { + "en": "7.3.2.5" + }, "Code": "7.3.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to putting something lower than you or lower than something else, putting something under something else, or moving something lower than it was.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124484,7 +143148,22 @@ "Name": { "en": "Exaggerate" }, + "Abbreviation": { + "en": "3.5.1.3.6" + }, "Code": "3.5.1.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to exaggerating--reporting information but saying something untrue that makes the information seem bigger or more important than it really is.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124493,7 +143172,22 @@ "Name": { "en": "Can\u0027t" }, + "Abbreviation": { + "en": "9.4.2.2" + }, "Code": "9.4.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being incapable of doing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124502,7 +143196,22 @@ "Name": { "en": "Snow, ice" }, + "Abbreviation": { + "en": "1.1.3.4" + }, "Code": "1.1.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to snow, ice, sleet, and hail.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124511,7 +143220,22 @@ "Name": { "en": "Islam" }, + "Abbreviation": { + "en": "4.9.7.3" + }, "Code": "4.9.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words used in Islam.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124520,7 +143244,22 @@ "Name": { "en": "Weigh" }, + "Abbreviation": { + "en": "8.2.9" + }, "Code": "8.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to weighing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "86 Weight; 86B Pound, Talent", "DeletedAt": null, "Predefined": true }, @@ -124529,7 +143268,22 @@ "Name": { "en": "Animal life cycle" }, + "Abbreviation": { + "en": "1.6.3" + }, "Code": "1.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the life cycle of an animal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136b Growth Stages", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124538,7 +143292,22 @@ "Name": { "en": "True" }, + "Abbreviation": { + "en": "3.5.1.3" + }, "Code": "3.5.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate if something is true, if it agrees with reality, or if it is not true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "72 True, False; 72A True, False; 72B Accurate, Inaccurate", "DeletedAt": null, "Predefined": true }, @@ -124547,7 +143316,22 @@ "Name": { "en": "Card game" }, + "Abbreviation": { + "en": "4.2.6.1.1" + }, "Code": "4.2.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a particular game. The example words are from the card games. If you do not play card games in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124556,7 +143340,22 @@ "Name": { "en": "Pattern, model" }, + "Abbreviation": { + "en": "8.3.5.4" + }, "Code": "8.3.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a pattern or model.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58I Pattern, Model, Example, and Corresponding Representation; 58J Archetype, Corresponding Type", "DeletedAt": null, "Predefined": true }, @@ -124565,7 +143364,22 @@ "Name": { "en": "Popular" }, + "Abbreviation": { + "en": "3.4.1.1.4" + }, "Code": "3.4.1.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that many people like.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124574,7 +143388,22 @@ "Name": { "en": "Grind flour" }, + "Abbreviation": { + "en": "5.2.1.2.3" + }, "Code": "5.2.1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to grinding flour.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124583,7 +143412,22 @@ "Name": { "en": "Quality" }, + "Abbreviation": { + "en": "8.3" + }, "Code": "8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to the quality or condition of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79 Features of Objects", "DeletedAt": null, "Predefined": true }, @@ -124592,7 +143436,22 @@ "Name": { "en": "Animal diseases" }, + "Abbreviation": { + "en": "6.3.8.1" + }, "Code": "6.3.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to animal diseases.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124601,7 +143460,22 @@ "Name": { "en": "Sound" }, - "Code": "2.3.2.2", + "Abbreviation": { + "en": "2.3.2.2" + }, + "Code": "2.3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to sounds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124610,7 +143484,22 @@ "Name": { "en": "Demonstrative pronouns" }, + "Abbreviation": { + "en": "9.2.3.5" + }, "Code": "9.2.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for demonstrative pronouns.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "92G Demonstrative or Deictic Reference", "DeletedAt": null, "Predefined": true }, @@ -124619,7 +143508,22 @@ "Name": { "en": "Insist" }, + "Abbreviation": { + "en": "3.3.3.4" + }, "Code": "3.3.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to insisting--to say strongly or repeatedly that someone must do something, because the other person does not want to do it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33E\u0027 Insist", "DeletedAt": null, "Predefined": true }, @@ -124628,7 +143532,22 @@ "Name": { "en": "Certainly, definitely" }, + "Abbreviation": { + "en": "9.4.4.1" + }, "Code": "9.4.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses to indicate that he thinks something is certainly true or is certain to happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71C Certain, Uncertain", "DeletedAt": null, "Predefined": true }, @@ -124637,7 +143556,22 @@ "Name": { "en": "Working with wood" }, + "Abbreviation": { + "en": "6.6.3" + }, "Code": "6.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with wood.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "322 Woodworking; 335 Carpentry; 289 Paper Industry", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124646,7 +143580,22 @@ "Name": { "en": "Initiation" }, + "Abbreviation": { + "en": "2.6.4.7" + }, "Code": "2.6.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to initiation rites--a ceremony when a child becomes an adult.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "881 Puberty and Initiation", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124655,7 +143604,22 @@ "Name": { "en": "Get" }, + "Abbreviation": { + "en": "7.4.3" + }, "Code": "7.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to getting something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124664,7 +143628,22 @@ "Name": { "en": "Sentence conjunctions" }, + "Abbreviation": { + "en": "9.2.5.3" + }, "Code": "9.2.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all sentence level conjunctions--conjunctions that join two sentences.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124673,7 +143652,22 @@ "Name": { "en": "Woman" }, + "Abbreviation": { + "en": "2.6.5.2" + }, "Code": "2.6.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a woman or any female person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "9C Females", "DeletedAt": null, "Predefined": true }, @@ -124682,7 +143676,22 @@ "Name": { "en": "Show affection" }, + "Abbreviation": { + "en": "4.1.8" + }, "Code": "4.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to showing affection.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "34I Kiss, Embrace", "DeletedAt": null, "Predefined": true }, @@ -124691,7 +143700,22 @@ "Name": { "en": "Social class" }, + "Abbreviation": { + "en": "4.1.4.1" + }, "Code": "4.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to social class.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "560 Social Stratification; 561 Age Stratification; 562 Gender Status; Sex Status; 563 Ethnic Stratification; 564 Castes; 565 Classes; 566 Serfdom and Peonage; 567 Slavery", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124700,7 +143724,22 @@ "Name": { "en": "Bad" }, + "Abbreviation": { + "en": "8.3.7.1" + }, "Code": "8.3.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88O Bad, Evil, Harmful, Damaging", "DeletedAt": null, "Predefined": true }, @@ -124709,7 +143748,22 @@ "Name": { "en": "Shiny" }, + "Abbreviation": { + "en": "8.3.3.4" + }, "Code": "8.3.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe something that is shiny--when something gives back light because light is shining on it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124718,7 +143772,22 @@ "Name": { "en": "Part of speech" }, + "Abbreviation": { + "en": "9.2" + }, "Code": "9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "This domain is for organization purposes and should not be used for any words. Use the domains in this section for words that belong to a particular part of speech. It is best not to use these domains, since they are based on grammar and not meaning. But if you have a small group of words that belong to a part of speech and you want to list them all, you can use these domains. You can also classify words in this section if you don\u0027t know what they mean yet.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124727,7 +143796,22 @@ "Name": { "en": "Slow" }, + "Abbreviation": { + "en": "8.4.8.2" + }, "Code": "8.4.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to doing something at a slow speed.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124736,7 +143820,22 @@ "Name": { "en": "Decide, plan" }, + "Abbreviation": { + "en": "3.3.1" + }, "Code": "3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to deciding to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "30E To Decide, To Conclude", "DeletedAt": null, "Predefined": true }, @@ -124745,7 +143844,22 @@ "Name": { "en": "Growing fruit" }, + "Abbreviation": { + "en": "6.2.1.4" + }, "Code": "6.2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing fruit, such as berries, cranberries, grapes, raspberries, and strawberries. If one type of fruit is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for grapes and bananas, since they are so common around the world.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124754,7 +143868,22 @@ "Name": { "en": "Imitate" }, + "Abbreviation": { + "en": "8.3.5.5" + }, "Code": "8.3.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to imitating someone--to do things in the same way as another person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "41D Imitate Behavior", "DeletedAt": null, "Predefined": true }, @@ -124763,7 +143892,22 @@ "Name": { "en": "Sure" }, + "Abbreviation": { + "en": "9.4.4.2" + }, "Code": "9.4.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being sure that something is true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124772,7 +143916,22 @@ "Name": { "en": "Write" }, + "Abbreviation": { + "en": "3.5.7.1" + }, "Code": "3.5.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to writing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "212 Writing; 218 Writing and Printing Supplies", + "LouwNidaCodes": "33E Written Language; 6J Instruments Used in Marking and Writing", "DeletedAt": null, "Predefined": true }, @@ -124781,7 +143940,22 @@ "Name": { "en": "Happy" }, + "Abbreviation": { + "en": "3.4.1.2" + }, "Code": "3.4.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling happy--to feel good when something good happens (such as receiving a gift, hearing good news, or watching something good happening).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25K Happy, Glad, Joyful; 25H Acceptable To, To Be Pleased With; 25J Enjoy, Take Pleasure In, Be Fond of Doing", "DeletedAt": null, "Predefined": true }, @@ -124790,7 +143964,22 @@ "Name": { "en": "Patient" }, + "Abbreviation": { + "en": "4.3.1.5" + }, "Code": "4.3.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being patient--if you are patient, you don\u0027t get angry or do anything bad even though something bad happens to you for a long time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25O Patience, Endurance, Perseverance", "DeletedAt": null, "Predefined": true }, @@ -124799,7 +143988,22 @@ "Name": { "en": "Almost" }, + "Abbreviation": { + "en": "8.1.5.6" + }, "Code": "8.1.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a number or amount that is almost the same as another number.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124808,7 +144012,22 @@ "Name": { "en": "Day" }, + "Abbreviation": { + "en": "8.4.1.2" + }, "Code": "8.4.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a day.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124817,7 +144036,22 @@ "Name": { "en": "Celebrate" }, + "Abbreviation": { + "en": "4.2.2.3" + }, "Code": "4.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to celebrating.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "51 Festivals", "DeletedAt": null, "Predefined": true }, @@ -124826,7 +144060,22 @@ "Name": { "en": "Unusual" }, + "Abbreviation": { + "en": "8.3.5.3.2" + }, "Code": "8.3.5.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is unusual.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58H Unusual, Different From the Ordinary", "DeletedAt": null, "Predefined": true }, @@ -124835,7 +144084,22 @@ "Name": { "en": "Old fashioned" }, + "Abbreviation": { + "en": "8.4.6.5.6" + }, "Code": "8.4.6.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something old fashioned--something that was done or used in the past, but not done or used now.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124844,7 +144108,22 @@ "Name": { "en": "Put in back" }, + "Abbreviation": { + "en": "7.3.2.2" + }, "Code": "7.3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to putting something in back of you or in back of something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124853,7 +144132,22 @@ "Name": { "en": "Star" }, + "Abbreviation": { + "en": "1.1.1.2" + }, "Code": "1.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the stars and other heavenly bodies.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124862,7 +144156,22 @@ "Name": { "en": "Arrive" }, + "Abbreviation": { + "en": "7.2.3.3.1" + }, "Code": "7.2.3.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to arriving at a place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15F Come, Come To, Arrive", "DeletedAt": null, "Predefined": true }, @@ -124871,7 +144180,22 @@ "Name": { "en": "Sexual immorality" }, + "Abbreviation": { + "en": "2.6.2.3" + }, "Code": "2.6.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to illicit sexual relations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "684 Sex and Marital Offenses; 834 General Sex Restrictions; 835 Kinship Regulation of Sex; 836 Premarital Sex Relations; 837 Extramarital Sex Relations; 838 Homosexuality; 839 Miscellaneous Sex Behavior", + "LouwNidaCodes": "88J\u0027 Sexual Misbehavior", "DeletedAt": null, "Predefined": true }, @@ -124880,7 +144204,22 @@ "Name": { "en": "Calm, rough" }, + "Abbreviation": { + "en": "1.3.2.5" + }, "Code": "1.3.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing the surface of water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124889,7 +144228,22 @@ "Name": { "en": "Submit to authority" }, + "Abbreviation": { + "en": "4.5.4" + }, "Code": "4.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to submitting to authority.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39D Yielding; 33U Profess Allegiance", "DeletedAt": null, "Predefined": true }, @@ -124898,7 +144252,22 @@ "Name": { "en": "Tear, rip" }, + "Abbreviation": { + "en": "7.8.4" + }, "Code": "7.8.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to tearing or ripping something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19C Split, Tear", "DeletedAt": null, "Predefined": true }, @@ -124907,7 +144276,22 @@ "Name": { "en": "Beekeeping" }, + "Abbreviation": { + "en": "6.4.4" + }, "Code": "6.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to keeping bees.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124916,7 +144300,22 @@ "Name": { "en": "Plait hair" }, + "Abbreviation": { + "en": "5.4.3.2" + }, "Code": "5.4.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to plaiting your hair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124925,7 +144324,22 @@ "Name": { "en": "Kidnap" }, + "Abbreviation": { + "en": "4.3.4.8" + }, "Code": "4.3.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to kidnapping someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124934,7 +144348,22 @@ "Name": { "en": "Fall" }, + "Abbreviation": { + "en": "7.2.2.5.1" + }, "Code": "7.2.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something falling--for something to move down under the influence of gravity.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15L Fall", "DeletedAt": null, "Predefined": true }, @@ -124943,7 +144372,22 @@ "Name": { "en": "Happen" }, + "Abbreviation": { + "en": "9.1.2.1" + }, "Code": "9.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for non-volitional pro-verbs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "13D Happen", "DeletedAt": null, "Predefined": true }, @@ -124952,7 +144396,22 @@ "Name": { "en": "Thick" }, + "Abbreviation": { + "en": "8.2.3" + }, "Code": "8.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being thick.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81D Narrow, Wide", "DeletedAt": null, "Predefined": true }, @@ -124961,7 +144420,22 @@ "Name": { "en": "Run" }, + "Abbreviation": { + "en": "7.2.1.1.1" + }, "Code": "7.2.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to running--moving fast on your legs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15D\u0027 Run x", "DeletedAt": null, "Predefined": true }, @@ -124970,7 +144444,22 @@ "Name": { "en": "Make profit" }, + "Abbreviation": { + "en": "6.8.2.2" + }, "Code": "6.8.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to making a profit.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57P Earn, Gain, Do Business", "DeletedAt": null, "Predefined": true }, @@ -124979,7 +144468,22 @@ "Name": { "en": "Week" }, + "Abbreviation": { + "en": "8.4.1.3" + }, "Code": "8.4.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a week.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124988,7 +144492,22 @@ "Name": { "en": "Omen, divination" }, + "Abbreviation": { + "en": "4.9.4.7" + }, "Code": "4.9.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to supernatural knowledge.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "787 Revelation and Divination", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -124997,7 +144516,22 @@ "Name": { "en": "Unemployed, not working" }, + "Abbreviation": { + "en": "6.1.5" + }, "Code": "6.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unemployed.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125006,7 +144540,22 @@ "Name": { "en": "Poultry raising" }, + "Abbreviation": { + "en": "6.3.6" + }, "Code": "6.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to raising birds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "235 Poultry Raising", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125015,7 +144564,22 @@ "Name": { "en": "Speak a lot" }, + "Abbreviation": { + "en": "3.5.1.1.3" + }, "Code": "3.5.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to speaking a lot.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125024,7 +144588,22 @@ "Name": { "en": "Dependency relations" }, + "Abbreviation": { + "en": "9.6.2" + }, "Code": "9.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is dependent on another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89B Dependency", "DeletedAt": null, "Predefined": true }, @@ -125033,7 +144612,22 @@ "Name": { "en": "Holding tool" }, + "Abbreviation": { + "en": "6.7.6" + }, "Code": "6.7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to holding tools--tools used to grip and hold things so that they don\u0027t move, and tools used to hold things that you can\u0027t hold with your hand, such as very hot things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125042,7 +144636,22 @@ "Name": { "en": "Marketing" }, + "Abbreviation": { + "en": "6.9.3" + }, "Code": "6.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the promotion of trade and sales.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "440 Marketing; 441 Mercantile Business; 442 Wholesale Marketing; 443 Retail Marketing; 444 Retail Businesses; 445 Service Industries; 446 Sales Promotion; 447 Advertising", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125051,7 +144660,22 @@ "Name": { "en": "Interjections" }, + "Abbreviation": { + "en": "9.2.7" + }, "Code": "9.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all interjections.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125060,7 +144684,22 @@ "Name": { "en": "Earthquake" }, + "Abbreviation": { + "en": "1.2.1.7" + }, "Code": "1.2.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to earthquakes. In some languages earthquakes are thought of as moving somewhere. In Amele (PNG) they say \u0022mim nen\u0022 which means \u0027the earthquake came down (from above)\u0027. In Northern Embera an earthquake is a \u0022house-shaking\u0022. They say \u0022a house-shaking went.\u0022", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "14J Movement of the Earth x", "DeletedAt": null, "Predefined": true }, @@ -125069,7 +144708,22 @@ "Name": { "en": "Underground" }, + "Abbreviation": { + "en": "1.2.1.5" + }, "Code": "1.2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the area under the ground, and to holes in the ground.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1H Depressions and Holes; 1C Regions Below the Surface of the Earth", "DeletedAt": null, "Predefined": true }, @@ -125078,7 +144732,22 @@ "Name": { "en": "Fast, not eat" }, + "Abbreviation": { + "en": "5.2.2.9" + }, "Code": "5.2.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fasting--to not eat for a period of time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125087,7 +144756,22 @@ "Name": { "en": "Substitute" }, + "Abbreviation": { + "en": "7.5.6" + }, "Code": "7.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to substituting something for something else--to move something and put something else in its place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57J Exchange", "DeletedAt": null, "Predefined": true }, @@ -125096,7 +144780,22 @@ "Name": { "en": "Girlfriend, boyfriend" }, + "Abbreviation": { + "en": "4.1.1.1" + }, "Code": "4.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a girlfriend or boyfriend.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125105,7 +144804,22 @@ "Name": { "en": "Small" }, + "Abbreviation": { + "en": "8.2.1" + }, "Code": "8.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being small.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79B\u0027 Large, Small", "DeletedAt": null, "Predefined": true }, @@ -125114,7 +144828,22 @@ "Name": { "en": "World" }, + "Abbreviation": { + "en": "1.2" + }, "Code": "1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the planet we live on.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125123,7 +144852,22 @@ "Name": { "en": "Weather" }, + "Abbreviation": { + "en": "1.1.3" + }, "Code": "1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the weather.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "132 Climate", + "LouwNidaCodes": "14A Weather", "DeletedAt": null, "Predefined": true }, @@ -125132,7 +144876,22 @@ "Name": { "en": "Markers expecting an affirmative answer" }, + "Abbreviation": { + "en": "9.4.6.2" + }, "Code": "9.4.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that an affirmative answer is expected to a question.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "69D Markers for an Affirmative Response to Questions", "DeletedAt": null, "Predefined": true }, @@ -125141,7 +144900,22 @@ "Name": { "en": "Use up" }, + "Abbreviation": { + "en": "6.1.2.2.4" + }, "Code": "6.1.2.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to using something up.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125150,7 +144924,22 @@ "Name": { "en": "Eating utensil" }, + "Abbreviation": { + "en": "5.2.2.8" + }, "Code": "5.2.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to eating utensils.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "415 Utensils", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125159,7 +144948,22 @@ "Name": { "en": "Take by force" }, + "Abbreviation": { + "en": "6.8.9.4" + }, "Code": "6.8.9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to taking something by force.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125168,7 +144972,22 @@ "Name": { "en": "Cry, tear" }, + "Abbreviation": { + "en": "3.5.6.5" + }, "Code": "3.5.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to crying--when water forms in the eyes because of sadness or pain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25L Laugh, Cry, Groan x", "DeletedAt": null, "Predefined": true }, @@ -125177,7 +144996,22 @@ "Name": { "en": "Want" }, + "Abbreviation": { + "en": "3.3" + }, "Code": "3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to wanting something or wanting to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25A Desire, Want, Wish", "DeletedAt": null, "Predefined": true }, @@ -125186,7 +145020,22 @@ "Name": { "en": "City" }, + "Abbreviation": { + "en": "4.6.7.2" + }, "Code": "4.6.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a city.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "632 Towns; 633 Cities; 360 Settlements; 361 Settlement Patterns; 362 Housing; 369 Urban and Rural Life", + "LouwNidaCodes": "1N Population Centers", "DeletedAt": null, "Predefined": true }, @@ -125195,7 +145044,22 @@ "Name": { "en": "Election" }, + "Abbreviation": { + "en": "4.6.6.4" + }, "Code": "4.6.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to an election.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "666 Elections", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125204,7 +145068,22 @@ "Name": { "en": "Chance" }, + "Abbreviation": { + "en": "4.4.5" + }, "Code": "4.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to chance--when something happens that no one intended.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "777 Luck and Chance", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125213,7 +145092,22 @@ "Name": { "en": "Not care" }, + "Abbreviation": { + "en": "4.3.3.2" + }, "Code": "4.3.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to not caring about someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125222,7 +145116,22 @@ "Name": { "en": "Tired" }, + "Abbreviation": { + "en": "2.4.4" + }, "Code": "2.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being tired.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23F Tire, Rest", "DeletedAt": null, "Predefined": true }, @@ -125231,7 +145140,22 @@ "Name": { "en": "Mediocre" }, + "Abbreviation": { + "en": "8.3.7.4" + }, "Code": "8.3.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is mediocre.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125240,7 +145164,22 @@ "Name": { "en": "Clumsy" }, + "Abbreviation": { + "en": "7.2.1.4.1" + }, "Code": "7.2.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving in a clumsy manner.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125249,7 +145188,22 @@ "Name": { "en": "Share with" }, + "Abbreviation": { + "en": "4.3.4.5" + }, "Code": "4.3.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sharing with other people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125258,7 +145212,22 @@ "Name": { "en": "Meet for the first time" }, + "Abbreviation": { + "en": "4.1.3.1" + }, "Code": "4.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to meeting someone for the first time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125267,7 +145236,22 @@ "Name": { "en": "Blind" }, + "Abbreviation": { + "en": "2.5.4.1" + }, "Code": "2.5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being blind.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24A See", "DeletedAt": null, "Predefined": true }, @@ -125276,7 +145260,22 @@ "Name": { "en": "God" }, + "Abbreviation": { + "en": "4.9.1" + }, "Code": "4.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to God--the supreme being in the universe. Each theological system will have different beliefs concerning the existence and nature of God. Our purpose here is to collect and define the terms used to refer to the supreme deity. If there is no such person in the theological system, then use this domain for other terms for the pantheon of gods, ultimate reality, nirvana, and similar concepts. However most theological systems, even atheism, have the concept of a supreme God and use words to refer to him.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125285,7 +145284,22 @@ "Name": { "en": "Crack" }, + "Abbreviation": { + "en": "7.8.2" + }, "Code": "7.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a crack--a partial break in something that does not entirely divide it in pieces.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125294,7 +145308,22 @@ "Name": { "en": "Obey" }, + "Abbreviation": { + "en": "4.5.4.1" + }, "Code": "4.5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to obeying someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125303,7 +145332,22 @@ "Name": { "en": "Cardinal numbers" }, + "Abbreviation": { + "en": "8.1.1.1" + }, "Code": "8.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the cardinal numbers (one, two, three)--the numbers used to count.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "60B One, Two, Three, Etc.", "DeletedAt": null, "Predefined": true }, @@ -125312,7 +145356,22 @@ "Name": { "en": "Egg" }, + "Abbreviation": { + "en": "1.6.3.1" + }, "Code": "1.6.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to eggs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125321,7 +145380,22 @@ "Name": { "en": "Purpose, goal" }, + "Abbreviation": { + "en": "3.3.1.1" + }, "Code": "3.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a goal--something that you want to do or something that you want to happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89I Purpose", "DeletedAt": null, "Predefined": true }, @@ -125330,7 +145404,22 @@ "Name": { "en": "Exempt" }, + "Abbreviation": { + "en": "3.3.4.3" + }, "Code": "3.3.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being exempt from a law or obligation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125339,7 +145428,22 @@ "Name": { "en": "Sorcery" }, + "Abbreviation": { + "en": "4.9.4.1" + }, "Code": "4.9.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sorcery--the use of supernatural power to do something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "789 Magic; 754 Sorcery; 755 Magical and Mental Therapy", + "LouwNidaCodes": "53J Magic", "DeletedAt": null, "Predefined": true }, @@ -125348,7 +145452,22 @@ "Name": { "en": "Knitting" }, + "Abbreviation": { + "en": "6.6.1.3" + }, "Code": "6.6.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to knitting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125357,7 +145476,22 @@ "Name": { "en": "Expert" }, + "Abbreviation": { + "en": "6.1.1.1" + }, "Code": "6.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being an expert--someone who can do something well.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125366,7 +145500,22 @@ "Name": { "en": "Work poorly" }, + "Abbreviation": { + "en": "6.1.2.4" + }, "Code": "6.1.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working poorly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125375,7 +145524,22 @@ "Name": { "en": "Growing bananas" }, + "Abbreviation": { + "en": "6.2.1.4.2" + }, "Code": "6.2.1.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing bananas.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125384,7 +145548,22 @@ "Name": { "en": "List" }, + "Abbreviation": { + "en": "3.5.7.6" + }, "Code": "3.5.7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a list of things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125393,7 +145572,22 @@ "Name": { "en": "Religious purification" }, + "Abbreviation": { + "en": "4.9.5.6" + }, "Code": "4.9.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to religious purification.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "783 Purification and Atonement; Purification and Expiation; 783 Purification and Expiation; 688 Religious Offenses", + "LouwNidaCodes": "88C Holy, Pure; 53C Purify, Cleanse; 53D Defiled, Unclean, Common; 53E Baptize", "DeletedAt": null, "Predefined": true }, @@ -125402,7 +145596,22 @@ "Name": { "en": "Chase away" }, + "Abbreviation": { + "en": "7.3.3.4" + }, "Code": "7.3.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to chasing or driving people and animals--to cause someone (or an animal) to move.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125411,7 +145620,22 @@ "Name": { "en": "On time" }, + "Abbreviation": { + "en": "8.4.5.3.2" + }, "Code": "8.4.5.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something happening on time--at the expected time, at the usual time, or at the time that was agreed on.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125420,7 +145644,22 @@ "Name": { "en": "Put down" }, + "Abbreviation": { + "en": "7.3.4.3" + }, "Code": "7.3.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to putting something down.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "85B Put, Place", "DeletedAt": null, "Predefined": true }, @@ -125429,7 +145668,22 @@ "Name": { "en": "Special" }, + "Abbreviation": { + "en": "7.5.1.3" + }, "Code": "7.5.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe a member of a group that is different or special.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125438,7 +145692,22 @@ "Name": { "en": "Lose, misplace" }, + "Abbreviation": { + "en": "7.6.3" + }, "Code": "7.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to putting something in a place and not being able to find it again, or for when someone else moves something without your knowledge so that you cannot find it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125447,7 +145716,22 @@ "Name": { "en": "Medicine" }, + "Abbreviation": { + "en": "2.5.7.2" + }, "Code": "2.5.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to medicine, types of medicine, and the application of medicine.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "751 Preventive Medicine; 278 Pharmaceuticals", + "LouwNidaCodes": "6T Medicines", "DeletedAt": null, "Predefined": true }, @@ -125456,7 +145740,22 @@ "Name": { "en": "Tall" }, + "Abbreviation": { + "en": "8.2.2.2" + }, "Code": "8.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being tall--a word describing something that is big from the top to the bottom.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23K Grow, Growth; 81B High, Low, Deep", "DeletedAt": null, "Predefined": true }, @@ -125465,7 +145764,22 @@ "Name": { "en": "Kill" }, + "Abbreviation": { + "en": "2.6.6.1" + }, "Code": "2.6.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to killing someone--to cause someone to die.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "762 Suicide", + "LouwNidaCodes": "20D Kill", "DeletedAt": null, "Predefined": true }, @@ -125474,7 +145788,22 @@ "Name": { "en": "Vertical" }, + "Abbreviation": { + "en": "8.3.1.4.1" + }, "Code": "8.3.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a vertical orientation in relation to the ground. A person is vertical when he is standing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125483,7 +145812,22 @@ "Name": { "en": "Philosophy" }, + "Abbreviation": { + "en": "3.2.5.5" + }, "Code": "3.2.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a set of beliefs about truth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "100 Orientation", + "LouwNidaCodes": "11E Philosophical", "DeletedAt": null, "Predefined": true }, @@ -125492,7 +145836,22 @@ "Name": { "en": "Names of cities" }, + "Abbreviation": { + "en": "9.7.2.3" + }, "Code": "9.7.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of cities, towns, and villages in the language area. Include the names of important cities outside of the language area if your language has a special name for the city or a different pronunciation for it. It might be good to use a map for this. In fact it is good to include a map of the language area in a published dictionary. If your language area is very large, there may be hundreds or thousands of cities, towns, and villages. In this case you will have to decide which should be included in the dictionary. Or you could decided to list them in a special section.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125501,7 +145860,22 @@ "Name": { "en": "Have authority" }, + "Abbreviation": { + "en": "4.5.2" + }, "Code": "4.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having authority.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125510,7 +145884,22 @@ "Name": { "en": "Beside" }, + "Abbreviation": { + "en": "8.5.1.2" + }, "Code": "8.5.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that something is to the side of someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83E At, Beside, Near, Far", "DeletedAt": null, "Predefined": true }, @@ -125519,7 +145908,22 @@ "Name": { "en": "Working with electricity" }, + "Abbreviation": { + "en": "6.6.8.1" + }, "Code": "6.6.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with electricity.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "337 Electrical Installation; 375 Thermal Power; 377 Electric Power; 378 Atomic Energy; 379 Miscellaneous Power Production", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125528,7 +145932,22 @@ "Name": { "en": "What fires produce" }, + "Abbreviation": { + "en": "5.5.5" + }, "Code": "5.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the things that fires produce.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125537,7 +145956,22 @@ "Name": { "en": "Idol" }, + "Abbreviation": { + "en": "4.9.8.1" + }, "Code": "4.9.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to idols and their use.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6M Images and Idols", "DeletedAt": null, "Predefined": true }, @@ -125546,7 +145980,22 @@ "Name": { "en": "Stomach" }, + "Abbreviation": { + "en": "2.1.8.2" + }, "Code": "2.1.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the stomach and to the normal functions of the stomach. Do not use this domain for stomach illness.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125555,7 +146004,22 @@ "Name": { "en": "Practice religion" }, + "Abbreviation": { + "en": "4.9.5" + }, "Code": "4.9.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to practicing religion.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "780 Religious Practices; 781 Religious Experience; 786 Ecstatic Religious Practices; Orgies", + "LouwNidaCodes": "53 Religious Activities; 53A Religious Practice", "DeletedAt": null, "Predefined": true }, @@ -125564,7 +146028,22 @@ "Name": { "en": "Person" }, + "Abbreviation": { + "en": "2" + }, "Code": "2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for a person or all mankind.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "9 People; 9A Human Beings", "DeletedAt": null, "Predefined": true }, @@ -125573,7 +146052,22 @@ "Name": { "en": "Worried" }, + "Abbreviation": { + "en": "3.4.2.4.1" + }, "Code": "3.4.2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling worried--to feel bad because you think something bad might happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25U Worry, Anxiety, Distress, Peace", "DeletedAt": null, "Predefined": true }, @@ -125582,7 +146076,22 @@ "Name": { "en": "Record" }, + "Abbreviation": { + "en": "3.5.7.5" + }, "Code": "3.5.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a record--something written because people need to remember it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "210 Records; 126 Recording and Collecting In the Field; 211 Mnemonic Devices; 217 Archives", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125591,7 +146100,22 @@ "Name": { "en": "Reward" }, + "Abbreviation": { + "en": "4.7.7.1" + }, "Code": "4.7.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to rewarding someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "38B Reward, Recompense", "DeletedAt": null, "Predefined": true }, @@ -125600,7 +146124,22 @@ "Name": { "en": "Door" }, + "Abbreviation": { + "en": "6.5.2.4" + }, "Code": "6.5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a door.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125609,7 +146148,22 @@ "Name": { "en": "Brother, sister" }, + "Abbreviation": { + "en": "4.1.9.1.3" + }, "Code": "4.1.9.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to siblings.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "10C Kinship Relations of the Same Generation", "DeletedAt": null, "Predefined": true }, @@ -125618,7 +146172,22 @@ "Name": { "en": "Attract" }, + "Abbreviation": { + "en": "3.4.1.4.4" + }, "Code": "3.4.1.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to attracting someone\u0027s attention to something. In a typical situation, a person sees something with an interesting quality. The person moves closer, pays close attention to the thing, and possibly does something to it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125627,7 +146196,22 @@ "Name": { "en": "Oppress" }, + "Abbreviation": { + "en": "4.7.9.6" + }, "Code": "4.7.9.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to oppressing someone or a particular group of people--when a person uses his power or authority to harm others who are innocent.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39I Persecution", "DeletedAt": null, "Predefined": true }, @@ -125636,7 +146220,22 @@ "Name": { "en": "Primary cases" }, + "Abbreviation": { + "en": "9.5.1" + }, "Code": "9.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for primary cases.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125645,7 +146244,22 @@ "Name": { "en": "Far" }, + "Abbreviation": { + "en": "8.2.6.1" + }, "Code": "8.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is far from something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83E At, Beside, Near, Far x", "DeletedAt": null, "Predefined": true }, @@ -125654,7 +146268,22 @@ "Name": { "en": "Both" }, + "Abbreviation": { + "en": "8.1.5.3" + }, "Code": "8.1.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to both of two things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125663,7 +146292,22 @@ "Name": { "en": "Cleaning" }, + "Abbreviation": { + "en": "5.6" + }, "Code": "5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to cleaning things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "47B Use of Liquids", "DeletedAt": null, "Predefined": true }, @@ -125672,7 +146316,22 @@ "Name": { "en": "Past" }, + "Abbreviation": { + "en": "8.4.6.2" + }, "Code": "8.4.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the past or to a time in the past.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125681,7 +146340,22 @@ "Name": { "en": "Hoofed animals" }, + "Abbreviation": { + "en": "1.6.1.1.3" + }, "Code": "1.6.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for even-toed hoofed animals (phylum Chordata, class Mammalia, order Artiodactyla), odd-toed hoofed animals (phylum Chordata, class Mammalia, order Perissodactyla), and elephants (phylum Chordata, class Mammalia, order Proboscidea).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125690,7 +146364,22 @@ "Name": { "en": "Title, name of honor" }, + "Abbreviation": { + "en": "4.5.5.1" + }, "Code": "4.5.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a title of honor.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125699,7 +146388,22 @@ "Name": { "en": "Eye" }, + "Abbreviation": { + "en": "2.1.1.1" + }, "Code": "2.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the eye.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125708,7 +146412,22 @@ "Name": { "en": "Language" }, + "Abbreviation": { + "en": "3.5.3" + }, "Code": "3.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a language.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "190 Language; 197 Linguistic Identification; 198 Special Languages; 193 Grammar; 194 Phonology; 192 Vocabulary", + "LouwNidaCodes": "33A Language", "DeletedAt": null, "Predefined": true }, @@ -125717,7 +146436,22 @@ "Name": { "en": "Criticize" }, + "Abbreviation": { + "en": "3.5.1.8" + }, "Code": "3.5.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to criticizing someone or something--to say that something is bad, especially something that someone did.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33S\u0027 Criticize", "DeletedAt": null, "Predefined": true }, @@ -125726,7 +146460,22 @@ "Name": { "en": "Drive along" }, + "Abbreviation": { + "en": "7.3.3.5" + }, "Code": "7.3.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to driving people and animals--to cause someone (or an animal) to move with you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15V Drive Along, Carry Along", "DeletedAt": null, "Predefined": true }, @@ -125735,7 +146484,22 @@ "Name": { "en": "Next to" }, + "Abbreviation": { + "en": "8.5.1.5.1" + }, "Code": "8.5.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is next to something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83E At, Beside, Near, Far x", "DeletedAt": null, "Predefined": true }, @@ -125744,7 +146508,22 @@ "Name": { "en": "Change behavior" }, + "Abbreviation": { + "en": "4.3.8" + }, "Code": "4.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to changing your behavior either for the better or for the worse.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "153 Modification of Behavior; 154 Adjustment Processes; 155 Personality Development", + "LouwNidaCodes": "41E Change Behavior", "DeletedAt": null, "Predefined": true }, @@ -125753,7 +146532,22 @@ "Name": { "en": "Fetus" }, + "Abbreviation": { + "en": "2.6.3.2" + }, "Code": "2.6.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a fetus--a baby that has not been born yet.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125762,7 +146556,22 @@ "Name": { "en": "Act harshly" }, + "Abbreviation": { + "en": "4.7.9.5" + }, "Code": "4.7.9.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to acting harshly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88Q Act Harshly", "DeletedAt": null, "Predefined": true }, @@ -125771,7 +146580,22 @@ "Name": { "en": "Household equipment" }, + "Abbreviation": { + "en": "5.1" + }, "Code": "5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to household equipment and tools.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "354 Heating and Lighting Equipment; 355 Miscellaneous Building Equipment", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125780,7 +146604,22 @@ "Name": { "en": "Judge, render a verdict" }, + "Abbreviation": { + "en": "4.7.6" + }, "Code": "4.7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to judging someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "56E Judge, Condemn, Acquit; 56F Obtain Justice; 56H Lead Off to Punishment", "DeletedAt": null, "Predefined": true }, @@ -125789,7 +146628,22 @@ "Name": { "en": "Lack respect" }, + "Abbreviation": { + "en": "4.5.5.2" + }, "Code": "4.5.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to lacking respect.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125798,7 +146652,22 @@ "Name": { "en": "Find" }, + "Abbreviation": { + "en": "7.6.2" + }, "Code": "7.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to finding something that has been hidden or lost.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "27B Learn the Location of Something", "DeletedAt": null, "Predefined": true }, @@ -125807,7 +146676,22 @@ "Name": { "en": "After" }, + "Abbreviation": { + "en": "8.4.5.2.1" + }, "Code": "8.4.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to one event happening after another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89O Sequential Addition", "DeletedAt": null, "Predefined": true }, @@ -125816,7 +146700,22 @@ "Name": { "en": "Front" }, + "Abbreviation": { + "en": "8.6.1" + }, "Code": "8.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the front part of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125825,7 +146724,22 @@ "Name": { "en": "Plant a field" }, + "Abbreviation": { + "en": "6.2.3" + }, "Code": "6.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to planting a field.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125834,7 +146748,22 @@ "Name": { "en": "Multiple things moving" }, + "Abbreviation": { + "en": "7.5.7" + }, "Code": "7.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to multiple things moving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125843,7 +146772,22 @@ "Name": { "en": "Without cause" }, + "Abbreviation": { + "en": "9.6.2.5.2" + }, "Code": "9.6.2.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that an event or state has no cause or reason, or is unreasonable (has insufficient cause).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89G Cause and/or Reason", "DeletedAt": null, "Predefined": true }, @@ -125852,7 +146796,22 @@ "Name": { "en": "Kick" }, + "Abbreviation": { + "en": "7.7.3" + }, "Code": "7.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to kicking--to hit something with your foot. The words in this domain may be distinguished by the way in which the foot moves, either in a swinging motion, or by first bending the leg and then quickly straightening it. They may also be distinguished by whether the foot moves horizontally or vertically, whether the effect is to move something or damage it, or how hard the person kicks.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125861,7 +146820,22 @@ "Name": { "en": "Lifting tool" }, + "Abbreviation": { + "en": "6.7.4" + }, "Code": "6.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to tools used to lift things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125870,7 +146844,22 @@ "Name": { "en": "Imagine" }, + "Abbreviation": { + "en": "3.2.1.2" + }, "Code": "3.2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for imagining things--to think about something that does not exist, or to think about something happening that has never happened.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125879,7 +146868,22 @@ "Name": { "en": "Subjugate" }, + "Abbreviation": { + "en": "4.6.5" + }, "Code": "4.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a person subjugating someone to their authority.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125888,7 +146892,22 @@ "Name": { "en": "Spice" }, + "Abbreviation": { + "en": "5.2.3.3.3" + }, "Code": "5.2.3.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for spices--things that are added to food to make them taste better.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125897,7 +146916,22 @@ "Name": { "en": "Appoint, delegate" }, + "Abbreviation": { + "en": "4.5.3.4" + }, "Code": "4.5.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to appointing someone to a position of authority, or delegating authority to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "676 Agency", + "LouwNidaCodes": "37E Assign to a Role or Function", "DeletedAt": null, "Predefined": true }, @@ -125906,7 +146940,22 @@ "Name": { "en": "Growing flowers" }, + "Abbreviation": { + "en": "6.2.1.6" + }, "Code": "6.2.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing flowers. If one type of flower is cultivated extensively and there are many words related to it, set up a separate domain for it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "247 Floriculture", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125915,7 +146964,22 @@ "Name": { "en": "Be in water" }, + "Abbreviation": { + "en": "1.3.4" + }, "Code": "1.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being in water or putting something in water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125924,7 +146988,22 @@ "Name": { "en": "Execute" }, + "Abbreviation": { + "en": "4.7.7.4" + }, "Code": "4.7.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to executing someone for a crime.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6F Instruments Used in Punishment and Execution", "DeletedAt": null, "Predefined": true }, @@ -125933,7 +147012,22 @@ "Name": { "en": "Spring, well" }, + "Abbreviation": { + "en": "1.3.1.4" + }, "Code": "1.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a place where water comes out of the ground.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125942,7 +147036,22 @@ "Name": { "en": "Dark" }, + "Abbreviation": { + "en": "8.3.3.2" + }, "Code": "8.3.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is dark--a place where there is little or no light.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "14G Darkness", "DeletedAt": null, "Predefined": true }, @@ -125951,7 +147060,22 @@ "Name": { "en": "Rain" }, + "Abbreviation": { + "en": "1.1.3.3" + }, "Code": "1.1.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the rain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "14C Rain", "DeletedAt": null, "Predefined": true }, @@ -125960,7 +147084,22 @@ "Name": { "en": "None, nothing" }, + "Abbreviation": { + "en": "8.1.5.2" + }, "Code": "8.1.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that nothing, no one, never, and nowhere.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125969,7 +147108,22 @@ "Name": { "en": "Upset" }, + "Abbreviation": { + "en": "3.4.2.1.6" + }, "Code": "3.4.2.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for word related to feeling upset--to feel very bad because someone has done something bad to you or because something bad has happened to you, so that your thinking and behavior is affected.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125978,7 +147132,22 @@ "Name": { "en": "Type, kind" }, + "Abbreviation": { + "en": "8.3.5" + }, "Code": "8.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something being a type of thing, or that something belongs to a class of things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58D Class, Kind; 58 Nature, Class, Example", "DeletedAt": null, "Predefined": true }, @@ -125987,7 +147156,22 @@ "Name": { "en": "Doctor, nurse" }, + "Abbreviation": { + "en": "2.5.7.1" + }, "Code": "2.5.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to people who habitually take care of the sick and injured, such as those who do it for a living.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "759 Medical Personnel", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -125996,7 +147180,22 @@ "Name": { "en": "And, also" }, + "Abbreviation": { + "en": "9.6.1.1" + }, "Code": "9.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that you are adding another thought to a previous thought. Words in this domain may indicate a variety of relationships between words, phrases, clauses, or sentences. For instance the words may join two clauses that are the same except that the subjects are different, or the objects are different, or the verbs are different.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89Q Addition", "DeletedAt": null, "Predefined": true }, @@ -126005,7 +147204,22 @@ "Name": { "en": "Made of, material" }, + "Abbreviation": { + "en": "8.3.6" + }, "Code": "8.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark the material out of which something has been made.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89Y Substance", "DeletedAt": null, "Predefined": true }, @@ -126014,7 +147228,22 @@ "Name": { "en": "Wipe, erase" }, + "Abbreviation": { + "en": "5.6.6" + }, "Code": "5.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to wiping dirt off of things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126023,7 +147252,22 @@ "Name": { "en": "Travel by land" }, + "Abbreviation": { + "en": "7.2.4.1" + }, "Code": "7.2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to traveling by land.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "490 Land Transport; 491 Highways and Bridges; 492 Animal Transport; 493 Vehicles; 494 Highway Transport; 495 Auxiliary Highway Services; 496 Railways; 497 Rail Transport; 498 Terminal Facilities; 499 Highway and Railway Construction", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126032,7 +147276,22 @@ "Name": { "en": "Count" }, + "Abbreviation": { + "en": "8.1.2" + }, "Code": "8.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to counting--to say the numbers in order, or to use numbers to find an amount.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126041,7 +147300,22 @@ "Name": { "en": "Believe" }, + "Abbreviation": { + "en": "3.2.5.1" + }, "Code": "3.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to believing that something is true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "31F Believe To Be True; 31J Be a Believer, Christian Faith", "DeletedAt": null, "Predefined": true }, @@ -126050,7 +147324,22 @@ "Name": { "en": "Prompters of attention " }, + "Abbreviation": { + "en": "9.6.3.3" + }, "Code": "9.6.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that are used to get someone\u0027s attention or direct the listener\u0027s attention to something. These may use a verb meaning \u0027look\u0027 or \u0027listen\u0027. Some may be a word specifically referring to attention. Others may be a greeting. Others may be words that refer to non-verbal communication such as clearing your throat.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "91C Prompters of Attention", "DeletedAt": null, "Predefined": true }, @@ -126059,7 +147348,22 @@ "Name": { "en": "Prosperity" }, + "Abbreviation": { + "en": "4.4.1" + }, "Code": "4.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to prosperity--when good things are happening.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "22G Favorable Circumstances or State", "DeletedAt": null, "Predefined": true }, @@ -126068,7 +147372,22 @@ "Name": { "en": "Above" }, + "Abbreviation": { + "en": "8.5.1.3.1" + }, "Code": "8.5.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that express the idea that something is above another thing. The concept \u0027above\u0027 is inherently relational, expressing the relative positions of two things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83I Above, Below", "DeletedAt": null, "Predefined": true }, @@ -126077,7 +147396,22 @@ "Name": { "en": "Gather" }, + "Abbreviation": { + "en": "7.5.1" + }, "Code": "7.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to gathering things into a group. The basic idea of this domain involves a situation in which two or more things are not together, and someone moves them so that they are together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15M Gather, Cause to Come Together", "DeletedAt": null, "Predefined": true }, @@ -126086,7 +147420,22 @@ "Name": { "en": "Tide" }, + "Abbreviation": { + "en": "1.3.2.6" + }, "Code": "1.3.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the tide.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126095,7 +147444,22 @@ "Name": { "en": "Rich" }, + "Abbreviation": { + "en": "6.8.1.2" + }, "Code": "6.8.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being rich.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57C Be Rich, Be Wealthy", "DeletedAt": null, "Predefined": true }, @@ -126104,7 +147468,22 @@ "Name": { "en": "Threaten" }, + "Abbreviation": { + "en": "3.3.3.8" + }, "Code": "3.3.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to threatening someone--to say that you will do something bad to someone if they don\u0027t do what you want them to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33Z Threaten", "DeletedAt": null, "Predefined": true }, @@ -126113,7 +147492,22 @@ "Name": { "en": "Yard" }, + "Abbreviation": { + "en": "6.5.1.4" + }, "Code": "6.5.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the outside of a house, the area around a house, a barrier separating one house from another, and the entryway to the area around a house.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "351 Grounds", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126122,7 +147516,22 @@ "Name": { "en": "Crocodile" }, + "Abbreviation": { + "en": "1.6.1.3.4" + }, "Code": "1.6.1.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to crocodiles.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126131,7 +147540,22 @@ "Name": { "en": "Private, public" }, + "Abbreviation": { + "en": "4.1.6.5" + }, "Code": "4.1.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is private--something that only concerns you, and for words describing something that is public--something that concerns many people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126140,7 +147564,22 @@ "Name": { "en": "Harvest" }, + "Abbreviation": { + "en": "6.2.5" + }, "Code": "6.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to harvesting crops. If there is an important crop and there are a lot of words that refer to harvesting it, set up a special domain for it, such as \u0027Harvest rice\u0027 or \u0027Harvest coconuts\u0027. If there is more than one such crop, set up a separate domain for each of them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126149,7 +147588,22 @@ "Name": { "en": "Humor" }, + "Abbreviation": { + "en": "4.2.8" + }, "Code": "4.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to humor.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "522 Humor", + "LouwNidaCodes": "25L Laugh, Cry, Groan x", "DeletedAt": null, "Predefined": true }, @@ -126158,7 +147612,22 @@ "Name": { "en": "Take time" }, + "Abbreviation": { + "en": "8.4.2" + }, "Code": "8.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to taking time to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "67E Duration of Time without Reference to Points or Units of Time: Time, Spend Time, Always, Eternal, Old, Immediately, Young", "DeletedAt": null, "Predefined": true }, @@ -126167,7 +147636,22 @@ "Name": { "en": "Disabled" }, + "Abbreviation": { + "en": "2.5.4" + }, "Code": "2.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for being disabled--to be injured or born with a condition, so that some part of your body does not work.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "732 Disabilities; Handicapped; 734 Invalidism", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126176,7 +147660,22 @@ "Name": { "en": "Family names" }, + "Abbreviation": { + "en": "9.7.1.2" + }, "Code": "9.7.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the families that exist within the language community. If your culture does not use family names, just leave this domain empty.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126185,7 +147684,22 @@ "Name": { "en": "Arm" }, + "Abbreviation": { + "en": "2.1.3.1" + }, "Code": "2.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of the arm.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126194,7 +147708,22 @@ "Name": { "en": "Grass, herb, vine" }, + "Abbreviation": { + "en": "1.5.3" + }, "Code": "1.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for small plants that have roots, stems, flowers, and seeds, but do not have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the seedless plants, such as ferns (phylum Pteridophyta, class Felicineae), horsetails (phylum Pteridophyta, class Equisetineae), and club mosses (phylum Pteridophyta, class Lycopodineae). Plants of the Pteridophyta phylum have no flowers or seeds. Ferns have large, divided, feather-like leaves, or fronds. Club mosses are small (rarely over one meter) evergreen plants with simple leaves resembling pine or hemlock needles. Sometimes they grow upright, but often trail on the ground, where they propagate by means of runners. Horsetails send up tall, vertical, jointed stalks with branches covered with scale like leaves.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137f Grass and Weeds; 137g Herbs, medicinal, fungus", + "LouwNidaCodes": "3C Plants That Are Not Trees", "DeletedAt": null, "Predefined": true }, @@ -126203,7 +147732,22 @@ "Name": { "en": "Meet together" }, + "Abbreviation": { + "en": "4.2.1.3" + }, "Code": "4.2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to meeting together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126212,7 +147756,22 @@ "Name": { "en": "Touch" }, + "Abbreviation": { + "en": "7.3.4.1" + }, "Code": "7.3.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to touching something with your hand without moving the thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24E Touch, Feel", "DeletedAt": null, "Predefined": true }, @@ -126221,7 +147780,22 @@ "Name": { "en": "Goat" }, + "Abbreviation": { + "en": "6.3.1.3" + }, "Code": "6.3.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to goats.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126230,7 +147804,22 @@ "Name": { "en": "Clothes for special occasions" }, + "Abbreviation": { + "en": "5.3.4" + }, "Code": "5.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to special clothes worn on special occasions. It is necessary to think through all the various special occasions in the culture and think of any special clothes worn on those occasions. Two examples are given below for work and graduation, but there are many others.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "292 Special Garments", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126239,7 +147828,22 @@ "Name": { "en": "Moods" }, + "Abbreviation": { + "en": "9.4.3" + }, "Code": "9.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate moods.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126248,7 +147852,22 @@ "Name": { "en": "Bow" }, + "Abbreviation": { + "en": "7.1.5" + }, "Code": "7.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to bowing to someone--to face someone and lower your head or bend at the waist so that your upper body is lowered. The words in this domain should all be symbolic acts, that is, the culture assigns a meaning and significance to the physical action. Some cultures define it as a greeting, as an act of respect, or as an act of submission. For instance in ancient middle eastern culture bowing was an act of submission done in the presence of the king. Failure to bow was an act of rebellion punishable by death. In far eastern culture it is a greeting. In African culture it is an act of respect or done to welcome a visitor. Cultures define how a person is to bow, for instance how they are to hold their hands. A person may bow while standing, or may kneel, or even prostrate himself flat on his face. Whether both people bow is also significant. The depth of the bow can have significance. In Japan the person of lower social rank must bow deeper. In European culture a performer bows to acknowledge applause.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "17E Prostrate as an Act of Reverence or Supplication x", "DeletedAt": null, "Predefined": true }, @@ -126257,7 +147876,22 @@ "Name": { "en": "Interpreting messages" }, + "Abbreviation": { + "en": "3.5.8" + }, "Code": "3.5.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to interpreting something someone says--to try to understand the meaning of something someone says and express it in other words.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33J Interpret, Mean, Explain", "DeletedAt": null, "Predefined": true }, @@ -126266,7 +147900,22 @@ "Name": { "en": "Social event" }, + "Abbreviation": { + "en": "4.2.2" + }, "Code": "4.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a social event.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "51 Festivals", "DeletedAt": null, "Predefined": true }, @@ -126275,7 +147924,22 @@ "Name": { "en": "Clock, watch" }, - "Code": "8.4.4.2", + "Abbreviation": { + "en": "8.4.4.2" + }, + "Code": "8.4.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for machines that indicate what time it is.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126284,7 +147948,22 @@ "Name": { "en": "Limb" }, + "Abbreviation": { + "en": "2.1.3" + }, "Code": "2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a limb--either an arm or a leg.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126293,7 +147972,22 @@ "Name": { "en": "Mining" }, + "Abbreviation": { + "en": "6.6.2.1" + }, "Code": "6.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to mining.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "316 Mining and Quarrying; 317 Special Deposits", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126302,7 +147996,22 @@ "Name": { "en": "Dig" }, + "Abbreviation": { + "en": "7.8.6" + }, "Code": "7.8.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to digging in the ground.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19F Dig", "DeletedAt": null, "Predefined": true }, @@ -126311,7 +148020,22 @@ "Name": { "en": "Rebel against authority" }, + "Abbreviation": { + "en": "4.5.4.6" + }, "Code": "4.5.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to rebelling against authority.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "669 Revolution", + "LouwNidaCodes": "39G Rebellion", "DeletedAt": null, "Predefined": true }, @@ -126320,7 +148044,22 @@ "Name": { "en": "Balance" }, + "Abbreviation": { + "en": "7.2.1.6.1" + }, "Code": "7.2.1.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126329,7 +148068,22 @@ "Name": { "en": "Tobacco" }, + "Abbreviation": { + "en": "5.2.4" + }, "Code": "5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to using tobacco.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "277 Tobacco Industry", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126338,7 +148092,22 @@ "Name": { "en": "Infrastructure" }, + "Abbreviation": { + "en": "6.5.4" + }, "Code": "6.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to infrastructure--the big things people make that many people use, such as roads, electric power lines, and water supply systems.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "364 Refuse Disposal and Sanitary Facilities; 365 Public Utilities; 366 Commercial Facilities; 367 Parks; 368 Miscellaneous Facilities", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126347,7 +148116,22 @@ "Name": { "en": "Quantity" }, + "Abbreviation": { + "en": "8.1" + }, "Code": "8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to the amount or quantity of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "800 Numbers and Measures", + "LouwNidaCodes": "59 Quantity", "DeletedAt": null, "Predefined": true }, @@ -126356,7 +148140,22 @@ "Name": { "en": "States" }, + "Abbreviation": { + "en": "8" + }, "Code": "8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words refer to the state or condition of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "13A State", "DeletedAt": null, "Predefined": true }, @@ -126365,7 +148164,22 @@ "Name": { "en": "Sexual relations" }, + "Abbreviation": { + "en": "2.6.2" + }, "Code": "2.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sexual relations and having sex. Be careful that your domain label does not use a taboo word.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "830 Sex; 831 Sexuality; 832 Sexual Stimulation; 833 Sexual Intercourse", + "LouwNidaCodes": "23D Sexual Relations", "DeletedAt": null, "Predefined": true }, @@ -126374,7 +148188,22 @@ "Name": { "en": "Farmland" }, + "Abbreviation": { + "en": "6.2.9" + }, "Code": "6.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to farmland.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1O Pastures and Cultivated Lands", "DeletedAt": null, "Predefined": true }, @@ -126383,7 +148212,22 @@ "Name": { "en": "Blame" }, + "Abbreviation": { + "en": "3.5.1.8.1" + }, "Code": "3.5.1.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to blaming someone for something--to say that someone did something, and because of this something bad happened.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126392,7 +148236,22 @@ "Name": { "en": "Cooking oil" }, + "Abbreviation": { + "en": "5.2.3.3.5" + }, "Code": "5.2.3.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cooking oil.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126401,7 +148260,22 @@ "Name": { "en": "Between" }, + "Abbreviation": { + "en": "8.5.1.2.2" + }, "Code": "8.5.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is between two other things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83C Among, Between, In, Inside", "DeletedAt": null, "Predefined": true }, @@ -126410,7 +148284,22 @@ "Name": { "en": "Attribution of an attribute" }, + "Abbreviation": { + "en": "9.3.5" + }, "Code": "9.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that modify an attribute.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126419,7 +148308,22 @@ "Name": { "en": "Move" }, + "Abbreviation": { + "en": "7.2" + }, "Code": "7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for intransitive verbs of movement referring to moving your whole body to a different location. There are many components of meaning involved in verbs of movement. They can include a source location (from), a goal location (to), a path (along), manner (walk, run), speed (race, crawl), direction (forward, back, side, up, down, toward, away from), shape of the path (straight, curve, circle, angle), relationship to some object or objects (on, hang, against, between, across, through, into, out of, onto, off of, around), proximity (near, far), multiple movements (back and forth, return, bounce), inclusion with other objects or parts of objects (join, leave, collect, disperse, unite, separate), volition (go versus drift), intransitive versus transitive (move versus move something). Some verbs of movement do not involve moving from one place to another, but express bodily movement.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "481 Locomotion", + "LouwNidaCodes": "15 Linear Movement; 15A Move, Come/Go; 16 Non-Linear Movement", "DeletedAt": null, "Predefined": true }, @@ -126428,7 +148332,22 @@ "Name": { "en": "Perfect" }, + "Abbreviation": { + "en": "8.3.7.3" + }, "Code": "8.3.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is perfect.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79C\u0027 Perfect; 88D Perfect, Perfection", "DeletedAt": null, "Predefined": true }, @@ -126437,7 +148356,22 @@ "Name": { "en": "Convenient" }, + "Abbreviation": { + "en": "8.3.7.7.2" + }, "Code": "8.3.7.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is convenient--a good time to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126446,7 +148380,22 @@ "Name": { "en": "Care for the teeth" }, + "Abbreviation": { + "en": "5.4.4" + }, "Code": "5.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to caring for your teeth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126455,7 +148404,22 @@ "Name": { "en": "Clothes for special people" }, + "Abbreviation": { + "en": "5.3.5" + }, "Code": "5.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for special clothes worn by special people. It is necessary to think through all the various special types of people in the culture and think of any special clothes worn by them. Several examples are given below, but there are many others.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126464,7 +148428,22 @@ "Name": { "en": "Forever" }, + "Abbreviation": { + "en": "8.4.2.3" + }, "Code": "8.4.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening forever.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126473,7 +148452,22 @@ "Name": { "en": "Work and occupation" }, + "Abbreviation": { + "en": "6" + }, "Code": "6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to working.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126482,7 +148476,22 @@ "Name": { "en": "Win" }, + "Abbreviation": { + "en": "4.8.3.2" + }, "Code": "4.8.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to winning a victory.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126491,7 +148500,22 @@ "Name": { "en": "Tooth" }, + "Abbreviation": { + "en": "2.1.1.5" + }, "Code": "2.1.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the teeth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126500,7 +148524,22 @@ "Name": { "en": "Wool production" }, + "Abbreviation": { + "en": "6.3.5" + }, "Code": "6.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to wool production--cutting the hair off of a sheep.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "236 Wool Production", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126509,7 +148548,22 @@ "Name": { "en": "Pig" }, + "Abbreviation": { + "en": "6.3.1.4" + }, "Code": "6.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pigs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126518,7 +148572,22 @@ "Name": { "en": "Furrow" }, + "Abbreviation": { + "en": "8.3.2.5" + }, "Code": "8.3.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a furrow--a long mark cut into the surface of something, such as the furrow made by a plow, or a long cut made by a knife.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1H Depressions and Holes", "DeletedAt": null, "Predefined": true }, @@ -126527,7 +148596,22 @@ "Name": { "en": "Free to do what you want" }, + "Abbreviation": { + "en": "3.3.4.5" + }, "Code": "3.3.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to freedom--when you can do the things that you want to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37J Release, Set Free", "DeletedAt": null, "Predefined": true }, @@ -126536,7 +148620,22 @@ "Name": { "en": "Disaster" }, + "Abbreviation": { + "en": "4.4.2.4" + }, "Code": "4.4.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a disaster.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "731 Disasters", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126545,7 +148644,22 @@ "Name": { "en": "Region" }, + "Abbreviation": { + "en": "4.6.7" + }, "Code": "4.6.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a region--a part of a country, or a part of the earth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "630 Territorial Organization; 631 Territorial Hierarchy; 634 Districts; 635 Provinces; 636 Dependencies", + "LouwNidaCodes": "1K Sociopolitical Areas", "DeletedAt": null, "Predefined": true }, @@ -126554,7 +148668,22 @@ "Name": { "en": "Types of houses" }, + "Abbreviation": { + "en": "6.5.1.2" + }, "Code": "6.5.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to types of houses.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "342 Dwellings; 343 Outbuildings", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126563,7 +148692,22 @@ "Name": { "en": "Predict" }, + "Abbreviation": { + "en": "3.2.7.3" + }, "Code": "3.2.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to predicting the future--saying what you think will happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126572,7 +148716,22 @@ "Name": { "en": "Receive" }, + "Abbreviation": { + "en": "7.4.2" + }, "Code": "7.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to receiving something from someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57I Receive", "DeletedAt": null, "Predefined": true }, @@ -126581,7 +148740,22 @@ "Name": { "en": "Physical, non-physical" }, + "Abbreviation": { + "en": "9.1.3.1" + }, "Code": "9.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is physical--that you can touch and see, and for words describing something that is non-physical--that you cannot touch or see.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79A Physical, Spiritual; 79B Natural, Spiritual", "DeletedAt": null, "Predefined": true }, @@ -126590,7 +148764,22 @@ "Name": { "en": "Growing potatoes" }, + "Abbreviation": { + "en": "6.2.1.2.1" + }, "Code": "6.2.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing potatoes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126599,7 +148788,22 @@ "Name": { "en": "Communication" }, + "Abbreviation": { + "en": "3.5" + }, "Code": "3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to communication of all kinds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "200 Communication", + "LouwNidaCodes": "33 Communication", "DeletedAt": null, "Predefined": true }, @@ -126608,7 +148812,22 @@ "Name": { "en": "Improve" }, + "Abbreviation": { + "en": "8.3.7.6" + }, "Code": "8.3.7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to improving something--to make something better.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126617,7 +148836,22 @@ "Name": { "en": "Beneficiary (of a patient)" }, + "Abbreviation": { + "en": "9.5.3.1" + }, "Code": "9.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that mark the beneficiary of the Patient of an activity. The Patient is often expressed as the object of a sentence. In the sentence \u0022John built a house for his parents,\u0022 the house is the Patient. It is the house that benefits the parents, not the building of the house.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126626,7 +148860,22 @@ "Name": { "en": "Don\u0027t think so, doubt it" }, + "Abbreviation": { + "en": "9.4.4.8" + }, "Code": "9.4.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that you think something is unlikely to be true or to happen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126635,7 +148884,22 @@ "Name": { "en": "Witness, testify" }, + "Abbreviation": { + "en": "4.7.5.5" + }, "Code": "4.7.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to testifying in a court of law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33T Witness, Testify", "DeletedAt": null, "Predefined": true }, @@ -126644,7 +148908,22 @@ "Name": { "en": "Approximate" }, + "Abbreviation": { + "en": "8.1.5.8.1" + }, "Code": "8.1.5.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate whether a number or amount is approximate.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "78C About, Approximately, Almost, Hardly", "DeletedAt": null, "Predefined": true }, @@ -126653,7 +148932,22 @@ "Name": { "en": "Rear a child" }, + "Abbreviation": { + "en": "2.6.4.2.1" + }, "Code": "2.6.4.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to rearing a child--to take care of someone while they are a child so that their needs are met and they become a good person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "855 Child Care; 860 Socialization; 861 Techniques of Inculcation; 862 Weaning and Food Training; 863 Cleanliness Training; 864 Sex Training; 865 Aggression Training; 866 Independence Training; 867 Transmission of Cultural Norms; 868 Transmission of Skills; 869 Transmission of Beliefs", + "LouwNidaCodes": "35F Rear, Bring Up", "DeletedAt": null, "Predefined": true }, @@ -126662,7 +148956,22 @@ "Name": { "en": "Destroy" }, + "Abbreviation": { + "en": "7.9.3" + }, "Code": "7.9.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to destroying something--to damage something so that it is beyond repair and cannot be used.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "20 Violence, Harm, Destroy, Kill; 20C Destroy", "DeletedAt": null, "Predefined": true }, @@ -126671,7 +148980,22 @@ "Name": { "en": "Bury" }, + "Abbreviation": { + "en": "2.6.6.5" + }, "Code": "2.6.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to disposing of a dead body. Different cultures have practices other than burying a body in the ground. Include words for all practices used by the culture.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "766 Special Burial Practices and Funerals; Deviant Mortuary Practices; 767 Mortuary Specialists", + "LouwNidaCodes": "52 Funerals and Burial", "DeletedAt": null, "Predefined": true }, @@ -126680,7 +149004,22 @@ "Name": { "en": "Misunderstand" }, + "Abbreviation": { + "en": "3.2.4.1" + }, "Code": "3.2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for when a person does not understand a topic or the meaning of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "31B Hold a Wrong View, Be Mistaken", "DeletedAt": null, "Predefined": true }, @@ -126689,7 +149028,22 @@ "Name": { "en": "Mass communication" }, + "Abbreviation": { + "en": "3.5.9" + }, "Code": "3.5.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to radio, television, newspapers, magazines and other forms of mass communication.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "2010 Internet Communications; 202 Transmission of Messages; 203 Dissemination of News and Information; 204 Press; 205 Mail; Postal System; 206 Telephone and Telegraph; 207 Radio and Television", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126698,7 +149052,22 @@ "Name": { "en": "Growing crops" }, + "Abbreviation": { + "en": "6.2.1" + }, "Code": "6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to growing crops. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "248 Textile Agriculture; 249 Special Crops", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126707,7 +149076,22 @@ "Name": { "en": "Reputation" }, + "Abbreviation": { + "en": "4.3.1.4" + }, "Code": "4.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having a good reputation--when most people think well of someone because he does good things and doesn\u0027t do bad things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126716,7 +149100,22 @@ "Name": { "en": "Emotion" }, + "Abbreviation": { + "en": "3.4" + }, "Code": "3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to feelings and emotions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "152 Drives and Emotions; 150 Behavior Processes and Personality", + "LouwNidaCodes": "25 Attitudes and Emotions", "DeletedAt": null, "Predefined": true }, @@ -126725,7 +149124,22 @@ "Name": { "en": "Animal sounds" }, + "Abbreviation": { + "en": "1.6.4.3" + }, "Code": "1.6.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the sounds animals make. It is necessary to think through the sounds each type of animal makes, especially the important ones.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136d Sounds", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126734,7 +149148,22 @@ "Name": { "en": "Understandable" }, + "Abbreviation": { + "en": "3.2.4.2" + }, "Code": "3.2.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe something that is easy to understand.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126743,7 +149172,22 @@ "Name": { "en": "Shadow" }, + "Abbreviation": { + "en": "8.3.3.2.1" + }, "Code": "8.3.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a shadow--the area on the ground where the light does not shine because something is in the way. For instance if the sun (or another light) is shining on an object, the area behind the object is in shadow (dark).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126752,7 +149196,22 @@ "Name": { "en": "Laugh" }, + "Abbreviation": { + "en": "3.5.6.4" + }, "Code": "3.5.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the expression of good feelings, including laughing--the sounds a person makes when he is enjoying himself or thinks something is funny.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25L Laugh, Cry, Groan x", "DeletedAt": null, "Predefined": true }, @@ -126761,7 +149220,22 @@ "Name": { "en": "Defecate, feces" }, + "Abbreviation": { + "en": "2.2.8" + }, "Code": "2.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to defecation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "514 Elimination", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126770,7 +149244,22 @@ "Name": { "en": "Some" }, + "Abbreviation": { + "en": "8.1.5.1" + }, "Code": "8.1.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to some--a number or amount of things or people when the number is not stated; an indefinite number or amount.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126779,7 +149268,22 @@ "Name": { "en": "Stubborn" }, + "Abbreviation": { + "en": "3.3.1.7" + }, "Code": "3.3.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being stubborn--to be unwilling to change a decision; to be unwilling to do something someone wants you to do; or to do what you want to do, even though other people do not want you to do it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88B\u0027 Stubbornness", "DeletedAt": null, "Predefined": true }, @@ -126788,7 +149292,22 @@ "Name": { "en": "Report" }, + "Abbreviation": { + "en": "3.5.2.1" + }, "Code": "3.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to reporting something--to say that something has happened and to tell about it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33O Inform, Announce; 33P Assert, Declare; 33S Preach, Proclaim", "DeletedAt": null, "Predefined": true }, @@ -126797,7 +149316,22 @@ "Name": { "en": "Old, not young" }, + "Abbreviation": { + "en": "8.4.6.5.2" + }, "Code": "8.4.6.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something old--a word describing a living thing that has existed for a long time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126806,7 +149340,22 @@ "Name": { "en": "Legal personnel" }, + "Abbreviation": { + "en": "4.7.4.1" + }, "Code": "4.7.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to legal personnel.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "56G Attorney, Lawyer", "DeletedAt": null, "Predefined": true }, @@ -126815,7 +149364,22 @@ "Name": { "en": "Aspect--dynamic verbs" }, + "Abbreviation": { + "en": "9.4.1.2" + }, "Code": "9.4.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of dynamic verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126824,7 +149388,22 @@ "Name": { "en": "Land" }, + "Abbreviation": { + "en": "1.2.1" + }, "Code": "1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the ground we stand on, the earth versus the sky.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "133 Topography and Geology", + "LouwNidaCodes": "1 Geographical Objects and Features; 1F The Earth\u0027s Surface", "DeletedAt": null, "Predefined": true }, @@ -126833,7 +149412,22 @@ "Name": { "en": "Serve food" }, + "Abbreviation": { + "en": "5.2.1.5" + }, "Code": "5.2.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to serving food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126842,7 +149436,22 @@ "Name": { "en": "Valley" }, + "Abbreviation": { + "en": "1.2.1.4" + }, "Code": "1.2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to valleys.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1H Depressions and Holes", "DeletedAt": null, "Predefined": true }, @@ -126851,7 +149460,22 @@ "Name": { "en": "Value" }, + "Abbreviation": { + "en": "8.3.7.9" + }, "Code": "8.3.7.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the value of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "65 Value; 65A Valuable, Lacking in Value; 65B Worthy, Not Worthy", "DeletedAt": null, "Predefined": true }, @@ -126860,7 +149484,22 @@ "Name": { "en": "Commerce" }, + "Abbreviation": { + "en": "6.9.4" + }, "Code": "6.9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to commerce--taking something to a place and trying to sell it there.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "438 Domestic Trade; 439 Foreign Trade", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126869,7 +149508,22 @@ "Name": { "en": "Transparent" }, + "Abbreviation": { + "en": "2.3.1.6" + }, "Code": "2.3.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe how well you can see through something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79F Transparent", "DeletedAt": null, "Predefined": true }, @@ -126878,7 +149532,22 @@ "Name": { "en": "Mistake" }, + "Abbreviation": { + "en": "4.3.6.4" + }, "Code": "4.3.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to mistakes--something bad that someone does by accident.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126887,7 +149556,22 @@ "Name": { "en": "Working with buildings" }, + "Abbreviation": { + "en": "6.5" + }, "Code": "6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with buildings.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "330 Building and Construction; 331 Construction; 334 Structural Steel Work; 338 Miscellaneous Building Trades; 341 Architecture", + "LouwNidaCodes": "45 Building, Constructing; 7 Constructions; 7A Constructions", "DeletedAt": null, "Predefined": true }, @@ -126896,7 +149580,22 @@ "Name": { "en": "Forget" }, + "Abbreviation": { + "en": "3.2.6.1" + }, "Code": "3.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to forgetting something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "29C Not Remembering, Forgetting", "DeletedAt": null, "Predefined": true }, @@ -126905,7 +149604,22 @@ "Name": { "en": "Unlucky" }, + "Abbreviation": { + "en": "4.4.5.2" + }, "Code": "4.4.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unlucky.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126914,7 +149628,22 @@ "Name": { "en": "Self-esteem" }, + "Abbreviation": { + "en": "3.4.1.1.2" + }, "Code": "3.4.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling good about yourself.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25S Pride", "DeletedAt": null, "Predefined": true }, @@ -126923,7 +149652,22 @@ "Name": { "en": "Store the harvest" }, + "Abbreviation": { + "en": "6.2.6.4" + }, "Code": "6.2.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to storing the harvest.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "253 Meat Packing Industry; 254 Refrigeration Industry; 255 Canning Industry; 256 Cereal Industry; 257 Confectionery Industries; 258 Miscellaneous Food Processing and Packing Industries", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126932,7 +149676,22 @@ "Name": { "en": "Disease" }, + "Abbreviation": { + "en": "2.5.2" + }, "Code": "2.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for disease and for words referring to specific diseases.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "750 Sickness", + "LouwNidaCodes": "23I Sickness, Disease, Weakness", "DeletedAt": null, "Predefined": true }, @@ -126941,7 +149700,22 @@ "Name": { "en": "Evaluator" }, + "Abbreviation": { + "en": "9.4.5.1" + }, "Code": "9.4.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating who is evaluating the proposition.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126950,7 +149724,22 @@ "Name": { "en": "Lose your way" }, + "Abbreviation": { + "en": "7.2.4.7" + }, "Code": "7.2.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to losing your way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126959,7 +149748,22 @@ "Name": { "en": "Spider" }, + "Abbreviation": { + "en": "1.6.1.8" + }, "Code": "1.6.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for spiders (phylum Arthropoda, class Arachnida). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126968,7 +149772,22 @@ "Name": { "en": "Color" }, + "Abbreviation": { + "en": "8.3.3.3" + }, "Code": "8.3.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to color.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79G Color", "DeletedAt": null, "Predefined": true }, @@ -126977,7 +149796,22 @@ "Name": { "en": "Like, love" }, + "Abbreviation": { + "en": "3.4.1.1" + }, "Code": "3.4.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to liking something or someone, or liking to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126986,7 +149820,22 @@ "Name": { "en": "Drunk" }, + "Abbreviation": { + "en": "5.2.3.7.2" + }, "Code": "5.2.3.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to drinking alcohol and the effect it has on a person.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "275 Drinking Establishment", + "LouwNidaCodes": "88K\u0027 Drunkenness", "DeletedAt": null, "Predefined": true }, @@ -126995,7 +149844,22 @@ "Name": { "en": "Moss, fungus, algae" }, + "Abbreviation": { + "en": "1.5.4" + }, "Code": "1.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for mosses (phylum Bryophyta, class Musci), liverworts (phylum Bryophyta, class Hepaticae), fungi (phylum Thallophyta, subdivision Fungi), algae (phylum Thallophyta, subdivision Algae), and lichens. These plants do not have true roots, stems, or leaves. The mosses are small, green, flowerless plants that grow in moist environments and look like velvety or feathery growths carpeting the ground, tree trunks, and rocks. The liverworts are similar to the mosses with a flat and branching growth pattern. The algae possess green chlorophyll. They vary from one-celled organisms, which sometimes live in colonies such as pond scum, to complex organisms such as seaweed. The fungi do not possess chlorophyll and feed off of other organic material. Lichens consist of a fungus and an algae growing together. They commonly grow on trunks of trees and rocks. Some are flat and leafy, and some are moss like.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "3C Plants That Are Not Trees", "DeletedAt": null, "Predefined": true }, @@ -127004,7 +149868,22 @@ "Name": { "en": "Two" }, + "Abbreviation": { + "en": "8.1.1.1.2" + }, "Code": "8.1.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the number two.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127013,7 +149892,22 @@ "Name": { "en": "Way, manner" }, + "Abbreviation": { + "en": "9.5.1.4" + }, "Code": "9.5.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating the way or manner in which something is done.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89N Manner", "DeletedAt": null, "Predefined": true }, @@ -127022,7 +149916,22 @@ "Name": { "en": "Fit, size" }, + "Abbreviation": { + "en": "8.2.7" + }, "Code": "8.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something fitting--when something is not too big or too small, but just right.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127031,7 +149940,22 @@ "Name": { "en": "Understand" }, + "Abbreviation": { + "en": "3.2.4" + }, "Code": "3.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to understanding a topic or the meaning of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "32 Understand; 32A Understand; 32B Come To Understand; 32C Ease or Difficulty in Understand", "DeletedAt": null, "Predefined": true }, @@ -127040,7 +149964,22 @@ "Name": { "en": "Parts of a plant" }, + "Abbreviation": { + "en": "1.5.5" + }, "Code": "1.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to parts of a plant. Start with general words that all plants have. Then think through each major type of plant. Finish by thinking of specific plants that are well known (usually cultivated crops) and that have words for specific parts (e.g. tassel on a corn/maize cob).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137a Plant Parts", + "LouwNidaCodes": "3D Fruit Parts of Plants; 3E Non-Fruit Parts of Plants", "DeletedAt": null, "Predefined": true }, @@ -127049,7 +149988,22 @@ "Name": { "en": "Most, almost all" }, + "Abbreviation": { + "en": "8.1.5.4" + }, "Code": "8.1.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to most--more than half and less than all of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127058,7 +150012,22 @@ "Name": { "en": "Produce wealth" }, + "Abbreviation": { + "en": "6.8.2.1" + }, "Code": "6.8.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to producing wealth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127067,7 +150036,22 @@ "Name": { "en": "Need" }, + "Abbreviation": { + "en": "8.1.7.3" + }, "Code": "8.1.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to needing something for some purpose.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57E Need, Lack", "DeletedAt": null, "Predefined": true }, @@ -127076,7 +150060,22 @@ "Name": { "en": "Grandfather, grandmother" }, + "Abbreviation": { + "en": "4.1.9.1.1" + }, "Code": "4.1.9.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to grandparents and ancestors.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "603 Grandparents and Grandchildren", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127085,7 +150084,22 @@ "Name": { "en": "Across" }, + "Abbreviation": { + "en": "8.5.1.6" + }, "Code": "8.5.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to a place on another side of something from the reference point. \u0027Across\u0027 involves three things--the object, the reference point, and something else in between the two.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83G Opposite, Over Against, Across From, Offshore From; 83J Beyond, On the Other Side Of", "DeletedAt": null, "Predefined": true }, @@ -127094,7 +150108,22 @@ "Name": { "en": "Earn" }, + "Abbreviation": { + "en": "6.8.2.7" + }, "Code": "6.8.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to earning money for work that you do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57P Earn, Gain, Do Business x", "DeletedAt": null, "Predefined": true }, @@ -127103,7 +150132,22 @@ "Name": { "en": "Hit" }, + "Abbreviation": { + "en": "7.7.1" + }, "Code": "7.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to hitting something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "19A Hit, Strike", "DeletedAt": null, "Predefined": true }, @@ -127112,7 +150156,22 @@ "Name": { "en": "Soon" }, + "Abbreviation": { + "en": "8.4.6.4.1" + }, "Code": "8.4.6.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening soon.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127121,7 +150180,22 @@ "Name": { "en": "Room" }, + "Abbreviation": { + "en": "6.5.2.7" + }, "Code": "6.5.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the rooms of a building.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127130,7 +150204,22 @@ "Name": { "en": "Growth of plants" }, + "Abbreviation": { + "en": "1.5.6" + }, "Code": "1.5.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the growth of plants.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137b Growth Stages", + "LouwNidaCodes": "23K Grow, Growth; 23L Ripen, Produce Fruit, Bear Seed", "DeletedAt": null, "Predefined": true }, @@ -127139,7 +150228,22 @@ "Name": { "en": "Agree to do something" }, + "Abbreviation": { + "en": "3.3.2.1" + }, "Code": "3.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to agreeing to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127148,7 +150252,22 @@ "Name": { "en": "Mute" }, + "Abbreviation": { + "en": "2.5.4.4" + }, "Code": "2.5.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being mute--unable to speak (usually because of being unable to hear).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127157,7 +150276,22 @@ "Name": { "en": "Foreigner" }, + "Abbreviation": { + "en": "4.6.2.1" + }, "Code": "4.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a foreigner--a person who visits or lives in a country but is not a citizen.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127166,7 +150300,22 @@ "Name": { "en": "Land preparation" }, + "Abbreviation": { + "en": "6.2.2" + }, "Code": "6.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to preparing land for planting crops.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "241 Tillage", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127175,7 +150324,22 @@ "Name": { "en": "Sweat" }, + "Abbreviation": { + "en": "2.2.6" + }, "Code": "2.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sweating.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127184,7 +150348,22 @@ "Name": { "en": "Each other" }, + "Abbreviation": { + "en": "9.5.2.4" + }, "Code": "9.5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that two or more people do something to each other.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127193,7 +150372,22 @@ "Name": { "en": "Indefinite pronouns" }, + "Abbreviation": { + "en": "9.2.3.2" + }, "Code": "9.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for pronouns that do not refer to a definite person or thing, but can refer to anyone or anything. Some languages will not have all the sets of pronouns described below. Add each set you find in your language to the pronoun chart.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127202,7 +150396,22 @@ "Name": { "en": "Milk products" }, + "Abbreviation": { + "en": "5.2.3.2.2" + }, "Code": "5.2.3.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to milk products.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127211,7 +150420,22 @@ "Name": { "en": "Create" }, + "Abbreviation": { + "en": "9.1.2.3" + }, "Code": "9.1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to creating something--causing something to be that did not exist before.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "42C Make, Create", "DeletedAt": null, "Predefined": true }, @@ -127220,7 +150444,22 @@ "Name": { "en": "Neighbor" }, + "Abbreviation": { + "en": "4.1.4" + }, "Code": "4.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a neighbor--someone who lives nearby.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127229,7 +150468,22 @@ "Name": { "en": "Sleep" }, + "Abbreviation": { + "en": "5.7" + }, "Code": "5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sleeping.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "513 Sleeping", + "LouwNidaCodes": "23E Sleep, Waking x", "DeletedAt": null, "Predefined": true }, @@ -127238,7 +150492,22 @@ "Name": { "en": "Volcano" }, + "Abbreviation": { + "en": "1.2.1.2" + }, "Code": "1.2.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to volcanoes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127247,7 +150516,22 @@ "Name": { "en": "Heavy" }, + "Abbreviation": { + "en": "8.2.9.1" + }, "Code": "8.2.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being heavy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "86A Heavy, Light", "DeletedAt": null, "Predefined": true }, @@ -127256,7 +150540,22 @@ "Name": { "en": "Letter" }, + "Abbreviation": { + "en": "3.5.7.7" + }, "Code": "3.5.7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to letter--a written message that is sent to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127265,7 +150564,22 @@ "Name": { "en": "Disunity" }, + "Abbreviation": { + "en": "4.1.6" + }, "Code": "4.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to disunity--when a group of people do not agree with each other and are fighting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "39A Opposition, Hostility; 39B Division", "DeletedAt": null, "Predefined": true }, @@ -127274,7 +150588,22 @@ "Name": { "en": "Physical actions" }, + "Abbreviation": { + "en": "7" + }, "Code": "7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for physical actions--moving yourself, moving things, and changing things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127283,7 +150612,22 @@ "Name": { "en": "Work" }, + "Abbreviation": { + "en": "6.1" + }, "Code": "6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "42D Work, Toil", "DeletedAt": null, "Predefined": true }, @@ -127292,7 +150636,22 @@ "Name": { "en": "Work well" }, + "Abbreviation": { + "en": "6.1.2.3" + }, "Code": "6.1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working well.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "555 Talent Mobility", + "LouwNidaCodes": "75 Adequate, Qualified; 68F Do Intensely or Extensively", "DeletedAt": null, "Predefined": true }, @@ -127301,7 +150660,22 @@ "Name": { "en": "Prevent from moving" }, + "Abbreviation": { + "en": "7.2.6.2" + }, "Code": "7.2.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to preventing someone or something from moving.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37A Control, Restrain", "DeletedAt": null, "Predefined": true }, @@ -127310,7 +150684,22 @@ "Name": { "en": "Informal justice" }, + "Abbreviation": { + "en": "4.6.6.1.2" + }, "Code": "4.6.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to informal justice--punishing someone when you are not in a position of authority, as when a mob catches and kills a criminal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "627 Informal In-group Justice", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127319,7 +150708,22 @@ "Name": { "en": "Partly" }, + "Abbreviation": { + "en": "9.3.3" + }, "Code": "9.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127328,7 +150732,22 @@ "Name": { "en": "Look" }, + "Abbreviation": { + "en": "2.3.1.1" + }, "Code": "2.3.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to looking at someone or something--to see something because you want to.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127337,7 +150756,22 @@ "Name": { "en": "Cheat" }, + "Abbreviation": { + "en": "6.8.9.2" + }, "Code": "6.8.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cheating someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88S Exploit", "DeletedAt": null, "Predefined": true }, @@ -127346,7 +150780,22 @@ "Name": { "en": "Chicken" }, + "Abbreviation": { + "en": "6.3.6.1" + }, "Code": "6.3.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to chickens.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127355,7 +150804,22 @@ "Name": { "en": "Fish with hooks" }, + "Abbreviation": { + "en": "6.4.5.2" + }, "Code": "6.4.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fishing with a hook and line.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127364,7 +150828,22 @@ "Name": { "en": "Shut, close" }, + "Abbreviation": { + "en": "7.3.6.1" + }, "Code": "7.3.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to shutting something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127373,7 +150852,22 @@ "Name": { "en": "Growing wheat" }, + "Abbreviation": { + "en": "6.2.1.1.2" + }, "Code": "6.2.1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing wheat.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127382,7 +150876,22 @@ "Name": { "en": "Before" }, + "Abbreviation": { + "en": "8.4.5.2" + }, "Code": "8.4.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to one event happening before another.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15O Come/Go Prior To", "DeletedAt": null, "Predefined": true }, @@ -127391,7 +150900,22 @@ "Name": { "en": "Method" }, + "Abbreviation": { + "en": "6.1.2" + }, "Code": "6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the method of doing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "120 Research Methods; Methodology", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127400,7 +150924,22 @@ "Name": { "en": "Working with paper" }, + "Abbreviation": { + "en": "6.6.3.3" + }, "Code": "6.6.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to paper.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "289 Paper Industry", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127409,7 +150948,22 @@ "Name": { "en": "Lose consciousness" }, + "Abbreviation": { + "en": "2.5.6.4" + }, "Code": "2.5.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to losing consciousness, including fainting, being knocked out, and anesthesia.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127418,7 +150972,22 @@ "Name": { "en": "Quiet" }, + "Abbreviation": { + "en": "2.3.2.5" + }, "Code": "2.3.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe quiet sounds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127427,7 +150996,22 @@ "Name": { "en": "Milk" }, + "Abbreviation": { + "en": "6.3.3" + }, "Code": "6.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to milking an animal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "234 Dairying", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127436,7 +151020,22 @@ "Name": { "en": "Number of times" }, + "Abbreviation": { + "en": "8.1.1.3" + }, "Code": "8.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for numbers that refer to the number of times something happens or is done. These numbers may be adverbs as in English (twice) or in some languages they may be verbs (to do something two times).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "60E Once, Twice, Three Times, Etc. x", "DeletedAt": null, "Predefined": true }, @@ -127445,7 +151044,22 @@ "Name": { "en": "Politics" }, + "Abbreviation": { + "en": "4.6.6.5" + }, "Code": "4.6.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to politics--the activities of politicians and political parties.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "660 Political Behavior; 661 Exploitation; 662 Political Intrigue; 663 Public Service; 664 Pressure Politics; 665 Political Parties; 667 Political Machines; 668 Political Movements", + "LouwNidaCodes": "11C Socio-Political", "DeletedAt": null, "Predefined": true }, @@ -127454,7 +151068,22 @@ "Name": { "en": "Wait" }, + "Abbreviation": { + "en": "7.2.7.3" + }, "Code": "7.2.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to waiting in a place, waiting to do something, or waiting for something to happen. The basic idea of waiting is for someone to not do anything for a period of time, because he expects something to happen that will cause him to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127463,7 +151092,22 @@ "Name": { "en": "Dissociation" }, + "Abbreviation": { + "en": "9.6.1.6" + }, "Code": "9.6.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a dissociation relation between two things or propositions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89U Dissociation", "DeletedAt": null, "Predefined": true }, @@ -127472,7 +151116,22 @@ "Name": { "en": "Group of things" }, + "Abbreviation": { + "en": "8.1.3.3" + }, "Code": "8.1.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to a group of things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127481,7 +151140,22 @@ "Name": { "en": "Army" }, + "Abbreviation": { + "en": "4.8.3.6.1" + }, "Code": "4.8.3.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the army.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "704 Ground Combat Forces", + "LouwNidaCodes": "55C Army", "DeletedAt": null, "Predefined": true }, @@ -127490,7 +151164,22 @@ "Name": { "en": "Names of mountains" }, + "Abbreviation": { + "en": "9.7.2.7" + }, "Code": "9.7.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the mountains in the language area. Only include the names of mountains outside the language area if your language has borrowed or adapted the name and you talk about them in your language.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127499,7 +151188,22 @@ "Name": { "en": "Move out" }, + "Abbreviation": { + "en": "7.2.3.4.1" + }, "Code": "7.2.3.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to moving out of something, such as a house or area.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127508,7 +151212,22 @@ "Name": { "en": "Put aside" }, + "Abbreviation": { + "en": "7.3.2.3" + }, "Code": "7.3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to putting something to the side of you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127517,7 +151236,22 @@ "Name": { "en": "Head" }, + "Abbreviation": { + "en": "2.1.1" + }, "Code": "2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of the head.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127526,7 +151260,22 @@ "Name": { "en": "General adverbs" }, + "Abbreviation": { + "en": "9.1.5" + }, "Code": "9.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general adverbs that can replace or stand for other adverbs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127535,7 +151284,22 @@ "Name": { "en": "Own, possess" }, + "Abbreviation": { + "en": "6.8.1.1" + }, "Code": "6.8.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to owning something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "421 Property System", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127544,7 +151308,22 @@ "Name": { "en": "Move something in a direction" }, + "Abbreviation": { + "en": "7.3.2" + }, "Code": "7.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to moving something in a direction.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127553,7 +151332,22 @@ "Name": { "en": "Arrange an event" }, + "Abbreviation": { + "en": "6.1.2.5.1" + }, "Code": "6.1.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to arranging an event, such as a meeting.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127562,7 +151356,22 @@ "Name": { "en": "Sorry" }, + "Abbreviation": { + "en": "3.4.2.2" + }, "Code": "3.4.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling sorry--to feel bad about something bad that you did.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25W Sorrow, Regret", "DeletedAt": null, "Predefined": true }, @@ -127571,7 +151380,22 @@ "Name": { "en": "Classifiers" }, + "Abbreviation": { + "en": "9.2.6.1" + }, "Code": "9.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all classifiers.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127580,7 +151404,22 @@ "Name": { "en": "Have, of" }, + "Abbreviation": { + "en": "9.1.1.3" + }, "Code": "9.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Many languages have several general words that are used to indicate a variety of relationships between two things. There are three such words in English: \u0022have,\u0022 \u0022of,\u0022 and the possessive suffix \u0022-\u0027s.\u0022 The basic meaning of these words in English is \u0027to own\u0027, but they can mean many other things too. For instance they can mean that I am related to someone (I have a brother), something has a part (birds have wings), and many other ideas. There is also a set of pronouns in English that are like nouns ending in -\u0027s (my/mine, your/yours, his, her/hers, its, our/ours, their/theirs, whose). Use this domain for these general words.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127589,7 +151428,22 @@ "Name": { "en": "Wash clothes" }, + "Abbreviation": { + "en": "5.6.4" + }, "Code": "5.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to washing clothes.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "296 Garment Care", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127598,7 +151452,22 @@ "Name": { "en": "Postpone" }, + "Abbreviation": { + "en": "8.4.5.3.5" + }, "Code": "8.4.5.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to postponing something--to decide to do something later.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127607,7 +151476,22 @@ "Name": { "en": "Accept" }, + "Abbreviation": { + "en": "3.3.5.1" + }, "Code": "3.3.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to accepting something such as an offer, invitation, or request.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127616,7 +151500,22 @@ "Name": { "en": "Steal" }, + "Abbreviation": { + "en": "6.8.9.1" + }, "Code": "6.8.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to stealing something--to take something that does not belong to you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57U Steal, Rob", "DeletedAt": null, "Predefined": true }, @@ -127625,7 +151524,22 @@ "Name": { "en": "Cooking utensil" }, + "Abbreviation": { + "en": "5.2.1.3" + }, "Code": "5.2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cooking utensils.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "415 Utensils", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127634,7 +151548,22 @@ "Name": { "en": "Miscarriage" }, + "Abbreviation": { + "en": "2.6.3.3" + }, "Code": "2.6.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the prevention or termination of a pregnancy, and for words related to killing babies.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "847 Abortion and Infanticide; 168 Population Policy", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127643,7 +151572,22 @@ "Name": { "en": "Building" }, + "Abbreviation": { + "en": "6.5.1" + }, "Code": "6.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to buildings and other large structures that people build.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "340 Structures; 344 Public Structures; 345 Recreational Structures; 346 Religious and Educational Structures; 347 Business Structures; 348 Industrial Structures; 349 Miscellaneous Structures", + "LouwNidaCodes": "7B Buildings; 7D Open Constructions", "DeletedAt": null, "Predefined": true }, @@ -127652,7 +151596,22 @@ "Name": { "en": "Sun" }, + "Abbreviation": { + "en": "1.1.1" + }, "Code": "1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the sun. The sun does three basic things. It moves, it gives light, and it gives heat. These three actions are involved in the meanings of most of the words in this domain. Since the sun moves below the horizon, many words refer to it setting or rising. Since the sun is above the clouds, many words refer to it moving behind the clouds and the clouds blocking its light. The sun\u0027s light and heat also produce secondary effects. The sun causes plants to grow, and it causes damage to things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "1D Heavenly Bodies", "DeletedAt": null, "Predefined": true }, @@ -127661,7 +151620,22 @@ "Name": { "en": "Describe" }, + "Abbreviation": { + "en": "3.5.1.2.2" + }, "Code": "3.5.1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to describing something--to say some things about something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "105 Cultural Summary", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127670,7 +151644,22 @@ "Name": { "en": "Sweep, rake" }, + "Abbreviation": { + "en": "5.6.5" + }, "Code": "5.6.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cleaning the floor or ground.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127679,7 +151668,22 @@ "Name": { "en": "Bathe" }, + "Abbreviation": { + "en": "5.6.2" + }, "Code": "5.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to bathing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "515 Personal Hygiene", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127688,7 +151692,22 @@ "Name": { "en": "Names of languages" }, + "Abbreviation": { + "en": "9.7.1.5" + }, "Code": "9.7.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the languages that are spoken in the area around the language community, including the name of your own language. These language names may or may not correspond with the names of countries. Do not try to include every language name in the world, only the neighboring and important ones. For instance you might want to include the languages that border your own and the national language. Give the form that you use. For instance the German people call their language \u0027Deutsch\u0027, but in English we call it \u0027German\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "101 Identification", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127697,7 +151716,22 @@ "Name": { "en": "Greedy" }, + "Abbreviation": { + "en": "6.8.2.5" + }, "Code": "6.8.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being greedy.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127706,7 +151740,22 @@ "Name": { "en": "Festival, show" }, + "Abbreviation": { + "en": "4.2.2.2" + }, "Code": "4.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a festival or show--a large social event during which some people entertain other people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "51 Festivals", "DeletedAt": null, "Predefined": true }, @@ -127715,7 +151764,22 @@ "Name": { "en": "Put in front" }, + "Abbreviation": { + "en": "7.3.2.1" + }, "Code": "7.3.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to putting something in front of you or in front of something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127724,7 +151788,22 @@ "Name": { "en": "Sensible" }, + "Abbreviation": { + "en": "4.3.1.3.2" + }, "Code": "4.3.1.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being sensible--to think about what you do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88L Sensible Behavior, Senseless Behavior", "DeletedAt": null, "Predefined": true }, @@ -127733,7 +151812,22 @@ "Name": { "en": "Days of the week" }, + "Abbreviation": { + "en": "8.4.1.3.1" + }, "Code": "8.4.1.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the days of the week.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127742,7 +151836,22 @@ "Name": { "en": "Sing" }, + "Abbreviation": { + "en": "4.2.3.3" + }, "Code": "4.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to singing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33G Sing, Lament", "DeletedAt": null, "Predefined": true }, @@ -127751,7 +151860,22 @@ "Name": { "en": "Blemish" }, + "Abbreviation": { + "en": "8.3.7.8.2" + }, "Code": "8.3.7.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a blemish--something small and bad on the skin of a person or the surface of something, but not something serious, especially something wrong that does not affect how something works.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79L Blemished, Unblemished", "DeletedAt": null, "Predefined": true }, @@ -127760,7 +151884,22 @@ "Name": { "en": "King\u0027s family" }, + "Abbreviation": { + "en": "4.6.1.1" + }, "Code": "4.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the king\u0027s family.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127769,7 +151908,22 @@ "Name": { "en": "Wander" }, + "Abbreviation": { + "en": "7.2.1.3" + }, "Code": "7.2.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to wandering--to move slowly without any purpose or goal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127778,7 +151932,22 @@ "Name": { "en": "Speed" }, + "Abbreviation": { + "en": "8.4.8" + }, "Code": "8.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the speed at which a person acts or the speed at which something happens.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "68G Rapidity, Suddenness", "DeletedAt": null, "Predefined": true }, @@ -127787,7 +151956,22 @@ "Name": { "en": "Skin" }, + "Abbreviation": { + "en": "2.1.4" + }, "Code": "2.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the skin.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127796,7 +151980,22 @@ "Name": { "en": "Tense" }, + "Abbreviation": { + "en": "9.4.1.1" + }, "Code": "9.4.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for verbal auxiliaries, affixes, adverbs, and particles that indicate tense (also known as temporal deixis)--the time of a situation (event, activity, or state) in relation to a reference point, which is usually the time of utterance. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127805,7 +152004,22 @@ "Name": { "en": "Extend" }, + "Abbreviation": { + "en": "7.3.4.7" + }, "Code": "7.3.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to extending something--to move something so that it covers a greater distance or area.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "16 Non-Linear Movement; 84 Spatial Extensions; 84A Extension From a Source; 84B Extension To a Goal; 84C Extension Along a Path", "DeletedAt": null, "Predefined": true }, @@ -127814,7 +152028,22 @@ "Name": { "en": "Buddhism" }, + "Abbreviation": { + "en": "4.9.7.5" + }, "Code": "4.9.7.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words used in Buddhism.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127823,7 +152052,22 @@ "Name": { "en": "Think" }, + "Abbreviation": { + "en": "3.2" + }, "Code": "3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to thinking, thought processes, and kinds of thinking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "30 Think; 30A To Think, Thought", "DeletedAt": null, "Predefined": true }, @@ -127832,7 +152076,22 @@ "Name": { "en": "Measure" }, + "Abbreviation": { + "en": "8.2.8" + }, "Code": "8.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to measuring something--to find out the size, length, weight, or amount of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "804 Weights and Measures", + "LouwNidaCodes": "81 Spatial Dimensions; 81A Measure, To Measure; 6V Instruments for Measuring", "DeletedAt": null, "Predefined": true }, @@ -127841,7 +152100,22 @@ "Name": { "en": "Fill, cover" }, + "Abbreviation": { + "en": "7.5.9.2" + }, "Code": "7.5.9.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to filling a container or covering an area with something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127850,7 +152124,22 @@ "Name": { "en": "Contact" }, + "Abbreviation": { + "en": "3.5.1.4.2" + }, "Code": "3.5.1.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to contacting someone--to communicate with someone who is far away from you using some communication device such as a telephone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33C\u0027 Call", "DeletedAt": null, "Predefined": true }, @@ -127859,7 +152148,22 @@ "Name": { "en": "Fight for something good" }, + "Abbreviation": { + "en": "4.8.2.1" + }, "Code": "4.8.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to fighting for something good.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127868,7 +152172,22 @@ "Name": { "en": "Explain" }, + "Abbreviation": { + "en": "3.5.1.2.3" + }, "Code": "3.5.1.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to explaining something--to help someone to understand something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127877,7 +152196,22 @@ "Name": { "en": "Embarrassed" }, + "Abbreviation": { + "en": "3.4.2.2.2" + }, "Code": "3.4.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling embarrassed--to feel bad in front of other people because you did or said something that makes you seem stupid.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127886,7 +152220,22 @@ "Name": { "en": "Confident" }, + "Abbreviation": { + "en": "3.4.1.5" + }, "Code": "3.4.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling confident--to feel sure that you can do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127895,7 +152244,22 @@ "Name": { "en": "Up" }, + "Abbreviation": { + "en": "8.5.2.4" + }, "Code": "8.5.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the direction up.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127904,7 +152268,22 @@ "Name": { "en": "Maybe" }, + "Abbreviation": { + "en": "9.4.4.6.2" + }, "Code": "9.4.4.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses to indicate that he thinks it is possible that something may happen or be true, but he isn\u0027t certain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127913,7 +152292,22 @@ "Name": { "en": "Uncertain" }, + "Abbreviation": { + "en": "9.4.4.5" + }, "Code": "9.4.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that no one is certain that something is true, or when it is impossible to be certain that something is true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71C Certain, Uncertain", "DeletedAt": null, "Predefined": true }, @@ -127922,7 +152316,22 @@ "Name": { "en": "Danger" }, + "Abbreviation": { + "en": "4.4.2.2" + }, "Code": "4.4.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to danger--things and events that threaten to inflict damage, pain, or death.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "21 Danger, Risk, Safe, Save; 21A Danger", "DeletedAt": null, "Predefined": true }, @@ -127931,7 +152340,22 @@ "Name": { "en": "Secret" }, + "Abbreviation": { + "en": "3.2.3.3" + }, "Code": "3.2.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe whether or not something is known.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "28E Not Able To Be Known, Secret", "DeletedAt": null, "Predefined": true }, @@ -127940,7 +152364,22 @@ "Name": { "en": "Investigate a crime" }, + "Abbreviation": { + "en": "4.7.5.1" + }, "Code": "4.7.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to investigating a crime, accident, or criminal--to try to learn something about something bad that has happened because you want to know who did it, or to try to learn something about someone because you think they did something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "27C Learn Something Against Someone", "DeletedAt": null, "Predefined": true }, @@ -127949,7 +152388,22 @@ "Name": { "en": "Leaven" }, - "Code": "5.2.3.3.4", + "Abbreviation": { + "en": "5.2.3.3.4" + }, + "Code": "5.2.3.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for leaven--things that are added to food to make them ferment.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127958,7 +152412,22 @@ "Name": { "en": "Reason" }, + "Abbreviation": { + "en": "9.6.2.5.1" + }, "Code": "9.6.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that reason why someone does something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89G Cause and/or Reason", "DeletedAt": null, "Predefined": true }, @@ -127967,7 +152436,22 @@ "Name": { "en": "Leave an organization" }, + "Abbreviation": { + "en": "4.2.1.8.2" + }, "Code": "4.2.1.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to leaving an organization.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -127976,7 +152460,22 @@ "Name": { "en": "Slave" }, + "Abbreviation": { + "en": "4.5.4.4" + }, "Code": "4.5.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a slave--a person owned by another and obligated to work without wages.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "87E Slave, Free", "DeletedAt": null, "Predefined": true }, @@ -127985,7 +152484,22 @@ "Name": { "en": "Completely" }, + "Abbreviation": { + "en": "9.3.2" + }, "Code": "9.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "78D Completely, Enough", "DeletedAt": null, "Predefined": true }, @@ -127994,7 +152508,22 @@ "Name": { "en": "End, point" }, + "Abbreviation": { + "en": "8.6.7" + }, "Code": "8.6.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the end of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128003,7 +152532,22 @@ "Name": { "en": "Sea mammal" }, + "Abbreviation": { + "en": "1.6.1.1.7" + }, "Code": "1.6.1.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for mammals that live in the sea--whales and dolphins (phylum Chordata, class Mammalia, order Cetacea), seals (phylum Chordata, class Mammalia, order Pinnipedia), and sea cows (phylum Chordata, class Mammalia, order Sirenia).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128012,7 +152556,22 @@ "Name": { "en": "Drama" }, + "Abbreviation": { + "en": "4.2.5" + }, "Code": "4.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to drama.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "536 Drama; 545 Musical and Theatrical Productions", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128021,7 +152580,22 @@ "Name": { "en": "Outer part" }, + "Abbreviation": { + "en": "8.6.4.1" + }, "Code": "8.6.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the outside or surface part of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128030,7 +152604,22 @@ "Name": { "en": "Do" }, + "Abbreviation": { + "en": "9.1.2" + }, "Code": "9.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general verbs with a volitional subject (agent).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "42 Perform, Do; 42A Function; 42B Do, Perform", "DeletedAt": null, "Predefined": true }, @@ -128039,7 +152628,22 @@ "Name": { "en": "Mock" }, + "Abbreviation": { + "en": "3.5.1.8.3" + }, "Code": "3.5.1.8.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to mocking someone--doing or saying something to make people laugh at someone because you don\u0027t like them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128048,7 +152652,22 @@ "Name": { "en": "Religious things" }, + "Abbreviation": { + "en": "4.9.8" + }, "Code": "4.9.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a religious object.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "778 Sacred Objects and Places", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128057,7 +152676,22 @@ "Name": { "en": "Area of knowledge" }, + "Abbreviation": { + "en": "3.2.3.2" + }, "Code": "3.2.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an area of knowledge.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128066,7 +152700,22 @@ "Name": { "en": "Join an organization" }, + "Abbreviation": { + "en": "4.2.1.8.1" + }, "Code": "4.2.1.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to joining an organization.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "34B Join, Begin To Associate", "DeletedAt": null, "Predefined": true }, @@ -128075,7 +152724,22 @@ "Name": { "en": "Stick together" }, + "Abbreviation": { + "en": "7.5.2.2" + }, "Code": "7.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to two or more things cohering or sticking together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128084,7 +152748,22 @@ "Name": { "en": "Move slowly" }, + "Abbreviation": { + "en": "7.2.1.2.1" + }, "Code": "7.2.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving slowly.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128093,7 +152772,22 @@ "Name": { "en": "Beautiful" }, + "Abbreviation": { + "en": "2.3.1.8.1" + }, "Code": "2.3.1.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing someone or something that is beautiful--pleasing in appearance,.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79D Beautiful, Ugly", "DeletedAt": null, "Predefined": true }, @@ -128102,7 +152796,22 @@ "Name": { "en": "Talk about a subject" }, + "Abbreviation": { + "en": "3.5.1.2" + }, "Code": "3.5.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to talking about a subject.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128111,7 +152820,22 @@ "Name": { "en": "Speech style" }, + "Abbreviation": { + "en": "3.5.1.1.6" + }, "Code": "3.5.1.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing the way a person talks in a particular social situation.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "195 Sociolinguistics; Stylistic", + "LouwNidaCodes": "33D Language Levels", "DeletedAt": null, "Predefined": true }, @@ -128120,7 +152844,22 @@ "Name": { "en": "Food from leaves" }, + "Abbreviation": { + "en": "5.2.3.1.4" + }, "Code": "5.2.3.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to food from leaves and stems.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128129,7 +152868,22 @@ "Name": { "en": "Class, lesson" }, + "Abbreviation": { + "en": "3.6.4" + }, "Code": "3.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a class--the period of time when a subject is taught.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128138,7 +152892,22 @@ "Name": { "en": "Something used to see" }, + "Abbreviation": { + "en": "2.3.1.9" + }, "Code": "2.3.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to glasses and other things people use to help them see.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128147,7 +152916,22 @@ "Name": { "en": "Quarrel" }, + "Abbreviation": { + "en": "3.5.1.6.2" + }, "Code": "3.5.1.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to quarreling--to fight with words.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33Y\u0027 Argue, Quarrel", "DeletedAt": null, "Predefined": true }, @@ -128156,7 +152940,22 @@ "Name": { "en": "Beast of burden" }, + "Abbreviation": { + "en": "6.3.1.7" + }, "Code": "6.3.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to animals that are used as a beast of burden--either to ride, to carry loads, or to pull vehicles. The questions refer to horses, but can be applied to any animal.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128165,7 +152964,22 @@ "Name": { "en": "Fashionable" }, + "Abbreviation": { + "en": "3.4.1.1.5" + }, "Code": "3.4.1.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that many people like.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128174,7 +152988,22 @@ "Name": { "en": "Divide into pieces" }, + "Abbreviation": { + "en": "7.8" + }, "Code": "7.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to dividing something into parts or pieces, perhaps with the added idea of using care, or into a certain number of parts.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "63F Divide", "DeletedAt": null, "Predefined": true }, @@ -128183,7 +153012,22 @@ "Name": { "en": "Parts of a bird" }, + "Abbreviation": { + "en": "1.6.2.1" + }, "Code": "1.6.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of a bird, but not general parts that belong to all animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128192,7 +153036,22 @@ "Name": { "en": "Mouth" }, + "Abbreviation": { + "en": "2.1.1.4" + }, "Code": "2.1.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the mouth. Do not use this domain for words referring to eating, drinking, or speaking.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "23B Processes Involving the Mouth, Other Than Eating and Drinking x", "DeletedAt": null, "Predefined": true }, @@ -128201,7 +153060,22 @@ "Name": { "en": "Markers expecting a negative answer" }, + "Abbreviation": { + "en": "9.4.6.3" + }, "Code": "9.4.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that a negative answer is expected to a question.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "69E Markers for an Negative Response to Questions", "DeletedAt": null, "Predefined": true }, @@ -128210,7 +153084,22 @@ "Name": { "en": "Drought" }, + "Abbreviation": { + "en": "1.1.3.8" + }, "Code": "1.1.3.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to drought.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128219,7 +153108,22 @@ "Name": { "en": "Organize" }, + "Abbreviation": { + "en": "7.5.5" + }, "Code": "7.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to organizing things, people, events, and ideas--to think about and decide on the pattern a group of things should be arranged in, and then doing whatever is necessary to arrange them so that they can be used for some purpose. This domain is like the domain \u0027Arrange\u0027 except that \u0027Arrange\u0027 emphasizes physically moving the things, and the domain \u0027Organize\u0027 emphasizes the logical system. \u0027Organize\u0027 does not require that the things be moved, only that the logical pattern is specified.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "62B Organize", "DeletedAt": null, "Predefined": true }, @@ -128228,7 +153132,22 @@ "Name": { "en": "Altruistic, selfless" }, + "Abbreviation": { + "en": "4.3.4.4" + }, "Code": "4.3.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing a person who acts in an altruistic, selfless manner--to act out of concern for the welfare of others without concern for your own welfare.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128237,7 +153156,22 @@ "Name": { "en": "Control" }, + "Abbreviation": { + "en": "3.3.3.6" + }, "Code": "3.3.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to controlling someone--to force someone to do what you want them to do by ordering them to do it, or by doing something so that they have no choice. Also use this domain for words related to controlling something, for instance to control a machine, so that it does what you want it to do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128246,7 +153180,22 @@ "Name": { "en": "Not have" }, + "Abbreviation": { + "en": "7.4.6" + }, "Code": "7.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "57E Need, Lack", "DeletedAt": null, "Predefined": true }, @@ -128255,7 +153204,22 @@ "Name": { "en": "Animal actions" }, + "Abbreviation": { + "en": "1.6.4" + }, "Code": "1.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for actions of animals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128264,7 +153228,22 @@ "Name": { "en": "Free time" }, + "Abbreviation": { + "en": "4.2.9.1" + }, "Code": "4.2.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a holiday.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128273,7 +153252,22 @@ "Name": { "en": "Kinship" }, + "Abbreviation": { + "en": "4.1.9" + }, "Code": "4.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words for family relationships, not for specific terms.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "600 Kinship; 601 Kinship Terminology", + "LouwNidaCodes": "10 Kinship Terms", "DeletedAt": null, "Predefined": true }, @@ -128282,7 +153276,22 @@ "Name": { "en": "Love" }, + "Abbreviation": { + "en": "4.3.3" + }, "Code": "4.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to loving someone--to feel good about someone, want good things to happen to them, and want to do good things for them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25C Love, Affection, Compassion", "DeletedAt": null, "Predefined": true }, @@ -128291,7 +153300,22 @@ "Name": { "en": "Solutions of water" }, + "Abbreviation": { + "en": "1.3.5" + }, "Code": "1.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a mixture of water and a substance (such as salt or sugar) that dissolves in water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128300,7 +153324,22 @@ "Name": { "en": "Urinate, urine" }, + "Abbreviation": { + "en": "2.2.7" + }, "Code": "2.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to urination.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128309,7 +153348,22 @@ "Name": { "en": "Defend against accusation" }, + "Abbreviation": { + "en": "4.7.5.4" + }, "Code": "4.7.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to defending someone who has been accused of breaking a law.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33W\u0027 Defend, Excuse", "DeletedAt": null, "Predefined": true }, @@ -128318,7 +153372,22 @@ "Name": { "en": "Air" }, + "Abbreviation": { + "en": "1.1.2" + }, "Code": "1.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the air around us, including the air we breathe and the atmosphere around the earth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "2B Air", "DeletedAt": null, "Predefined": true }, @@ -128327,7 +153396,22 @@ "Name": { "en": "Strong, brittle" }, + "Abbreviation": { + "en": "8.3.6.1" + }, "Code": "8.3.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that describe something that is strong--not easily broken.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79M Strong, Weak", "DeletedAt": null, "Predefined": true }, @@ -128336,7 +153420,22 @@ "Name": { "en": "Names of rivers" }, + "Abbreviation": { + "en": "9.7.2.9" + }, "Code": "9.7.2.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the rivers in the language area. Only include the names of rivers outside the language area if your language has borrowed or adapted the name and you talk about them in your language.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128345,7 +153444,22 @@ "Name": { "en": "Take somewhere" }, + "Abbreviation": { + "en": "7.3.3" + }, "Code": "7.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to taking something or someone somewhere.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15W Lead, Bring, Take", "DeletedAt": null, "Predefined": true }, @@ -128354,7 +153468,22 @@ "Name": { "en": "Strong" }, + "Abbreviation": { + "en": "2.4.1" + }, "Code": "2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that related to being strong, such as being able to lift a heavy object or being able to work hard.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79M Strong, Weak", "DeletedAt": null, "Predefined": true }, @@ -128363,7 +153492,22 @@ "Name": { "en": "Only" }, + "Abbreviation": { + "en": "8.1.5.7" + }, "Code": "8.1.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to only a particular number or amount of people or things--no more than one, or no more than a particular number or amount.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128372,7 +153516,22 @@ "Name": { "en": "Speak well" }, + "Abbreviation": { + "en": "3.5.1.1.7" + }, "Code": "3.5.1.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to speaking well.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128381,7 +153540,22 @@ "Name": { "en": "Independent" }, + "Abbreviation": { + "en": "4.5.4.7" + }, "Code": "4.5.4.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being independent.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128390,7 +153564,22 @@ "Name": { "en": "Empty" }, + "Abbreviation": { + "en": "8.1.8.1" + }, "Code": "8.1.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to being empty.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59D Full, Empty", "DeletedAt": null, "Predefined": true }, @@ -128399,7 +153588,22 @@ "Name": { "en": "Alert" }, + "Abbreviation": { + "en": "3.1.2.1" + }, "Code": "3.1.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a mental state when the mind is working hard.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "27F Be Ready To Learn, Pay Attention", "DeletedAt": null, "Predefined": true }, @@ -128408,7 +153612,22 @@ "Name": { "en": "Sacred writings" }, + "Abbreviation": { + "en": "4.9.3.1" + }, "Code": "4.9.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to sacred writings. Examples are only given for the Christian sacred writings. However you should include words referring to the holy books of all religions .", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128417,7 +153636,22 @@ "Name": { "en": "Big container, volume" }, + "Abbreviation": { + "en": "8.2.5.1" + }, "Code": "8.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the volume of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81E Specific Measures of Volume", "DeletedAt": null, "Predefined": true }, @@ -128426,7 +153660,22 @@ "Name": { "en": "Move past, over, through" }, + "Abbreviation": { + "en": "7.2.3.5" + }, "Code": "7.2.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving past, over, or through something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15C Pass, Cross Over, Go Through, Go Around", "DeletedAt": null, "Predefined": true }, @@ -128435,7 +153684,22 @@ "Name": { "en": "Fishing" }, + "Abbreviation": { + "en": "6.4.5" + }, "Code": "6.4.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to catching fish.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "226 Fishing; 225 Marine Hunting", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128444,7 +153708,22 @@ "Name": { "en": "Distribution" }, + "Abbreviation": { + "en": "9.6.1.7" + }, "Code": "9.6.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that an event is distributed throughout a group, area, or time span.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89P Distribution", "DeletedAt": null, "Predefined": true }, @@ -128453,7 +153732,22 @@ "Name": { "en": "Accustomed to" }, + "Abbreviation": { + "en": "6.1.8.1" + }, "Code": "6.1.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being accustomed to something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128462,7 +153756,22 @@ "Name": { "en": "Realize" }, + "Abbreviation": { + "en": "3.2.2.6" + }, "Code": "3.2.2.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to realizing something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128471,7 +153780,22 @@ "Name": { "en": "Unfriendly" }, + "Abbreviation": { + "en": "4.1.6.1" + }, "Code": "4.1.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being antisocial--when someone does not want to talk to other people or be friends with them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128480,7 +153804,22 @@ "Name": { "en": "Debate" }, + "Abbreviation": { + "en": "3.5.1.6" + }, "Code": "3.5.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to debating--for two or more people to discuss some issue and try to persuade the other person to accept one\u0027s view.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33X\u0027 Dispute, Debate", "DeletedAt": null, "Predefined": true }, @@ -128489,7 +153828,22 @@ "Name": { "en": "Damage" }, + "Abbreviation": { + "en": "7.9.1" + }, "Code": "7.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to damaging something--to do something bad to something, but not completely ruin it so that it can\u0027t be used any more.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "20 Violence, Harm, Destroy, Kill; 20B Harm, wound", "DeletedAt": null, "Predefined": true }, @@ -128498,7 +153852,22 @@ "Name": { "en": "Fishing equipment" }, + "Abbreviation": { + "en": "6.4.5.3" + }, "Code": "6.4.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to fishing equipment.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "227 Fishing Gear", + "LouwNidaCodes": "6C Instruments used in Fishing", "DeletedAt": null, "Predefined": true }, @@ -128507,7 +153876,22 @@ "Name": { "en": "Nephew, niece" }, + "Abbreviation": { + "en": "4.1.9.1.8" + }, "Code": "4.1.9.1.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to your nephews and nieces.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128516,7 +153900,22 @@ "Name": { "en": "Early" }, + "Abbreviation": { + "en": "8.4.5.3.1" + }, "Code": "8.4.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that something happens early--before the expected time, before the usual time, or before the time that was agreed on. Some words may include the idea that it is good that the event happened early. Other words may include the idea that it is bad that the event happened early.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128525,7 +153924,22 @@ "Name": { "en": "Support" }, + "Abbreviation": { + "en": "7.3.4.6" + }, "Code": "7.3.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to keeping something from falling.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128534,7 +153948,22 @@ "Name": { "en": "Air force" }, + "Abbreviation": { + "en": "4.8.3.6.3" + }, "Code": "4.8.3.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the air force.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "707 Air Forces", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128543,7 +153972,22 @@ "Name": { "en": "Demonstrate" }, + "Abbreviation": { + "en": "3.5.1.6.1" + }, "Code": "3.5.1.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to demonstrating something--to do something that shows the truth of a statement, or shows how to do something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128552,7 +153996,22 @@ "Name": { "en": "Terms of endearment" }, + "Abbreviation": { + "en": "9.7.1.7" + }, "Code": "9.7.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for terms of endearment--a name used by lovers or spouses to express love or intimacy. Some languages may have special names used by close friends.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128561,7 +154020,22 @@ "Name": { "en": "Reflect, mirror" }, + "Abbreviation": { + "en": "2.3.1.7" + }, "Code": "2.3.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to reflecting light.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128570,7 +154044,22 @@ "Name": { "en": "Speak with others" }, + "Abbreviation": { + "en": "3.5.1.4" + }, "Code": "3.5.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to carrying on a conversation with other people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "521 Conversation", + "LouwNidaCodes": "33K Converse, Discuss", "DeletedAt": null, "Predefined": true }, @@ -128579,7 +154068,22 @@ "Name": { "en": "Vicinity" }, + "Abbreviation": { + "en": "8.5.4.1" + }, "Code": "8.5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a vicinity--an area around something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "80A Space, Place", "DeletedAt": null, "Predefined": true }, @@ -128588,7 +154092,22 @@ "Name": { "en": "Do evil to" }, + "Abbreviation": { + "en": "4.3.4.1" + }, "Code": "4.3.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to doing evil to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88P Treat Badly", "DeletedAt": null, "Predefined": true }, @@ -128597,7 +154116,22 @@ "Name": { "en": "Cloth" }, + "Abbreviation": { + "en": "6.6.1.1" + }, "Code": "6.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cloth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128606,7 +154140,22 @@ "Name": { "en": "Give pledge, bond" }, + "Abbreviation": { + "en": "6.8.5.2" + }, "Code": "6.8.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to giving a pledge to replay a loan.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128615,7 +154164,22 @@ "Name": { "en": "Community" }, + "Abbreviation": { + "en": "4.6.7.4" + }, "Code": "4.6.7.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a community.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "620 Community", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128624,7 +154188,22 @@ "Name": { "en": "Container" }, + "Abbreviation": { + "en": "6.7.7" + }, "Code": "6.7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to containers.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "6P Containers", "DeletedAt": null, "Predefined": true }, @@ -128633,7 +154212,22 @@ "Name": { "en": "Design" }, + "Abbreviation": { + "en": "9.1.2.4" + }, "Code": "9.1.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to designing something--to decide and plan how something new will look and work.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128642,7 +154236,22 @@ "Name": { "en": "Cheap" }, + "Abbreviation": { + "en": "6.8.4.3.2" + }, "Code": "6.8.4.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a cheap price.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128651,7 +154260,22 @@ "Name": { "en": "Insect" }, + "Abbreviation": { + "en": "1.6.1.7" + }, "Code": "1.6.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the names of insect species (phylum Arthropoda, class Insecta). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136k Insect", + "LouwNidaCodes": "4C Insects", "DeletedAt": null, "Predefined": true }, @@ -128660,7 +154284,22 @@ "Name": { "en": "Combinative relation" }, + "Abbreviation": { + "en": "9.6.1.4" + }, "Code": "9.6.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating a combinative relation between two things.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89V Combinative Relation", "DeletedAt": null, "Predefined": true }, @@ -128669,7 +154308,22 @@ "Name": { "en": "Go first" }, + "Abbreviation": { + "en": "7.2.5.1" + }, "Code": "7.2.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to going first or going ahead of someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15O Come/Go Prior To; 15P Come/Go In Front Of", "DeletedAt": null, "Predefined": true }, @@ -128678,7 +154332,22 @@ "Name": { "en": "Accounting" }, + "Abbreviation": { + "en": "6.8.7" + }, "Code": "6.8.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to accounting--to keep records of money.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "451 Accounting", + "LouwNidaCodes": "57T Keep Records", "DeletedAt": null, "Predefined": true }, @@ -128687,7 +154356,22 @@ "Name": { "en": "Wedding" }, + "Abbreviation": { + "en": "2.6.1.2" + }, "Code": "2.6.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the wedding ceremony.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "585 Nuptials", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128696,7 +154380,22 @@ "Name": { "en": "Smell" }, + "Abbreviation": { + "en": "2.3.4" + }, "Code": "2.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to smelling something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "24C Smell; 79I Fragrance, Odor", "DeletedAt": null, "Predefined": true }, @@ -128705,7 +154404,22 @@ "Name": { "en": "Back" }, + "Abbreviation": { + "en": "8.6.1.1" + }, "Code": "8.6.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the back part of something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128714,7 +154428,22 @@ "Name": { "en": "Romantic love" }, + "Abbreviation": { + "en": "2.6.1.5" + }, "Code": "2.6.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to romantic love.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128723,7 +154452,22 @@ "Name": { "en": "Hortative" }, + "Abbreviation": { + "en": "9.4.3.2" + }, "Code": "9.4.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for ways of saying that someone should do something. If I say someone should do something, I think it is good that he does it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71D Should, Ought", "DeletedAt": null, "Predefined": true }, @@ -128732,7 +154476,22 @@ "Name": { "en": "Meaningless" }, + "Abbreviation": { + "en": "3.5.8.2" + }, "Code": "3.5.8.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is meaningless--something someone says that doesn\u0027t mean anything.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128741,7 +154500,22 @@ "Name": { "en": "Names of countries" }, + "Abbreviation": { + "en": "9.7.2.1" + }, "Code": "9.7.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the proper names of the countries that exist around the language community, especially those countries where your language is spoken. Include the name of your own country. Do not list every country in the world, unless your language has developed special names or pronunciations for those countries. Include any country that you refer to in your language, especially those names whose pronunciation you have adapted to fit your language. Give the form of the name that you use, rather than the official spelling. For instance the Japanese refer to their country as \u0027Nihon\u0027, but in English will call it \u0027Japan\u0027. So \u0027Japan\u0027 is an English word and should go into an English dictionary. But \u0027Nihon\u0027 is not an English word and should not go in the dictionary.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128750,7 +154524,22 @@ "Name": { "en": "Reptile" }, + "Abbreviation": { + "en": "1.6.1.3" + }, "Code": "1.6.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to reptiles (phylum Chordata, class Reptilia).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136h Reptile", + "LouwNidaCodes": "4D Reptiles and Other \u0027Creeping Things\u0027", "DeletedAt": null, "Predefined": true }, @@ -128759,7 +154548,22 @@ "Name": { "en": "Men\u0027s clothing" }, + "Abbreviation": { + "en": "5.3.1" + }, "Code": "5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to men\u0027s clothing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128768,7 +154572,22 @@ "Name": { "en": "Alcohol preparation" }, + "Abbreviation": { + "en": "5.2.3.7.1" + }, "Code": "5.2.3.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to making alcoholic beverages.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "274 Beverage Industries", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128777,7 +154596,22 @@ "Name": { "en": "Faithful" }, + "Abbreviation": { + "en": "4.3.5.2" + }, "Code": "4.3.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being faithful--to continue to love and do good to someone so that they can always trust you.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128786,7 +154620,22 @@ "Name": { "en": "Roof" }, + "Abbreviation": { + "en": "6.5.2.2" + }, "Code": "6.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a roof.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128795,7 +154644,22 @@ "Name": { "en": "Window" }, + "Abbreviation": { + "en": "6.5.2.5" + }, "Code": "6.5.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a window.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128804,7 +154668,22 @@ "Name": { "en": "Radio, television" }, + "Abbreviation": { + "en": "3.5.9.1" + }, "Code": "3.5.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to radio and television.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "207 Radio and Television", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128813,7 +154692,22 @@ "Name": { "en": "Catch" }, + "Abbreviation": { + "en": "7.3.1.2" + }, "Code": "7.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for verbs for catching something that is thrown or dropped", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128822,7 +154716,22 @@ "Name": { "en": "Prefer" }, + "Abbreviation": { + "en": "3.4.1.1.3" + }, "Code": "3.4.1.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to preferring one thing over another--to like something more than something else.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128831,7 +154740,22 @@ "Name": { "en": "Growing trees" }, + "Abbreviation": { + "en": "6.2.1.7" + }, "Code": "6.2.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to growing trees. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for coconuts and coffee, since they are so common around the world.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "245 Arboriculture", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128840,7 +154764,22 @@ "Name": { "en": "Legal contract" }, + "Abbreviation": { + "en": "4.7.8" + }, "Code": "4.7.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a legal contract.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "675 Contracts", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128849,7 +154788,22 @@ "Name": { "en": "Religious person" }, + "Abbreviation": { + "en": "4.9.7.1" + }, "Code": "4.9.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to religious practitioners--people who practice a religion, who are members of the religion, believe in the religion, leaders of the religion, and followers of the religion. Each religion has its own terms for religious practitioners. List these terms separately for each religion. The examples given below are for the Christian religion.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "791 Magicians and Diviners; 792 Prophets and Ascetics; Holy Men; 793 Priesthood", + "LouwNidaCodes": "31J Be a Believer, Christian Faith; 53I Roles and Functions", "DeletedAt": null, "Predefined": true }, @@ -128858,7 +154812,22 @@ "Name": { "en": "Point at" }, + "Abbreviation": { + "en": "3.5.6.2" + }, "Code": "3.5.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to pointing at something--to move a part of your body toward something so that people will look at it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128867,7 +154836,22 @@ "Name": { "en": "Participate" }, + "Abbreviation": { + "en": "4.2.1.6" + }, "Code": "4.2.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to participating in a group--to do things with a group.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128876,7 +154860,22 @@ "Name": { "en": "Cutting tool" }, + "Abbreviation": { + "en": "6.7.1" + }, "Code": "6.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to cutting tools.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128885,7 +154884,22 @@ "Name": { "en": "New" }, + "Abbreviation": { + "en": "8.4.6.5.3" + }, "Code": "8.4.6.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something new--a word describing something that has only existed for a short time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "58K New, Old", "DeletedAt": null, "Predefined": true }, @@ -128894,7 +154908,22 @@ "Name": { "en": "Prepared food" }, + "Abbreviation": { + "en": "5.2.3.4" + }, "Code": "5.2.3.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to prepared food. Cultures vary widely in the number and types of foods they prepare, and in how they classify them. For instance the English distinction between main dish and side dish is not found in the classification system of other languages. If your language has well-recognized subcategories, you can set up a separate subdomain for each. The questions below are based on the main ingredient in the dish.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "263 Condiments", + "LouwNidaCodes": "5B Condiments", "DeletedAt": null, "Predefined": true }, @@ -128903,7 +154932,22 @@ "Name": { "en": "Discourse markers" }, + "Abbreviation": { + "en": "9.6.3" + }, "Code": "9.6.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for conjunctions and particles that function on the discourse level, and whose meaning and function is uncertain.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "91 Discourse Markers", "DeletedAt": null, "Predefined": true }, @@ -128912,7 +154956,22 @@ "Name": { "en": "Fable, myth" }, + "Abbreviation": { + "en": "3.5.4.1" + }, "Code": "3.5.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a fable or myth--a story that people tell that is not true.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "118 Fiction", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128921,7 +154980,22 @@ "Name": { "en": "Live, stay" }, + "Abbreviation": { + "en": "5.9" + }, "Code": "5.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to living in a place.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "85E Dwell, Reside", "DeletedAt": null, "Predefined": true }, @@ -128930,7 +155004,22 @@ "Name": { "en": "Malnutrition, starvation" }, + "Abbreviation": { + "en": "2.5.2.1" + }, "Code": "2.5.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to not having enough food.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128939,7 +155028,22 @@ "Name": { "en": "Study" }, + "Abbreviation": { + "en": "3.2.2.1" + }, "Code": "3.2.2.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to studying--to try to learn something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "120 Research Methods; Methodology; 121 Theoretical Orientation in Research and Its Results; 122 Practical Preparations in Conducting Fieldwork; 123 Observational Role in Research; 124 Interviewing in Research; 125 Tests and Schedules Administered In the Field; 126 Recording and Collecting In the Field; 127 Historical and Archival Research; 128 Organization and Analysis of Results of Research", + "LouwNidaCodes": "27D Try To Learn", "DeletedAt": null, "Predefined": true }, @@ -128948,7 +155052,22 @@ "Name": { "en": "Poetry" }, + "Abbreviation": { + "en": "3.5.4.4" + }, "Code": "3.5.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to poetry.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "5310 Verbal Arts", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128957,7 +155076,22 @@ "Name": { "en": "Contentment" }, + "Abbreviation": { + "en": "3.4.1.1.6" + }, "Code": "3.4.1.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling contented.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "25G Content, Satisfied", "DeletedAt": null, "Predefined": true }, @@ -128966,7 +155100,22 @@ "Name": { "en": "Working with machines" }, + "Abbreviation": { + "en": "6.6.8" + }, "Code": "6.6.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to working with machines.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "390 Capital Goods Industry; 391 Hardware Manufacture; 392 Machine Industries; 393 Electrical Supplies Industry; 394 Manufacture of Heating and Lighting Appliances; 395 Manufacture of Optical and Photographic Equipment; 396 Shipbuilding; 397 Railway Equipment Industry; 398 Manufacture of Vehicles; 399 Aircraft Industry; 719 Munitions Industries", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128975,7 +155124,22 @@ "Name": { "en": "Guess" }, + "Abbreviation": { + "en": "3.2.2.4" + }, "Code": "3.2.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to answering a question when one is unsure of the answer.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -128984,7 +155148,22 @@ "Name": { "en": "Increase" }, + "Abbreviation": { + "en": "8.1.4.2" + }, "Code": "8.1.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something increasing in number or amount--to be more than before.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59G Increase, Decrease", "DeletedAt": null, "Predefined": true }, @@ -128993,7 +155172,22 @@ "Name": { "en": "Judaism" }, + "Abbreviation": { + "en": "4.9.7.6" + }, "Code": "4.9.7.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words used in Judaism.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129002,7 +155196,22 @@ "Name": { "en": "News, message" }, - "Code": "3.5.2.2", + "Abbreviation": { + "en": "3.5.2.2" + }, + "Code": "3.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something someone says, which relays information from someone else, or about something someone has done.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129011,7 +155220,22 @@ "Name": { "en": "Right, proper" }, + "Abbreviation": { + "en": "8.3.7.7" + }, "Code": "8.3.7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something, such as a tool or way of doing something, that is proper for a particular time, place, purpose, or job. The words in this domain involve a comparison between two things, an item and a setting. An evaluation is made as to how good the item is in the setting. The words may be used only of certain types of items, certain types of settings, or certain types of usefulness.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "66 Proper, Improper", "DeletedAt": null, "Predefined": true }, @@ -129020,7 +155244,22 @@ "Name": { "en": "Mourn" }, + "Abbreviation": { + "en": "2.6.6.4" + }, "Code": "2.6.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to mourning a death--to feel bad because someone died and to show this feeling in various ways. Include whatever cultural practices are used.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "765 Mourning; 768 Social Readjustments to Death; 769 Cult of the Dead", + "LouwNidaCodes": "25L Laugh, Cry, Groan x", "DeletedAt": null, "Predefined": true }, @@ -129029,7 +155268,22 @@ "Name": { "en": "First" }, + "Abbreviation": { + "en": "8.4.5.1.2" + }, "Code": "8.4.5.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something happening first--to be before all other things in order or time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129038,7 +155292,22 @@ "Name": { "en": "Medicinal plants" }, + "Abbreviation": { + "en": "2.5.7.3" + }, "Code": "2.5.7.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for plants that are used for medicine.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129047,7 +155316,22 @@ "Name": { "en": "Discontent" }, + "Abbreviation": { + "en": "3.4.2.1.9" + }, "Code": "3.4.2.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling discontent.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129056,7 +155340,22 @@ "Name": { "en": "Wet" }, + "Abbreviation": { + "en": "1.3.3" + }, "Code": "1.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to when something has water on it or water has soaked into it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "47C Application and Removal of Liquids or Masses; 79O Wet, Dry", "DeletedAt": null, "Predefined": true }, @@ -129065,7 +155364,22 @@ "Name": { "en": "Check" }, + "Abbreviation": { + "en": "3.2.2.2" + }, "Code": "3.2.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to checking something--when you think something is true or correct, but you aren\u0027t sure, you do something to find out if it is true or correct.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129074,7 +155388,22 @@ "Name": { "en": "Temporary" }, + "Abbreviation": { + "en": "8.4.2.4" + }, "Code": "8.4.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to something being temporary.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129083,7 +155412,22 @@ "Name": { "en": "Unusual birth" }, + "Abbreviation": { + "en": "2.6.3.6" + }, "Code": "2.6.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to an unusual birth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "845 Difficult and Unusual Births", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129092,7 +155436,22 @@ "Name": { "en": "Complain" }, + "Abbreviation": { + "en": "3.5.1.8.5" + }, "Code": "3.5.1.8.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to complaining--to say that you don\u0027t like something.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33O\u0027 Complain", "DeletedAt": null, "Predefined": true }, @@ -129101,7 +155460,22 @@ "Name": { "en": "Language and thought" }, + "Abbreviation": { + "en": "3" + }, "Code": "3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to mental and verbal activity. This domain is primarily for grouping many related domains. Therefore there may be no general word in a language to cover such a broad area of meaning.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129110,7 +155484,22 @@ "Name": { "en": "Travel by water" }, + "Abbreviation": { + "en": "7.2.4.2" + }, "Code": "7.2.4.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to traveling by water.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "500 Water and Air Transport; 501 Boats; 502 Navigation; 503 Waterways Improvements; 504 Port Facilities; 505 Water Transport", + "LouwNidaCodes": "54 Maritime Activities", "DeletedAt": null, "Predefined": true }, @@ -129119,7 +155508,22 @@ "Name": { "en": "Space, room" }, + "Abbreviation": { + "en": "8.5.4.3" + }, "Code": "8.5.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the amount of empty space that is available to be used.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129128,7 +155532,22 @@ "Name": { "en": "Hang" }, + "Abbreviation": { + "en": "7.3.2.4.1" + }, "Code": "7.3.2.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to hanging something, and for words describing something that has been hung.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "18B Fasten, Stick To", "DeletedAt": null, "Predefined": true }, @@ -129137,7 +155556,22 @@ "Name": { "en": "Grandson, granddaughter" }, + "Abbreviation": { + "en": "4.1.9.1.5" + }, "Code": "4.1.9.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to your grandchildren.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "603 Grandparents and Grandchildren", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129146,7 +155580,22 @@ "Name": { "en": "Out, outside" }, + "Abbreviation": { + "en": "8.5.1.4.1" + }, "Code": "8.5.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is outside of another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83D Around, About, Outside", "DeletedAt": null, "Predefined": true }, @@ -129155,7 +155604,22 @@ "Name": { "en": "Move sideways" }, + "Abbreviation": { + "en": "7.2.2.3" + }, "Code": "7.2.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving in a sideways direction--the person is facing one direction, but moving toward their side.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129164,7 +155628,22 @@ "Name": { "en": "Foolish talk" }, + "Abbreviation": { + "en": "3.5.5" + }, "Code": "3.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to foolish talk--something someone says that other people think is silly or stupid.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33N\u0027 Foolish Talk", "DeletedAt": null, "Predefined": true }, @@ -129173,7 +155652,22 @@ "Name": { "en": "Impolite" }, + "Abbreviation": { + "en": "4.3.7.1" + }, "Code": "4.3.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being impolite.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129182,7 +155676,22 @@ "Name": { "en": "Natural" }, + "Abbreviation": { + "en": "1.7.1" + }, "Code": "1.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is natural--something in the world around us, as opposed to something that has been made or changed by people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "79B Natural, Spiritual", "DeletedAt": null, "Predefined": true }, @@ -129191,7 +155700,22 @@ "Name": { "en": "Multiple births" }, + "Abbreviation": { + "en": "2.6.3.7" + }, "Code": "2.6.3.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to multiple births--when a woman give birth to more than one baby at the same time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129200,7 +155724,22 @@ "Name": { "en": "Break, wear out" }, + "Abbreviation": { + "en": "7.9" + }, "Code": "7.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something breaking or wearing out, especially for things that people make and use.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129209,7 +155748,22 @@ "Name": { "en": "Laws" }, + "Abbreviation": { + "en": "4.7.1" + }, "Code": "4.7.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a specific law or set of laws.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "671 Legal Norms", + "LouwNidaCodes": "33G\u0027 Law, Regulation, Ordinance", "DeletedAt": null, "Predefined": true }, @@ -129218,7 +155772,22 @@ "Name": { "en": "Custom" }, + "Abbreviation": { + "en": "4.3.9.1" + }, "Code": "4.3.9.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to customs--a particular practice of a cultural group.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "41B Custom, Tradition", "DeletedAt": null, "Predefined": true }, @@ -129227,7 +155796,22 @@ "Name": { "en": "Say nothing" }, + "Abbreviation": { + "en": "3.5.1.1.5" + }, "Code": "3.5.1.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being silent--to say nothing for some time.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33H Keep Silent", "DeletedAt": null, "Predefined": true }, @@ -129236,7 +155820,22 @@ "Name": { "en": "Liquid" }, + "Abbreviation": { + "en": "1.2.3.1" + }, "Code": "1.2.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to liquids.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129245,7 +155844,22 @@ "Name": { "en": "Military organization" }, + "Abbreviation": { + "en": "4.8.3.6" + }, "Code": "4.8.3.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to military organizations.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "700 Armed Forces; 701 Military Organization; 702 Recruitment and Training; 703 Discipline and Morale; 704 Ground Combat Forces; 705 Supply and Commissariat; 708 Auxiliary Corps", + "LouwNidaCodes": "55C Army", "DeletedAt": null, "Predefined": true }, @@ -129254,7 +155868,22 @@ "Name": { "en": "Soldier" }, + "Abbreviation": { + "en": "4.8.3.6.4" + }, "Code": "4.8.3.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a soldier.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "55D Soldiers, Officers", "DeletedAt": null, "Predefined": true }, @@ -129263,7 +155892,22 @@ "Name": { "en": "Animism " }, + "Abbreviation": { + "en": "4.9.7.7" + }, "Code": "4.9.7.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words used in Animism--the belief in spirits.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "774 Animism", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129272,7 +155916,22 @@ "Name": { "en": "Usual" }, + "Abbreviation": { + "en": "8.3.5.3.1" + }, "Code": "8.3.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is usual.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129281,7 +155940,22 @@ "Name": { "en": "Divorce" }, + "Abbreviation": { + "en": "2.6.1.4" + }, "Code": "2.6.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to divorce--to legally end your marriage.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "586 Termination of Marriage", + "LouwNidaCodes": "34J Marriage, Divorce", "DeletedAt": null, "Predefined": true }, @@ -129290,7 +155964,22 @@ "Name": { "en": "Crafts" }, + "Abbreviation": { + "en": "6.6.4" + }, "Code": "6.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to crafts.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "280 Leather, Textiles and Fabrics", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129299,7 +155988,22 @@ "Name": { "en": "Lead" }, + "Abbreviation": { + "en": "4.5.3.1" + }, "Code": "4.5.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to one person leading or controlling other people because they have authority over them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "36 Guide, Discipline, Follow; 36A Guide, Lead", "DeletedAt": null, "Predefined": true }, @@ -129308,7 +156012,22 @@ "Name": { "en": "Grow, get bigger" }, + "Abbreviation": { + "en": "2.6.4.6" + }, "Code": "2.6.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to people, animals, or plants growing and getting bigger.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "145 Ontogenetic Data; 856 Development and Maturation", + "LouwNidaCodes": "23K Grow, Growth", "DeletedAt": null, "Predefined": true }, @@ -129317,7 +156036,22 @@ "Name": { "en": "Business organization" }, + "Abbreviation": { + "en": "6.9" + }, "Code": "6.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to business organization.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "470 Business and Industrial Organization; 471 Ownership and Control of Capital; 472 Individual Enterprise; 473 Corporate Organization; 474 Cooperative Organization; 475 State Enterprise; 476 Mutual Aid; 477 Competition", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129326,7 +156060,22 @@ "Name": { "en": "Table" }, + "Abbreviation": { + "en": "5.1.1.1" + }, "Code": "5.1.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a table.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129335,7 +156084,22 @@ "Name": { "en": "Youth" }, + "Abbreviation": { + "en": "2.6.4.3" + }, "Code": "2.6.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a youth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "881 Puberty and Initiation; 882 Status of Adolescents; 883 Adolescent Activities; 884 Majority", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129344,7 +156108,22 @@ "Name": { "en": "Here, there" }, + "Abbreviation": { + "en": "8.5.1" + }, "Code": "8.5.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to a place in relation to the speaker or listener.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "83A Here, There", "DeletedAt": null, "Predefined": true }, @@ -129353,7 +156132,22 @@ "Name": { "en": "Prepare something for use" }, + "Abbreviation": { + "en": "6.1.2.6.1" + }, "Code": "6.1.2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to preparing something so that it can be used for some purpose.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129362,7 +156156,22 @@ "Name": { "en": "Body condition" }, + "Abbreviation": { + "en": "2.4" + }, "Code": "2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words related to the condition of the body.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "147 Physiological Data", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129371,7 +156180,22 @@ "Name": { "en": "All" }, + "Abbreviation": { + "en": "8.1.5" + }, "Code": "8.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to all.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "59C All, Any, Each, Every", "DeletedAt": null, "Predefined": true }, @@ -129380,7 +156204,22 @@ "Name": { "en": "Plant diseases" }, + "Abbreviation": { + "en": "1.5.7" + }, "Code": "1.5.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to plant diseases.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "137c Parasites", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129389,7 +156228,22 @@ "Name": { "en": "Conflict" }, + "Abbreviation": { + "en": "4.8" + }, "Code": "4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to conflict between people, including quarreling, fighting, and war. The words in this domain should be very general, rather than referring to specific kinds of conflict.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "578 Ingroup Antagonisms", + "LouwNidaCodes": "39 Hostility, Strife", "DeletedAt": null, "Predefined": true }, @@ -129398,7 +156252,22 @@ "Name": { "en": "Unmarried" }, + "Abbreviation": { + "en": "2.6.1.3" + }, "Code": "2.6.1.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unmarried.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "589 Celibacy", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129407,7 +156276,22 @@ "Name": { "en": "Social group" }, + "Abbreviation": { + "en": "4.2.1.9" + }, "Code": "4.2.1.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an organization.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "575 Sodalities", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129416,7 +156300,22 @@ "Name": { "en": "Condition" }, + "Abbreviation": { + "en": "9.6.2.8" + }, "Code": "9.6.2.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a clause in a conditional sentence (If this is true, then that is true). The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "89J Condition", "DeletedAt": null, "Predefined": true }, @@ -129425,7 +156324,22 @@ "Name": { "en": "Impossible" }, + "Abbreviation": { + "en": "9.4.4.9" + }, "Code": "9.4.4.9", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that a speaker uses to indicate that he thinks something is impossible.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "71A Possible, Impossible", "DeletedAt": null, "Predefined": true }, @@ -129434,7 +156348,22 @@ "Name": { "en": "Wide" }, + "Abbreviation": { + "en": "8.2.4" + }, "Code": "8.2.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being wide--a word describing something like a road or river that is far from one side to the other side.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "81D Narrow, Wide", "DeletedAt": null, "Predefined": true }, @@ -129443,7 +156372,22 @@ "Name": { "en": "Substance, matter" }, + "Abbreviation": { + "en": "1.2.2" + }, "Code": "1.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words referring to matter--what something is made out of, or a type of solid, liquid, or gas.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "2 Natural Substances", "DeletedAt": null, "Predefined": true }, @@ -129452,7 +156396,22 @@ "Name": { "en": "Calendar" }, + "Abbreviation": { + "en": "8.4.1.1" + }, "Code": "8.4.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the calendar.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129461,7 +156420,22 @@ "Name": { "en": "Instead" }, + "Abbreviation": { + "en": "9.6.1.5.2" + }, "Code": "9.6.1.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words indicating that something is true of one thing (or person) instead of another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129470,7 +156444,22 @@ "Name": { "en": "Conjunctions" }, + "Abbreviation": { + "en": "9.2.5" + }, "Code": "9.2.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain to list all conjunctions.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129479,7 +156468,22 @@ "Name": { "en": "Discriminate, be unfair" }, + "Abbreviation": { + "en": "4.7.9.4" + }, "Code": "4.7.9.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being unfair to someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88D\u0027 Show Favoritism, Prejudice", "DeletedAt": null, "Predefined": true }, @@ -129488,7 +156492,22 @@ "Name": { "en": "Cousin" }, + "Abbreviation": { + "en": "4.1.9.1.7" + }, "Code": "4.1.9.1.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to your cousins.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "605 Cousins", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129497,7 +156516,22 @@ "Name": { "en": "Governing body" }, + "Abbreviation": { + "en": "4.6.3.1" + }, "Code": "4.6.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a governing body--an organization within the government.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "623 Councils; 646 Parliament; 647 Administrative Agencies", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129506,7 +156540,22 @@ "Name": { "en": "Interested" }, + "Abbreviation": { + "en": "3.4.1.4" + }, "Code": "3.4.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to feeling interested.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129515,7 +156564,22 @@ "Name": { "en": "Cause of disease" }, + "Abbreviation": { + "en": "2.5.5" + }, "Code": "2.5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to the cause of disease.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "164 Morbidity; 753 Theory of Disease", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129524,7 +156588,22 @@ "Name": { "en": "Non-relative" }, + "Abbreviation": { + "en": "4.1.9.7" + }, "Code": "4.1.9.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to people who are not related by blood or marriage.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "608 Artificial Kin Relationships; 609 Behavior Toward Non-relatives", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129533,7 +156612,22 @@ "Name": { "en": "Accuse, confront" }, + "Abbreviation": { + "en": "4.7.5.3" + }, "Code": "4.7.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to accusing someone of doing something bad.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33V\u0027 Accuse, Blame; 56C Accusation", "DeletedAt": null, "Predefined": true }, @@ -129542,7 +156636,22 @@ "Name": { "en": "Adverbial clauses" }, + "Abbreviation": { + "en": "9.4.8" + }, "Code": "9.4.8", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate adverbial clauses. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129551,7 +156660,22 @@ "Name": { "en": "Turtle" }, + "Abbreviation": { + "en": "1.6.1.3.3" + }, "Code": "1.6.1.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to turtles.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129560,7 +156684,22 @@ "Name": { "en": "Number" }, + "Abbreviation": { + "en": "8.1.1" + }, "Code": "8.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to numbers. Every language has a word for \u0027one\u0027, and a word for \u0027two\u0027. These two numbers often have special words. So we have included a separate domain for \u0027one\u0027 and \u0027two\u0027. In addition the numbers form a series (one, two, three...). Most languages have more than one series of numbers (first, second, third...). So we have also included a domain for each series of numbers that most languages have. Your language may have other series of numbers. Put them in the domain \u0027Number series\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "801 Numerology; 802 Numeration", + "LouwNidaCodes": "60 Number; 60A Number, Countless", "DeletedAt": null, "Predefined": true }, @@ -129569,7 +156708,22 @@ "Name": { "en": "Like, similar" }, + "Abbreviation": { + "en": "8.3.5.2.2" + }, "Code": "8.3.5.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing two things or people that are similar, but not the same.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129578,7 +156732,22 @@ "Name": { "en": "Markers of identificational and explanatory clauses " }, + "Abbreviation": { + "en": "9.6.3.5" + }, "Code": "9.6.3.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that begin a clause that identifies a specific case or example of what has just been said, or that explains what has just been said. Specific case: I have just mentioned a general class of things or a general idea and want to give a specific example of what I am talking about. Explanation: I have just said something and I think people might misunderstand, so I want to explain what I mean. Digression: I am talking about a particular topic, but want to say something that does not fit into my topic, so I say something that is about a different topic.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "91E Markers of Identificational and Explanatory Clauses", "DeletedAt": null, "Predefined": true }, @@ -129587,7 +156756,22 @@ "Name": { "en": "Cooking methods" }, + "Abbreviation": { + "en": "5.2.1.1" + }, "Code": "5.2.1.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to various ways of cooking food. It is necessary to think through different kinds of food and how they are cooked. An example is given below for cooking eggs.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129596,7 +156780,22 @@ "Name": { "en": "Edge" }, + "Abbreviation": { + "en": "8.6.6" + }, "Code": "8.6.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the edge of something--the part of something where two sides come together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129605,7 +156804,22 @@ "Name": { "en": "Crazy" }, + "Abbreviation": { + "en": "4.3.7.2" + }, "Code": "4.3.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to being crazy--to act stupid or strange.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129614,7 +156828,22 @@ "Name": { "en": "Comb hair" }, + "Abbreviation": { + "en": "5.4.3.1" + }, "Code": "5.4.3.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to combing your hair.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129623,7 +156852,22 @@ "Name": { "en": "Adult" }, + "Abbreviation": { + "en": "2.6.4.4" + }, "Code": "2.6.4.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to an adult.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "885 Adulthood", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129632,7 +156876,22 @@ "Name": { "en": "Less" }, + "Abbreviation": { + "en": "8.1.4.1" + }, "Code": "8.1.4.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that indicate that the number or amount of something is less than the number or amount of another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129641,7 +156900,22 @@ "Name": { "en": "Move toward something" }, + "Abbreviation": { + "en": "7.2.3" + }, "Code": "7.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to moving toward, in the direction of, or near something or some place. The words in this domain should refer to moving in the direction of a place, but should not require that the person actually arrived. Some languages (such as German and Polish) distinguish \u0027go on foot\u0027 from \u0027go in a vehicle\u0027.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15E Come Near, Approach", "DeletedAt": null, "Predefined": true }, @@ -129650,7 +156924,22 @@ "Name": { "en": "Year" }, + "Abbreviation": { + "en": "8.4.1.6" + }, "Code": "8.4.1.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a year.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129659,7 +156948,22 @@ "Name": { "en": "Types of sounds" }, + "Abbreviation": { + "en": "2.3.2.3" + }, "Code": "2.3.2.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to types of sounds.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "14I Sound", "DeletedAt": null, "Predefined": true }, @@ -129668,7 +156972,22 @@ "Name": { "en": "Appease" }, + "Abbreviation": { + "en": "4.8.4.3" + }, "Code": "4.8.4.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to appeasing someone.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129677,7 +156996,22 @@ "Name": { "en": "Agree with someone" }, + "Abbreviation": { + "en": "3.2.5.4" + }, "Code": "3.2.5.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for when two people agree on something, think the same way about something, or agree on a decision.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "33W Agree; 31C Agree, Consent", "DeletedAt": null, "Predefined": true }, @@ -129686,7 +157020,22 @@ "Name": { "en": "Watch" }, + "Abbreviation": { + "en": "2.3.1.2" + }, "Code": "2.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words that refer to watching someone or something--to look for some time at something that is happening because you are interested in it and want to know what is happening.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129695,7 +157044,22 @@ "Name": { "en": "Mix" }, + "Abbreviation": { + "en": "7.5.3" + }, "Code": "7.5.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to mixing things together--to put two or more different kinds of substances, like liquids or cooking ingredients, together.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "63C Mix", "DeletedAt": null, "Predefined": true }, @@ -129704,7 +157068,22 @@ "Name": { "en": "Meddle" }, + "Abbreviation": { + "en": "4.3.4.6" + }, "Code": "4.3.4.6", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to meddling--involving oneself in something that does not concern oneself, such as someone else\u0027s business or affairs, or a fight between other people.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "88E\u0027 Being a Busybody", "DeletedAt": null, "Predefined": true }, @@ -129713,7 +157092,22 @@ "Name": { "en": "Cabinet" }, + "Abbreviation": { + "en": "5.1.1.4" + }, "Code": "5.1.1.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a cabinet.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129722,7 +157116,22 @@ "Name": { "en": "Compare" }, + "Abbreviation": { + "en": "8.3.5.2" + }, "Code": "8.3.5.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to comparing something or someone with another thing.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "64 Comparison", "DeletedAt": null, "Predefined": true }, @@ -129731,7 +157140,22 @@ "Name": { "en": "Fine" }, + "Abbreviation": { + "en": "4.7.7.2" + }, "Code": "4.7.7.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words referring to a fine--a payment (usually of money) made to a victim or the government for a crime committed against them.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129740,7 +157164,22 @@ "Name": { "en": "Choose" }, + "Abbreviation": { + "en": "3.3.1.2" + }, "Code": "3.3.1.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to choosing something--to want one thing (or person) from a group of things, or to choose to do one thing from several possible things you could do.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "30F To Choose, To Select, To Prefer", "DeletedAt": null, "Predefined": true }, @@ -129749,7 +157188,22 @@ "Name": { "en": "Rule" }, + "Abbreviation": { + "en": "4.6.4" + }, "Code": "4.6.4", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to ruling.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "37D Rule, Govern; 37 Control, Rule", "DeletedAt": null, "Predefined": true }, @@ -129758,7 +157212,22 @@ "Name": { "en": "Resurrection" }, + "Abbreviation": { + "en": "4.9.6.1" + }, "Code": "4.9.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to resurrection--life after death, or living again after dying.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129767,7 +157236,22 @@ "Name": { "en": "Have wealth" }, + "Abbreviation": { + "en": "6.8.1" + }, "Code": "6.8.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to having wealth.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "420 Property; 510 Living Standards and Routines; 511 Standard of Living", + "LouwNidaCodes": "57A Have, Possess, Property, Owner", "DeletedAt": null, "Predefined": true }, @@ -129776,7 +157260,22 @@ "Name": { "en": "Black" }, + "Abbreviation": { + "en": "8.3.3.3.2" + }, "Code": "8.3.3.3.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words describing something that is black.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129785,7 +157284,22 @@ "Name": { "en": "Fire" }, + "Abbreviation": { + "en": "5.5" + }, "Code": "5.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for general words that refer to fire and for words referring to types of fire. These words may be specific for what is being burned (forest fire \u0027a fire burning a forest\u0027), the size of the fire (inferno \u0027a very large hot fire\u0027), or the place where the fire burns (hellfire \u0027the fire in hell\u0027).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "372 Fire", + "LouwNidaCodes": "2C Fire", "DeletedAt": null, "Predefined": true }, @@ -129794,7 +157308,22 @@ "Name": { "en": "Farm worker" }, + "Abbreviation": { + "en": "6.2.7" + }, "Code": "6.2.7", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to farm workers.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129803,7 +157332,22 @@ "Name": { "en": "Numbered group" }, + "Abbreviation": { + "en": "8.1.1.5" + }, "Code": "8.1.1.5", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to a group of a particular number of things or people (solo, duo, trio; alone, in threes).", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "60G Pair, Group", "DeletedAt": null, "Predefined": true }, @@ -129812,7 +157356,22 @@ "Name": { "en": "Marriage" }, + "Abbreviation": { + "en": "2.6.1" + }, "Code": "2.6.1", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to the state of being married.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "580 Marriage; 581 Basis of Marriage; 582 Regulation of Marriage; 583 Mode of Marriage; 587 Secondary Marriages; 588 Special Unions and Marriages; Irregular Unions; 595 Polygamy", + "LouwNidaCodes": "34J Marriage, Divorce", "DeletedAt": null, "Predefined": true }, @@ -129821,7 +157380,22 @@ "Name": { "en": "Parts of an animal" }, + "Abbreviation": { + "en": "1.6.2" + }, "Code": "1.6.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for the parts of animals, especially those of mammals.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "136a Parts", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129830,7 +157404,22 @@ "Name": { "en": "Free of charge" }, + "Abbreviation": { + "en": "6.8.4.3.3" + }, "Code": "6.8.4.3.3", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to something being free of charge--something you can have without paying for it.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -129839,7 +157428,22 @@ "Name": { "en": "Swim" }, + "Abbreviation": { + "en": "7.2.4.2.2" + }, "Code": "7.2.4.2.2", + "Description": { + "en": { + "Spans": [ + { + "Text": "Use this domain for words related to swimming.", + "Ws": "en" + } + ] + } + }, + "OcmCodes": "", + "LouwNidaCodes": "15H\u0027 Swim", "DeletedAt": null, "Predefined": true } diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt index 5a205e5952..d17c835aa5 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt @@ -1,4 +1,4 @@ -[ +[ { "$type": "jsonPatch:Entry", "PatchDocument": [], @@ -81,12 +81,147 @@ "txr": "Zambia", "sxm": "Buckinghamshire" }, + "Abbreviation": {}, "Code": "Clothing, Industrial \u0026 Health", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": "2025-01-19T21:09:19.0427134+07:00", "Predefined": true }, "EntityId": "f60faeb5-4d22-a8b0-a806-89347f2b7843" }, + { + "$type": "AddSemanticDomainChange", + "SemanticDomain": { + "Id": "7b92c4bf-1823-28ab-86b2-32f1487c2477", + "Name": { + "rem": "Pennsylvania", + "bbb": "leading-edge", + "bdg": "impactful", + "lva": "Serbia" + }, + "Abbreviation": { + "oso": "Customer" + }, + "Code": "Customer", + "Description": { + "bif": { + "Spans": [ + { + "Text": "Visionary", + "Ws": "bif", + "Tags": [ + "f19714b1-263f-4c97-958e-ca9b8860937d" + ] + }, + { + "Text": "extranet", + "Ws": "bif", + "Tags": [ + "7bab51a0-6f3c-4afc-9ca5-4452f395dc41" + ] + }, + { + "Text": "Trail", + "Ws": "bif", + "Tags": [ + "806beb3c-362b-47fd-9c48-15e81c2e23d0" + ] + }, + { + "Text": "Advanced", + "Ws": "isr", + "Bold": "Invert", + "FontSize": -444416600, + "ForeColor": "#A52A2A", + "Tags": [ + "948bba8a-ef0a-eb63-4d62-e3550f3c5511" + ] + } + ] + }, + "yab": { + "Spans": [ + { + "Text": "Rue", + "Ws": "knn", + "Bold": "On", + "FontSize": 1040313889, + "ForeColor": "#FF0000", + "Tags": [ + "6b8d851f-e872-68dc-47bf-801453303667" + ] + }, + { + "Text": "Delaware", + "Ws": "yab", + "Tags": [ + "35b43906-c7c0-41cd-b260-e517bcee48f9" + ] + } + ] + }, + "nyr": { + "Spans": [ + { + "Text": "Agent", + "Ws": "nyr", + "Tags": [ + "0ea9e56b-a498-41f7-9b80-f1e16c1d13a5" + ] + }, + { + "Text": "Sleek Rubber Mouse", + "Ws": "nyr", + "Tags": [ + "9215c307-f6cb-40c0-b733-dea7e11d4d78" + ] + }, + { + "Text": "SCSI", + "Ws": "zca", + "Bold": "Invert", + "FontSize": -1556622377, + "ForeColor": "#A52A2A", + "Tags": [ + "a8f246ef-5cc9-00ae-7062-e9ce4eef1431" + ] + }, + { + "Text": "magenta", + "Ws": "obl", + "Bold": "On", + "FontSize": -1663528980, + "ForeColor": "#00000000", + "Tags": [ + "81c2ca3d-2dc9-85e2-4484-fde778737bd7" + ] + } + ] + }, + "bmq": { + "Spans": [ + { + "Text": "Automotive, Industrial \u0026 Health", + "Ws": "otk", + "Bold": "Invert", + "FontSize": 605799507, + "ForeColor": "#00FFFF", + "Tags": [ + "487affb0-ff84-2ca5-4e72-dea2dea9417e" + ] + } + ] + } + }, + "OcmCodes": "Handcrafted Concrete Computer", + "LouwNidaCodes": "revolutionize", + "DeletedAt": null, + "Predefined": false + }, + "EntityId": "3e189261-e98f-d243-5e4d-3d74e1bc8cbb" + }, { "$type": "RemoveSemanticDomainChange", "SemanticDomainId": "8eb5eeba-d107-1664-a659-d4c6bc90e074", @@ -103,12 +238,95 @@ "cco": "Implementation", "rrt": "card" }, + "Abbreviation": {}, "Code": "transition", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": "2025-01-19T21:18:49.3256836+07:00", "Predefined": false }, "EntityId": "8291cde2-0fd2-3ebc-765b-c00c6c489c3a" }, + { + "$type": "ReplaceSemanticDomainChange", + "OldSemanticDomainId": "5d966099-e3a3-27e8-4db3-da3dd0ed1d69", + "SemanticDomain": { + "Id": "50830979-c520-d4fa-ef2c-b61da4ee33d1", + "Name": { + "abm": "Configuration", + "xmr": "copy", + "kzb": "Adaptive", + "lad": "Clothing \u0026 Baby" + }, + "Abbreviation": { + "stg": "Licensed", + "nbc": "Program", + "icl": "Crossroad", + "kpa": "exploit" + }, + "Code": "Licensed", + "Description": { + "pep": { + "Spans": [ + { + "Text": "paradigms", + "Ws": "gby", + "Bold": "Off", + "FontSize": 2023362756, + "ForeColor": "#0000FF", + "Tags": [ + "cff65ef0-392b-19e5-c378-ebd5d6856ac6" + ] + }, + { + "Text": "turquoise", + "Ws": "pep", + "Tags": [ + "176d56a8-9da2-40c5-97d1-457a4cbb905d" + ] + }, + { + "Text": "indigo", + "Ws": "cni", + "Bold": "Off", + "FontSize": -1830519423, + "ForeColor": "#00FFFF", + "Tags": [ + "1d1a48fa-64e7-48cb-fdaa-b39c784e76ff" + ] + }, + { + "Text": "Handmade", + "Ws": "pep", + "Tags": [ + "80c7fd08-99c9-44c5-a5cd-1b8866dd8fb9" + ] + } + ] + }, + "bbd": { + "Spans": [ + { + "Text": "interactive", + "Ws": "dnw", + "Bold": "Off", + "FontSize": -1596996828, + "ForeColor": "#ADFF2F", + "Tags": [ + "fc90d5e0-26ef-7ca5-3830-159fe40c587b" + ] + } + ] + } + }, + "OcmCodes": "Incredible Cotton Pizza", + "LouwNidaCodes": "e-business", + "DeletedAt": null, + "Predefined": false + }, + "EntityId": "6f1900e9-47c0-1ab4-fbcb-15d2365c94ba" + }, { "$type": "CreateEntryChange", "LexemeForm": { @@ -258,7 +476,11 @@ "Name": { "ajs": "disintermediate" }, + "Abbreviation": {}, "Code": "Open-architected", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": "2025-01-20T05:49:30.5251959+07:00", "Predefined": false } @@ -266,6 +488,167 @@ "Pictures": null, "EntityId": "fb918ba0-ba5e-7977-312e-3028d1295dd8" }, + { + "$type": "CreateSenseChange", + "EntryId": "8aaba18a-78f4-a901-6817-04096cc5281e", + "Order": 0.4477150344384605, + "Definition": { + "xmd": { + "Spans": [ + { + "Text": "Faroe Islands", + "Ws": "xmd", + "Tags": [ + "966980a0-cff6-49fe-8147-dd9370401393" + ] + } + ] + }, + "mlw": { + "Spans": [ + { + "Text": "Comoro Franc", + "Ws": "mlw", + "Tags": [ + "c76d55ba-35e7-42c9-9b6d-688f82dbdc53" + ] + } + ] + }, + "gmd": { + "Spans": [ + { + "Text": "Savings Account", + "Ws": "gmd", + "Tags": [ + "7180534f-06fb-47c2-87d9-249d49bea5bb" + ] + }, + { + "Text": "Awesome Concrete Shirt", + "Ws": "mre", + "Bold": "Invert", + "FontSize": -199834178, + "ForeColor": "#ADFF2F", + "Tags": [ + "380dbd52-f3e8-f2c1-ac88-30865eab7927" + ] + }, + { + "Text": "quantify", + "Ws": "gmd", + "Tags": [ + "8b4d6a82-b98f-4c28-9c0b-ef3c0984fde5" + ] + }, + { + "Text": "Money Market Account", + "Ws": "gmd", + "Tags": [ + "79494be6-36d1-4a80-aaea-017701ef7ac7" + ] + } + ] + } + }, + "Gloss": { + "crc": "haptic" + }, + "PartOfSpeechId": "3edb3668-fb40-ff10-768b-e7a306ea3e10", + "SemanticDomains": [ + { + "Id": "b0cd5357-5e3c-98a7-90a2-dcfb9ae4842d", + "Name": { + "klj": "cross-platform", + "byj": "reciprocal" + }, + "Abbreviation": { + "and": "Assurance", + "ruc": "circuit", + "awa": "proactive" + }, + "Code": "Assurance", + "Description": { + "hbb": { + "Spans": [ + { + "Text": "initiatives", + "Ws": "hbb", + "Tags": [ + "95da1a0e-21d2-4820-a2a8-57dc5e6f3cb6" + ] + }, + { + "Text": "seamless", + "Ws": "hbb", + "Tags": [ + "1646d6f3-188f-4108-800f-210f74fda69e" + ] + }, + { + "Text": "dot-com", + "Ws": "gmr", + "Bold": "On", + "FontSize": 1416042677, + "ForeColor": "#FF0000", + "Tags": [ + "0c1d4924-c1e4-2e08-725c-d9ec26080abf" + ] + } + ] + } + }, + "OcmCodes": "Handmade Soft Chair", + "LouwNidaCodes": "Grocery, Outdoors \u0026 Toys", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "29194d5c-2642-f17b-769f-130a3616f679", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "ote": { + "Spans": [ + { + "Text": "sky blue", + "Ws": "lbo", + "Bold": "Invert", + "FontSize": -439410848, + "ForeColor": "#00FFFF", + "Tags": [ + "44ae8fb3-bab4-6c73-2583-b8f4c9048195" + ] + }, + { + "Text": "Cuban Peso Convertible", + "Ws": "tkn", + "Bold": "Off", + "FontSize": -805968476, + "ForeColor": "#00FFFF", + "Tags": [ + "1fa7172e-e440-0ec8-3f49-22fd61fc6764" + ] + }, + { + "Text": "payment", + "Ws": "jan", + "Bold": "Invert", + "FontSize": 2019354407, + "ForeColor": "#0000FF", + "Tags": [ + "77d262f6-1d0d-9c18-a022-27d429ffcb51" + ] + } + ] + } + } + } + ], + "EntityId": "7e489533-d9ef-e3ef-09b9-ba2c315ac4ea" + }, { "$type": "CreateSenseChange", "EntryId": "d982e31f-04a7-9f11-1996-f5de8ad336ca", @@ -346,61 +729,331 @@ "cb7ce368-20e8-42f7-b716-41e1e29d8f83" ] } - ] - } - }, - "Gloss": { - "onr": "viral" - }, - "PartOfSpeechId": "bb9df589-487a-c176-2b3b-c1c8314b812a", - "SemanticDomains": [ - { - "Id": "9413074b-a698-2182-c159-105e3d96e128", - "Name": { - "ljw": "Path" + ] + } + }, + "Gloss": { + "onr": "viral" + }, + "PartOfSpeechId": "bb9df589-487a-c176-2b3b-c1c8314b812a", + "SemanticDomains": [ + { + "Id": "9413074b-a698-2182-c159-105e3d96e128", + "Name": { + "ljw": "Path" + }, + "Abbreviation": {}, + "Code": "Handmade Fresh Towels", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "e99a5e31-033e-7e62-a17e-078949b729e6", + "Order": 0, + "MediaUri": "sil-media://lexbox/545c2525-991a-46e6-b532-80878055abff", + "Caption": { + "gac": { + "Spans": [ + { + "Text": "Communications", + "Ws": "gac", + "Tags": [ + "1375adb1-a078-43dd-801a-162a70ac9d82" + ] + }, + { + "Text": "Forward", + "Ws": "gac", + "Tags": [ + "a11a5391-2b6c-450b-9e05-f3bf6290c559" + ] + }, + { + "Text": "Agent", + "Ws": "gac", + "Tags": [ + "9a4fd03d-dad2-4f43-8400-57ea2947db12" + ] + }, + { + "Text": "invoice", + "Ws": "xmw", + "Bold": "On", + "FontSize": -133486167, + "ForeColor": "#ADFF2F", + "Tags": [ + "4dea1beb-7631-ddf9-ce0e-802c0969d277" + ] + } + ] + } + } + } + ], + "EntityId": "f27a032b-e0f6-f389-b466-959bdb17086d" + }, + { + "$type": "CreateSenseChange", + "EntryId": "8f2cf98a-8552-c963-60ba-cf14c1c2ef5d", + "Order": 0.9970128374637487, + "Definition": { + "cbe": { + "Spans": [ + { + "Text": "copying", + "Ws": "cbe", + "Tags": [ + "efa572a4-d435-4815-ab6f-73cd56ec7215" + ] + } + ] + }, + "doe": { + "Spans": [ + { + "Text": "monitoring", + "Ws": "doe", + "Tags": [ + "87271ee2-081b-4b8e-96ee-60f4e0aa36ff" + ] + }, + { + "Text": "New Mexico", + "Ws": "sw", + "Bold": "Invert", + "FontSize": 2070325132, + "ForeColor": "#A52A2A", + "Tags": [ + "14cc1a53-a0a2-cfd8-a616-422697a072ea" + ] + } + ] + }, + "yag": { + "Spans": [ + { + "Text": "recontextualize", + "Ws": "yag", + "Tags": [ + "c17cc0ec-552c-48bd-9335-fbdc876fab61" + ] + }, + { + "Text": "Computers", + "Ws": "kid", + "Bold": "On", + "FontSize": -1955335690, + "ForeColor": "#00FFFF", + "Tags": [ + "58a9ca0e-0daf-69d8-73c4-3d61d07e7643" + ] + }, + { + "Text": "pricing structure", + "Ws": "yag", + "Tags": [ + "158ea03c-6258-43d9-ba94-45ce2a1a4e61" + ] + } + ] + }, + "eme": { + "Spans": [ + { + "Text": "tertiary", + "Ws": "srx", + "Bold": "Invert", + "FontSize": 1812613861, + "ForeColor": "#0000FF", + "Tags": [ + "c653df5e-d11d-f502-89fc-ea78313fcf1c" + ] + }, + { + "Text": "Public-key", + "Ws": "eme", + "Tags": [ + "aff1ee5b-55bd-41f2-b7da-8c376e69b1ac" + ] + }, + { + "Text": "neural", + "Ws": "eme", + "Tags": [ + "4828e899-3805-43a0-837b-215e4788563e" + ] + } + ] + } + }, + "Gloss": { + "lsh": "parsing" + }, + "PartOfSpeechId": "94d31d7a-b33a-aa2f-08c6-7c48320f5fb9", + "SemanticDomains": [ + { + "Id": "9574254b-ef6c-d55a-6f93-4abe559b236f", + "Name": { + "kla": "Refined Frozen Car", + "pac": "zero tolerance", + "ils": "Fantastic" + }, + "Abbreviation": { + "okr": "Sleek Wooden Pants", + "szc": "neural" + }, + "Code": "Sleek Wooden Pants", + "Description": { + "igb": { + "Spans": [ + { + "Text": "Unbranded Metal Shoes", + "Ws": "igb", + "Tags": [ + "2b4802b5-5184-4887-b060-cf95c90d4b9f" + ] + }, + { + "Text": "reboot", + "Ws": "igb", + "Tags": [ + "19484d91-bbaa-428e-bdc4-cb5ee86d32c3" + ] + }, + { + "Text": "transmit", + "Ws": "sbn", + "Bold": "On", + "FontSize": 986050042, + "ForeColor": "#00000000", + "Tags": [ + "1205a4ee-783c-bafd-68bd-eb9c6a722f4e" + ] + } + ] + }, + "cla": { + "Spans": [ + { + "Text": "Neck", + "Ws": "nmc", + "Bold": "Invert", + "FontSize": 765977089, + "ForeColor": "#ADFF2F", + "Tags": [ + "ef5f6605-1800-3482-2b24-98fd5b1428b7" + ] + }, + { + "Text": "Faroe Islands", + "Ws": "cla", + "Tags": [ + "dafccd33-436b-42c9-8884-b5df30360170" + ] + } + ] + }, + "bwo": { + "Spans": [ + { + "Text": "national", + "Ws": "bwo", + "Tags": [ + "daeb3ce0-bc66-414d-a58e-7e5b560a19e7" + ] + }, + { + "Text": "matrix", + "Ws": "csi", + "Bold": "On", + "FontSize": 1207986786, + "ForeColor": "#ADFF2F", + "Tags": [ + "93433d4e-2961-d196-36b8-7be8eb327772" + ] + }, + { + "Text": "Intranet", + "Ws": "bwo", + "Tags": [ + "b540962f-80c4-4657-a10d-ca4030bb5e24" + ] + }, + { + "Text": "value-added", + "Ws": "bwo", + "Tags": [ + "b23e60fc-1680-47e8-bb3e-32268ccd64fa" + ] + } + ] + }, + "bzt": { + "Spans": [ + { + "Text": "primary", + "Ws": "bzt", + "Tags": [ + "5598b5a2-c1ae-4b64-a348-eddd129025d9" + ] + } + ] + } }, - "Code": "Handmade Fresh Towels", + "OcmCodes": "Massachusetts", + "LouwNidaCodes": "Metal", "DeletedAt": null, "Predefined": false } ], "Pictures": [ { - "Id": "e99a5e31-033e-7e62-a17e-078949b729e6", + "Id": "42211010-7db4-3c0b-5779-c5c2be237e39", "Order": 0, - "MediaUri": "sil-media://lexbox/545c2525-991a-46e6-b532-80878055abff", + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", "Caption": { - "gac": { + "kvb": { "Spans": [ { - "Text": "Communications", - "Ws": "gac", + "Text": "iterate", + "Ws": "suj", + "Bold": "On", + "FontSize": -1627120735, + "ForeColor": "#00FFFF", "Tags": [ - "1375adb1-a078-43dd-801a-162a70ac9d82" + "2fc52bd1-9aa8-c87d-14e3-7c49bd9249b1" ] }, { - "Text": "Forward", - "Ws": "gac", + "Text": "Licensed Granite Bike", + "Ws": "rmy", + "Bold": "Invert", + "FontSize": -1589619741, + "ForeColor": "#A52A2A", "Tags": [ - "a11a5391-2b6c-450b-9e05-f3bf6290c559" + "9463ddd6-c8fd-2133-a064-4fe54b3b180c" ] }, { - "Text": "Agent", - "Ws": "gac", + "Text": "technologies", + "Ws": "kvb", "Tags": [ - "9a4fd03d-dad2-4f43-8400-57ea2947db12" + "ad81bab2-0c8e-491b-b35a-6b1427356e11" ] }, { - "Text": "invoice", - "Ws": "xmw", + "Text": "Fork", + "Ws": "gvo", "Bold": "On", - "FontSize": -133486167, - "ForeColor": "#ADFF2F", + "FontSize": -1963053740, + "ForeColor": "#0000FF", "Tags": [ - "4dea1beb-7631-ddf9-ce0e-802c0969d277" + "49ce3c8d-cc1f-c6a8-5ae5-3bc30a45aff0" ] } ] @@ -408,7 +1061,7 @@ } } ], - "EntityId": "f27a032b-e0f6-f389-b466-959bdb17086d" + "EntityId": "d124b131-0aaf-ed3b-6ce2-27865367ccc5" }, { "$type": "CreateSenseChange", @@ -476,7 +1129,11 @@ "zu": "Parkway", "jjr": "connecting" }, + "Abbreviation": {}, "Code": "Inlet", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -541,6 +1198,321 @@ ], "EntityId": "f18d4c1d-00e2-afa1-166b-a8f75a2d43de" }, + { + "$type": "CreateSenseChange", + "EntryId": "0351510f-489f-7b12-787e-c92cdd80ba58", + "Order": 0.28235810738322176, + "Definition": { + "zpr": { + "Spans": [ + { + "Text": "deposit", + "Ws": "prs", + "Bold": "Off", + "FontSize": 1103105468, + "ForeColor": "#A52A2A", + "Tags": [ + "552182fc-fdfa-ab32-857a-1ecf3077e00c" + ] + }, + { + "Text": "Frozen", + "Ws": "uba", + "Bold": "Invert", + "FontSize": 33335237, + "ForeColor": "#00000000", + "Tags": [ + "592bea52-5ecd-8e8f-26c0-d1aaa696c5a0" + ] + }, + { + "Text": "convergence", + "Ws": "zpr", + "Tags": [ + "dd1d7bc8-d706-4f7c-9d91-56fb27c4dabb" + ] + } + ] + }, + "dir": { + "Spans": [ + { + "Text": "Forks", + "Ws": "su", + "Bold": "Off", + "FontSize": -1878506817, + "ForeColor": "#00FFFF", + "Tags": [ + "9ae1273c-beb1-cb6a-6f11-93f15f401c40" + ] + }, + { + "Text": "Strategist", + "Ws": "vnm", + "Bold": "Off", + "FontSize": 58153094, + "ForeColor": "#00000000", + "Tags": [ + "3873775d-c730-ef0e-c3c6-0e68faa0f3cd" + ] + }, + { + "Text": "Plastic", + "Ws": "trs", + "Bold": "Off", + "FontSize": -266160974, + "ForeColor": "#ADFF2F", + "Tags": [ + "f4168fea-36c4-48ab-9fc3-deab1f9a74cb" + ] + } + ] + }, + "dad": { + "Spans": [ + { + "Text": "Games", + "Ws": "ida", + "Bold": "Invert", + "FontSize": -1691693952, + "ForeColor": "#FF0000", + "Tags": [ + "acf027b7-f95c-d133-c721-ae5414ab90a5" + ] + }, + { + "Text": "Refined Soft Ball", + "Ws": "dad", + "Tags": [ + "d17d087f-aa57-4748-9be6-4b2994fec775" + ] + } + ] + }, + "xkt": { + "Spans": [ + { + "Text": "Generic Wooden Bike", + "Ws": "xmc", + "Bold": "Invert", + "FontSize": -241536031, + "ForeColor": "#00FFFF", + "Tags": [ + "30a6f4c3-c650-0d8e-3aed-adcdd933b721" + ] + }, + { + "Text": "application", + "Ws": "xkt", + "Tags": [ + "2c839661-2eab-4d3c-bd40-7a2c2e16130d" + ] + } + ] + } + }, + "Gloss": { + "nhb": "Toys", + "ady": "Crest" + }, + "PartOfSpeechId": "56259ce6-4050-36d3-4b2f-edee2c9ddf6d", + "SemanticDomains": [ + { + "Id": "2db7fd53-fd6d-b30d-2588-5c92ddab9d5a", + "Name": { + "xaw": "Refined Metal Tuna", + "kjf": "Soft", + "knd": "Flat" + }, + "Abbreviation": { + "baj": "Mongolia", + "xrt": "recontextualize", + "yab": "Soft" + }, + "Code": "Mongolia", + "Description": { + "jkm": { + "Spans": [ + { + "Text": "Architect", + "Ws": "jkm", + "Tags": [ + "8e64bb8b-1bbd-4d86-9942-8321bb22bb38" + ] + }, + { + "Text": "South Dakota", + "Ws": "saa", + "Bold": "On", + "FontSize": -1924455850, + "ForeColor": "#ADFF2F", + "Tags": [ + "3e435a80-5aa4-b41b-cabf-46bf8d1b7de8" + ] + } + ] + }, + "tkz": { + "Spans": [ + { + "Text": "SAS", + "Ws": "tkz", + "Tags": [ + "22a3ba9b-b37e-46e6-986c-5b5c6d78d15d" + ] + }, + { + "Text": "next-generation", + "Ws": "tkz", + "Tags": [ + "9fc4595d-de55-4c3a-acc9-81a19e635d5e" + ] + } + ] + }, + "dsb": { + "Spans": [ + { + "Text": "Rhode Island", + "Ws": "dsb", + "Tags": [ + "d94a5f58-e569-49b1-95d9-ebb55a20e530" + ] + }, + { + "Text": "Configurable", + "Ws": "dsb", + "Tags": [ + "5c098dbe-d13e-4230-b066-6eeebc8c7140" + ] + }, + { + "Text": "Investment Account", + "Ws": "dsb", + "Tags": [ + "5ae3cad0-6d45-44d0-870c-d33d856377e5" + ] + } + ] + } + }, + "OcmCodes": "Books", + "LouwNidaCodes": "partnerships", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "a1bab71f-24bd-acfb-bbaa-3f6f6de9e903", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "qwt": { + "Spans": [ + { + "Text": "bottom-line", + "Ws": "ppq", + "Bold": "Off", + "FontSize": 1872569772, + "ForeColor": "#FF0000", + "Tags": [ + "5c54df50-cc48-aeb1-8a9d-e2441502133c" + ] + }, + { + "Text": "Kids", + "Ws": "caf", + "Bold": "Off", + "FontSize": -2083734455, + "ForeColor": "#0000FF", + "Tags": [ + "c9cece00-977e-4261-4a19-45a7d6fa8f23" + ] + }, + { + "Text": "Soft", + "Ws": "pne", + "Bold": "Off", + "FontSize": -1704242258, + "ForeColor": "#A52A2A", + "Tags": [ + "b7ce0ed2-44e1-ece4-c431-43eac4b7ae15" + ] + }, + { + "Text": "rich", + "Ws": "tdt", + "Bold": "Off", + "FontSize": -982140480, + "ForeColor": "#A52A2A", + "Tags": [ + "81b4723e-39ae-c73b-239c-55b8050893f3" + ] + } + ] + }, + "gge": { + "Spans": [ + { + "Text": "quantify", + "Ws": "tnp", + "Bold": "Off", + "FontSize": -1557000445, + "ForeColor": "#FF0000", + "Tags": [ + "8683f3f9-d74a-530a-4772-e0d77eeaf0fb" + ] + }, + { + "Text": "Coordinator", + "Ws": "gge", + "Tags": [ + "2bbca9e9-f593-4752-b584-a6b050e7c875" + ] + }, + { + "Text": "New Mexico", + "Ws": "gge", + "Tags": [ + "a2db1a49-aa3e-4936-a53c-61e71ee6fdab" + ] + } + ] + }, + "bgk": { + "Spans": [ + { + "Text": "synthesize", + "Ws": "nix", + "Bold": "Invert", + "FontSize": 399672687, + "ForeColor": "#00FFFF", + "Tags": [ + "3e970a95-9131-0996-e7f7-4acd3dee0828" + ] + } + ] + }, + "ebr": { + "Spans": [ + { + "Text": "Security", + "Ws": "cib", + "Bold": "On", + "FontSize": -624958186, + "ForeColor": "#00000000", + "Tags": [ + "6b2e4bf0-17c5-c01e-c8e3-60fd0eee0785" + ] + } + ] + } + } + } + ], + "EntityId": "6fdf3fda-9819-1f83-b53a-441929a533f3" + }, { "$type": "CreateExampleSentenceChange", "SenseId": "f3e4f3fe-1a2c-7096-fdf6-64df12809e1a", @@ -745,8 +1717,59 @@ }, "Predefined": false, "Code": "port", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "61d1a336-fe39-18b5-452a-4b192946cc51" }, + { + "$type": "CreateSemanticDomainChange", + "Name": { + "ili": "Savings Account", + "aag": "impactful" + }, + "Predefined": false, + "Code": "leverage", + "Abbreviation": { + "mng": "Madagascar", + "tda": "Bahamian Dollar" + }, + "Description": { + "ndx": { + "Spans": [ + { + "Text": "green", + "Ws": "ndx", + "Tags": [ + "5ba21ced-0c02-4ea7-bcc2-cc2c9696311d" + ] + } + ] + }, + "bzu": { + "Spans": [ + { + "Text": "Walk", + "Ws": "bzu", + "Tags": [ + "6f9b0dae-f199-4b4c-96aa-6a7c59e5c6ab" + ] + }, + { + "Text": "payment", + "Ws": "bzu", + "Tags": [ + "9dc80b74-a1de-4ea5-8880-ab96bba14db0" + ] + } + ] + } + }, + "OcmCodes": "e-markets", + "LouwNidaCodes": "Court", + "EntityId": "83854dd5-2b69-bbd8-8172-181036df378f" + }, { "$type": "CreateWritingSystemChange", "WsId": "zms", diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt index 6fbd1d867c..5c223b6102 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt @@ -140,7 +140,11 @@ "Name": { "ajs": "disintermediate" }, + "Abbreviation": {}, "Code": "Open-architected", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": "2025-01-20T05:49:30.5251959+07:00", "Predefined": false } @@ -574,7 +578,11 @@ "Name": { "ljw": "Path" }, + "Abbreviation": {}, "Code": "Handmade Fresh Towels", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -706,5 +714,761 @@ "UpdatedAt": "2026-07-02T07:20:03.8842896+07:00", "EntityId": "ed481334-f9d2-ec59-fa0d-70d7dc2e2aa2" } + }, + { + "Input": { + "$type": "AddSemanticDomainChange", + "SemanticDomain": { + "Id": "0b49530d-c00c-c850-fbcb-c310dd81aa25", + "Name": { + "nbp": "driver", + "ogc": "Credit Card Account", + "txr": "Zambia", + "sxm": "Buckinghamshire" + }, + "Code": "Clothing, Industrial \u0026 Health", + "DeletedAt": "2025-01-19T21:09:19.0427134+07:00", + "Predefined": true + }, + "EntityId": "f60faeb5-4d22-a8b0-a806-89347f2b7843" + }, + "Output": { + "$type": "AddSemanticDomainChange", + "SemanticDomain": { + "Id": "0b49530d-c00c-c850-fbcb-c310dd81aa25", + "Name": { + "nbp": "driver", + "ogc": "Credit Card Account", + "txr": "Zambia", + "sxm": "Buckinghamshire" + }, + "Abbreviation": {}, + "Code": "Clothing, Industrial \u0026 Health", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": "2025-01-19T21:09:19.0427134+07:00", + "Predefined": true + }, + "EntityId": "f60faeb5-4d22-a8b0-a806-89347f2b7843" + } + }, + { + "Input": { + "$type": "ReplaceSemanticDomainChange", + "OldSemanticDomainId": "730d80ed-5e26-070c-a172-8e714b6a9cbd", + "SemanticDomain": { + "Id": "4daa2f20-4140-1bd6-ac95-5801eab210aa", + "Name": { + "ngs": "turquoise", + "tvs": "azure", + "cco": "Implementation", + "rrt": "card" + }, + "Code": "transition", + "DeletedAt": "2025-01-19T21:18:49.3256836+07:00", + "Predefined": false + }, + "EntityId": "8291cde2-0fd2-3ebc-765b-c00c6c489c3a" + }, + "Output": { + "$type": "ReplaceSemanticDomainChange", + "OldSemanticDomainId": "730d80ed-5e26-070c-a172-8e714b6a9cbd", + "SemanticDomain": { + "Id": "4daa2f20-4140-1bd6-ac95-5801eab210aa", + "Name": { + "ngs": "turquoise", + "tvs": "azure", + "cco": "Implementation", + "rrt": "card" + }, + "Abbreviation": {}, + "Code": "transition", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": "2025-01-19T21:18:49.3256836+07:00", + "Predefined": false + }, + "EntityId": "8291cde2-0fd2-3ebc-765b-c00c6c489c3a" + } + }, + { + "Input": { + "$type": "CreateSenseChange", + "EntryId": "9403f290-4497-4ecc-5744-1cf7f402498a", + "Order": 0.25164027577075543, + "Definition": { + "mmt": { + "Spans": [ + { + "Text": "Customer", + "Ws": "mmt" + } + ] + }, + "cdm": { + "Spans": [ + { + "Text": "intranet", + "Ws": "cdm" + } + ] + } + }, + "Gloss": { + "pix": "Small Steel Pizza", + "hmb": "auxiliary" + }, + "PartOfSpeechId": "6f664799-1385-2bd8-077f-76d1206ac233", + "SemanticDomains": [ + { + "Id": "de982bb2-22c1-a67d-af30-53278434b09d", + "Name": { + "ajs": "disintermediate" + }, + "Code": "Open-architected", + "DeletedAt": "2025-01-20T05:49:30.5251959+07:00", + "Predefined": false + } + ], + "Pictures": null, + "EntityId": "fb918ba0-ba5e-7977-312e-3028d1295dd8" + }, + "Output": { + "$type": "CreateSenseChange", + "EntryId": "9403f290-4497-4ecc-5744-1cf7f402498a", + "Order": 0.25164027577075543, + "Definition": { + "mmt": { + "Spans": [ + { + "Text": "Customer", + "Ws": "mmt" + } + ] + }, + "cdm": { + "Spans": [ + { + "Text": "intranet", + "Ws": "cdm" + } + ] + } + }, + "Gloss": { + "pix": "Small Steel Pizza", + "hmb": "auxiliary" + }, + "PartOfSpeechId": "6f664799-1385-2bd8-077f-76d1206ac233", + "SemanticDomains": [ + { + "Id": "de982bb2-22c1-a67d-af30-53278434b09d", + "Name": { + "ajs": "disintermediate" + }, + "Abbreviation": {}, + "Code": "Open-architected", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": "2025-01-20T05:49:30.5251959+07:00", + "Predefined": false + } + ], + "Pictures": null, + "EntityId": "fb918ba0-ba5e-7977-312e-3028d1295dd8" + } + }, + { + "Input": { + "$type": "CreateSenseChange", + "EntryId": "d982e31f-04a7-9f11-1996-f5de8ad336ca", + "Order": 0.017837893500294633, + "Definition": { + "boi": { + "Spans": [ + { + "Text": "Place", + "Ws": "boi", + "Tags": [ + "5e2d4a6f-ca61-4ccc-8bc4-d07e9c25b370" + ] + }, + { + "Text": "zero administration", + "Ws": "boi", + "Tags": [ + "6e41a783-8b2d-4379-b2d8-ad14fef2fd6c" + ] + }, + { + "Text": "port", + "Ws": "nch", + "Bold": "Invert", + "FontSize": -235922745, + "ForeColor": "#00FFFF", + "Tags": [ + "c5bf050a-a023-fa08-8961-f33e94904058" + ] + } + ] + }, + "obl": { + "Spans": [ + { + "Text": "SMTP", + "Ws": "obl", + "Tags": [ + "523f4a52-4c14-4b3c-ae19-d89ba9e118b2" + ] + }, + { + "Text": "Creative", + "Ws": "obl", + "Tags": [ + "4b2fea6c-b602-43a2-b883-629f13f38183" + ] + }, + { + "Text": "Concrete", + "Ws": "tdi", + "Bold": "Invert", + "FontSize": 1570803136, + "ForeColor": "#0000FF", + "Tags": [ + "84f8cf23-b81a-27e9-14e9-630f52875f12" + ] + }, + { + "Text": "Bedfordshire", + "Ws": "srt", + "Bold": "Invert", + "FontSize": -1137475355, + "ForeColor": "#FF0000", + "Tags": [ + "0d5c77b9-3fa8-8d48-fbb5-70e5aea2e024" + ] + } + ] + }, + "nuj": { + "Spans": [ + { + "Text": "Borders", + "Ws": "nuj", + "Tags": [ + "cb7ce368-20e8-42f7-b716-41e1e29d8f83" + ] + } + ] + } + }, + "Gloss": { + "onr": "viral" + }, + "PartOfSpeechId": "bb9df589-487a-c176-2b3b-c1c8314b812a", + "SemanticDomains": [ + { + "Id": "9413074b-a698-2182-c159-105e3d96e128", + "Name": { + "ljw": "Path" + }, + "Code": "Handmade Fresh Towels", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "e99a5e31-033e-7e62-a17e-078949b729e6", + "Order": 0, + "MediaUri": "sil-media://lexbox/545c2525-991a-46e6-b532-80878055abff", + "Caption": { + "gac": { + "Spans": [ + { + "Text": "Communications", + "Ws": "gac", + "Tags": [ + "1375adb1-a078-43dd-801a-162a70ac9d82" + ] + }, + { + "Text": "Forward", + "Ws": "gac", + "Tags": [ + "a11a5391-2b6c-450b-9e05-f3bf6290c559" + ] + }, + { + "Text": "Agent", + "Ws": "gac", + "Tags": [ + "9a4fd03d-dad2-4f43-8400-57ea2947db12" + ] + }, + { + "Text": "invoice", + "Ws": "xmw", + "Bold": "On", + "FontSize": -133486167, + "ForeColor": "#ADFF2F", + "Tags": [ + "4dea1beb-7631-ddf9-ce0e-802c0969d277" + ] + } + ] + } + } + } + ], + "EntityId": "f27a032b-e0f6-f389-b466-959bdb17086d" + }, + "Output": { + "$type": "CreateSenseChange", + "EntryId": "d982e31f-04a7-9f11-1996-f5de8ad336ca", + "Order": 0.017837893500294633, + "Definition": { + "boi": { + "Spans": [ + { + "Text": "Place", + "Ws": "boi", + "Tags": [ + "5e2d4a6f-ca61-4ccc-8bc4-d07e9c25b370" + ] + }, + { + "Text": "zero administration", + "Ws": "boi", + "Tags": [ + "6e41a783-8b2d-4379-b2d8-ad14fef2fd6c" + ] + }, + { + "Text": "port", + "Ws": "nch", + "Bold": "Invert", + "FontSize": -235922745, + "ForeColor": "#00FFFF", + "Tags": [ + "c5bf050a-a023-fa08-8961-f33e94904058" + ] + } + ] + }, + "obl": { + "Spans": [ + { + "Text": "SMTP", + "Ws": "obl", + "Tags": [ + "523f4a52-4c14-4b3c-ae19-d89ba9e118b2" + ] + }, + { + "Text": "Creative", + "Ws": "obl", + "Tags": [ + "4b2fea6c-b602-43a2-b883-629f13f38183" + ] + }, + { + "Text": "Concrete", + "Ws": "tdi", + "Bold": "Invert", + "FontSize": 1570803136, + "ForeColor": "#0000FF", + "Tags": [ + "84f8cf23-b81a-27e9-14e9-630f52875f12" + ] + }, + { + "Text": "Bedfordshire", + "Ws": "srt", + "Bold": "Invert", + "FontSize": -1137475355, + "ForeColor": "#FF0000", + "Tags": [ + "0d5c77b9-3fa8-8d48-fbb5-70e5aea2e024" + ] + } + ] + }, + "nuj": { + "Spans": [ + { + "Text": "Borders", + "Ws": "nuj", + "Tags": [ + "cb7ce368-20e8-42f7-b716-41e1e29d8f83" + ] + } + ] + } + }, + "Gloss": { + "onr": "viral" + }, + "PartOfSpeechId": "bb9df589-487a-c176-2b3b-c1c8314b812a", + "SemanticDomains": [ + { + "Id": "9413074b-a698-2182-c159-105e3d96e128", + "Name": { + "ljw": "Path" + }, + "Abbreviation": {}, + "Code": "Handmade Fresh Towels", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "e99a5e31-033e-7e62-a17e-078949b729e6", + "Order": 0, + "MediaUri": "sil-media://lexbox/545c2525-991a-46e6-b532-80878055abff", + "Caption": { + "gac": { + "Spans": [ + { + "Text": "Communications", + "Ws": "gac", + "Tags": [ + "1375adb1-a078-43dd-801a-162a70ac9d82" + ] + }, + { + "Text": "Forward", + "Ws": "gac", + "Tags": [ + "a11a5391-2b6c-450b-9e05-f3bf6290c559" + ] + }, + { + "Text": "Agent", + "Ws": "gac", + "Tags": [ + "9a4fd03d-dad2-4f43-8400-57ea2947db12" + ] + }, + { + "Text": "invoice", + "Ws": "xmw", + "Bold": "On", + "FontSize": -133486167, + "ForeColor": "#ADFF2F", + "Tags": [ + "4dea1beb-7631-ddf9-ce0e-802c0969d277" + ] + } + ] + } + } + } + ], + "EntityId": "f27a032b-e0f6-f389-b466-959bdb17086d" + } + }, + { + "Input": { + "$type": "CreateSenseChange", + "EntryId": "84933f4f-7b19-8a8e-e097-93bf8791c8bd", + "Order": 0.8292564606550344, + "Definition": { + "tjs": { + "Spans": [ + { + "Text": "applications", + "Ws": "tjs", + "Tags": [ + "04a9fefa-6277-47de-9898-3a106f880d90" + ] + } + ] + }, + "xse": { + "Spans": [ + { + "Text": "Causeway", + "Ws": "xse", + "Tags": [ + "38ae79c4-62fa-4f06-af05-3c189c54a6f2" + ] + }, + { + "Text": "Ecuador", + "Ws": "xse", + "Tags": [ + "9ccdf2af-e2b0-42f0-bf1f-85357b833f8e" + ] + }, + { + "Text": "support", + "Ws": "tsw", + "Bold": "Off", + "FontSize": -371592350, + "ForeColor": "#ADFF2F", + "Tags": [ + "c51425ff-666e-00de-3300-a8cc8dca667f" + ] + }, + { + "Text": "Metal", + "Ws": "xse", + "Tags": [ + "f429e625-904b-4a5c-ba2f-c6a5d15f7a8a" + ] + } + ] + } + }, + "Gloss": { + "kwz": "Plain", + "bfm": "Handcrafted", + "pru": "Cotton", + "lgr": "Investment Account" + }, + "PartOfSpeechId": "71340b71-d4e6-fafc-6203-b06ff067d931", + "SemanticDomains": [ + { + "Id": "d5a0d584-8aa1-a025-7afe-335db5ae3829", + "Name": { + "zu": "Parkway", + "jjr": "connecting" + }, + "Code": "Inlet", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "9c8532e4-2fd6-162f-0d1a-abec581993d0", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "bie": { + "Spans": [ + { + "Text": "navigating", + "Ws": "bie", + "Tags": [ + "bd0bfdb7-0b21-41b6-99cb-cddb9fa346b3" + ] + } + ] + }, + "sbu": { + "Spans": [ + { + "Text": "exploit", + "Ws": "mxz", + "Bold": "On", + "FontSize": -980458710, + "ForeColor": "#0000FF", + "Tags": [ + "586b0c7f-a6ba-40f1-d1f6-3cefb9e989a2" + ] + }, + { + "Text": "Legacy", + "Ws": "sbu", + "Tags": [ + "39816162-718d-46a4-8122-d32211061a00" + ] + }, + { + "Text": "alarm", + "Ws": "sbu", + "Tags": [ + "fa0eaeca-9c62-422f-b40e-3c1961d87a19" + ] + }, + { + "Text": "compressing", + "Ws": "jbw", + "Bold": "Invert", + "FontSize": -269252843, + "ForeColor": "#FF0000", + "Tags": [ + "db7c8cfa-0459-b936-b425-79d43ceb19d5" + ] + } + ] + } + } + } + ], + "EntityId": "f18d4c1d-00e2-afa1-166b-a8f75a2d43de" + }, + "Output": { + "$type": "CreateSenseChange", + "EntryId": "84933f4f-7b19-8a8e-e097-93bf8791c8bd", + "Order": 0.8292564606550344, + "Definition": { + "tjs": { + "Spans": [ + { + "Text": "applications", + "Ws": "tjs", + "Tags": [ + "04a9fefa-6277-47de-9898-3a106f880d90" + ] + } + ] + }, + "xse": { + "Spans": [ + { + "Text": "Causeway", + "Ws": "xse", + "Tags": [ + "38ae79c4-62fa-4f06-af05-3c189c54a6f2" + ] + }, + { + "Text": "Ecuador", + "Ws": "xse", + "Tags": [ + "9ccdf2af-e2b0-42f0-bf1f-85357b833f8e" + ] + }, + { + "Text": "support", + "Ws": "tsw", + "Bold": "Off", + "FontSize": -371592350, + "ForeColor": "#ADFF2F", + "Tags": [ + "c51425ff-666e-00de-3300-a8cc8dca667f" + ] + }, + { + "Text": "Metal", + "Ws": "xse", + "Tags": [ + "f429e625-904b-4a5c-ba2f-c6a5d15f7a8a" + ] + } + ] + } + }, + "Gloss": { + "kwz": "Plain", + "bfm": "Handcrafted", + "pru": "Cotton", + "lgr": "Investment Account" + }, + "PartOfSpeechId": "71340b71-d4e6-fafc-6203-b06ff067d931", + "SemanticDomains": [ + { + "Id": "d5a0d584-8aa1-a025-7afe-335db5ae3829", + "Name": { + "zu": "Parkway", + "jjr": "connecting" + }, + "Abbreviation": {}, + "Code": "Inlet", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "9c8532e4-2fd6-162f-0d1a-abec581993d0", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "bie": { + "Spans": [ + { + "Text": "navigating", + "Ws": "bie", + "Tags": [ + "bd0bfdb7-0b21-41b6-99cb-cddb9fa346b3" + ] + } + ] + }, + "sbu": { + "Spans": [ + { + "Text": "exploit", + "Ws": "mxz", + "Bold": "On", + "FontSize": -980458710, + "ForeColor": "#0000FF", + "Tags": [ + "586b0c7f-a6ba-40f1-d1f6-3cefb9e989a2" + ] + }, + { + "Text": "Legacy", + "Ws": "sbu", + "Tags": [ + "39816162-718d-46a4-8122-d32211061a00" + ] + }, + { + "Text": "alarm", + "Ws": "sbu", + "Tags": [ + "fa0eaeca-9c62-422f-b40e-3c1961d87a19" + ] + }, + { + "Text": "compressing", + "Ws": "jbw", + "Bold": "Invert", + "FontSize": -269252843, + "ForeColor": "#FF0000", + "Tags": [ + "db7c8cfa-0459-b936-b425-79d43ceb19d5" + ] + } + ] + } + } + } + ], + "EntityId": "f18d4c1d-00e2-afa1-166b-a8f75a2d43de" + } + }, + { + "Input": { + "$type": "CreateSemanticDomainChange", + "Name": { + "sgx": "Gateway", + "cmt": "Brand", + "ylo": "Intranet" + }, + "Predefined": false, + "Code": "port", + "EntityId": "61d1a336-fe39-18b5-452a-4b192946cc51" + }, + "Output": { + "$type": "CreateSemanticDomainChange", + "Name": { + "sgx": "Gateway", + "cmt": "Brand", + "ylo": "Intranet" + }, + "Predefined": false, + "Code": "port", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "EntityId": "61d1a336-fe39-18b5-452a-4b192946cc51" + } } ] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt index c2ce11ea61..e7cebdd28a 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt @@ -99,6 +99,10 @@ }, "Predefined": true, "Code": "1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d0" } }, @@ -113,6 +117,10 @@ }, "Predefined": true, "Code": "1.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d1" } }, @@ -127,6 +135,10 @@ }, "Predefined": true, "Code": "1.2", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d2" } }, @@ -141,6 +153,10 @@ }, "Predefined": true, "Code": "2", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d3" } }, @@ -155,6 +171,10 @@ }, "Predefined": true, "Code": "2.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4" } }, @@ -169,6 +189,10 @@ }, "Predefined": true, "Code": "2.1.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5" } }, @@ -183,6 +207,10 @@ }, "Predefined": true, "Code": "2.1.1.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6" } }, diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt index 51798c24e9..a685c01bfa 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt @@ -90,7 +90,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -99,7 +103,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -108,7 +116,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -117,7 +129,11 @@ "Name": { "en": "Person" }, + "Abbreviation": {}, "Code": "2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -126,7 +142,11 @@ "Name": { "en": "Body" }, + "Abbreviation": {}, "Code": "2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -135,7 +155,11 @@ "Name": { "en": "Head" }, + "Abbreviation": {}, "Code": "2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -144,7 +168,11 @@ "Name": { "en": "Eye" }, + "Abbreviation": {}, "Code": "2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt index 54ae3b7d2e..381220ba17 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt @@ -160,7 +160,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -185,7 +189,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -210,7 +218,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -235,7 +247,11 @@ "Name": { "en": "Person" }, + "Abbreviation": {}, "Code": "2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -260,7 +276,11 @@ "Name": { "en": "Body" }, + "Abbreviation": {}, "Code": "2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -285,7 +305,11 @@ "Name": { "en": "Head" }, + "Abbreviation": {}, "Code": "2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -310,7 +334,11 @@ "Name": { "en": "Eye" }, + "Abbreviation": {}, "Code": "2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt index dbd0ca5b7f..e1033a7ddc 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt @@ -431,6 +431,10 @@ }, "Predefined": true, "Code": "2", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "1bd42665-0610-4442-8d8d-7c666fee3a6d" } }, @@ -445,6 +449,10 @@ }, "Predefined": false, "Code": "2.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4" } }, @@ -459,6 +467,10 @@ }, "Predefined": false, "Code": "2.1.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5" } }, @@ -473,6 +485,10 @@ }, "Predefined": false, "Code": "2.1.1.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6" } }, @@ -487,6 +503,10 @@ }, "Predefined": true, "Code": "1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "63403699-07c1-43f3-a47c-069d6e4316e5" } }, @@ -501,6 +521,10 @@ }, "Predefined": true, "Code": "1.1", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c" } }, @@ -515,6 +539,10 @@ }, "Predefined": true, "Code": "1.2", + "Abbreviation": {}, + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "EntityId": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb" } }, @@ -659,7 +687,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt index c25af14c52..7eda5a0b1b 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt @@ -74,7 +74,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } @@ -412,7 +416,11 @@ "Name": { "en": "Person" }, + "Abbreviation": {}, "Code": "2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -421,7 +429,11 @@ "Name": { "en": "Body" }, + "Abbreviation": {}, "Code": "2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -430,7 +442,11 @@ "Name": { "en": "Head" }, + "Abbreviation": {}, "Code": "2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -439,7 +455,11 @@ "Name": { "en": "Eye" }, + "Abbreviation": {}, "Code": "2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -448,7 +468,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -457,7 +481,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -466,7 +494,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt index fea2fb4e3e..bd66c87317 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt @@ -875,7 +875,11 @@ "Name": { "en": "Person" }, + "Abbreviation": {}, "Code": "2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -900,7 +904,11 @@ "Name": { "en": "Body" }, + "Abbreviation": {}, "Code": "2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -925,7 +933,11 @@ "Name": { "en": "Head" }, + "Abbreviation": {}, "Code": "2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -950,7 +962,11 @@ "Name": { "en": "Eye" }, + "Abbreviation": {}, "Code": "2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -975,7 +991,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -1000,7 +1020,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -1025,7 +1049,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true }, @@ -1352,7 +1380,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": true } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt index 0851e31b3a..9cd77bb8df 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt @@ -7,13 +7,77 @@ "Name": { "en": "Husband, wife" }, + "Abbreviation": {}, "Code": "4.1.9.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", "DeletedAt": null }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "fc2a0b61-797c-7d91-c737-ead87d4a2e94", + "Name": { + "cbn": "invoice" + }, + "Abbreviation": { + "iyo": "Diverse", + "xrg": "Handmade", + "fla": "Fresh", + "mh": "Berkshire" + }, + "Code": "Diverse", + "Description": { + "omk": { + "Spans": [ + { + "Text": "Unbranded", + "Ws": "omk", + "Tags": [ + "384ab5df-675c-4949-942e-a28efd40ae25" + ] + }, + { + "Text": "interface", + "Ws": "tyi", + "Bold": "Off", + "FontSize": -757754559, + "ForeColor": "#A52A2A", + "Tags": [ + "0c2304f9-66ba-0820-3984-90cbb121e0cf" + ] + } + ] + }, + "jms": { + "Spans": [ + { + "Text": "supply-chains", + "Ws": "xnj", + "Bold": "Invert", + "FontSize": -616207712, + "ForeColor": "#A52A2A", + "Tags": [ + "c727c902-aa8a-facf-d017-413bb82406b0" + ] + } + ] + } + }, + "OcmCodes": "Licensed Granite Tuna", + "LouwNidaCodes": "Handcrafted Steel Chips", + "DeletedAt": null, + "Predefined": false + }, + "Id": "fc2a0b61-797c-7d91-c737-ead87d4a2e94", + "DeletedAt": null + }, { "$type": "MiniLcmCrdtAdapter", "Obj": { @@ -22,13 +86,183 @@ "Name": { "mxj": "Chief" }, + "Abbreviation": {}, "Code": "Cambridgeshire", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, "Id": "9fd83240-7fdb-6d68-8c5d-cd2793d4eb4b", "DeletedAt": null }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "a0984b79-7e88-f875-d4c7-29d3a6f38949", + "Name": { + "mvm": "Awesome Concrete Bacon", + "dby": "Regional", + "ubu": "alarm" + }, + "Abbreviation": { + "mrw": "Pennsylvania", + "tgv": "Handcrafted" + }, + "Code": "Pennsylvania", + "Description": { + "zgn": { + "Spans": [ + { + "Text": "Shoes", + "Ws": "zgn", + "Tags": [ + "b749042f-a701-4b23-91a8-c80c763b2439" + ] + }, + { + "Text": "Bedfordshire", + "Ws": "yky", + "Bold": "Invert", + "FontSize": -685314353, + "ForeColor": "#0000FF", + "Tags": [ + "68b9b959-83e8-ba7d-9519-dd1d4478dd9c" + ] + }, + { + "Text": "portals", + "Ws": "ekg", + "Bold": "Off", + "FontSize": -472235811, + "ForeColor": "#0000FF", + "Tags": [ + "10b9180d-2a9a-8a93-92ad-ef09898092ab" + ] + } + ] + }, + "pur": { + "Spans": [ + { + "Text": "convergence", + "Ws": "nxe", + "Bold": "Off", + "FontSize": 1866281189, + "ForeColor": "#FF0000", + "Tags": [ + "f2fa8737-ea48-b1c8-7ba3-afe638f4c76e" + ] + }, + { + "Text": "Analyst", + "Ws": "vmz", + "Bold": "On", + "FontSize": 579238591, + "ForeColor": "#A52A2A", + "Tags": [ + "35a17805-1f2a-e266-b066-5d1543fc4697" + ] + }, + { + "Text": "deposit", + "Ws": "pur", + "Tags": [ + "88c12736-91cb-4169-99e6-7683691774c7" + ] + }, + { + "Text": "eyeballs", + "Ws": "pur", + "Tags": [ + "59b364b3-c82d-40e6-ab80-08aeb11c5c65" + ] + } + ] + }, + "has": { + "Spans": [ + { + "Text": "AGP", + "Ws": "gft", + "Bold": "Invert", + "FontSize": 1357451558, + "ForeColor": "#00FFFF", + "Tags": [ + "84ec7299-cd10-260b-a00b-3866d5b92ec9" + ] + }, + { + "Text": "calculate", + "Ws": "has", + "Tags": [ + "513cc9df-fdd1-49d9-8b6d-05b7290ac92b" + ] + }, + { + "Text": "Liaison", + "Ws": "rmb", + "Bold": "Off", + "FontSize": -1514627812, + "ForeColor": "#00FFFF", + "Tags": [ + "772176d8-8757-4a59-51f7-7f32609816c8" + ] + }, + { + "Text": "indexing", + "Ws": "gas", + "Bold": "Invert", + "FontSize": -1537258743, + "ForeColor": "#0000FF", + "Tags": [ + "870231b9-7e48-ecb4-f1c2-afb5daa8efde" + ] + } + ] + }, + "mho": { + "Spans": [ + { + "Text": "Directives", + "Ws": "ldo", + "Bold": "Off", + "FontSize": 1926797000, + "ForeColor": "#00000000", + "Tags": [ + "dbc81e08-0379-7306-59ae-f4b618661083" + ] + }, + { + "Text": "bandwidth", + "Ws": "dbv", + "Bold": "Invert", + "FontSize": 1508239382, + "ForeColor": "#00000000", + "Tags": [ + "9d8cf3ee-d1e0-62ff-76be-32077f887fb8" + ] + }, + { + "Text": "card", + "Ws": "mho", + "Tags": [ + "009725b1-4a04-4e27-afeb-9eeda028af13" + ] + } + ] + } + }, + "OcmCodes": "Avon", + "LouwNidaCodes": "metrics", + "DeletedAt": null, + "Predefined": false + }, + "Id": "a0984b79-7e88-f875-d4c7-29d3a6f38949", + "DeletedAt": null + }, { "$type": "MiniLcmCrdtAdapter", "Obj": { @@ -37,13 +271,54 @@ "Name": { "en": "Poison" }, + "Abbreviation": {}, "Code": "2.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", "DeletedAt": null }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "ef5cb328-6aab-ec0a-2b7f-d7b25e54e359", + "Name": { + "ttv": "Clothing, Beauty \u0026 Toys", + "aia": "Officer", + "plh": "Nicaragua" + }, + "Abbreviation": { + "llh": "Parkways", + "bxp": "Multi-lateral", + "az": "EXE" + }, + "Code": "Parkways", + "Description": { + "nyb": { + "Spans": [ + { + "Text": "support", + "Ws": "nyb", + "Tags": [ + "a5e5f6c1-d720-4b6e-b0a5-cd5beca7081b" + ] + } + ] + } + }, + "OcmCodes": "Rustic", + "LouwNidaCodes": "Handcrafted", + "DeletedAt": null, + "Predefined": false + }, + "Id": "ef5cb328-6aab-ec0a-2b7f-d7b25e54e359", + "DeletedAt": null + }, { "$type": "MiniLcmCrdtAdapter", "Obj": { @@ -55,13 +330,53 @@ "wku": "Small Frozen Pants", "tvw": "Terrace" }, + "Abbreviation": {}, "Code": "Myanmar", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, "Id": "6c54b75f-23fb-bbf2-a6a0-33418f0f311b", "DeletedAt": null }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "793be15c-a6c9-6f1f-0484-41b1c39077cf", + "Name": { + "aih": "synthesize" + }, + "Abbreviation": { + "atb": "Nebraska", + "oki": "Generic Soft Bacon", + "bla": "New Jersey", + "jay": "Generic" + }, + "Code": "Nebraska", + "Description": { + "sta": { + "Spans": [ + { + "Text": "Consultant", + "Ws": "sta", + "Tags": [ + "55428614-884a-4dcf-866b-d73cbcdef3b0" + ] + } + ] + } + }, + "OcmCodes": "orchid", + "LouwNidaCodes": "backing up", + "DeletedAt": null, + "Predefined": false + }, + "Id": "793be15c-a6c9-6f1f-0484-41b1c39077cf", + "DeletedAt": null + }, { "$type": "MiniLcmCrdtAdapter", "Obj": { @@ -1101,7 +1416,11 @@ "tay": "Borders", "hle": "1080p" }, + "Abbreviation": {}, "Code": "Gorgeous", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -1200,100 +1519,285 @@ "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "Id": "4acef8a6-3390-be78-52a4-63a5562e7978", "Order": 0, "DeletedAt": null, - "EntryId": "bd93bd5e-7614-63b5-f8f8-418bb4d173a1", + "EntryId": "44150472-5e8d-d06f-fc10-3ee18551069b", "Definition": { - "kib": { - "Spans": [ - { - "Text": "white", - "Ws": "mlq", - "Bold": "Off", - "FontSize": -1266993758, - "ForeColor": "#ADFF2F", - "Tags": [ - "4ba15547-4de9-f211-cedb-eb6ae4a3585a" - ] - }, - { - "Text": "alarm", - "Ws": "kib", - "Tags": [ - "379f51ff-b990-4dd9-be22-0d3677fa6314" - ] - } - ] - }, - "ksu": { + "kuj": { "Spans": [ { - "Text": "engineer", - "Ws": "ksu", + "Text": "Tools", + "Ws": "kuj", "Tags": [ - "9182f41f-c5cc-4bee-98c4-182da28b1d0e" + "9399e2e7-31bb-479a-a66f-1649375b3ad9" ] }, { - "Text": "digital", - "Ws": "ksu", + "Text": "Balboa", + "Ws": "kuj", "Tags": [ - "3add4820-26bc-44cb-a4f0-4620a72fbd5b" + "6c8807b5-c844-48e0-84c1-8ae53c892303" ] }, { - "Text": "Rustic Fresh Gloves", - "Ws": "rmw", + "Text": "Outdoors, Music \u0026 Electronics", + "Ws": "ceg", "Bold": "Off", - "FontSize": -46748961, - "ForeColor": "#00000000", + "FontSize": 217582781, + "ForeColor": "#ADFF2F", "Tags": [ - "d5cb92db-1efa-53a0-c79d-06cd6dc46df8" + "aa1099da-319b-838f-2d3e-1ecc1d24b2ca" ] }, { - "Text": "invoice", - "Ws": "ksu", + "Text": "Secured", + "Ws": "kvg", + "Bold": "Off", + "FontSize": -266126621, + "ForeColor": "#FF0000", "Tags": [ - "e70fe58a-2061-499f-b159-41772bb52ae5" + "29046057-4c51-55be-e8da-86d86f249f98" ] } ] }, - "lup": { + "fuh": { "Spans": [ { - "Text": "orchestration", - "Ws": "lup", - "Tags": [ - "d594bd6e-85af-4488-ad58-0c170e742288" - ] - }, - { - "Text": "virtual", - "Ws": "nla", - "Bold": "Invert", - "FontSize": 1615051790, - "ForeColor": "#A52A2A", - "Tags": [ - "103dfddc-0b92-94a3-cc20-18c010a98259" - ] - }, - { - "Text": "synthesize", - "Ws": "lup", + "Text": "Falls", + "Ws": "fuh", "Tags": [ - "c88fb26c-173f-42d4-90fe-ff4e1e70f522" + "070f7432-939f-46d7-875e-8008c6252c92" ] } ] + } + }, + "Gloss": { + "agt": "regional", + "yi": "interfaces" + }, + "PartOfSpeech": { + "Id": "738707a7-b472-87ae-cd0a-2f81269f7551", + "Name": { + "dln": "Bridge", + "woc": "platforms", + "jmi": "infomediaries", + "yai": "Baby \u0026 Clothing" }, - "hrr": { - "Spans": [ - { - "Text": "e-tailers", - "Ws": "bqd", + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3335d9bb-2f1d-17f9-e305-65042a0e0ecc", + "SemanticDomains": [ + { + "Id": "a12f6f21-35a4-93b8-a89a-4532575bf9f9", + "Name": { + "rol": "invoice", + "jac": "enhance" + }, + "Abbreviation": { + "djj": "Berkshire", + "zsm": "Personal Loan Account", + "hud": "cohesive", + "gei": "connect" + }, + "Code": "Berkshire", + "Description": { + "kev": { + "Spans": [ + { + "Text": "deposit", + "Ws": "mgk", + "Bold": "Invert", + "FontSize": 1103445087, + "ForeColor": "#A52A2A", + "Tags": [ + "04346e65-80ac-bdd3-7e6e-3e5e2ede3a3b" + ] + } + ] + } + }, + "OcmCodes": "input", + "LouwNidaCodes": "calculating", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "11bfd273-1474-9357-1a0b-c7ed1c6941c8", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "xki": { + "Spans": [ + { + "Text": "Cape Verde Escudo", + "Ws": "xki", + "Tags": [ + "af847938-787b-47a1-8225-299868326beb" + ] + }, + { + "Text": "Mission", + "Ws": "kls", + "Bold": "Off", + "FontSize": 1673299871, + "ForeColor": "#ADFF2F", + "Tags": [ + "12973378-ba39-ed39-2e47-5f0b9f7a6dab" + ] + } + ] + }, + "ipo": { + "Spans": [ + { + "Text": "enhance", + "Ws": "ipo", + "Tags": [ + "6b682dd7-f7df-4622-a1c8-7b6a89fdffd8" + ] + }, + { + "Text": "Ergonomic Plastic Tuna", + "Ws": "mdr", + "Bold": "Off", + "FontSize": 839302435, + "ForeColor": "#FF0000", + "Tags": [ + "bf7353a7-3130-645e-3fbe-7b3c25ee9419" + ] + }, + { + "Text": "Maine", + "Ws": "ipo", + "Tags": [ + "f2af176f-a0bf-4200-b4b4-ed3dd8e0ce82" + ] + } + ] + }, + "mos": { + "Spans": [ + { + "Text": "Oregon", + "Ws": "mos", + "Tags": [ + "00c856ec-89dd-4edd-8ec6-96955e75ec5b" + ] + } + ] + } + } + } + ] + }, + "Id": "4acef8a6-3390-be78-52a4-63a5562e7978", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "Order": 0, + "DeletedAt": null, + "EntryId": "bd93bd5e-7614-63b5-f8f8-418bb4d173a1", + "Definition": { + "kib": { + "Spans": [ + { + "Text": "white", + "Ws": "mlq", + "Bold": "Off", + "FontSize": -1266993758, + "ForeColor": "#ADFF2F", + "Tags": [ + "4ba15547-4de9-f211-cedb-eb6ae4a3585a" + ] + }, + { + "Text": "alarm", + "Ws": "kib", + "Tags": [ + "379f51ff-b990-4dd9-be22-0d3677fa6314" + ] + } + ] + }, + "ksu": { + "Spans": [ + { + "Text": "engineer", + "Ws": "ksu", + "Tags": [ + "9182f41f-c5cc-4bee-98c4-182da28b1d0e" + ] + }, + { + "Text": "digital", + "Ws": "ksu", + "Tags": [ + "3add4820-26bc-44cb-a4f0-4620a72fbd5b" + ] + }, + { + "Text": "Rustic Fresh Gloves", + "Ws": "rmw", + "Bold": "Off", + "FontSize": -46748961, + "ForeColor": "#00000000", + "Tags": [ + "d5cb92db-1efa-53a0-c79d-06cd6dc46df8" + ] + }, + { + "Text": "invoice", + "Ws": "ksu", + "Tags": [ + "e70fe58a-2061-499f-b159-41772bb52ae5" + ] + } + ] + }, + "lup": { + "Spans": [ + { + "Text": "orchestration", + "Ws": "lup", + "Tags": [ + "d594bd6e-85af-4488-ad58-0c170e742288" + ] + }, + { + "Text": "virtual", + "Ws": "nla", + "Bold": "Invert", + "FontSize": 1615051790, + "ForeColor": "#A52A2A", + "Tags": [ + "103dfddc-0b92-94a3-cc20-18c010a98259" + ] + }, + { + "Text": "synthesize", + "Ws": "lup", + "Tags": [ + "c88fb26c-173f-42d4-90fe-ff4e1e70f522" + ] + } + ] + }, + "hrr": { + "Spans": [ + { + "Text": "e-tailers", + "Ws": "bqd", "Bold": "Off", "FontSize": 472465589, "ForeColor": "#00000000", @@ -1347,7 +1851,11 @@ "Name": { "gmg": "Berkshire" }, + "Abbreviation": {}, "Code": "composite", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -1464,168 +1972,3298 @@ "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "Id": "8dfeab87-ff97-7007-4ceb-76404c80ed14", "Order": 0, "DeletedAt": null, - "EntryId": "d5af7990-8051-039c-3257-2bd93bad5da4", + "EntryId": "ea59be1d-41a1-e378-ded3-5d0c8b348fbb", "Definition": { - "gnj": { + "xwk": { "Spans": [ { - "Text": "pink", - "Ws": "otn", - "Bold": "Invert", - "FontSize": -1048489220, - "ForeColor": "#FF0000", + "Text": "plug-and-play", + "Ws": "xwk", "Tags": [ - "4931b96a-e357-8a72-5708-03cd3e00df0d" + "cfdc09ef-b615-4731-aae4-a329bc629ea1" ] }, { - "Text": "B2C", - "Ws": "kra", - "Bold": "On", - "FontSize": 787158362, - "ForeColor": "#FF0000", + "Text": "Refined Steel Ball", + "Ws": "xwk", "Tags": [ - "6e3735d6-70d2-6e59-ecf7-cfd0da49ba19" + "04a2a7bb-d022-44da-a2b4-00e022b8bc2b" + ] + }, + { + "Text": "Guarani", + "Ws": "xwk", + "Tags": [ + "0190f301-3f75-4ef7-962e-f148e2d76b85" ] } ] }, - "yae": { + "mwb": { "Spans": [ { - "Text": "Strategist", - "Ws": "yae", + "Text": "optical", + "Ws": "bxw", + "Bold": "Invert", + "FontSize": -35905699, + "ForeColor": "#00000000", "Tags": [ - "a2c427fc-a1e0-414d-9d74-9c92d2634c4c" + "e2c68927-59df-2641-511f-3ef907c0dc58" + ] + } + ] + }, + "dww": { + "Spans": [ + { + "Text": "IB", + "Ws": "jle", + "Bold": "Off", + "FontSize": -351116943, + "ForeColor": "#0000FF", + "Tags": [ + "eb322d72-3748-34e8-e736-551e1697d233" + ] + }, + { + "Text": "Executive", + "Ws": "dww", + "Tags": [ + "1c295ec2-cedf-4697-a48e-a5c6a9afc88d" + ] + }, + { + "Text": "transmitting", + "Ws": "dww", + "Tags": [ + "70eed390-42de-494a-bd7f-657fd1a84902" + ] + }, + { + "Text": "Summit", + "Ws": "dgi", + "Bold": "Invert", + "FontSize": -99063725, + "ForeColor": "#00FFFF", + "Tags": [ + "187ab699-0530-4d91-4e08-874f6c999310" ] } ] } }, "Gloss": { - "kwy": "optical", - "dz": "Product" + "sbi": "Accountability", + "ndb": "Handmade" }, "PartOfSpeech": { - "Id": "872bc271-c608-b3b6-17f7-7a87d584b7b3", + "Id": "84f5e9d2-cb08-6250-69e8-845c41439b0e", "Name": { - "tsk": "deposit", - "ush": "Frozen", - "ulw": "bandwidth", - "nkx": "Home Loan Account" + "lsr": "Turkey", + "ro": "SDD", + "bkp": "SDD", + "mfn": "copy" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "bf4af087-da24-5eb3-0237-ef224c28cfec", + "PartOfSpeechId": "deed6a41-c73d-5b85-59ac-ce36ac0ff0e7", "SemanticDomains": [ { - "Id": "7f788bc3-c6b8-860a-9149-ec59e7500629", + "Id": "11c24540-ca87-73a0-a0c4-cc4bb80e2352", "Name": { - "tst": "networks", - "szv": "Riel", - "bje": "copying", - "owl": "Savings Account" + "gnd": "Communications", + "bgj": "Avon", + "adb": "Borders" }, - "Code": "synthesize", - "DeletedAt": null, - "Predefined": false - } - ], - "ExampleSentences": [], - "Pictures": [] - }, - "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", - "DeletedAt": null - }, - { - "$type": "MiniLcmCrdtAdapter", - "Obj": { - "$type": "Sense", - "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", - "Order": 0, - "DeletedAt": null, - "EntryId": "1451ad8e-6f5a-8923-a691-6e3ed0ba10ac", - "Definition": { - "djo": { - "Spans": [ - { - "Text": "bi-directional", + "Abbreviation": { + "puq": "Throughway" + }, + "Code": "Throughway", + "Description": { + "omo": { + "Spans": [ + { + "Text": "hack", + "Ws": "omo", + "Tags": [ + "42554592-f3bc-4cab-bf46-e5a15c731fb0" + ] + }, + { + "Text": "Chief", + "Ws": "omo", + "Tags": [ + "e6242199-e101-4b92-9d62-73c1bc3b213e" + ] + }, + { + "Text": "action-items", + "Ws": "bbd", + "Bold": "Off", + "FontSize": 719527583, + "ForeColor": "#00000000", + "Tags": [ + "df4bb2a6-aeae-8f8d-af39-c756b7a92fb7" + ] + } + ] + }, + "hrr": { + "Spans": [ + { + "Text": "Representative", + "Ws": "azo", + "Bold": "Invert", + "FontSize": -1934064208, + "ForeColor": "#0000FF", + "Tags": [ + "20789a87-37d0-92e5-906d-e0f718a7018f" + ] + }, + { + "Text": "sensor", + "Ws": "hrr", + "Tags": [ + "55cfa2ec-6c8a-4a66-b726-e6dfce7642b3" + ] + }, + { + "Text": "Web", + "Ws": "law", + "Bold": "On", + "FontSize": 1771904306, + "ForeColor": "#00FFFF", + "Tags": [ + "350feaec-9003-939f-331b-756622795059" + ] + } + ] + }, + "pug": { + "Spans": [ + { + "Text": "bypass", + "Ws": "pug", + "Tags": [ + "21d8ae11-9084-432e-b2a6-28006e545c9d" + ] + }, + { + "Text": "Direct", + "Ws": "bwm", + "Bold": "Off", + "FontSize": -1759606016, + "ForeColor": "#FF0000", + "Tags": [ + "665274f8-e702-5b7d-fede-0dc7cec9512e" + ] + } + ] + } + }, + "OcmCodes": "Liaison", + "LouwNidaCodes": "Yemeni Rial", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "bf5b5048-bab1-6e88-832f-3cfdcf3370f1", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "mjz": { + "Spans": [ + { + "Text": "feed", + "Ws": "bug", + "Bold": "Off", + "FontSize": -2058183479, + "ForeColor": "#ADFF2F", + "Tags": [ + "00f19ea3-8e80-447b-57de-f85c615439f2" + ] + }, + { + "Text": "transparent", + "Ws": "mjz", + "Tags": [ + "25630eb3-f623-42ff-8f84-cc8fb508e0d4" + ] + }, + { + "Text": "24/7", + "Ws": "cnh", + "Bold": "Off", + "FontSize": 1290751029, + "ForeColor": "#00FFFF", + "Tags": [ + "8ea627c1-d17e-66f5-2a41-f45147ad1369" + ] + }, + { + "Text": "generating", + "Ws": "mjz", + "Tags": [ + "e3d265a0-9986-402d-b0be-a41102e4fa0f" + ] + } + ] + }, + "guo": { + "Spans": [ + { + "Text": "leading-edge", + "Ws": "fni", + "Bold": "On", + "FontSize": -1750118627, + "ForeColor": "#FF0000", + "Tags": [ + "97b2158a-77c9-f7fc-d115-4e3c1f571d1b" + ] + }, + { + "Text": "Manat", + "Ws": "mym", + "Bold": "Invert", + "FontSize": -520651277, + "ForeColor": "#00FFFF", + "Tags": [ + "8e195108-ae8d-ee57-a212-1e68406bf1ee" + ] + } + ] + } + } + } + ] + }, + "Id": "8dfeab87-ff97-7007-4ceb-76404c80ed14", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "Order": 0, + "DeletedAt": null, + "EntryId": "d5af7990-8051-039c-3257-2bd93bad5da4", + "Definition": { + "gnj": { + "Spans": [ + { + "Text": "pink", + "Ws": "otn", + "Bold": "Invert", + "FontSize": -1048489220, + "ForeColor": "#FF0000", + "Tags": [ + "4931b96a-e357-8a72-5708-03cd3e00df0d" + ] + }, + { + "Text": "B2C", + "Ws": "kra", + "Bold": "On", + "FontSize": 787158362, + "ForeColor": "#FF0000", + "Tags": [ + "6e3735d6-70d2-6e59-ecf7-cfd0da49ba19" + ] + } + ] + }, + "yae": { + "Spans": [ + { + "Text": "Strategist", + "Ws": "yae", + "Tags": [ + "a2c427fc-a1e0-414d-9d74-9c92d2634c4c" + ] + } + ] + } + }, + "Gloss": { + "kwy": "optical", + "dz": "Product" + }, + "PartOfSpeech": { + "Id": "872bc271-c608-b3b6-17f7-7a87d584b7b3", + "Name": { + "tsk": "deposit", + "ush": "Frozen", + "ulw": "bandwidth", + "nkx": "Home Loan Account" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bf4af087-da24-5eb3-0237-ef224c28cfec", + "SemanticDomains": [ + { + "Id": "7f788bc3-c6b8-860a-9149-ec59e7500629", + "Name": { + "tst": "networks", + "szv": "Riel", + "bje": "copying", + "owl": "Savings Account" + }, + "Abbreviation": {}, + "Code": "synthesize", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "2307e687-a4d0-fb10-067f-9eaa7cf392ff", + "Order": 0, + "DeletedAt": null, + "EntryId": "ba4355d9-1462-d0d5-339b-15e15808bae8", + "Definition": { + "udg": { + "Spans": [ + { + "Text": "Senior", + "Ws": "udg", + "Tags": [ + "4d81d896-c279-4d9a-ab24-d509954c2ae8" + ] + }, + { + "Text": "Cambridgeshire", + "Ws": "udg", + "Tags": [ + "f9e7d913-3123-4ef8-83ca-11b8a57394e4" + ] + } + ] + }, + "xap": { + "Spans": [ + { + "Text": "Unbranded", + "Ws": "wry", + "Bold": "Invert", + "FontSize": 807836057, + "ForeColor": "#ADFF2F", + "Tags": [ + "8e449a3c-3ec7-e998-1294-21fd77b739a8" + ] + }, + { + "Text": "parse", + "Ws": "cav", + "Bold": "Invert", + "FontSize": 387972884, + "ForeColor": "#00000000", + "Tags": [ + "5ba9cbb7-d566-946b-2d76-a4fd0240c718" + ] + }, + { + "Text": "Cambridgeshire", + "Ws": "xap", + "Tags": [ + "a53a3216-d2af-464b-a99c-dfd655de7329" + ] + }, + { + "Text": "TCP", + "Ws": "xap", + "Tags": [ + "956b815a-32c0-4701-b32a-35a027308083" + ] + } + ] + }, + "bfu": { + "Spans": [ + { + "Text": "Profound", + "Ws": "bfu", + "Tags": [ + "2e7543b3-8c59-45da-b236-80193191a8da" + ] + }, + { + "Text": "maroon", + "Ws": "bfu", + "Tags": [ + "312bd3b9-ce92-429f-8f87-02789f7ec90c" + ] + }, + { + "Text": "Awesome", + "Ws": "bfu", + "Tags": [ + "dc31af5e-97f5-4866-b4e9-87972b1b8f1d" + ] + }, + { + "Text": "Visionary", + "Ws": "ium", + "Bold": "On", + "FontSize": 549924641, + "ForeColor": "#00000000", + "Tags": [ + "6e892739-13a1-7e8d-70b3-180acd1e9ae0" + ] + } + ] + }, + "kno": { + "Spans": [ + { + "Text": "THX", + "Ws": "kno", + "Tags": [ + "a8297c6d-3895-4c2a-9c99-d45e06cd57b1" + ] + }, + { + "Text": "holistic", + "Ws": "kno", + "Tags": [ + "74e10c0e-6a92-477d-8a2a-2998e030c810" + ] + }, + { + "Text": "Monaco", + "Ws": "rna", + "Bold": "Off", + "FontSize": 1087947093, + "ForeColor": "#A52A2A", + "Tags": [ + "e7348bd7-a1f3-86fd-ebc7-b0b5d45deacf" + ] + } + ] + } + }, + "Gloss": { + "csz": "Focused", + "pav": "Islands", + "duf": "ivory" + }, + "PartOfSpeech": { + "Id": "ebd2b158-1b24-282f-fd54-cab09fc25dd0", + "Name": { + "krz": "disintermediate", + "oni": "Pre-emptive", + "kyf": "Dynamic", + "irn": "generating" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "5b6b5072-65e2-2260-9d71-93e726b91ea4", + "SemanticDomains": [ + { + "Id": "0c290595-f817-eb75-89b9-4ec357600130", + "Name": { + "ykr": "Research" + }, + "Abbreviation": { + "sdm": "Texas", + "mck": "Concrete" + }, + "Code": "Texas", + "Description": { + "akk": { + "Spans": [ + { + "Text": "Exclusive", + "Ws": "yae", + "Bold": "Off", + "FontSize": -505026221, + "ForeColor": "#ADFF2F", + "Tags": [ + "71731c48-d6f6-c68e-09d1-578ce24276f3" + ] + }, + { + "Text": "Director", + "Ws": "fiw", + "Bold": "Off", + "FontSize": -364188074, + "ForeColor": "#00FFFF", + "Tags": [ + "256015e2-e50d-0764-ed2f-b8ceff2e24d6" + ] + }, + { + "Text": "technologies", + "Ws": "akk", + "Tags": [ + "763923cc-52b6-491b-b7ec-7e3f5f731344" + ] + }, + { + "Text": "Passage", + "Ws": "ywt", + "Bold": "On", + "FontSize": -1242425888, + "ForeColor": "#00FFFF", + "Tags": [ + "dd441779-c048-27f6-1487-8b92c686cf2f" + ] + } + ] + }, + "nys": { + "Spans": [ + { + "Text": "invoice", + "Ws": "tbv", + "Bold": "On", + "FontSize": 1032091183, + "ForeColor": "#FF0000", + "Tags": [ + "922ecaf7-e43c-6e20-06e3-bea1e8bde6c7" + ] + }, + { + "Text": "optical", + "Ws": "wut", + "Bold": "Invert", + "FontSize": -667286982, + "ForeColor": "#00000000", + "Tags": [ + "24d7f3a1-d4ae-160b-d01c-c7ed9deb7ac3" + ] + } + ] + } + }, + "OcmCodes": "1080p", + "LouwNidaCodes": "Home Loan Account", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "dc1a409f-859f-62b3-1fed-2d3520dad02f", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "apx": { + "Spans": [ + { + "Text": "connect", + "Ws": "apx", + "Tags": [ + "bec665a5-55b2-446d-9cb5-a24e2fed1b47" + ] + }, + { + "Text": "Optimization", + "Ws": "bfx", + "Bold": "Off", + "FontSize": 992638610, + "ForeColor": "#ADFF2F", + "Tags": [ + "0251d68f-51f5-6e0b-3589-e3c37f206c0a" + ] + } + ] + }, + "gwm": { + "Spans": [ + { + "Text": "Auto Loan Account", + "Ws": "gwm", + "Tags": [ + "67af5791-ec97-40f3-9a6d-a646a4d9c3c8" + ] + }, + { + "Text": "Cross-group", + "Ws": "jbk", + "Bold": "Off", + "FontSize": -69254604, + "ForeColor": "#00FFFF", + "Tags": [ + "107da833-f2cb-5410-3701-14f962573b5d" + ] + }, + { + "Text": "back-end", + "Ws": "sgy", + "Bold": "Off", + "FontSize": -79398159, + "ForeColor": "#ADFF2F", + "Tags": [ + "81a9ca1c-7822-fa91-8dad-bb7fe5675fb9" + ] + } + ] + } + } + } + ] + }, + "Id": "2307e687-a4d0-fb10-067f-9eaa7cf392ff", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "Order": 0, + "DeletedAt": null, + "EntryId": "1451ad8e-6f5a-8923-a691-6e3ed0ba10ac", + "Definition": { + "djo": { + "Spans": [ + { + "Text": "bi-directional", "Ws": "dbr", "Bold": "Invert", - "FontSize": -1747614445, - "ForeColor": "#00FFFF", + "FontSize": -1747614445, + "ForeColor": "#00FFFF", + "Tags": [ + "cdbfc681-b4cb-fc53-0049-2f7a15f2cf9c" + ] + }, + { + "Text": "Village", + "Ws": "djo", + "Tags": [ + "06b2b112-2eaf-498c-a2b6-3691a0a2d5f2" + ] + }, + { + "Text": "Music, Clothing \u0026 Shoes", + "Ws": "djo", + "Tags": [ + "a7e91784-b210-401a-b134-8a7196d75290" + ] + } + ] + }, + "qyp": { + "Spans": [ + { + "Text": "flexibility", + "Ws": "qyp", + "Tags": [ + "a7ec7011-d986-4fcb-8c65-ed250fa27837" + ] + }, + { + "Text": "users", + "Ws": "qyp", + "Tags": [ + "89317672-83e3-4ec0-b15a-130c709c296a" + ] + }, + { + "Text": "Analyst", + "Ws": "dep", + "Bold": "Off", + "FontSize": -938960202, + "ForeColor": "#00FFFF", + "Tags": [ + "34eed6fc-feb1-cb7e-5fba-2cc249b35f9d" + ] + } + ] + } + }, + "Gloss": { + "ciy": "Curve" + }, + "PartOfSpeech": { + "Id": "a6b04de2-ca75-b141-abe1-f4494a514535", + "Name": { + "mxt": "TCP" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "fac379c1-43a4-5710-83c8-5b9f55c90108", + "SemanticDomains": [ + { + "Id": "3ad12c58-f9a5-9ccd-04ff-8b979eac461b", + "Name": { + "ulk": "white" + }, + "Abbreviation": {}, + "Code": "SSL", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "ddc6af94-5a95-c404-2cb8-ae1e61968538", + "Order": 0, + "MediaUri": "sil-media://lexbox/24556101-1dbc-4d4a-bf5a-8f9cf05fe8ea", + "Caption": { + "pea": { + "Spans": [ + { + "Text": "alarm", + "Ws": "pea", + "Tags": [ + "c97d629f-da4a-4e7f-9ea2-fedb628649e0" + ] + }, + { + "Text": "relationships", + "Ws": "byi", + "Bold": "Invert", + "FontSize": -1098187694, + "ForeColor": "#ADFF2F", + "Tags": [ + "d9693d70-5ee4-4a63-7abc-f42c99fca4f2" + ] + }, + { + "Text": "Kentucky", + "Ws": "pea", + "Tags": [ + "2d593536-8d6e-4766-ae62-c141ee7cb206" + ] + } + ] + } + } + } + ] + }, + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "542f78a0-a689-1af5-e51a-0fc4e5d2410d", + "Order": 0, + "DeletedAt": null, + "EntryId": "93448ec5-1028-2656-af10-d4c603f7c13f", + "Definition": { + "tms": { + "Spans": [ + { + "Text": "connect", + "Ws": "kye", + "Bold": "Off", + "FontSize": -773507619, + "ForeColor": "#FF0000", + "Tags": [ + "6a671dfa-7fff-ec9d-c4d8-dcfe1b0b72db" + ] + } + ] + }, + "tda": { + "Spans": [ + { + "Text": "Rustic Soft Cheese", + "Ws": "bzi", + "Bold": "Off", + "FontSize": -1187734877, + "ForeColor": "#00000000", + "Tags": [ + "c005deff-94ee-ff12-c0e5-b61540a58e87" + ] + }, + { + "Text": "6th generation", + "Ws": "tda", + "Tags": [ + "8a5201b7-434e-4653-a24a-6728e941afad" + ] + }, + { + "Text": "synergies", + "Ws": "tda", + "Tags": [ + "94c6ccdb-9138-440a-b259-5ff132d083e7" + ] + }, + { + "Text": "Customizable", + "Ws": "jdg", + "Bold": "Off", + "FontSize": -1501015841, + "ForeColor": "#00000000", + "Tags": [ + "cc992579-b071-419a-f90e-f14e0934437e" + ] + } + ] + }, + "ssz": { + "Spans": [ + { + "Text": "Borders", + "Ws": "smv", + "Bold": "On", + "FontSize": 1494634100, + "ForeColor": "#ADFF2F", + "Tags": [ + "4b9aec83-ee67-061e-f598-42fb865344e9" + ] + }, + { + "Text": "Quality", + "Ws": "smr", + "Bold": "On", + "FontSize": 1028159201, + "ForeColor": "#00000000", + "Tags": [ + "692a5499-a2ac-f9f1-ab22-0d9c866e84a9" + ] + }, + { + "Text": "bandwidth", + "Ws": "ssz", + "Tags": [ + "a94bde12-e5f7-496e-a927-91e2149104f2" + ] + }, + { + "Text": "Home Loan Account", + "Ws": "fui", + "Bold": "On", + "FontSize": -1258777637, + "ForeColor": "#FF0000", + "Tags": [ + "a5e509ac-0466-150f-6755-df37119b6255" + ] + } + ] + }, + "laz": { + "Spans": [ + { + "Text": "cross-platform", + "Ws": "laz", + "Tags": [ + "f6730030-73b8-4d14-a5a7-51fdfcf9e800" + ] + }, + { + "Text": "transform", + "Ws": "vmm", + "Bold": "Invert", + "FontSize": 1441194191, + "ForeColor": "#0000FF", + "Tags": [ + "96f215a6-5701-a8bf-734b-284844d22d68" + ] + }, + { + "Text": "benchmark", + "Ws": "gbn", + "Bold": "Off", + "FontSize": 1694409672, + "ForeColor": "#0000FF", + "Tags": [ + "764ae70b-1601-3f49-589d-94d41ce25973" + ] + } + ] + } + }, + "Gloss": { + "xpm": "pixel", + "pbm": "Dominican Republic", + "umu": "lavender", + "urp": "Colorado" + }, + "PartOfSpeech": { + "Id": "3fae0688-a597-1647-c727-bd4882aaa535", + "Name": { + "eud": "GB", + "dnw": "West Virginia", + "bhy": "array", + "bub": "bottom-line" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "6bb7d9aa-a54e-2293-9dfe-894a5d3f3a2a", + "SemanticDomains": [ + { + "Id": "450c689b-010a-861d-9fa6-c8eda32efc65", + "Name": { + "mdk": "next generation", + "sq": "deposit", + "nct": "Oregon", + "mak": "maximized" + }, + "Abbreviation": { + "zoo": "Computers \u0026 Baby", + "bbi": "circuit", + "osx": "Intranet", + "yba": "Intranet" + }, + "Code": "Computers \u0026 Baby", + "Description": { + "lmk": { + "Spans": [ + { + "Text": "parsing", + "Ws": "cow", + "Bold": "On", + "FontSize": 1505962195, + "ForeColor": "#A52A2A", + "Tags": [ + "b5a06730-4efe-9133-1b15-1be9f68639c1" + ] + }, + { + "Text": "demand-driven", + "Ws": "lmk", + "Tags": [ + "12d76865-390e-4e01-97a5-94e5a5c054eb" + ] + }, + { + "Text": "circuit", + "Ws": "lmk", + "Tags": [ + "ba438d42-4b70-449d-a830-df0cb32fbce7" + ] + }, + { + "Text": "web-readiness", + "Ws": "max", + "Bold": "Invert", + "FontSize": 1000674404, + "ForeColor": "#A52A2A", + "Tags": [ + "f25d420d-e83e-5580-0c0a-700174de62c5" + ] + } + ] + }, + "dac": { + "Spans": [ + { + "Text": "Sleek", + "Ws": "dac", + "Tags": [ + "01d7a6e8-2b1c-4be2-a9ba-9e4129e74b0d" + ] + }, + { + "Text": "gold", + "Ws": "dac", + "Tags": [ + "44755518-d3a4-49c0-be18-c72f3f8c1a32" + ] + }, + { + "Text": "Executive", + "Ws": "onj", + "Bold": "Off", + "FontSize": 1417861021, + "ForeColor": "#0000FF", + "Tags": [ + "ed70f70f-57fe-4443-cbc2-efc3e04c58d2" + ] + }, + { + "Text": "Bulgarian Lev", + "Ws": "dac", + "Tags": [ + "a27dc093-d3ae-436a-aebe-b44f43ca7a15" + ] + } + ] + } + }, + "OcmCodes": "Underpass", + "LouwNidaCodes": "XML", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "01989924-50f2-4f02-6efa-5b263514ff9e", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "nxu": { + "Spans": [ + { + "Text": "teal", + "Ws": "nxu", + "Tags": [ + "8c71f820-fd5c-482b-a3cd-d3f2afe97da3" + ] + }, + { + "Text": "facilitate", + "Ws": "nxu", + "Tags": [ + "a4d57d33-d3cd-4ea6-9b04-d2283d28ea9c" + ] + } + ] + }, + "xgr": { + "Spans": [ + { + "Text": "circuit", + "Ws": "xgr", + "Tags": [ + "0ac87bf0-685e-4908-b14e-97c4e4bcdfa0" + ] + }, + { + "Text": "SDD", + "Ws": "xgr", + "Tags": [ + "077d6d81-bbbd-4ee7-ac73-b26f511d8eb6" + ] + }, + { + "Text": "Managed", + "Ws": "xgr", + "Tags": [ + "7659180c-bcad-4ee5-9e41-6221458ace9d" + ] + }, + { + "Text": "Programmable", + "Ws": "xgr", + "Tags": [ + "06e9a074-8fb3-4196-95b5-c9c1a6519ee7" + ] + } + ] + }, + "myy": { + "Spans": [ + { + "Text": "Analyst", + "Ws": "onu", + "Bold": "On", + "FontSize": -1730171590, + "ForeColor": "#ADFF2F", + "Tags": [ + "bc2713d7-5e3f-bca1-24b3-1e2d721dd7de" + ] + }, + { + "Text": "Rubber", + "Ws": "myy", + "Tags": [ + "fe6bc95e-41f1-458f-a862-2730da4053f8" + ] + } + ] + }, + "ymp": { + "Spans": [ + { + "Text": "Checking Account", + "Ws": "cui", + "Bold": "On", + "FontSize": -1669951459, + "ForeColor": "#A52A2A", + "Tags": [ + "d8d2bdff-74c8-6114-ce8b-87afbfc30f4d" + ] + } + ] + } + } + } + ] + }, + "Id": "542f78a0-a689-1af5-e51a-0fc4e5d2410d", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "Order": 0, + "DeletedAt": null, + "EntryId": "170f50ef-06ff-c0c3-ba31-95d557834be3", + "Definition": { + "kqx": { + "Spans": [ + { + "Text": "implementation", + "Ws": "kqx", + "Tags": [ + "69e02d33-4485-4535-a14d-baf5a4d2acd6" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "kqx", + "Tags": [ + "0db6b9b8-58f5-4473-9fde-43e665c44da2" + ] + }, + { + "Text": "Coordinator", + "Ws": "hdn", + "Bold": "Off", + "FontSize": -1831667232, + "ForeColor": "#A52A2A", + "Tags": [ + "f6c84f90-af3a-1f4c-415e-3e21f12ce3e9" + ] + } + ] + } + }, + "Gloss": { + "bdz": "generate", + "doo": "Refined Frozen Towels", + "mej": "Accounts", + "ymc": "Awesome Metal Soap" + }, + "PartOfSpeech": { + "Id": "27bbbcc2-0763-1cbb-f7f2-e8a268b88542", + "Name": { + "win": "CFA Franc BCEAO", + "mxe": "Senior", + "gpa": "Austria", + "xmo": "Incredible" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a1a57ccc-5bb6-1db3-e404-d295a92a533c", + "SemanticDomains": [ + { + "Id": "f405f8cf-f979-b590-ac68-af276c005e5e", + "Name": { + "pue": "Automotive, Games \u0026 Grocery", + "ptr": "deposit", + "etn": "Configurable", + "xco": "Borders" + }, + "Abbreviation": {}, + "Code": "mint green", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "8365c6df-c5d4-df40-f393-cb241ea38a5a", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "imt": { + "Spans": [ + { + "Text": "Fantastic Wooden Sausages", + "Ws": "imt", + "Tags": [ + "a6f02bbc-af27-4241-995b-1988ab411381" + ] + }, + { + "Text": "Investment Account", + "Ws": "lii", + "Bold": "Off", + "FontSize": 294442575, + "ForeColor": "#FF0000", + "Tags": [ + "6136995a-68ce-2078-2287-0e3238630303" + ] + }, + { + "Text": "SSL", + "Ws": "nzm", + "Bold": "On", + "FontSize": -60028142, + "ForeColor": "#00000000", + "Tags": [ + "1e38adaf-4a97-e03b-9485-3e81ae7f5f57" + ] + } + ] + }, + "xkx": { + "Spans": [ + { + "Text": "incentivize", + "Ws": "xkx", + "Tags": [ + "7fcd101f-d866-4125-a76e-240480390548" + ] + }, + { + "Text": "client-server", + "Ws": "xkx", + "Tags": [ + "db527e0f-0bec-4a80-ad0d-e64eb86d6cf3" + ] + }, + { + "Text": "syndicate", + "Ws": "xkx", + "Tags": [ + "6881422e-d4e6-4f54-88f3-20597df98b0c" + ] + }, + { + "Text": "Practical", + "Ws": "kcb", + "Bold": "On", + "FontSize": -701786450, + "ForeColor": "#ADFF2F", + "Tags": [ + "2e7a971a-bd7c-a7bf-b8f7-488dcc272960" + ] + } + ] + } + } + } + ] + }, + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "8adba1c4-4855-3623-9b16-426b8ec858c4", + "Order": 0, + "DeletedAt": null, + "EntryId": "469f5d12-a983-f936-0352-05fb55f43f7c", + "Definition": { + "tlj": { + "Spans": [ + { + "Text": "Handcrafted Steel Computer", + "Ws": "tlj", + "Tags": [ + "9f247918-9fa9-4389-901a-035cbf05a7e9" + ] + }, + { + "Text": "Center", + "Ws": "dgg", + "Bold": "Invert", + "FontSize": 1199318758, + "ForeColor": "#ADFF2F", + "Tags": [ + "b79d188e-c179-c039-fcdf-72b13c0f939b" + ] + }, + { + "Text": "withdrawal", + "Ws": "tlj", + "Tags": [ + "f130e4a1-cba9-470e-baba-b77f8a7890fe" + ] + }, + { + "Text": "cultivate", + "Ws": "tlj", + "Tags": [ + "ed46e6cc-e80c-4159-8fdc-eeceefe647db" + ] + } + ] + } + }, + "Gloss": { + "irn": "Plastic", + "tnu": "Small Cotton Chips", + "tik": "Equatorial Guinea" + }, + "PartOfSpeech": { + "Id": "eb6d35ce-fc4a-9416-12bd-62ca09e37ae1", + "Name": { + "baa": "Configurable", + "bgl": "Legacy", + "tsd": "Personal Loan Account", + "wja": "deploy" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "5c74fbcb-593f-75ac-5ae0-882be49b07d8", + "SemanticDomains": [ + { + "Id": "285e0219-d7aa-457c-4bf1-15d8e5a27798", + "Name": { + "gyi": "interface", + "kwg": "District", + "ncj": "web-enabled", + "ttn": "Berkshire" + }, + "Abbreviation": { + "bqw": "Rustic Plastic Chicken", + "fir": "Oregon" + }, + "Code": "Rustic Plastic Chicken", + "Description": { + "mgw": { + "Spans": [ + { + "Text": "Brand", + "Ws": "rmf", + "Bold": "On", + "FontSize": -715091195, + "ForeColor": "#ADFF2F", + "Tags": [ + "273c8ba3-27af-8246-cb8b-90b49697afac" + ] + }, + { + "Text": "array", + "Ws": "emz", + "Bold": "On", + "FontSize": 361479725, + "ForeColor": "#A52A2A", + "Tags": [ + "0d3feff7-c30a-335d-a654-d2f345d9afe3" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "mgw", + "Tags": [ + "0f2c3279-de07-407c-adbd-d72e207b581a" + ] + } + ] + }, + "kjq": { + "Spans": [ + { + "Text": "navigating", + "Ws": "mvo", + "Bold": "Off", + "FontSize": 1217233905, + "ForeColor": "#A52A2A", + "Tags": [ + "6bde95bd-167e-0f0e-b2da-98db738c6faa" + ] + }, + { + "Text": "alarm", + "Ws": "kjq", + "Tags": [ + "2ebbad68-f178-4e2e-ae65-2db77a03c99a" + ] + }, + { + "Text": "Nevada", + "Ws": "odt", + "Bold": "On", + "FontSize": -1524448779, + "ForeColor": "#ADFF2F", + "Tags": [ + "cfd43ead-f37f-c5b8-ac25-6339565a21a5" + ] + }, + { + "Text": "Christmas Island", + "Ws": "kjq", + "Tags": [ + "83802de7-9df8-4968-9875-b1b89269b3e0" + ] + } + ] + }, + "ghh": { + "Spans": [ + { + "Text": "programming", + "Ws": "gic", + "Bold": "On", + "FontSize": 1890366517, + "ForeColor": "#ADFF2F", + "Tags": [ + "91e5dbd7-6fa7-dc78-0755-f87a53c4384b" + ] + }, + { + "Text": "deposit", + "Ws": "fvr", + "Bold": "Off", + "FontSize": -485037510, + "ForeColor": "#0000FF", + "Tags": [ + "985ec042-90aa-797b-05d0-19eaf6397521" + ] + } + ] + } + }, + "OcmCodes": "Fresh", + "LouwNidaCodes": "Tasty Cotton Chips", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "d960df65-90b9-f278-f19f-eca49bab9409", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "stp": { + "Spans": [ + { + "Text": "Re-engineered", + "Ws": "ffi", + "Bold": "On", + "FontSize": -635937948, + "ForeColor": "#00FFFF", + "Tags": [ + "3022da6f-7fc1-db91-515e-59c6a8574b2f" + ] + } + ] + }, + "zmb": { + "Spans": [ + { + "Text": "Ergonomic", + "Ws": "ahl", + "Bold": "Off", + "FontSize": -489984917, + "ForeColor": "#ADFF2F", + "Tags": [ + "49e955f0-e805-a1eb-808c-97e115537b4c" + ] + } + ] + }, + "mfp": { + "Spans": [ + { + "Text": "matrix", + "Ws": "raz", + "Bold": "Invert", + "FontSize": 694152729, + "ForeColor": "#00FFFF", + "Tags": [ + "d5575ef5-1625-5df7-c067-df36940e0ef6" + ] + }, + { + "Text": "Coordinator", + "Ws": "mfp", + "Tags": [ + "ea633c47-1f59-452a-a260-704c00614f7a" + ] + }, + { + "Text": "collaborative", + "Ws": "slp", + "Bold": "On", + "FontSize": -1205849755, + "ForeColor": "#00FFFF", + "Tags": [ + "061dd525-2c62-96ae-e632-84b0a039fe90" + ] + }, + { + "Text": "paradigms", + "Ws": "mfp", + "Tags": [ + "1155932e-35cb-47bb-8901-797f28969f9e" + ] + } + ] + }, + "krz": { + "Spans": [ + { + "Text": "Rial Omani", + "Ws": "krz", + "Tags": [ + "17e16744-40bc-473e-972f-a21d8525aed0" + ] + }, + { + "Text": "District", + "Ws": "kzw", + "Bold": "Off", + "FontSize": -75115026, + "ForeColor": "#FF0000", + "Tags": [ + "fe8e3cbb-6ef5-d54c-a46f-f0ad3b967504" + ] + } + ] + } + } + } + ] + }, + "Id": "8adba1c4-4855-3623-9b16-426b8ec858c4", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf4fe0e2-5378-4425-9fba-9f66c32c438c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Order": 0, + "DeletedAt": null, + "EntryId": "d6347312-90fd-7a9b-611c-10e2be8f1e83", + "Definition": { + "zu": { + "Spans": [ + { + "Text": "optical", + "Ws": "zu", + "Tags": [ + "2f40db72-6dcd-4605-94f4-bb2f8e6f2c24" + ] + }, + { + "Text": "eco-centric", + "Ws": "ses", + "Bold": "On", + "FontSize": 150168967, + "ForeColor": "#ADFF2F", + "Tags": [ + "4d35b5c1-d8c0-2ee3-e261-985e474e2c62" + ] + }, + { + "Text": "Internal", + "Ws": "zu", + "Tags": [ + "ef294368-381e-4228-9feb-6fc5a21cb6f1" + ] + } + ] + } + }, + "Gloss": { + "nhz": "Personal Loan Account", + "vec": "Summit" + }, + "PartOfSpeech": { + "Id": "fe457b90-ba20-b702-a156-13149c126cc6", + "Name": { + "zkh": "Parks" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "aa3e7491-0e0d-b22f-cbf1-63e76cd83314", + "SemanticDomains": [ + { + "Id": "ecf6b571-e360-f100-7cf7-ec214489914a", + "Name": { + "bjy": "Montana", + "ga": "neural-net" + }, + "Abbreviation": {}, + "Code": "Rand", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "c70c8e39-9fea-f0ca-96ea-c54682b26ff2", + "Order": 0, + "MediaUri": "sil-media://lexbox/cc67fbb0-7072-4a0c-aa87-1c11dbd5c160", + "Caption": { + "spl": { + "Spans": [ + { + "Text": "Road", + "Ws": "plj", + "Bold": "On", + "FontSize": 206809027, + "ForeColor": "#ADFF2F", + "Tags": [ + "5ba3fafc-2a16-8ee1-4764-223a2ece4032" + ] + }, + { + "Text": "explicit", + "Ws": "ybb", + "Bold": "On", + "FontSize": -1840259444, + "ForeColor": "#ADFF2F", + "Tags": [ + "6fddd2cc-5dbd-6d0d-4bed-39e98d79771a" + ] + }, + { + "Text": "TCP", + "Ws": "mqb", + "Bold": "Invert", + "FontSize": 890686392, + "ForeColor": "#0000FF", + "Tags": [ + "2ff98fc6-d387-23aa-581a-9199a4971005" + ] + } + ] + } + } + } + ] + }, + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "17cda451-798e-29dd-ee49-7c04dc66719e", + "Order": 0, + "DeletedAt": null, + "EntryId": "970edb2e-613f-a4bf-c7ff-5f60d4fa7af1", + "Definition": { + "dei": { + "Spans": [ + { + "Text": "Taka", + "Ws": "dei", + "Tags": [ + "e52fbe5a-b92b-449d-b90d-cabb520e7286" + ] + } + ] + }, + "mlx": { + "Spans": [ + { + "Text": "Multi-tiered", + "Ws": "mlx", + "Tags": [ + "bd534283-3e0a-42ff-890b-efdcf1e5b701" + ] + }, + { + "Text": "Frozen", + "Ws": "mlx", + "Tags": [ + "deb68d62-2420-474a-a226-49c62dc4529d" + ] + }, + { + "Text": "customer loyalty", + "Ws": "mlx", + "Tags": [ + "7bbf713c-ffae-455e-945e-16d373063bfe" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "mlx", + "Tags": [ + "2a3d2a3d-7d10-4db0-9d2d-bc56d341382b" + ] + } + ] + }, + "kzs": { + "Spans": [ + { + "Text": "Computers", + "Ws": "kpz", + "Bold": "On", + "FontSize": 1422606478, + "ForeColor": "#00FFFF", + "Tags": [ + "3931a8f1-b402-da2d-7497-cdc3d7a98dba" + ] + }, + { + "Text": "redundant", + "Ws": "kzs", + "Tags": [ + "f4151f70-12f4-44ee-a61f-0adf13f37141" + ] + } + ] + } + }, + "Gloss": { + "kdm": "tertiary" + }, + "PartOfSpeech": { + "Id": "54b5b83d-dc19-96d6-5725-48a64d3a9381", + "Name": { + "lhs": "connect", + "tdo": "open-source", + "mwp": "Synergistic", + "wir": "open-source" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "46286523-ba3f-22f0-70a5-e2dc01460add", + "SemanticDomains": [ + { + "Id": "c6ab16cb-6e98-e691-619e-1253b284542f", + "Name": { + "yeu": "Wooden" + }, + "Abbreviation": { + "aly": "COM", + "mvz": "Refined Cotton Shirt", + "kuu": "seize" + }, + "Code": "COM", + "Description": { + "wyy": { + "Spans": [ + { + "Text": "Buckinghamshire", + "Ws": "zad", + "Bold": "On", + "FontSize": 377665266, + "ForeColor": "#00FFFF", + "Tags": [ + "eadc9533-7d9e-3a31-ae5c-e6b576e756cc" + ] + }, + { + "Text": "Applications", + "Ws": "wyy", + "Tags": [ + "0ddb1590-302b-423f-a755-8bb1fe8317e6" + ] + } + ] + } + }, + "OcmCodes": "Garden \u0026 Garden", + "LouwNidaCodes": "Administrator", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "ae7c2715-7ef3-6618-32e8-8b8a6501897d", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "mjw": { + "Spans": [ + { + "Text": "Cove", + "Ws": "rmu", + "Bold": "Off", + "FontSize": -2061268859, + "ForeColor": "#00FFFF", + "Tags": [ + "0010f14f-74f0-1e1c-2b66-26f11401396a" + ] + }, + { + "Text": "Borders", + "Ws": "mjw", + "Tags": [ + "46af774c-9ea7-43fd-9fbd-0e6c8ae622b4" + ] + }, + { + "Text": "azure", + "Ws": "mjw", + "Tags": [ + "f0a0cf89-0b88-4503-ba52-94b7d44729a1" + ] + } + ] + }, + "mes": { + "Spans": [ + { + "Text": "interface", + "Ws": "mes", + "Tags": [ + "42eb20d3-11e2-4ec6-b83d-c0a2e09f6a9c" + ] + }, + { + "Text": "Puerto Rico", + "Ws": "nex", + "Bold": "Invert", + "FontSize": -297251575, + "ForeColor": "#00000000", + "Tags": [ + "dcc1bcc9-9b75-e2ca-c2bf-9381d4c1be7c" + ] + }, + { + "Text": "Tasty Wooden Pizza", + "Ws": "mes", + "Tags": [ + "d2f36bc9-9727-4dc6-a66f-4d17ca72ae76" + ] + } + ] + }, + "nrc": { + "Spans": [ + { + "Text": "web-readiness", + "Ws": "aoj", + "Bold": "On", + "FontSize": -1690951831, + "ForeColor": "#ADFF2F", + "Tags": [ + "45598c40-a419-f9ce-499f-2241d78fe65a" + ] + }, + { + "Text": "engineer", + "Ws": "plk", + "Bold": "On", + "FontSize": 1178646207, + "ForeColor": "#00FFFF", + "Tags": [ + "8392b830-77af-2860-9b0e-be685d78890c" + ] + }, + { + "Text": "Handmade Soft Hat", + "Ws": "kyy", + "Bold": "On", + "FontSize": 1524161787, + "ForeColor": "#A52A2A", + "Tags": [ + "a30633b6-40f4-8e5c-70db-ec69ba326d3e" + ] + }, + { + "Text": "didactic", + "Ws": "nrc", + "Tags": [ + "a24d58f0-4814-4064-b730-dd9b79901343" + ] + } + ] + }, + "nmi": { + "Spans": [ + { + "Text": "green", + "Ws": "nmi", + "Tags": [ + "d3bda030-ff87-495f-a809-df9a8a27e901" + ] + } + ] + } + } + } + ] + }, + "Id": "17cda451-798e-29dd-ee49-7c04dc66719e", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "Order": 0, + "DeletedAt": null, + "EntryId": "c8692489-ecea-4455-a12f-3b8e845ee660", + "Definition": { + "uni": { + "Spans": [ + { + "Text": "Officer", + "Ws": "uni", + "Tags": [ + "c20655dd-aa14-43d4-a3f6-c3feb4bf0417" + ] + } + ] + } + }, + "Gloss": { + "tjo": "reinvent" + }, + "PartOfSpeech": { + "Id": "dd85375e-839a-adab-af0d-5b2b8fb0c75e", + "Name": { + "lgn": "bus", + "bpt": "multi-state" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "69fd7bba-28e1-ab86-f993-ace1b3d028d6", + "SemanticDomains": [ + { + "Id": "0be1c84e-f1f9-40c2-8242-e07f81e2b466", + "Name": { + "tda": "bypassing", + "leb": "Analyst", + "kxm": "Avon" + }, + "Abbreviation": {}, + "Code": "Auto Loan Account", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "991f2191-40bc-e56b-dd24-d6135792053b", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "pzn": { + "Spans": [ + { + "Text": "portals", + "Ws": "aux", + "Bold": "Invert", + "FontSize": 1639221492, + "ForeColor": "#ADFF2F", + "Tags": [ + "39c4e2fa-22d5-ae8a-33da-0e2ef61a2bec" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "pzn", + "Tags": [ + "6a5e9f05-72ce-462d-8e77-cba524d3c745" + ] + }, + { + "Text": "toolset", + "Ws": "bkn", + "Bold": "On", + "FontSize": 1678144495, + "ForeColor": "#0000FF", + "Tags": [ + "320debd0-19af-1f43-568f-320fd25dd10f" + ] + }, + { + "Text": "functionalities", + "Ws": "yxa", + "Bold": "On", + "FontSize": 1088844074, + "ForeColor": "#A52A2A", + "Tags": [ + "5af5d0bd-de4e-ac4e-9b91-b1e1c1ed975e" + ] + } + ] + }, + "zim": { + "Spans": [ + { + "Text": "Avenue", + "Ws": "zim", + "Tags": [ + "a00cf5d4-6f85-4723-8da8-b96ad5ffdcf1" + ] + }, + { + "Text": "copying", + "Ws": "zim", + "Tags": [ + "b1769f78-b17d-4f1e-a128-1751fc4c60e8" + ] + }, + { + "Text": "interface", + "Ws": "bhk", + "Bold": "Invert", + "FontSize": 1962777344, + "ForeColor": "#0000FF", + "Tags": [ + "f6c5673c-dbf4-c29c-daa6-17473f85e209" + ] + } + ] + }, + "ghl": { + "Spans": [ + { + "Text": "bypassing", + "Ws": "ghl", + "Tags": [ + "da3e852a-3246-4abc-9a22-2fa254b08eba" + ] + }, + { + "Text": "Small Cotton Hat", + "Ws": "ghl", + "Tags": [ + "ab718d66-b0f4-466e-bfc6-eb39e22adcfb" + ] + } + ] + }, + "afo": { + "Spans": [ + { + "Text": "Marketing", + "Ws": "afo", + "Tags": [ + "a460263d-9619-4a3f-9b42-17d1359b0b64" + ] + }, + { + "Text": "Liechtenstein", + "Ws": "afo", + "Tags": [ + "f85b1388-51bc-497c-86a6-063d6cc00c30" + ] + } + ] + } + } + } + ] + }, + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "cddb9fca-60b5-96a4-c428-280da1e3e0e6", + "Order": 0, + "DeletedAt": null, + "EntryId": "049e9e5a-b905-1af6-4608-712a69c3957a", + "Definition": { + "crd": { + "Spans": [ + { + "Text": "Zimbabwe Dollar", + "Ws": "nyn", + "Bold": "On", + "FontSize": 563429843, + "ForeColor": "#00000000", + "Tags": [ + "d5ffbe8d-b9d2-9ce9-7ac8-0abaca9bbe97" + ] + }, + { + "Text": "Steel", + "Ws": "dhn", + "Bold": "On", + "FontSize": -282165959, + "ForeColor": "#00FFFF", + "Tags": [ + "7ff12ecf-c550-e73e-bf6e-2e7a83c40e40" + ] + }, + { + "Text": "grow", + "Ws": "crd", + "Tags": [ + "80f4a3b9-8d88-481e-a8da-a54655f544ec" + ] + }, + { + "Text": "connecting", + "Ws": "crd", + "Tags": [ + "6a29af14-5d9d-44bf-8fe2-69b8375b0f14" + ] + } + ] + }, + "nuz": { + "Spans": [ + { + "Text": "Delaware", + "Ws": "nuz", + "Tags": [ + "d10527d5-fe7f-4618-99a5-8a1f59803b8e" + ] + } + ] + }, + "mbh": { + "Spans": [ + { + "Text": "Belize Dollar", + "Ws": "mbh", + "Tags": [ + "df0639cb-446f-4fc1-b3e2-020a8519f4b6" + ] + } + ] + } + }, + "Gloss": { + "mws": "Guadeloupe", + "duz": "scalable", + "azg": "Ergonomic", + "slu": "Illinois" + }, + "PartOfSpeech": { + "Id": "e2ea913b-888b-1ccb-593e-eb8d34f0bcfd", + "Name": { + "xul": "Sleek Wooden Chicken", + "uan": "Health \u0026 Toys", + "krp": "Buckinghamshire" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "76b290e6-eb7b-0fa8-67b3-0abd6a769539", + "SemanticDomains": [ + { + "Id": "22da75e3-0c8e-0a58-d8f6-ae9bfee05f4f", + "Name": { + "xyt": "intuitive" + }, + "Abbreviation": { + "fag": "Plaza" + }, + "Code": "Plaza", + "Description": { + "aft": { + "Spans": [ + { + "Text": "cyan", + "Ws": "aft", + "Tags": [ + "0f43d7f2-ec15-43b1-a46b-520d81dfd3f5" + ] + }, + { + "Text": "intermediate", + "Ws": "efi", + "Bold": "Invert", + "FontSize": -654768324, + "ForeColor": "#0000FF", + "Tags": [ + "80b04350-1569-b50f-3d13-3da43ddaf54e" + ] + }, + { + "Text": "Regional", + "Ws": "aft", + "Tags": [ + "67164806-875b-47df-bdfb-fd420155e81b" + ] + } + ] + }, + "gyg": { + "Spans": [ + { + "Text": "Slovenia", + "Ws": "gyg", + "Tags": [ + "73079ad8-f52d-4313-b9e1-32c42def2a24" + ] + }, + { + "Text": "regional", + "Ws": "zmx", + "Bold": "Invert", + "FontSize": 1618562448, + "ForeColor": "#00000000", + "Tags": [ + "d1da51af-31a2-132f-dd02-6e70ad4ad1ce" + ] + } + ] + }, + "kuv": { + "Spans": [ + { + "Text": "Fresh", + "Ws": "kuv", + "Tags": [ + "4d9949d7-fe21-457b-bec4-2131524751dd" + ] + }, + { + "Text": "Consultant", + "Ws": "tmd", + "Bold": "Off", + "FontSize": -1532719218, + "ForeColor": "#A52A2A", + "Tags": [ + "fcc04ea0-073b-9e9a-bb71-dfd1cb1402a1" + ] + }, + { + "Text": "Fantastic Concrete Keyboard", + "Ws": "kuv", + "Tags": [ + "44deff03-6c63-4ca0-9775-7d3670c08b7c" + ] + } + ] + }, + "quk": { + "Spans": [ + { + "Text": "wireless", + "Ws": "quk", + "Tags": [ + "99ac9108-c013-473d-afff-62ca1783ed24" + ] + }, + { + "Text": "Views", + "Ws": "kkw", + "Bold": "On", + "FontSize": 559960546, + "ForeColor": "#00FFFF", + "Tags": [ + "84809f01-5d32-e266-8299-a95e8216de64" + ] + }, + { + "Text": "Burgs", + "Ws": "oj", + "Bold": "Off", + "FontSize": -1913635525, + "ForeColor": "#00FFFF", + "Tags": [ + "4911a153-f088-919f-1f77-d2cbde53a065" + ] + }, + { + "Text": "scale", + "Ws": "quk", + "Tags": [ + "97368e81-42c3-4ad1-8521-1297673093ff" + ] + } + ] + } + }, + "OcmCodes": "communities", + "LouwNidaCodes": "Netherlands Antilles", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "f0eed46f-1dba-9dbe-7c77-e6c1e2e55165", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "ljw": { + "Spans": [ + { + "Text": "open-source", + "Ws": "ljw", + "Tags": [ + "2233f82a-27ba-42f3-85b2-b26e81e25e8b" + ] + }, + { + "Text": "Bedfordshire", + "Ws": "ljw", + "Tags": [ + "f8a31de3-c0a9-4546-b046-b4e44daab594" + ] + }, + { + "Text": "circuit", + "Ws": "ljw", + "Tags": [ + "94073930-ad39-454e-aacc-4218c9b55252" + ] + }, + { + "Text": "New Hampshire", + "Ws": "ljw", + "Tags": [ + "7b6ca1af-9007-45c2-9104-75430691f083" + ] + } + ] + }, + "mxo": { + "Spans": [ + { + "Text": "Auto Loan Account", + "Ws": "mxf", + "Bold": "Off", + "FontSize": 1281929758, + "ForeColor": "#0000FF", + "Tags": [ + "3121c0bc-de8e-f392-59fa-1438deaa79c3" + ] + }, + { + "Text": "supply-chains", + "Ws": "syc", + "Bold": "Invert", + "FontSize": -1922551935, + "ForeColor": "#00FFFF", + "Tags": [ + "b28129b2-9649-c8bb-38b8-0c951f63a799" + ] + }, + { + "Text": "withdrawal", + "Ws": "mxo", + "Tags": [ + "3d6f5c75-d4df-4425-bd80-761711495f18" + ] + }, + { + "Text": "cyan", + "Ws": "mxo", + "Tags": [ + "410a038d-15b8-4da5-8299-16f54cdda350" + ] + } + ] + }, + "bgz": { + "Spans": [ + { + "Text": "invoice", + "Ws": "bgz", + "Tags": [ + "8d86e3b8-7bdb-4d65-b1a0-52183c136059" + ] + }, + { + "Text": "Garden", + "Ws": "bgz", + "Tags": [ + "f9819392-681c-4d77-9d69-d4bfce591ae9" + ] + } + ] + }, + "thi": { + "Spans": [ + { + "Text": "index", + "Ws": "thi", + "Tags": [ + "e203471e-657c-431a-b404-24c8e98e6dde" + ] + }, + { + "Text": "generating", + "Ws": "ktz", + "Bold": "On", + "FontSize": -440623568, + "ForeColor": "#0000FF", + "Tags": [ + "8d221739-7b47-8cba-fb00-390eb4fbddc2" + ] + }, + { + "Text": "Plastic", + "Ws": "thi", + "Tags": [ + "3bfbf8bf-b2a8-481f-8b10-172ff9df72a7" + ] + } + ] + } + } + } + ] + }, + "Id": "cddb9fca-60b5-96a4-c428-280da1e3e0e6", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "Order": 0, + "DeletedAt": null, + "EntryId": "8045aa9c-e9b4-6831-accc-217bf6cecb5a", + "Definition": { + "kie": { + "Spans": [ + { + "Text": "Court", + "Ws": "kie", + "Tags": [ + "3e7bc154-0fdf-422e-8672-bba82c4c7bea" + ] + } + ] + }, + "nwx": { + "Spans": [ + { + "Text": "high-level", + "Ws": "knx", + "Bold": "Off", + "FontSize": 1816913505, + "ForeColor": "#00FFFF", + "Tags": [ + "ec7bac85-e8de-3dca-a608-1b16c8f3a74d" + ] + }, + { + "Text": "Auto Loan Account", + "Ws": "ktc", + "Bold": "On", + "FontSize": 1311882955, + "ForeColor": "#ADFF2F", + "Tags": [ + "681a5741-2ee8-6bf5-1d04-12b39007cc6e" + ] + }, + { + "Text": "benchmark", + "Ws": "nwx", + "Tags": [ + "3859d1b1-3d0f-42c4-b175-e4ceda64f6a0" + ] + }, + { + "Text": "morph", + "Ws": "acs", + "Bold": "Invert", + "FontSize": -756973096, + "ForeColor": "#FF0000", + "Tags": [ + "ee463bc5-b7dc-3a7e-2b84-0b1aa34501b0" + ] + } + ] + } + }, + "Gloss": { + "nef": "Zimbabwe Dollar", + "shc": "monetize", + "mft": "Identity" + }, + "PartOfSpeech": { + "Id": "740b3570-ae92-43ca-e535-dcc5bba83e9a", + "Name": { + "bmc": "Practical Cotton Keyboard", + "umo": "Switchable", + "yma": "Executive", + "gbd": "Awesome Metal Bacon" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "60178cb0-6d29-dbbb-e444-f6e20fb55c82", + "SemanticDomains": [ + { + "Id": "0f8fb88f-7436-fbaf-d55e-25211a471f35", + "Name": { + "axg": "Home Loan Account", + "snr": "reintermediate", + "llx": "digital", + "ait": "Court" + }, + "Abbreviation": {}, + "Code": "Frozen", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "a7b785ec-18ff-fb73-2dfb-05415e5fc622", + "Order": 0, + "DeletedAt": null, + "EntryId": "012c2c71-92fa-6dfb-5851-64f8a0a8ba88", + "Definition": { + "bhm": { + "Spans": [ + { + "Text": "product", + "Ws": "bhm", + "Tags": [ + "325ed432-2e1a-4296-942f-85adfcd364ed" + ] + } + ] + }, + "ity": { + "Spans": [ + { + "Text": "mindshare", + "Ws": "bhm", + "Bold": "Off", + "FontSize": -1336198038, + "ForeColor": "#0000FF", + "Tags": [ + "6bcc1222-a41c-c8e9-d2b7-b155a70e94f8" + ] + }, + { + "Text": "leading-edge", + "Ws": "gbl", + "Bold": "Invert", + "FontSize": -368014789, + "ForeColor": "#A52A2A", + "Tags": [ + "0cd2d375-a9a8-1198-3467-64e6f72d0ce7" + ] + }, + { + "Text": "bypass", + "Ws": "ity", + "Tags": [ + "5910751a-6d76-46db-ae0f-1e4e2b1d01ef" + ] + } + ] + }, + "ota": { + "Spans": [ + { + "Text": "program", + "Ws": "ota", + "Tags": [ + "8d686481-7383-43e3-97e0-b591c0d30ec4" + ] + } + ] + } + }, + "Gloss": { + "snx": "Stravenue", + "nsu": "Radial", + "bvc": "PCI", + "cnb": "cyan" + }, + "PartOfSpeech": { + "Id": "fe18aa5d-86a9-4965-21ed-bb94556e2949", + "Name": { + "kok": "Plastic", + "ggb": "virtual" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "4fdaedfd-6192-40f8-070e-6566f170f3a9", + "SemanticDomains": [ + { + "Id": "8973d4ab-6b0f-9e17-40ec-68e46f1a5adc", + "Name": { + "yiq": "Park", + "taw": "Personal Loan Account", + "abr": "hub", + "yes": "Global" + }, + "Abbreviation": { + "trt": "pink", + "bpv": "Avon", + "sja": "system", + "kgw": "olive" + }, + "Code": "pink", + "Description": { + "nmx": { + "Spans": [ + { + "Text": "impactful", + "Ws": "jac", + "Bold": "On", + "FontSize": 737387577, + "ForeColor": "#00000000", + "Tags": [ + "b970f9af-7dd1-be7b-35d9-d6c62c82717e" + ] + } + ] + }, + "tau": { + "Spans": [ + { + "Text": "Metal", + "Ws": "kdk", + "Bold": "Invert", + "FontSize": 1465945655, + "ForeColor": "#00000000", + "Tags": [ + "e75dd5ae-cf24-c97a-ff5c-0291ca329291" + ] + } + ] + }, + "xpg": { + "Spans": [ + { + "Text": "orange", + "Ws": "wgw", + "Bold": "Invert", + "FontSize": 1376931620, + "ForeColor": "#FF0000", + "Tags": [ + "b8886634-c188-1720-42d6-686a0d0e10ac" + ] + } + ] + } + }, + "OcmCodes": "viral", + "LouwNidaCodes": "Sao Tome and Principe", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "1d3f19d4-df1a-a641-bc37-2badaa3f0273", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "kjl": { + "Spans": [ + { + "Text": "Hills", + "Ws": "kjl", + "Tags": [ + "eec936f2-f201-42b7-acbe-06e23e0282a7" + ] + }, + { + "Text": "calculate", + "Ws": "str", + "Bold": "On", + "FontSize": -1334491667, + "ForeColor": "#A52A2A", + "Tags": [ + "7ae3b71e-e2e3-a83c-e00d-513542397775" + ] + } + ] + }, + "sbh": { + "Spans": [ + { + "Text": "Borders", + "Ws": "sbh", + "Tags": [ + "bbd61a59-3c5c-41c2-8a6a-13efc8f57095" + ] + }, + { + "Text": "transmit", + "Ws": "gpe", + "Bold": "On", + "FontSize": 1286153016, + "ForeColor": "#00FFFF", + "Tags": [ + "8993187b-a1fc-9e53-e535-03c0f313b224" + ] + } + ] + } + } + } + ] + }, + "Id": "a7b785ec-18ff-fb73-2dfb-05415e5fc622", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "Order": 0, + "DeletedAt": null, + "EntryId": "b298a98d-22a6-40d4-f897-fb7e5ef12432", + "Definition": { + "lof": { + "Spans": [ + { + "Text": "function", + "Ws": "lof", + "Tags": [ + "bc1cb5a3-0c11-47f3-aef1-f8ecb5e1a8d9" + ] + } + ] + } + }, + "Gloss": { + "svm": "Incredible Soft Bike", + "boh": "Key", + "nfd": "analyzing", + "byo": "Argentine Peso" + }, + "PartOfSpeech": { + "Id": "d257270c-51c4-6979-84cf-b9ccff8d60dc", + "Name": { + "bsp": "application" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a353cc36-57b4-8ed4-0fd4-d616fced9108", + "SemanticDomains": [ + { + "Id": "c43c9761-815e-0b1e-b90c-dfdf799b16d9", + "Name": { + "kxv": "Tenge", + "dih": "holistic", + "aif": "Bypass", + "hms": "Future" + }, + "Abbreviation": {}, + "Code": "orange", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "f3fb453a-99d8-0b46-b190-409064885cbd", + "Order": 0, + "MediaUri": "sil-media://lexbox/7d361699-1e9d-4d5e-89b3-eb66898523f7", + "Caption": { + "pdi": { + "Spans": [ + { + "Text": "National", + "Ws": "pdi", + "Tags": [ + "47346349-78e0-470f-aaf9-3980c401e041" + ] + }, + { + "Text": "Intelligent Wooden Computer", + "Ws": "pdi", + "Tags": [ + "a464551e-c62b-439a-90ff-a69add9b1241" + ] + }, + { + "Text": "lime", + "Ws": "shz", + "Bold": "Invert", + "FontSize": -455513223, + "ForeColor": "#00000000", + "Tags": [ + "6c1d33ac-f149-8bd9-a358-6e589cb34bc6" + ] + } + ] + }, + "fip": { + "Spans": [ + { + "Text": "indexing", + "Ws": "fip", + "Tags": [ + "eb32049a-a31e-4f10-aa04-8b3ac193abda" + ] + }, + { + "Text": "integrate", + "Ws": "fip", + "Tags": [ + "5e96dfb4-a4ab-48b7-9139-0ddd54e5c2fc" + ] + }, + { + "Text": "Grocery", + "Ws": "nhu", + "Bold": "Off", + "FontSize": 781582330, + "ForeColor": "#00000000", + "Tags": [ + "aa20518f-f7e6-4157-b9e6-a0377a26c6c8" + ] + } + ] + }, + "tdk": { + "Spans": [ + { + "Text": "Kids \u0026 Home", + "Ws": "tdk", + "Tags": [ + "0fdbc8ee-310d-4954-bfd9-7db50ae03b2c" + ] + }, + { + "Text": "District", + "Ws": "dap", + "Bold": "Invert", + "FontSize": 1319768493, + "ForeColor": "#A52A2A", + "Tags": [ + "38206d1c-bcd0-8df6-4b10-234afe42152f" + ] + } + ] + }, + "jos": { + "Spans": [ + { + "Text": "Director", + "Ws": "jos", + "Tags": [ + "d7d60d66-c9ce-45aa-9004-e0268b91d2d5" + ] + }, + { + "Text": "back-end", + "Ws": "ham", + "Bold": "Off", + "FontSize": 613268958, + "ForeColor": "#00000000", + "Tags": [ + "1ef432cc-f167-0755-ec93-06d5f330878b" + ] + }, + { + "Text": "Djibouti", + "Ws": "hmv", + "Bold": "Off", + "FontSize": -1306242714, + "ForeColor": "#0000FF", + "Tags": [ + "0f4fc950-4619-ed72-314f-2239b9b1aab7" + ] + } + ] + } + } + } + ] + }, + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "3d4dcd7c-647f-d0d6-f685-be073236df56", + "Order": 0, + "DeletedAt": null, + "EntryId": "c83f3845-7695-9933-d020-3747df947039", + "Definition": { + "bhi": { + "Spans": [ + { + "Text": "Response", + "Ws": "bhi", + "Tags": [ + "08c6fdc3-964c-496b-b75d-e46297587f95" + ] + } + ] + }, + "ity": { + "Spans": [ + { + "Text": "Gorgeous Wooden Tuna", + "Ws": "jei", + "Bold": "On", + "FontSize": -837557161, + "ForeColor": "#00000000", + "Tags": [ + "097027c9-b644-6735-a95a-6c26c481dd62" + ] + }, + { + "Text": "Principal", + "Ws": "ity", + "Tags": [ + "076b4ecd-68e1-4b0d-9538-17d67218243f" + ] + }, + { + "Text": "Generic Metal Gloves", + "Ws": "ity", + "Tags": [ + "f6dc7eeb-fbf0-4441-a0e9-26e04013bd74" + ] + }, + { + "Text": "Georgia", + "Ws": "ity", + "Tags": [ + "2492457f-c9ac-46a9-903e-0db30de1627f" + ] + } + ] + } + }, + "Gloss": { + "vkl": "Bedfordshire", + "kud": "Libyan Dinar" + }, + "PartOfSpeech": { + "Id": "6cc41380-f27b-f55e-b7e9-9b8fa3a7ba78", + "Name": { + "lbv": "Mountain", + "sro": "Granite", + "klj": "North Dakota" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "101fe849-208c-101f-0824-ad384c8a5ff4", + "SemanticDomains": [ + { + "Id": "ac40762b-71cf-74cf-00d9-82dd42777f99", + "Name": { + "kew": "Graphical User Interface", + "byy": "UAE Dirham", + "sri": "port", + "kk": "circuit" + }, + "Abbreviation": { + "hur": "Enterprise-wide", + "khs": "Credit Card Account", + "egm": "collaborative", + "nuq": "Ohio" + }, + "Code": "Enterprise-wide", + "Description": { + "tro": { + "Spans": [ + { + "Text": "alarm", + "Ws": "ggn", + "Bold": "Invert", + "FontSize": 1949214216, + "ForeColor": "#ADFF2F", + "Tags": [ + "64041640-cf99-0679-87ff-89bf857502ea" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "tro", + "Tags": [ + "160c2218-1987-49a1-b1da-8cbc7f55c0d9" + ] + }, + { + "Text": "parallelism", + "Ws": "wer", + "Bold": "Off", + "FontSize": 1872611792, + "ForeColor": "#ADFF2F", + "Tags": [ + "7b715a01-83b7-6887-c166-4f11110cf0ad" + ] + } + ] + }, + "awv": { + "Spans": [ + { + "Text": "Officer", + "Ws": "awv", + "Tags": [ + "0b1a3d57-6375-4a7b-81f1-5d930a8492d7" + ] + }, + { + "Text": "SSL", + "Ws": "rap", + "Bold": "Off", + "FontSize": 1856990796, + "ForeColor": "#0000FF", + "Tags": [ + "ef4011eb-2ff0-4b84-5e25-81ee052bb854" + ] + }, + { + "Text": "bricks-and-clicks", + "Ws": "pak", + "Bold": "Off", + "FontSize": 1161149316, + "ForeColor": "#ADFF2F", + "Tags": [ + "31f23830-1535-4aaf-3bee-61de38456726" + ] + }, + { + "Text": "plum", + "Ws": "jam", + "Bold": "Off", + "FontSize": 2124602390, + "ForeColor": "#ADFF2F", + "Tags": [ + "e9793042-3c80-67a8-30a1-867c3babb145" + ] + } + ] + } + }, + "OcmCodes": "Horizontal", + "LouwNidaCodes": "Representative", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "48e82e62-dec8-3f8b-5aff-2d50e5bd9b46", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "bax": { + "Spans": [ + { + "Text": "Games", + "Ws": "mgy", + "Bold": "Invert", + "FontSize": -2124732464, + "ForeColor": "#00000000", + "Tags": [ + "21bb2125-d951-2411-c8b0-a38ca5ea2226" + ] + }, + { + "Text": "Frozen", + "Ws": "kxh", + "Bold": "On", + "FontSize": 730863433, + "ForeColor": "#00000000", + "Tags": [ + "f7262a6a-d5c9-5f8c-b26c-0730b8be02fa" + ] + } + ] + } + } + } + ] + }, + "Id": "3d4dcd7c-647f-d0d6-f685-be073236df56", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "Order": 0, + "DeletedAt": null, + "EntryId": "9382fd2a-0dce-2f5d-bdf8-976c89b78f09", + "Definition": { + "mcf": { + "Spans": [ + { + "Text": "Cove", + "Ws": "woa", + "Bold": "Invert", + "FontSize": 661665754, + "ForeColor": "#FF0000", "Tags": [ - "cdbfc681-b4cb-fc53-0049-2f7a15f2cf9c" + "7e4eb13c-1680-aa3b-fa16-171af5077e94" ] }, { - "Text": "Village", - "Ws": "djo", + "Text": "Coordinator", + "Ws": "aax", + "Bold": "Invert", + "FontSize": -776890613, + "ForeColor": "#A52A2A", "Tags": [ - "06b2b112-2eaf-498c-a2b6-3691a0a2d5f2" + "ec21f133-fe8a-c054-ef38-4e916aed3242" ] }, { - "Text": "Music, Clothing \u0026 Shoes", - "Ws": "djo", + "Text": "override", + "Ws": "zag", + "Bold": "Off", + "FontSize": -2144821366, + "ForeColor": "#0000FF", "Tags": [ - "a7e91784-b210-401a-b134-8a7196d75290" + "a13c3436-b669-fe85-d1ff-bc4ccf3ec120" ] } ] }, - "qyp": { + "kfj": { "Spans": [ { - "Text": "flexibility", - "Ws": "qyp", + "Text": "Serbia", + "Ws": "kfj", "Tags": [ - "a7ec7011-d986-4fcb-8c65-ed250fa27837" + "0419d5df-b122-4065-bf3e-a96cf8ebaa24" + ] + }, + { + "Text": "Generic Cotton Pizza", + "Ws": "hng", + "Bold": "Invert", + "FontSize": 1518698995, + "ForeColor": "#ADFF2F", + "Tags": [ + "11e84286-9334-7add-782b-bd14dc7f7b01" + ] + }, + { + "Text": "Texas", + "Ws": "kfj", + "Tags": [ + "72ec4ae5-33eb-43c7-96fd-fca3e2910b07" ] - }, + } + ] + }, + "tag": { + "Spans": [ { - "Text": "users", - "Ws": "qyp", + "Text": "Falkland Islands Pound", + "Ws": "syo", + "Bold": "Invert", + "FontSize": 1861298083, + "ForeColor": "#00000000", "Tags": [ - "89317672-83e3-4ec0-b15a-130c709c296a" + "c346269b-13e9-7610-ad49-1e3b17458a40" ] }, { - "Text": "Analyst", - "Ws": "dep", - "Bold": "Off", - "FontSize": -938960202, - "ForeColor": "#00FFFF", + "Text": "Usability", + "Ws": "uhn", + "Bold": "Invert", + "FontSize": 1491545820, + "ForeColor": "#A52A2A", "Tags": [ - "34eed6fc-feb1-cb7e-5fba-2cc249b35f9d" + "9ff7d106-2b72-bccb-6216-c8d5bfbc9843" ] } ] } }, "Gloss": { - "ciy": "Curve" + "sny": "Neck" }, "PartOfSpeech": { - "Id": "a6b04de2-ca75-b141-abe1-f4494a514535", + "Id": "ea8ff3b0-4362-9168-1d32-b4c538f7cc7a", "Name": { - "mxt": "TCP" + "lvl": "Democratic People\u0027s Republic of Korea" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "fac379c1-43a4-5710-83c8-5b9f55c90108", + "PartOfSpeechId": "eaa97b2e-477b-d15a-d009-b03bfecad893", "SemanticDomains": [ { - "Id": "3ad12c58-f9a5-9ccd-04ff-8b979eac461b", + "Id": "e177e1c5-b5bc-2038-2b15-5e5d48be2529", "Name": { - "ulk": "white" + "kmu": "Wooden" }, - "Code": "SSL", + "Abbreviation": {}, + "Code": "mission-critical", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -1633,34 +5271,55 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "ddc6af94-5a95-c404-2cb8-ae1e61968538", + "Id": "96e78848-8081-b916-c42f-a477c7c720b3", "Order": 0, - "MediaUri": "sil-media://lexbox/24556101-1dbc-4d4a-bf5a-8f9cf05fe8ea", + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", "Caption": { - "pea": { + "ske": { "Spans": [ { - "Text": "alarm", - "Ws": "pea", + "Text": "PCI", + "Ws": "meq", + "Bold": "Off", + "FontSize": 939450240, + "ForeColor": "#0000FF", "Tags": [ - "c97d629f-da4a-4e7f-9ea2-fedb628649e0" + "62979dec-0d70-de3f-2f18-69b6a9463735" ] }, { - "Text": "relationships", - "Ws": "byi", - "Bold": "Invert", - "FontSize": -1098187694, - "ForeColor": "#ADFF2F", + "Text": "Automated", + "Ws": "ske", "Tags": [ - "d9693d70-5ee4-4a63-7abc-f42c99fca4f2" + "780eaa13-730a-4784-9958-dc5480b4c4e0" ] }, { - "Text": "Kentucky", - "Ws": "pea", + "Text": "Savings Account", + "Ws": "urt", + "Bold": "On", + "FontSize": 1397834172, + "ForeColor": "#0000FF", "Tags": [ - "2d593536-8d6e-4766-ae62-c141ee7cb206" + "c705abb0-c434-bc17-fedf-cd58b1ab3b55" + ] + } + ] + }, + "dif": { + "Spans": [ + { + "Text": "parsing", + "Ws": "dif", + "Tags": [ + "e08b843d-33f9-47e7-801d-af636f03cad4" + ] + }, + { + "Text": "web-readiness", + "Ws": "dif", + "Tags": [ + "699262f7-e6a4-4e43-bcbe-718c3f7616b2" ] } ] @@ -1669,75 +5328,186 @@ } ] }, - "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "Id": "73d3f969-1f75-ad5e-c5dc-79868da67ff9", "Order": 0, "DeletedAt": null, - "EntryId": "170f50ef-06ff-c0c3-ba31-95d557834be3", + "EntryId": "7e7bcef9-a69d-f57b-e3c8-ac2fd189841a", "Definition": { - "kqx": { + "tfr": { "Spans": [ { - "Text": "implementation", - "Ws": "kqx", + "Text": "Checking Account", + "Ws": "agi", + "Bold": "On", + "FontSize": -1763743294, + "ForeColor": "#00FFFF", "Tags": [ - "69e02d33-4485-4535-a14d-baf5a4d2acd6" + "a8533c89-d97b-164a-41e3-d6b2aeaec874" + ] + } + ] + }, + "han": { + "Spans": [ + { + "Text": "mesh", + "Ws": "piz", + "Bold": "Invert", + "FontSize": -954505539, + "ForeColor": "#A52A2A", + "Tags": [ + "e106247d-303d-2a31-64b0-c00d09b3501c" + ] + } + ] + }, + "lsv": { + "Spans": [ + { + "Text": "Tasty", + "Ws": "mle", + "Bold": "Off", + "FontSize": -696683679, + "ForeColor": "#00000000", + "Tags": [ + "ee49f772-5c96-99a3-a78c-797690eb1694" ] }, { - "Text": "Buckinghamshire", - "Ws": "kqx", + "Text": "Savings Account", + "Ws": "lsv", "Tags": [ - "0db6b9b8-58f5-4473-9fde-43e665c44da2" + "01fd5926-2a16-4474-a495-66e6614eee52" ] }, { - "Text": "Coordinator", - "Ws": "hdn", - "Bold": "Off", - "FontSize": -1831667232, - "ForeColor": "#A52A2A", + "Text": "Ergonomic Steel Towels", + "Ws": "lsv", "Tags": [ - "f6c84f90-af3a-1f4c-415e-3e21f12ce3e9" + "a375b968-9804-40b5-a473-c471bf900747" ] } ] } }, "Gloss": { - "bdz": "generate", - "doo": "Refined Frozen Towels", - "mej": "Accounts", - "ymc": "Awesome Metal Soap" + "ifu": "red" }, "PartOfSpeech": { - "Id": "27bbbcc2-0763-1cbb-f7f2-e8a268b88542", + "Id": "123301d4-c4a5-5d7a-f8bc-d4b1e845fa3c", "Name": { - "win": "CFA Franc BCEAO", - "mxe": "Senior", - "gpa": "Austria", - "xmo": "Incredible" + "dme": "Unbranded", + "lxm": "Licensed Steel Soap", + "ghs": "invoice" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "a1a57ccc-5bb6-1db3-e404-d295a92a533c", + "PartOfSpeechId": "0e85c0c7-2778-1353-16eb-427e67c1f8c1", "SemanticDomains": [ { - "Id": "f405f8cf-f979-b590-ac68-af276c005e5e", + "Id": "50872e6f-6c56-cfaa-cc9b-f63f43466ab5", "Name": { - "pue": "Automotive, Games \u0026 Grocery", - "ptr": "deposit", - "etn": "Configurable", - "xco": "Borders" + "eli": "Coves", + "enb": "Electronics", + "max": "Team-oriented" }, - "Code": "mint green", + "Abbreviation": { + "lts": "Gateway", + "xhv": "firewall" + }, + "Code": "Gateway", + "Description": { + "akr": { + "Spans": [ + { + "Text": "envisioneer", + "Ws": "akr", + "Tags": [ + "8b1a6db8-8704-4b07-812e-f53c56c79b97" + ] + }, + { + "Text": "portals", + "Ws": "akr", + "Tags": [ + "468b91ad-9375-4dd6-8eca-8647cc432304" + ] + }, + { + "Text": "Frozen", + "Ws": "akr", + "Tags": [ + "85c2faef-b53a-424c-8c0e-05d89df031c4" + ] + }, + { + "Text": "internet solution", + "Ws": "sko", + "Bold": "On", + "FontSize": 664348779, + "ForeColor": "#FF0000", + "Tags": [ + "f87f7118-1b01-2aec-e38b-32638d1d9257" + ] + } + ] + }, + "wog": { + "Spans": [ + { + "Text": "SMTP", + "Ws": "wog", + "Tags": [ + "59681441-bb0e-4b8f-86ea-78074c020c5c" + ] + }, + { + "Text": "transmit", + "Ws": "ktu", + "Bold": "Invert", + "FontSize": -321352707, + "ForeColor": "#FF0000", + "Tags": [ + "a459bc92-6397-34b9-fc50-13124846ef3a" + ] + } + ] + }, + "pnb": { + "Spans": [ + { + "Text": "Auto Loan Account", + "Ws": "ikx", + "Bold": "On", + "FontSize": 96912473, + "ForeColor": "#00000000", + "Tags": [ + "edbcdd49-2bb8-78a5-67da-ed18a6c8eb88" + ] + }, + { + "Text": "SDD", + "Ws": "okj", + "Bold": "On", + "FontSize": -1572110185, + "ForeColor": "#A52A2A", + "Tags": [ + "652d0f6b-54eb-ddf8-7436-9318b7c57a72" + ] + } + ] + } + }, + "OcmCodes": "Home Loan Account", + "LouwNidaCodes": "deposit", "DeletedAt": null, "Predefined": false } @@ -1745,72 +5515,113 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "8365c6df-c5d4-df40-f393-cb241ea38a5a", + "Id": "46151dcf-fb70-2494-6f5b-62744902c910", "Order": 0, "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", "Caption": { - "imt": { + "saa": { "Spans": [ { - "Text": "Fantastic Wooden Sausages", - "Ws": "imt", + "Text": "Glens", + "Ws": "num", + "Bold": "Invert", + "FontSize": -1418578850, + "ForeColor": "#0000FF", "Tags": [ - "a6f02bbc-af27-4241-995b-1988ab411381" + "5587e64a-c812-de77-cd8f-c2dba25fabfd" ] }, { - "Text": "Investment Account", - "Ws": "lii", - "Bold": "Off", - "FontSize": 294442575, - "ForeColor": "#FF0000", + "Text": "El Salvador Colon", + "Ws": "mxx", + "Bold": "On", + "FontSize": 1811001467, + "ForeColor": "#ADFF2F", "Tags": [ - "6136995a-68ce-2078-2287-0e3238630303" + "16d361ec-b819-8262-5d56-c8b8ddfdd6f2" + ] + } + ] + }, + "pdn": { + "Spans": [ + { + "Text": "SQL", + "Ws": "sdz", + "Bold": "Invert", + "FontSize": 933602729, + "ForeColor": "#ADFF2F", + "Tags": [ + "29dcd18d-badc-4d10-661c-729157f70cde" ] }, { - "Text": "SSL", - "Ws": "nzm", + "Text": "Avon", + "Ws": "zxx", + "Bold": "Invert", + "FontSize": -656681001, + "ForeColor": "#0000FF", + "Tags": [ + "7afbfddb-8f29-9ef8-3c53-226f4f487325" + ] + }, + { + "Text": "Open-architected", + "Ws": "sys", "Bold": "On", - "FontSize": -60028142, - "ForeColor": "#00000000", + "FontSize": -1490891110, + "ForeColor": "#FF0000", "Tags": [ - "1e38adaf-4a97-e03b-9485-3e81ae7f5f57" + "f568471e-8f4e-4b06-e3c6-25f2297af7ef" ] } ] }, - "xkx": { + "mwa": { "Spans": [ { - "Text": "incentivize", - "Ws": "xkx", + "Text": "Indian Rupee", + "Ws": "hne", + "Bold": "On", + "FontSize": -1674043705, + "ForeColor": "#0000FF", "Tags": [ - "7fcd101f-d866-4125-a76e-240480390548" + "3ca926bb-ec12-60ea-c820-f4b0cc11a849" ] }, { - "Text": "client-server", - "Ws": "xkx", + "Text": "hierarchy", + "Ws": "mwa", "Tags": [ - "db527e0f-0bec-4a80-ad0d-e64eb86d6cf3" + "b76fe7e1-d8b3-4c48-acea-049590fc749e" + ] + } + ] + }, + "hom": { + "Spans": [ + { + "Text": "Kentucky", + "Ws": "hom", + "Tags": [ + "ea742821-0ec1-4d7f-8436-bb05fdf08881" ] }, { - "Text": "syndicate", - "Ws": "xkx", + "Text": "leverage", + "Ws": "hom", "Tags": [ - "6881422e-d4e6-4f54-88f3-20597df98b0c" + "8b109c0e-6f87-4d0a-b534-fcce7f0b2c6f" ] }, { - "Text": "Practical", - "Ws": "kcb", - "Bold": "On", - "FontSize": -701786450, - "ForeColor": "#ADFF2F", + "Text": "Consultant", + "Ws": "mui", + "Bold": "Invert", + "FontSize": -675864152, + "ForeColor": "#00000000", "Tags": [ - "2e7a971a-bd7c-a7bf-b8f7-488dcc272960" + "374499bb-7e42-352e-40dd-520e04ce3da6" ] } ] @@ -1819,29 +5630,29 @@ } ] }, - "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "Id": "73d3f969-1f75-ad5e-c5dc-79868da67ff9", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", - "Order": 1, + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "Order": 2, "DeletedAt": null, - "EntryId": "bf4fe0e2-5378-4425-9fba-9f66c32c438c", + "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", "Definition": { "en": { "Spans": [ { - "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Text": "may or may not lay golden eggs", "Ws": "en" } ] } }, "Gloss": { - "en": "Fruit" + "en": "brid" }, "PartOfSpeech": null, "PartOfSpeechId": null, @@ -1849,68 +5660,144 @@ "ExampleSentences": [], "Pictures": [] }, - "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", "Order": 0, "DeletedAt": null, - "EntryId": "d6347312-90fd-7a9b-611c-10e2be8f1e83", + "EntryId": "018eaf35-2a0a-6098-13b3-260ea4017d27", "Definition": { - "zu": { + "dac": { "Spans": [ { - "Text": "optical", - "Ws": "zu", + "Text": "Accountability", + "Ws": "dac", "Tags": [ - "2f40db72-6dcd-4605-94f4-bb2f8e6f2c24" + "755f2352-8b57-41a1-bb72-cdb00c70a723" ] }, { - "Text": "eco-centric", - "Ws": "ses", - "Bold": "On", - "FontSize": 150168967, - "ForeColor": "#ADFF2F", + "Text": "Berkshire", + "Ws": "osi", + "Bold": "Off", + "FontSize": 202893717, + "ForeColor": "#0000FF", "Tags": [ - "4d35b5c1-d8c0-2ee3-e261-985e474e2c62" + "60af4336-04cc-2d89-f7d1-093374e118b8" + ] + } + ] + }, + "ptt": { + "Spans": [ + { + "Text": "Checking Account", + "Ws": "ptt", + "Tags": [ + "fb86b786-0054-48ba-8f7d-9cee06055c4d" ] }, { - "Text": "Internal", - "Ws": "zu", + "Text": "content", + "Ws": "fsl", + "Bold": "Invert", + "FontSize": -712294872, + "ForeColor": "#00000000", "Tags": [ - "ef294368-381e-4228-9feb-6fc5a21cb6f1" + "97add724-5b06-4d9d-54f5-ef39c28c08bb" + ] + }, + { + "Text": "SQL", + "Ws": "ptt", + "Tags": [ + "49987f83-0e34-4f77-9b8b-d61c3a8e603d" + ] + } + ] + }, + "kzh": { + "Spans": [ + { + "Text": "Uzbekistan", + "Ws": "kzh", + "Tags": [ + "4aad02ff-438f-4f6f-89d9-6ec8340b6763" + ] + } + ] + }, + "ulf": { + "Spans": [ + { + "Text": "Intelligent Frozen Sausages", + "Ws": "ulf", + "Tags": [ + "e09b6dde-62e8-423a-af41-9ce466144488" + ] + }, + { + "Text": "District", + "Ws": "twp", + "Bold": "Invert", + "FontSize": -1102337901, + "ForeColor": "#A52A2A", + "Tags": [ + "07334f1a-5d23-f06b-390c-f4e04cd6aaaa" + ] + }, + { + "Text": "next-generation", + "Ws": "ulf", + "Tags": [ + "12169ebc-09bc-4536-94ee-764bd5495ede" + ] + }, + { + "Text": "Direct", + "Ws": "loo", + "Bold": "Invert", + "FontSize": 1945097886, + "ForeColor": "#FF0000", + "Tags": [ + "9ae6b7b0-9c92-0333-eac6-84a7fb521cb0" ] } ] } }, "Gloss": { - "nhz": "Personal Loan Account", - "vec": "Summit" + "qud": "Square" }, "PartOfSpeech": { - "Id": "fe457b90-ba20-b702-a156-13149c126cc6", + "Id": "ab15d93b-1c45-e79b-f1b2-5d8f71e45335", "Name": { - "zkh": "Parks" + "pmz": "infomediaries", + "tmj": "Health \u0026 Books", + "buu": "Corporate", + "hix": "International" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "aa3e7491-0e0d-b22f-cbf1-63e76cd83314", + "PartOfSpeechId": "326aff5e-43f0-7705-7672-a2aa8ba2023c", "SemanticDomains": [ { - "Id": "ecf6b571-e360-f100-7cf7-ec214489914a", + "Id": "702e9bc7-e774-0d90-8f88-dff28920154b", "Name": { - "bjy": "Montana", - "ga": "neural-net" + "ktg": "card", + "zaf": "Tasty" }, - "Code": "Rand", + "Abbreviation": {}, + "Code": "North Korean Won", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -1918,40 +5805,17 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "c70c8e39-9fea-f0ca-96ea-c54682b26ff2", + "Id": "0e6a2808-96be-86d5-6092-04f762f26202", "Order": 0, - "MediaUri": "sil-media://lexbox/cc67fbb0-7072-4a0c-aa87-1c11dbd5c160", + "MediaUri": "sil-media://lexbox/7b06b27e-80e9-420d-bc93-c2c29720ef78", "Caption": { - "spl": { + "emq": { "Spans": [ { - "Text": "Road", - "Ws": "plj", - "Bold": "On", - "FontSize": 206809027, - "ForeColor": "#ADFF2F", - "Tags": [ - "5ba3fafc-2a16-8ee1-4764-223a2ece4032" - ] - }, - { - "Text": "explicit", - "Ws": "ybb", - "Bold": "On", - "FontSize": -1840259444, - "ForeColor": "#ADFF2F", - "Tags": [ - "6fddd2cc-5dbd-6d0d-4bed-39e98d79771a" - ] - }, - { - "Text": "TCP", - "Ws": "mqb", - "Bold": "Invert", - "FontSize": 890686392, - "ForeColor": "#0000FF", + "Text": "strategize", + "Ws": "emq", "Tags": [ - "2ff98fc6-d387-23aa-581a-9199a4971005" + "c5fccb12-219e-46f0-93ff-2234546ef6b7" ] } ] @@ -1960,164 +5824,203 @@ } ] }, - "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "7db9365a-9981-f773-9889-2ab959719212", + "Id": "d222b429-9ba1-6ed7-bfc2-6639f2166299", "Order": 0, "DeletedAt": null, - "EntryId": "c8692489-ecea-4455-a12f-3b8e845ee660", + "EntryId": "abb5e1ac-dddf-906e-5cbf-f583a55ff6a2", "Definition": { - "uni": { + "aij": { "Spans": [ { - "Text": "Officer", - "Ws": "uni", + "Text": "Gorgeous Frozen Hat", + "Ws": "aij", "Tags": [ - "c20655dd-aa14-43d4-a3f6-c3feb4bf0417" + "ead56a14-6963-4e50-b236-f162ba1c6b2d" + ] + } + ] + }, + "esg": { + "Spans": [ + { + "Text": "Rustic", + "Ws": "brv", + "Bold": "Off", + "FontSize": 1574434618, + "ForeColor": "#0000FF", + "Tags": [ + "5c4f628f-b31b-64ef-8950-300be6969e24" + ] + }, + { + "Text": "Internal", + "Ws": "esg", + "Tags": [ + "bae05315-b515-43d6-97d8-a447d81b0aec" + ] + }, + { + "Text": "Garden", + "Ws": "kkb", + "Bold": "On", + "FontSize": 1827697047, + "ForeColor": "#A52A2A", + "Tags": [ + "44464e89-9468-a0bc-104e-71f806a94f2b" ] } ] } }, "Gloss": { - "tjo": "reinvent" - }, - "PartOfSpeech": { - "Id": "dd85375e-839a-adab-af0d-5b2b8fb0c75e", - "Name": { - "lgn": "bus", - "bpt": "multi-state" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "69fd7bba-28e1-ab86-f993-ace1b3d028d6", - "SemanticDomains": [ - { - "Id": "0be1c84e-f1f9-40c2-8242-e07f81e2b466", - "Name": { - "tda": "bypassing", - "leb": "Analyst", - "kxm": "Avon" - }, - "Code": "Auto Loan Account", - "DeletedAt": null, - "Predefined": false - } - ], - "ExampleSentences": [], - "Pictures": [ - { - "Id": "991f2191-40bc-e56b-dd24-d6135792053b", - "Order": 0, - "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", - "Caption": { - "pzn": { - "Spans": [ - { - "Text": "portals", - "Ws": "aux", - "Bold": "Invert", - "FontSize": 1639221492, - "ForeColor": "#ADFF2F", - "Tags": [ - "39c4e2fa-22d5-ae8a-33da-0e2ef61a2bec" - ] - }, - { - "Text": "Credit Card Account", - "Ws": "pzn", - "Tags": [ - "6a5e9f05-72ce-462d-8e77-cba524d3c745" - ] - }, + "asi": "fuchsia", + "gwt": "calculating", + "onb": "Corporate", + "bmn": "empower" + }, + "PartOfSpeech": { + "Id": "904b6904-c0af-b142-c10b-f97408899d62", + "Name": { + "osi": "Jordanian Dinar", + "tnh": "Bedfordshire", + "iap": "Monaco" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "5ebb11ee-10b6-1ea4-a196-a36b9582b463", + "SemanticDomains": [ + { + "Id": "3f434dc5-a3ec-c538-1054-2a8f9974f4da", + "Name": { + "ght": "Oregon" + }, + "Abbreviation": { + "gcr": "Applications", + "dzl": "Handmade", + "xip": "cross-platform" + }, + "Code": "Applications", + "Description": { + "tkd": { + "Spans": [ { - "Text": "toolset", - "Ws": "bkn", - "Bold": "On", - "FontSize": 1678144495, - "ForeColor": "#0000FF", + "Text": "Parkway", + "Ws": "tkd", "Tags": [ - "320debd0-19af-1f43-568f-320fd25dd10f" + "9ebf12a4-a19e-4b4e-8bd6-c538a2d3802f" ] }, { - "Text": "functionalities", - "Ws": "yxa", - "Bold": "On", - "FontSize": 1088844074, - "ForeColor": "#A52A2A", + "Text": "driver", + "Ws": "tkd", "Tags": [ - "5af5d0bd-de4e-ac4e-9b91-b1e1c1ed975e" + "2ffc6d9e-5729-465f-b708-79d0970f2c4b" ] } ] }, - "zim": { + "ssk": { "Spans": [ { - "Text": "Avenue", - "Ws": "zim", + "Text": "Research", + "Ws": "ssk", "Tags": [ - "a00cf5d4-6f85-4723-8da8-b96ad5ffdcf1" + "4cb64df1-4034-40c5-b798-e0f42a005218" ] }, { - "Text": "copying", - "Ws": "zim", + "Text": "Aruba", + "Ws": "ssk", "Tags": [ - "b1769f78-b17d-4f1e-a128-1751fc4c60e8" + "c16d2771-7ece-456f-b58d-fafca456e0ef" ] }, { - "Text": "interface", - "Ws": "bhk", - "Bold": "Invert", - "FontSize": 1962777344, - "ForeColor": "#0000FF", + "Text": "Sleek Rubber Soap", + "Ws": "dwk", + "Bold": "On", + "FontSize": -992065607, + "ForeColor": "#00FFFF", "Tags": [ - "f6c5673c-dbf4-c29c-daa6-17473f85e209" + "4b40ffbd-cee5-66a0-d6dc-acfe47784265" ] } ] - }, - "ghl": { + } + }, + "OcmCodes": "mesh", + "LouwNidaCodes": "Strategist", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "1324c42d-e17a-7bba-5df3-466c0cda378d", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "lbc": { "Spans": [ { - "Text": "bypassing", - "Ws": "ghl", + "Text": "Intelligent Plastic Car", + "Ws": "lbc", "Tags": [ - "da3e852a-3246-4abc-9a22-2fa254b08eba" + "76acb8cf-cf70-4765-92aa-129c17584235" ] }, { - "Text": "Small Cotton Hat", - "Ws": "ghl", + "Text": "Supervisor", + "Ws": "aif", + "Bold": "On", + "FontSize": -2091693930, + "ForeColor": "#00000000", "Tags": [ - "ab718d66-b0f4-466e-bfc6-eb39e22adcfb" + "949f7859-9ad0-db6b-fd66-678cd002fa49" ] } ] }, - "afo": { + "qxo": { "Spans": [ { - "Text": "Marketing", - "Ws": "afo", + "Text": "optical", + "Ws": "qxo", "Tags": [ - "a460263d-9619-4a3f-9b42-17d1359b0b64" + "4d4ce85f-500b-4543-a6c5-4c835783cd8a" ] }, { - "Text": "Liechtenstein", - "Ws": "afo", + "Text": "Place", + "Ws": "rkw", + "Bold": "Off", + "FontSize": -1732991511, + "ForeColor": "#00FFFF", "Tags": [ - "f85b1388-51bc-497c-86a6-063d6cc00c30" + "b9ece84a-ac30-21ae-04a1-36c943f6337f" + ] + }, + { + "Text": "Beauty \u0026 Health", + "Ws": "qxo", + "Tags": [ + "c4f761c9-0a96-4e64-a23f-5ac2af97d137" + ] + }, + { + "Text": "Via", + "Ws": "qxo", + "Tags": [ + "506b5d89-0c36-476a-a645-e53e3920524c" ] } ] @@ -2126,154 +6029,88 @@ } ] }, - "Id": "7db9365a-9981-f773-9889-2ab959719212", + "Id": "d222b429-9ba1-6ed7-bfc2-6639f2166299", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", "Order": 0, "DeletedAt": null, - "EntryId": "8045aa9c-e9b4-6831-accc-217bf6cecb5a", + "EntryId": "dec2c32e-6e17-173e-13fd-7f2ab4ce56c9", "Definition": { - "kie": { - "Spans": [ - { - "Text": "Court", - "Ws": "kie", - "Tags": [ - "3e7bc154-0fdf-422e-8672-bba82c4c7bea" - ] - } - ] - }, - "nwx": { + "jud": { "Spans": [ { - "Text": "high-level", - "Ws": "knx", - "Bold": "Off", - "FontSize": 1816913505, - "ForeColor": "#00FFFF", - "Tags": [ - "ec7bac85-e8de-3dca-a608-1b16c8f3a74d" - ] - }, - { - "Text": "Auto Loan Account", - "Ws": "ktc", - "Bold": "On", - "FontSize": 1311882955, - "ForeColor": "#ADFF2F", + "Text": "Fantastic Fresh Table", + "Ws": "jud", "Tags": [ - "681a5741-2ee8-6bf5-1d04-12b39007cc6e" + "3dde4d6e-b610-44cd-b7f0-853f6d9f9680" ] }, { - "Text": "benchmark", - "Ws": "nwx", + "Text": "EXE", + "Ws": "jud", "Tags": [ - "3859d1b1-3d0f-42c4-b175-e4ceda64f6a0" + "944daefe-a88f-4168-ace0-a81099908859" ] }, { - "Text": "morph", - "Ws": "acs", - "Bold": "Invert", - "FontSize": -756973096, - "ForeColor": "#FF0000", + "Text": "France", + "Ws": "jud", "Tags": [ - "ee463bc5-b7dc-3a7e-2b84-0b1aa34501b0" + "6d6018a8-4d8b-43c5-a188-68ae485981f3" ] } ] - } - }, - "Gloss": { - "nef": "Zimbabwe Dollar", - "shc": "monetize", - "mft": "Identity" - }, - "PartOfSpeech": { - "Id": "740b3570-ae92-43ca-e535-dcc5bba83e9a", - "Name": { - "bmc": "Practical Cotton Keyboard", - "umo": "Switchable", - "yma": "Executive", - "gbd": "Awesome Metal Bacon" }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "60178cb0-6d29-dbbb-e444-f6e20fb55c82", - "SemanticDomains": [ - { - "Id": "0f8fb88f-7436-fbaf-d55e-25211a471f35", - "Name": { - "axg": "Home Loan Account", - "snr": "reintermediate", - "llx": "digital", - "ait": "Court" - }, - "Code": "Frozen", - "DeletedAt": null, - "Predefined": false - } - ], - "ExampleSentences": [], - "Pictures": [] - }, - "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", - "DeletedAt": null - }, - { - "$type": "MiniLcmCrdtAdapter", - "Obj": { - "$type": "Sense", - "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", - "Order": 0, - "DeletedAt": null, - "EntryId": "b298a98d-22a6-40d4-f897-fb7e5ef12432", - "Definition": { - "lof": { + "lum": { "Spans": [ { - "Text": "function", - "Ws": "lof", + "Text": "Central", + "Ws": "lum", "Tags": [ - "bc1cb5a3-0c11-47f3-aef1-f8ecb5e1a8d9" + "d96dca0e-fdb6-4ac1-9864-69a63788d3ae" + ] + }, + { + "Text": "Home Loan Account", + "Ws": "lum", + "Tags": [ + "d2743a5b-67a5-441d-a4f6-efd0f55c9f90" ] } ] } }, "Gloss": { - "svm": "Incredible Soft Bike", - "boh": "Key", - "nfd": "analyzing", - "byo": "Argentine Peso" + "zmc": "Cotton", + "nbs": "Programmable" }, "PartOfSpeech": { - "Id": "d257270c-51c4-6979-84cf-b9ccff8d60dc", + "Id": "5fb817b7-7c86-56ce-ca5f-ff8467d5260f", "Name": { - "bsp": "application" + "mkf": "Home \u0026 Shoes" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "a353cc36-57b4-8ed4-0fd4-d616fced9108", + "PartOfSpeechId": "1245db57-fd23-45e3-c394-a38c7e1fa617", "SemanticDomains": [ { - "Id": "c43c9761-815e-0b1e-b90c-dfdf799b16d9", + "Id": "2fc2a227-ac73-8518-5bba-5b74c1285b40", "Name": { - "kxv": "Tenge", - "dih": "holistic", - "aif": "Bypass", - "hms": "Future" + "kg": "Solomon Islands Dollar", + "osc": "Consultant", + "bpe": "Ferry" }, - "Code": "orange", + "Abbreviation": {}, + "Code": "Awesome Fresh Sausages", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -2281,114 +6118,87 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "f3fb453a-99d8-0b46-b190-409064885cbd", + "Id": "12ce8612-d983-1af0-4b37-21a1c23a8e21", "Order": 0, - "MediaUri": "sil-media://lexbox/7d361699-1e9d-4d5e-89b3-eb66898523f7", + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", "Caption": { - "pdi": { + "skb": { "Spans": [ { - "Text": "National", - "Ws": "pdi", - "Tags": [ - "47346349-78e0-470f-aaf9-3980c401e041" - ] - }, - { - "Text": "Intelligent Wooden Computer", - "Ws": "pdi", + "Text": "Slovakia (Slovak Republic)", + "Ws": "skb", "Tags": [ - "a464551e-c62b-439a-90ff-a69add9b1241" + "e6ae98b8-677e-4834-b4d7-d738ba2816f9" ] }, { - "Text": "lime", - "Ws": "shz", - "Bold": "Invert", - "FontSize": -455513223, - "ForeColor": "#00000000", + "Text": "Luxembourg", + "Ws": "hab", + "Bold": "Off", + "FontSize": -797072059, + "ForeColor": "#A52A2A", "Tags": [ - "6c1d33ac-f149-8bd9-a358-6e589cb34bc6" + "bad7abdd-5e58-9f69-d0ed-91cb7bf79b10" ] } ] }, - "fip": { + "bsp": { "Spans": [ { - "Text": "indexing", - "Ws": "fip", - "Tags": [ - "eb32049a-a31e-4f10-aa04-8b3ac193abda" - ] - }, - { - "Text": "integrate", - "Ws": "fip", + "Text": "Berkshire", + "Ws": "bsp", "Tags": [ - "5e96dfb4-a4ab-48b7-9139-0ddd54e5c2fc" + "2f1eb23e-692a-49f0-9b7f-4d23d925cccc" ] }, { - "Text": "Grocery", - "Ws": "nhu", - "Bold": "Off", - "FontSize": 781582330, - "ForeColor": "#00000000", + "Text": "red", + "Ws": "bsp", "Tags": [ - "aa20518f-f7e6-4157-b9e6-a0377a26c6c8" + "7720eab3-709f-498c-9b30-66c2e3ac737c" ] } ] }, - "tdk": { + "hni": { "Spans": [ { - "Text": "Kids \u0026 Home", - "Ws": "tdk", + "Text": "Lead", + "Ws": "phd", + "Bold": "Invert", + "FontSize": -1680981122, + "ForeColor": "#ADFF2F", "Tags": [ - "0fdbc8ee-310d-4954-bfd9-7db50ae03b2c" + "ea4753f5-8b13-fa87-0e09-6fbc78b78581" ] }, { - "Text": "District", - "Ws": "dap", - "Bold": "Invert", - "FontSize": 1319768493, - "ForeColor": "#A52A2A", + "Text": "River", + "Ws": "hni", "Tags": [ - "38206d1c-bcd0-8df6-4b10-234afe42152f" + "56385552-a5f6-4d29-a228-49e09e16e294" ] } ] }, - "jos": { + "tdq": { "Spans": [ { - "Text": "Director", - "Ws": "jos", - "Tags": [ - "d7d60d66-c9ce-45aa-9004-e0268b91d2d5" - ] - }, - { - "Text": "back-end", - "Ws": "ham", - "Bold": "Off", - "FontSize": 613268958, - "ForeColor": "#00000000", + "Text": "Gorgeous", + "Ws": "tdq", "Tags": [ - "1ef432cc-f167-0755-ec93-06d5f330878b" + "7da9faf0-8cb9-42a3-a486-079bd0f05a33" ] }, { - "Text": "Djibouti", - "Ws": "hmv", - "Bold": "Off", - "FontSize": -1306242714, + "Text": "whiteboard", + "Ws": "dda", + "Bold": "On", + "FontSize": -773976336, "ForeColor": "#0000FF", "Tags": [ - "0f4fc950-4619-ed72-314f-2239b9b1aab7" + "42011f31-c33a-1f4f-925d-abb59c734377" ] } ] @@ -2397,124 +6207,103 @@ } ] }, - "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "Id": "ea4e49c5-de1e-27d1-8ce2-e7494428ff27", "Order": 0, "DeletedAt": null, - "EntryId": "9382fd2a-0dce-2f5d-bdf8-976c89b78f09", + "EntryId": "e8855961-bc23-fb79-4440-fd7fa1606edd", "Definition": { - "mcf": { - "Spans": [ - { - "Text": "Cove", - "Ws": "woa", - "Bold": "Invert", - "FontSize": 661665754, - "ForeColor": "#FF0000", - "Tags": [ - "7e4eb13c-1680-aa3b-fa16-171af5077e94" - ] - }, - { - "Text": "Coordinator", - "Ws": "aax", - "Bold": "Invert", - "FontSize": -776890613, - "ForeColor": "#A52A2A", - "Tags": [ - "ec21f133-fe8a-c054-ef38-4e916aed3242" - ] - }, - { - "Text": "override", - "Ws": "zag", - "Bold": "Off", - "FontSize": -2144821366, - "ForeColor": "#0000FF", - "Tags": [ - "a13c3436-b669-fe85-d1ff-bc4ccf3ec120" - ] - } - ] - }, - "kfj": { + "akv": { "Spans": [ { - "Text": "Serbia", - "Ws": "kfj", - "Tags": [ - "0419d5df-b122-4065-bf3e-a96cf8ebaa24" - ] - }, - { - "Text": "Generic Cotton Pizza", - "Ws": "hng", - "Bold": "Invert", - "FontSize": 1518698995, - "ForeColor": "#ADFF2F", + "Text": "even-keeled", + "Ws": "jbn", + "Bold": "On", + "FontSize": 1015493185, + "ForeColor": "#00FFFF", "Tags": [ - "11e84286-9334-7add-782b-bd14dc7f7b01" + "ff9425f8-ea6a-0d5b-78f2-fd571c6b75c2" ] }, { - "Text": "Texas", - "Ws": "kfj", + "Text": "Computers, Books \u0026 Baby", + "Ws": "akv", "Tags": [ - "72ec4ae5-33eb-43c7-96fd-fca3e2910b07" + "0ad02744-506e-4b3d-b921-c180868ab121" ] } ] }, - "tag": { + "xkg": { "Spans": [ { - "Text": "Falkland Islands Pound", - "Ws": "syo", - "Bold": "Invert", - "FontSize": 1861298083, - "ForeColor": "#00000000", - "Tags": [ - "c346269b-13e9-7610-ad49-1e3b17458a40" - ] - }, - { - "Text": "Usability", - "Ws": "uhn", - "Bold": "Invert", - "FontSize": 1491545820, - "ForeColor": "#A52A2A", + "Text": "system", + "Ws": "xkg", "Tags": [ - "9ff7d106-2b72-bccb-6216-c8d5bfbc9843" + "90cd4802-2a15-44d3-8aec-b9c56448f11b" ] } ] } }, "Gloss": { - "sny": "Neck" + "abq": "compelling", + "spg": "Intelligent Soft Pants", + "isd": "Incredible Soft Shoes", + "la": "Small" }, "PartOfSpeech": { - "Id": "ea8ff3b0-4362-9168-1d32-b4c538f7cc7a", + "Id": "b5145e0f-d337-3640-1004-1edfac65009c", "Name": { - "lvl": "Democratic People\u0027s Republic of Korea" + "aif": "hybrid", + "bdz": "budgetary management", + "atn": "Lek" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "eaa97b2e-477b-d15a-d009-b03bfecad893", + "PartOfSpeechId": "b19ca12f-af3d-e0f6-7059-9df47d9819e4", "SemanticDomains": [ { - "Id": "e177e1c5-b5bc-2038-2b15-5e5d48be2529", + "Id": "8724ac0b-464e-e891-6532-8306f9ca82ba", "Name": { - "kmu": "Wooden" + "vra": "Metal" }, - "Code": "mission-critical", + "Abbreviation": { + "nwb": "Aruban Guilder", + "cog": "Investor", + "esm": "Savings Account", + "dkk": "Innovative" + }, + "Code": "Aruban Guilder", + "Description": { + "fpe": { + "Spans": [ + { + "Text": "Avenue", + "Ws": "fpe", + "Tags": [ + "1591a234-be56-44bb-95d5-3865a27f8378" + ] + }, + { + "Text": "solid state", + "Ws": "fpe", + "Tags": [ + "5b12b016-55b7-4a8b-8eab-b6a3902b3846" + ] + } + ] + } + }, + "OcmCodes": "models", + "LouwNidaCodes": "intermediate", "DeletedAt": null, "Predefined": false } @@ -2522,55 +6311,38 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "96e78848-8081-b916-c42f-a477c7c720b3", + "Id": "cf54f9d8-8063-6879-a212-6608e1e5c29a", "Order": 0, "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", "Caption": { - "ske": { + "lij": { "Spans": [ { "Text": "PCI", - "Ws": "meq", - "Bold": "Off", - "FontSize": 939450240, - "ForeColor": "#0000FF", - "Tags": [ - "62979dec-0d70-de3f-2f18-69b6a9463735" - ] - }, - { - "Text": "Automated", - "Ws": "ske", - "Tags": [ - "780eaa13-730a-4784-9958-dc5480b4c4e0" - ] - }, - { - "Text": "Savings Account", - "Ws": "urt", - "Bold": "On", - "FontSize": 1397834172, - "ForeColor": "#0000FF", + "Ws": "lij", "Tags": [ - "c705abb0-c434-bc17-fedf-cd58b1ab3b55" + "6994e2fb-e20b-4d15-91dc-962bc8bb48c7" ] } ] }, - "dif": { + "nuy": { "Spans": [ { - "Text": "parsing", - "Ws": "dif", + "Text": "engage", + "Ws": "nuy", "Tags": [ - "e08b843d-33f9-47e7-801d-af636f03cad4" + "99b3dfd3-a4a1-4bb0-bd3b-4e9fa47262a1" ] }, { - "Text": "web-readiness", - "Ws": "dif", + "Text": "Sharable", + "Ws": "msp", + "Bold": "Off", + "FontSize": -627564696, + "ForeColor": "#ADFF2F", "Tags": [ - "699262f7-e6a4-4e43-bcbe-718c3f7616b2" + "7181886c-fd5f-99db-de56-eb11693611fd" ] } ] @@ -2579,170 +6351,307 @@ } ] }, - "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "Id": "ea4e49c5-de1e-27d1-8ce2-e7494428ff27", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", - "Order": 2, + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "Order": 0, "DeletedAt": null, - "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", + "EntryId": "7310ab10-987a-3630-26ae-dc6a34fb0deb", "Definition": { - "en": { + "xau": { "Spans": [ { - "Text": "may or may not lay golden eggs", - "Ws": "en" + "Text": "PCI", + "Ws": "xsb", + "Bold": "Off", + "FontSize": 534074098, + "ForeColor": "#0000FF", + "Tags": [ + "dfb21668-81b3-ef3f-4703-9ea338812723" + ] + }, + { + "Text": "harness", + "Ws": "lro", + "Bold": "Off", + "FontSize": -1293318803, + "ForeColor": "#0000FF", + "Tags": [ + "badee952-2d27-fc9b-656a-381da87e3b10" + ] } ] } }, "Gloss": { - "en": "brid" + "fvr": "Licensed", + "zyn": "lime", + "sjo": "online", + "wkb": "Generic Cotton Shirt" }, - "PartOfSpeech": null, - "PartOfSpeechId": null, - "SemanticDomains": [], + "PartOfSpeech": { + "Id": "cdc711e2-8767-4c25-5ad3-36bca7a318fe", + "Name": { + "cdh": "South Georgia and the South Sandwich Islands", + "bwq": "Cambridgeshire" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bdf71ef6-0ea6-40b9-5a51-c9d92a7ca8a4", + "SemanticDomains": [ + { + "Id": "1835f6da-43ce-0a96-13e4-e485558e6a88", + "Name": { + "hnj": "Consultant", + "dtn": "encompassing" + }, + "Abbreviation": {}, + "Code": "Brazilian Real", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], "ExampleSentences": [], "Pictures": [] }, - "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "Id": "53a2e1a5-1c61-00b8-1faf-c499918103a9", "Order": 0, "DeletedAt": null, - "EntryId": "018eaf35-2a0a-6098-13b3-260ea4017d27", + "EntryId": "d09d826d-d8d5-a90f-8f15-c8775aaaf6d8", "Definition": { - "dac": { + "gcc": { "Spans": [ { - "Text": "Accountability", - "Ws": "dac", - "Tags": [ - "755f2352-8b57-41a1-bb72-cdb00c70a723" - ] - }, - { - "Text": "Berkshire", - "Ws": "osi", + "Text": "mission-critical", + "Ws": "drh", "Bold": "Off", - "FontSize": 202893717, - "ForeColor": "#0000FF", + "FontSize": -564255989, + "ForeColor": "#A52A2A", "Tags": [ - "60af4336-04cc-2d89-f7d1-093374e118b8" + "0376bd20-08d8-cbb9-b9e3-0c58fe78a2be" ] } ] }, - "ptt": { + "lmm": { "Spans": [ { - "Text": "Checking Account", - "Ws": "ptt", + "Text": "payment", + "Ws": "bld", + "Bold": "Invert", + "FontSize": 1830445787, + "ForeColor": "#0000FF", "Tags": [ - "fb86b786-0054-48ba-8f7d-9cee06055c4d" + "30ad2679-a858-5955-ce91-336d1d0f03fe" ] }, { - "Text": "content", - "Ws": "fsl", + "Text": "Turnpike", + "Ws": "bwf", "Bold": "Invert", - "FontSize": -712294872, + "FontSize": 978985541, + "ForeColor": "#00FFFF", + "Tags": [ + "cf9d4aae-389e-23c2-9823-0b0bc8fd4592" + ] + } + ] + }, + "hit": { + "Spans": [ + { + "Text": "Buckinghamshire", + "Ws": "kqf", + "Bold": "Invert", + "FontSize": 796113316, "ForeColor": "#00000000", "Tags": [ - "97add724-5b06-4d9d-54f5-ef39c28c08bb" + "8be0f9d9-fdb0-ced8-e044-342f9fb55f99" ] }, { - "Text": "SQL", - "Ws": "ptt", + "Text": "Avon", + "Ws": "nhx", + "Bold": "On", + "FontSize": 425522533, + "ForeColor": "#00FFFF", "Tags": [ - "49987f83-0e34-4f77-9b8b-d61c3a8e603d" + "3a89a32b-becf-4c78-7bba-8bcf570f5a33" ] - } - ] - }, - "kzh": { - "Spans": [ + }, { - "Text": "Uzbekistan", - "Ws": "kzh", + "Text": "e-tailers", + "Ws": "hit", "Tags": [ - "4aad02ff-438f-4f6f-89d9-6ec8340b6763" + "3123094f-d7bd-490b-978f-2c961b5e8ab7" ] } ] }, - "ulf": { + "phh": { "Spans": [ { - "Text": "Intelligent Frozen Sausages", - "Ws": "ulf", + "Text": "Fantastic Plastic Computer", + "Ws": "nhp", + "Bold": "On", + "FontSize": -1927919622, + "ForeColor": "#FF0000", "Tags": [ - "e09b6dde-62e8-423a-af41-9ce466144488" + "7504d057-5138-7345-4c2f-677ba6e05ab3" ] }, { - "Text": "District", - "Ws": "twp", - "Bold": "Invert", - "FontSize": -1102337901, - "ForeColor": "#A52A2A", + "Text": "Unbranded Fresh Shirt", + "Ws": "phh", "Tags": [ - "07334f1a-5d23-f06b-390c-f4e04cd6aaaa" + "0259cc60-9848-422b-9ad3-45ab52e63892" ] }, { - "Text": "next-generation", - "Ws": "ulf", + "Text": "Advanced", + "Ws": "phh", "Tags": [ - "12169ebc-09bc-4536-94ee-764bd5495ede" + "c7576c75-f2b5-4a6a-ba59-73f2079d3a52" ] }, { - "Text": "Direct", - "Ws": "loo", - "Bold": "Invert", - "FontSize": 1945097886, - "ForeColor": "#FF0000", + "Text": "parsing", + "Ws": "phh", "Tags": [ - "9ae6b7b0-9c92-0333-eac6-84a7fb521cb0" + "efc93f91-f963-49e4-9f7f-a66850dfdb27" ] } ] } }, "Gloss": { - "qud": "Square" + "syn": "seize" }, "PartOfSpeech": { - "Id": "ab15d93b-1c45-e79b-f1b2-5d8f71e45335", + "Id": "503f66f5-49c1-a052-123f-0ee81df9b79a", "Name": { - "pmz": "infomediaries", - "tmj": "Health \u0026 Books", - "buu": "Corporate", - "hix": "International" + "vmd": "backing up" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "326aff5e-43f0-7705-7672-a2aa8ba2023c", + "PartOfSpeechId": "01dda8f2-fd70-1376-a275-6c81d3296d66", "SemanticDomains": [ { - "Id": "702e9bc7-e774-0d90-8f88-dff28920154b", + "Id": "b8c715d4-e4c9-f38f-10ab-8ec282b88c70", "Name": { - "ktg": "card", - "zaf": "Tasty" + "njj": "Unbranded Frozen Soap", + "aun": "streamline", + "ges": "vortals", + "etn": "seize" }, - "Code": "North Korean Won", + "Abbreviation": { + "tgz": "data-warehouse", + "aki": "Savings Account", + "css": "Rubber", + "six": "tangible" + }, + "Code": "data-warehouse", + "Description": { + "pel": { + "Spans": [ + { + "Text": "Data", + "Ws": "pel", + "Tags": [ + "5c6ce46b-d744-40b3-b007-6afb8439f871" + ] + }, + { + "Text": "Plastic", + "Ws": "oaa", + "Bold": "Invert", + "FontSize": 1257756986, + "ForeColor": "#00000000", + "Tags": [ + "879a0e1a-c27b-a4d5-8f6b-13a61aa221e0" + ] + } + ] + }, + "gyg": { + "Spans": [ + { + "Text": "hard drive", + "Ws": "gyg", + "Tags": [ + "42a88855-54fb-4ea0-b0c4-92f6c220b43e" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "ubl", + "Bold": "Invert", + "FontSize": -13587113, + "ForeColor": "#A52A2A", + "Tags": [ + "45fc7511-c5f5-c498-5ed2-4f1790ed2bdd" + ] + }, + { + "Text": "Clothing", + "Ws": "gyg", + "Tags": [ + "c2733a98-24f0-4c25-aa73-d2aade7024ce" + ] + } + ] + }, + "cek": { + "Spans": [ + { + "Text": "Arizona", + "Ws": "cek", + "Tags": [ + "6ab22c2e-8fcc-446d-a4f5-2d4d9f418efb" + ] + }, + { + "Text": "hard drive", + "Ws": "kho", + "Bold": "Off", + "FontSize": -344035793, + "ForeColor": "#00FFFF", + "Tags": [ + "d76d5ded-d004-2d31-78cf-7c83e12e2fb9" + ] + }, + { + "Text": "Awesome Cotton Cheese", + "Ws": "siq", + "Bold": "On", + "FontSize": 894591392, + "ForeColor": "#0000FF", + "Tags": [ + "2da36dff-8c22-7ca7-ad45-0c674834e061" + ] + } + ] + } + }, + "OcmCodes": "strategy", + "LouwNidaCodes": "Investment Account", "DeletedAt": null, "Predefined": false } @@ -2750,17 +6659,62 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "0e6a2808-96be-86d5-6092-04f762f26202", + "Id": "5f7caa62-c047-bd33-0b86-1e23aac5a9a8", "Order": 0, - "MediaUri": "sil-media://lexbox/7b06b27e-80e9-420d-bc93-c2c29720ef78", + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", "Caption": { - "emq": { + "coz": { "Spans": [ { - "Text": "strategize", - "Ws": "emq", + "Text": "invoice", + "Ws": "mwx", + "Bold": "Invert", + "FontSize": -753086641, + "ForeColor": "#00FFFF", "Tags": [ - "c5fccb12-219e-46f0-93ff-2234546ef6b7" + "178fd76e-fb28-2773-758e-caba87e6d5cb" + ] + }, + { + "Text": "Direct", + "Ws": "coz", + "Tags": [ + "52b53ceb-16ee-470b-99b2-d23340eb3bab" + ] + } + ] + }, + "buk": { + "Spans": [ + { + "Text": "Fantastic", + "Ws": "maf", + "Bold": "Off", + "FontSize": 1234589298, + "ForeColor": "#00FFFF", + "Tags": [ + "0b58e111-afa5-ab64-b470-626b07a54521" + ] + }, + { + "Text": "Senior", + "Ws": "krw", + "Bold": "Invert", + "FontSize": 307695393, + "ForeColor": "#A52A2A", + "Tags": [ + "88328761-0729-b2e3-4500-f806147aa3db" + ] + } + ] + }, + "nrm": { + "Spans": [ + { + "Text": "Sleek Granite Chips", + "Ws": "nrm", + "Tags": [ + "b43c9ae9-f047-4c8d-9287-a6d47f5c4182" ] } ] @@ -2769,84 +6723,125 @@ } ] }, - "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "Id": "53a2e1a5-1c61-00b8-1faf-c499918103a9", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", "Order": 0, "DeletedAt": null, - "EntryId": "dec2c32e-6e17-173e-13fd-7f2ab4ce56c9", + "EntryId": "45402c66-1666-a6ae-be14-52268308a80d", "Definition": { - "jud": { + "wrr": { "Spans": [ { - "Text": "Fantastic Fresh Table", - "Ws": "jud", + "Text": "radical", + "Ws": "wrr", "Tags": [ - "3dde4d6e-b610-44cd-b7f0-853f6d9f9680" + "ca09e09e-93d9-465b-a90c-150f9fe1c37d" ] }, { - "Text": "EXE", - "Ws": "jud", + "Text": "Denmark", + "Ws": "wrr", "Tags": [ - "944daefe-a88f-4168-ace0-a81099908859" + "c98ffdcf-b21d-4f26-aa98-96766f1de795" ] }, { - "Text": "France", - "Ws": "jud", + "Text": "Strategist", + "Ws": "pag", + "Bold": "Invert", + "FontSize": 1802509412, + "ForeColor": "#FF0000", "Tags": [ - "6d6018a8-4d8b-43c5-a188-68ae485981f3" + "83cedf51-7bb2-2a83-6ac1-3dfd1da56010" ] } ] }, - "lum": { + "yaj": { "Spans": [ { - "Text": "Central", - "Ws": "lum", + "Text": "Shore", + "Ws": "yaj", "Tags": [ - "d96dca0e-fdb6-4ac1-9864-69a63788d3ae" + "c2cb390c-d89f-4d44-b15e-8c66084f976f" ] }, { - "Text": "Home Loan Account", - "Ws": "lum", + "Text": "Course", + "Ws": "tku", + "Bold": "On", + "FontSize": -887647908, + "ForeColor": "#ADFF2F", "Tags": [ - "d2743a5b-67a5-441d-a4f6-efd0f55c9f90" + "788a2a1f-d8b2-db8e-157a-f675ac13fc1a" + ] + } + ] + }, + "ptq": { + "Spans": [ + { + "Text": "copying", + "Ws": "ptq", + "Tags": [ + "30ada735-7e8e-4399-80cf-e0c87ecd94ae" + ] + }, + { + "Text": "upward-trending", + "Ws": "kl", + "Bold": "On", + "FontSize": 2020980805, + "ForeColor": "#A52A2A", + "Tags": [ + "54fd1200-a70f-1498-b1d1-cb77180f34b0" + ] + }, + { + "Text": "Kansas", + "Ws": "rcf", + "Bold": "Invert", + "FontSize": -1745182649, + "ForeColor": "#00FFFF", + "Tags": [ + "5d91118e-46d7-97d5-9b4d-e8efbc08330e" ] } ] } }, "Gloss": { - "zmc": "Cotton", - "nbs": "Programmable" + "sda": "migration", + "url": "sexy" }, "PartOfSpeech": { - "Id": "5fb817b7-7c86-56ce-ca5f-ff8467d5260f", + "Id": "2aea7efe-0c41-a465-06d7-dc7d1dd44b9b", "Name": { - "mkf": "Home \u0026 Shoes" + "pab": "convergence", + "kgl": "North Dakota", + "ppu": "Iowa" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "1245db57-fd23-45e3-c394-a38c7e1fa617", + "PartOfSpeechId": "f25a3e84-2992-a4c1-a86c-3f5d0a221a7c", "SemanticDomains": [ { - "Id": "2fc2a227-ac73-8518-5bba-5b74c1285b40", + "Id": "0404de20-eee7-0b57-0d07-9d00e64c3588", "Name": { - "kg": "Solomon Islands Dollar", - "osc": "Consultant", - "bpe": "Ferry" + "idt": "Persevering" }, - "Code": "Awesome Fresh Sausages", + "Abbreviation": {}, + "Code": "auxiliary", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -2854,87 +6849,107 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "12ce8612-d983-1af0-4b37-21a1c23a8e21", + "Id": "de247b82-e534-9742-c69a-20a76209b78c", "Order": 0, - "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "MediaUri": "sil-media://lexbox/396c23b3-1736-4d1e-bc7d-15baf5e5aefb", "Caption": { - "skb": { + "bab": { "Spans": [ { - "Text": "Slovakia (Slovak Republic)", - "Ws": "skb", + "Text": "convergence", + "Ws": "bab", "Tags": [ - "e6ae98b8-677e-4834-b4d7-d738ba2816f9" + "7b5f64a7-3b9a-4cab-b513-80c8804a5175" ] }, { - "Text": "Luxembourg", - "Ws": "hab", + "Text": "Buckinghamshire", + "Ws": "bab", + "Tags": [ + "b2da0f22-28e8-4b7e-9cc0-f7491b3ee991" + ] + }, + { + "Text": "integrated", + "Ws": "ibm", "Bold": "Off", - "FontSize": -797072059, + "FontSize": -1988753505, "ForeColor": "#A52A2A", "Tags": [ - "bad7abdd-5e58-9f69-d0ed-91cb7bf79b10" + "8e0b442f-cccf-7a3d-d17a-2d8e56d3c038" + ] + }, + { + "Text": "approach", + "Ws": "rmx", + "Bold": "Invert", + "FontSize": 1336983740, + "ForeColor": "#A52A2A", + "Tags": [ + "b443ce55-c277-33c3-9d59-f863851a32c0" ] } ] }, - "bsp": { + "anj": { "Spans": [ { - "Text": "Berkshire", - "Ws": "bsp", + "Text": "Refined", + "Ws": "anj", "Tags": [ - "2f1eb23e-692a-49f0-9b7f-4d23d925cccc" + "70f80489-9e6a-4593-a7d4-b9a0651bdd32" ] }, { - "Text": "red", - "Ws": "bsp", + "Text": "connect", + "Ws": "won", + "Bold": "Off", + "FontSize": -1171626966, + "ForeColor": "#FF0000", "Tags": [ - "7720eab3-709f-498c-9b30-66c2e3ac737c" + "2f7b1eca-ebad-a134-98bd-8453634579ab" ] } ] }, - "hni": { + "jer": { "Spans": [ { - "Text": "Lead", - "Ws": "phd", - "Bold": "Invert", - "FontSize": -1680981122, + "Text": "Mews", + "Ws": "mek", + "Bold": "On", + "FontSize": -49834405, "ForeColor": "#ADFF2F", "Tags": [ - "ea4753f5-8b13-fa87-0e09-6fbc78b78581" + "d160ce7d-6803-3adc-c88d-05cf3939ae45" ] }, { - "Text": "River", - "Ws": "hni", + "Text": "productivity", + "Ws": "beo", + "Bold": "On", + "FontSize": 1358440076, + "ForeColor": "#0000FF", "Tags": [ - "56385552-a5f6-4d29-a228-49e09e16e294" + "791f8e3b-d5d0-593e-8ca2-c57ebb123c9b" + ] + }, + { + "Text": "Internal", + "Ws": "jer", + "Tags": [ + "22593efb-681a-4e61-bdc4-96b4d54feee5" ] } ] }, - "tdq": { + "orn": { "Spans": [ { - "Text": "Gorgeous", - "Ws": "tdq", - "Tags": [ - "7da9faf0-8cb9-42a3-a486-079bd0f05a33" - ] - }, - { - "Text": "whiteboard", - "Ws": "dda", - "Bold": "On", - "FontSize": -773976336, - "ForeColor": "#0000FF", + "Text": "Kiribati", + "Ws": "orn", "Tags": [ - "42011f31-c33a-1f4f-925d-abb59c734377" + "43da294d-1349-48ab-a650-3fae8cd2cc0e" ] } ] @@ -2943,189 +6958,207 @@ } ] }, - "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "Id": "abb21571-4fe4-caa6-4244-0964b3a90276", "Order": 0, "DeletedAt": null, - "EntryId": "7310ab10-987a-3630-26ae-dc6a34fb0deb", + "EntryId": "08b124bb-d5ec-5604-c72a-2730b4e32347", "Definition": { - "xau": { + "enn": { "Spans": [ { - "Text": "PCI", - "Ws": "xsb", + "Text": "synthesize", + "Ws": "aiw", "Bold": "Off", - "FontSize": 534074098, - "ForeColor": "#0000FF", + "FontSize": 907613377, + "ForeColor": "#00000000", "Tags": [ - "dfb21668-81b3-ef3f-4703-9ea338812723" + "23a7ac4a-a844-976a-59f2-e8be2f338899" + ] + } + ] + }, + "kec": { + "Spans": [ + { + "Text": "transmit", + "Ws": "kec", + "Tags": [ + "4c074d7f-6744-4041-b51e-6366205140d1" ] }, { - "Text": "harness", - "Ws": "lro", - "Bold": "Off", - "FontSize": -1293318803, - "ForeColor": "#0000FF", + "Text": "Via", + "Ws": "kec", "Tags": [ - "badee952-2d27-fc9b-656a-381da87e3b10" + "3ff4afbb-3a8c-4d60-8075-f348b3187c2d" ] } ] - } - }, - "Gloss": { - "fvr": "Licensed", - "zyn": "lime", - "sjo": "online", - "wkb": "Generic Cotton Shirt" - }, - "PartOfSpeech": { - "Id": "cdc711e2-8767-4c25-5ad3-36bca7a318fe", - "Name": { - "cdh": "South Georgia and the South Sandwich Islands", - "bwq": "Cambridgeshire" }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "bdf71ef6-0ea6-40b9-5a51-c9d92a7ca8a4", - "SemanticDomains": [ - { - "Id": "1835f6da-43ce-0a96-13e4-e485558e6a88", - "Name": { - "hnj": "Consultant", - "dtn": "encompassing" - }, - "Code": "Brazilian Real", - "DeletedAt": null, - "Predefined": false - } - ], - "ExampleSentences": [], - "Pictures": [] - }, - "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", - "DeletedAt": null - }, - { - "$type": "MiniLcmCrdtAdapter", - "Obj": { - "$type": "Sense", - "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", - "Order": 0, - "DeletedAt": null, - "EntryId": "45402c66-1666-a6ae-be14-52268308a80d", - "Definition": { - "wrr": { + "zmy": { "Spans": [ { - "Text": "radical", - "Ws": "wrr", + "Text": "port", + "Ws": "zmy", "Tags": [ - "ca09e09e-93d9-465b-a90c-150f9fe1c37d" + "a1bb95b6-e007-41fc-b2be-8504432ba36c" ] }, { - "Text": "Denmark", - "Ws": "wrr", + "Text": "reboot", + "Ws": "zmy", "Tags": [ - "c98ffdcf-b21d-4f26-aa98-96766f1de795" + "4a7ecc97-e4bc-4868-aea6-f17804f3b190" ] }, { - "Text": "Strategist", - "Ws": "pag", - "Bold": "Invert", - "FontSize": 1802509412, + "Text": "Division", + "Ws": "zmy", + "Tags": [ + "178d4672-9740-40ad-a324-07be34c70120" + ] + }, + { + "Text": "system", + "Ws": "clc", + "Bold": "On", + "FontSize": -1186623699, "ForeColor": "#FF0000", "Tags": [ - "83cedf51-7bb2-2a83-6ac1-3dfd1da56010" + "7dbc14d0-fb09-3809-8bf5-7ab56512f32c" ] } ] }, - "yaj": { + "tar": { "Spans": [ { - "Text": "Shore", - "Ws": "yaj", + "Text": "back-end", + "Ws": "lnw", + "Bold": "On", + "FontSize": -1902850153, + "ForeColor": "#ADFF2F", "Tags": [ - "c2cb390c-d89f-4d44-b15e-8c66084f976f" + "a1c23430-e054-d74d-3569-a04f70c8cb5f" ] }, { - "Text": "Course", - "Ws": "tku", + "Text": "plum", + "Ws": "wnu", "Bold": "On", - "FontSize": -887647908, - "ForeColor": "#ADFF2F", + "FontSize": 1701319424, + "ForeColor": "#FF0000", "Tags": [ - "788a2a1f-d8b2-db8e-157a-f675ac13fc1a" + "86495502-470e-2fc5-baaf-813f0358a7c7" ] } ] + } + }, + "Gloss": { + "anr": "viral", + "ywg": "embrace", + "aot": "Assistant" + }, + "PartOfSpeech": { + "Id": "8b634600-1cf6-6a9c-08e9-cfa396b6a2e9", + "Name": { + "pmt": "Unbranded", + "dee": "Route", + "tan": "Heights", + "pbc": "Direct" }, - "ptq": { - "Spans": [ - { - "Text": "copying", - "Ws": "ptq", - "Tags": [ - "30ada735-7e8e-4399-80cf-e0c87ecd94ae" + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "7f139baa-ac87-23a0-2f94-0832d9f5ce59", + "SemanticDomains": [ + { + "Id": "6b3cd4f9-ae2e-84ee-f6b0-c2c8a9023fa4", + "Name": { + "pns": "COM", + "pgd": "Tools", + "bxp": "SQL", + "adx": "Rustic Soft Cheese" + }, + "Abbreviation": { + "lwh": "redundant" + }, + "Code": "redundant", + "Description": { + "lsy": { + "Spans": [ + { + "Text": "Auto Loan Account", + "Ws": "srg", + "Bold": "Invert", + "FontSize": -882936255, + "ForeColor": "#ADFF2F", + "Tags": [ + "c0a91c91-23bf-6bff-37b7-c1c53024d58d" + ] + }, + { + "Text": "client-driven", + "Ws": "lsy", + "Tags": [ + "986f5ac0-c79a-4373-a955-6027b5ca88b8" + ] + } ] }, - { - "Text": "upward-trending", - "Ws": "kl", - "Bold": "On", - "FontSize": 2020980805, - "ForeColor": "#A52A2A", - "Tags": [ - "54fd1200-a70f-1498-b1d1-cb77180f34b0" + "bpx": { + "Spans": [ + { + "Text": "Metal", + "Ws": "mdw", + "Bold": "On", + "FontSize": 1059852460, + "ForeColor": "#00FFFF", + "Tags": [ + "9958ba18-840e-50d7-d141-71d9b9a94a2c" + ] + }, + { + "Text": "synergize", + "Ws": "twh", + "Bold": "Invert", + "FontSize": 1457562429, + "ForeColor": "#0000FF", + "Tags": [ + "5dcd4f1d-c02d-3f7f-d1ad-9513cd45ef22" + ] + } ] }, - { - "Text": "Kansas", - "Ws": "rcf", - "Bold": "Invert", - "FontSize": -1745182649, - "ForeColor": "#00FFFF", - "Tags": [ - "5d91118e-46d7-97d5-9b4d-e8efbc08330e" + "ggg": { + "Spans": [ + { + "Text": "Route", + "Ws": "ggg", + "Tags": [ + "9a3ddd4c-8d48-4aab-93b6-595ff03ad305" + ] + }, + { + "Text": "Engineer", + "Ws": "ggg", + "Tags": [ + "b955e299-feb5-41c0-9ee1-afacbc8b0134" + ] + } ] } - ] - } - }, - "Gloss": { - "sda": "migration", - "url": "sexy" - }, - "PartOfSpeech": { - "Id": "2aea7efe-0c41-a465-06d7-dc7d1dd44b9b", - "Name": { - "pab": "convergence", - "kgl": "North Dakota", - "ppu": "Iowa" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "f25a3e84-2992-a4c1-a86c-3f5d0a221a7c", - "SemanticDomains": [ - { - "Id": "0404de20-eee7-0b57-0d07-9d00e64c3588", - "Name": { - "idt": "Persevering" }, - "Code": "auxiliary", + "OcmCodes": "Dam", + "LouwNidaCodes": "Checking Account", "DeletedAt": null, "Predefined": false } @@ -3133,107 +7166,117 @@ "ExampleSentences": [], "Pictures": [ { - "Id": "de247b82-e534-9742-c69a-20a76209b78c", + "Id": "821dae0b-1889-e362-5466-5536a785364c", "Order": 0, - "MediaUri": "sil-media://lexbox/396c23b3-1736-4d1e-bc7d-15baf5e5aefb", + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", "Caption": { - "bab": { + "zpi": { "Spans": [ { - "Text": "convergence", - "Ws": "bab", + "Text": "Cotton", + "Ws": "zpi", "Tags": [ - "7b5f64a7-3b9a-4cab-b513-80c8804a5175" + "45480789-2dd4-4b54-88df-2cfdbc0c8103" ] }, { - "Text": "Buckinghamshire", - "Ws": "bab", + "Text": "Markets", + "Ws": "zpi", "Tags": [ - "b2da0f22-28e8-4b7e-9cc0-f7491b3ee991" + "884caa15-f003-4d95-bbbf-7e9c4fa42133" ] - }, + } + ] + }, + "ntj": { + "Spans": [ { - "Text": "integrated", - "Ws": "ibm", - "Bold": "Off", - "FontSize": -1988753505, - "ForeColor": "#A52A2A", + "Text": "Tanzanian Shilling", + "Ws": "ntj", "Tags": [ - "8e0b442f-cccf-7a3d-d17a-2d8e56d3c038" + "8cae2496-4dc9-40d1-b878-ce663ab9429c" ] }, { - "Text": "approach", - "Ws": "rmx", + "Text": "Unbranded Steel Soap", + "Ws": "kqp", "Bold": "Invert", - "FontSize": 1336983740, - "ForeColor": "#A52A2A", + "FontSize": 627871112, + "ForeColor": "#ADFF2F", "Tags": [ - "b443ce55-c277-33c3-9d59-f863851a32c0" + "020e8483-05a9-d50b-b243-b31537147c90" ] - } - ] - }, - "anj": { - "Spans": [ + }, { - "Text": "Refined", - "Ws": "anj", + "Text": "empowering", + "Ws": "ntj", "Tags": [ - "70f80489-9e6a-4593-a7d4-b9a0651bdd32" + "900d80d9-4af0-400a-8ca0-e6a5495895f8" ] }, { - "Text": "connect", - "Ws": "won", - "Bold": "Off", - "FontSize": -1171626966, - "ForeColor": "#FF0000", + "Text": "Movies, Clothing \u0026 Baby", + "Ws": "maj", + "Bold": "On", + "FontSize": -1566080239, + "ForeColor": "#ADFF2F", "Tags": [ - "2f7b1eca-ebad-a134-98bd-8453634579ab" + "cca13cd7-76e8-8591-e2e4-7e2123b47a7f" ] } ] }, - "jer": { + "nui": { "Spans": [ { - "Text": "Mews", - "Ws": "mek", - "Bold": "On", - "FontSize": -49834405, - "ForeColor": "#ADFF2F", + "Text": "envisioneer", + "Ws": "nui", "Tags": [ - "d160ce7d-6803-3adc-c88d-05cf3939ae45" + "bc409b2c-7948-4f43-9f87-dc51b0eb19c0" ] }, { - "Text": "productivity", - "Ws": "beo", - "Bold": "On", - "FontSize": 1358440076, + "Text": "Gorgeous", + "Ws": "nyf", + "Bold": "Off", + "FontSize": 1580940377, "ForeColor": "#0000FF", "Tags": [ - "791f8e3b-d5d0-593e-8ca2-c57ebb123c9b" + "c227b511-7502-d7f2-5f56-0c6091da3da3" ] }, { - "Text": "Internal", - "Ws": "jer", + "Text": "transmit", + "Ws": "thl", + "Bold": "On", + "FontSize": -686508656, + "ForeColor": "#ADFF2F", "Tags": [ - "22593efb-681a-4e61-bdc4-96b4d54feee5" + "c6356535-bada-5775-3c81-47cf4bac682a" + ] + }, + { + "Text": "input", + "Ws": "dek", + "Bold": "Off", + "FontSize": -717436892, + "ForeColor": "#00000000", + "Tags": [ + "f3c3a5a6-6352-831b-7170-520b96610f62" ] } ] }, - "orn": { + "dtt": { "Spans": [ { - "Text": "Kiribati", - "Ws": "orn", + "Text": "platforms", + "Ws": "qvc", + "Bold": "On", + "FontSize": -521527559, + "ForeColor": "#00000000", "Tags": [ - "43da294d-1349-48ab-a650-3fae8cd2cc0e" + "a7a87ada-e795-b3fc-5a14-cd9f8062fb40" ] } ] @@ -3242,7 +7285,7 @@ } ] }, - "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "Id": "abb21571-4fe4-caa6-4244-0964b3a90276", "DeletedAt": null }, { @@ -3289,7 +7332,11 @@ "mrx": "Money Market Account", "btb": "silver" }, + "Abbreviation": {}, "Code": "applications", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -3453,6 +7500,222 @@ "Id": "3ad5077d-175e-bf42-60ec-df0e3cf1d2bb", "DeletedAt": null }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "6c3b9fe2-2bc3-9c43-b22c-abbb5c112196", + "Order": 0, + "DeletedAt": null, + "EntryId": "e6b038b5-d965-b191-4bed-33adc752f7a0", + "Definition": { + "mbv": { + "Spans": [ + { + "Text": "mint green", + "Ws": "kmz", + "Bold": "On", + "FontSize": 278979374, + "ForeColor": "#ADFF2F", + "Tags": [ + "94043eaa-eb85-7333-afc3-56639b189285" + ] + }, + { + "Text": "bifurcated", + "Ws": "wig", + "Bold": "Invert", + "FontSize": 766210614, + "ForeColor": "#A52A2A", + "Tags": [ + "11333603-deb3-5c02-1043-a3772ab877eb" + ] + } + ] + }, + "dbp": { + "Spans": [ + { + "Text": "functionalities", + "Ws": "myj", + "Bold": "Off", + "FontSize": -1969770109, + "ForeColor": "#FF0000", + "Tags": [ + "0e270618-4b5e-f305-07de-965e6b86cc23" + ] + } + ] + } + }, + "Gloss": { + "miw": "protocol", + "gah": "parsing", + "zaa": "payment", + "bdk": "index" + }, + "PartOfSpeech": { + "Id": "c0e6eb49-882c-f898-5d1a-337333e2a8ca", + "Name": { + "li": "Ford", + "ztm": "Comoro Franc" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b85a321f-157e-d434-9d89-f92f37078d5a", + "SemanticDomains": [ + { + "Id": "012b3b05-dbf8-dffd-f032-8bb8caee035e", + "Name": { + "tli": "withdrawal", + "gmx": "Usability" + }, + "Abbreviation": { + "wnn": "firmware" + }, + "Code": "firmware", + "Description": { + "ikz": { + "Spans": [ + { + "Text": "plum", + "Ws": "vrt", + "Bold": "On", + "FontSize": 951040278, + "ForeColor": "#ADFF2F", + "Tags": [ + "2d397e88-7c88-ca85-727e-4d8da196fb5b" + ] + }, + { + "Text": "functionalities", + "Ws": "ikz", + "Tags": [ + "184ddb52-d37a-4627-96a8-90c80fe58eae" + ] + } + ] + }, + "teo": { + "Spans": [ + { + "Text": "Metal", + "Ws": "teo", + "Tags": [ + "a67e0be6-0688-41fd-8632-ff02ef9fafc3" + ] + }, + { + "Text": "Avon", + "Ws": "teo", + "Tags": [ + "6476906d-7949-4b0d-9cd0-2b9bdf1ef1c7" + ] + }, + { + "Text": "technologies", + "Ws": "gol", + "Bold": "Invert", + "FontSize": -157529230, + "ForeColor": "#00000000", + "Tags": [ + "94c9ec1e-8a82-15e5-a70a-1ccb156692e1" + ] + } + ] + }, + "ikt": { + "Spans": [ + { + "Text": "Netherlands", + "Ws": "ikt", + "Tags": [ + "71ea987c-be89-4ae9-a820-c17797ddd750" + ] + } + ] + }, + "tkn": { + "Spans": [ + { + "Text": "Handcrafted Rubber Fish", + "Ws": "tkn", + "Tags": [ + "5f6d72af-eee4-4bb1-8b69-116d283d0672" + ] + }, + { + "Text": "EXE", + "Ws": "tkn", + "Tags": [ + "5ae70e39-27fd-4d9f-b146-2b611c536ebb" + ] + }, + { + "Text": "index", + "Ws": "pcl", + "Bold": "Invert", + "FontSize": -2090480748, + "ForeColor": "#0000FF", + "Tags": [ + "6c4e98b0-a3d2-48a6-8f51-495429e86923" + ] + } + ] + } + }, + "OcmCodes": "maroon", + "LouwNidaCodes": "panel", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "1a2332ed-d906-f526-e31d-c63a0c3aa9e7", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "pcd": { + "Spans": [ + { + "Text": "Neck", + "Ws": "nql", + "Bold": "Invert", + "FontSize": -762984356, + "ForeColor": "#00FFFF", + "Tags": [ + "b7ce36e4-86ad-ea63-2c5e-b254174c37f5" + ] + }, + { + "Text": "XSS", + "Ws": "gnb", + "Bold": "Invert", + "FontSize": -1303854833, + "ForeColor": "#0000FF", + "Tags": [ + "81acb385-10d1-c763-c398-19fde9b36d8c" + ] + }, + { + "Text": "transmit", + "Ws": "pcd", + "Tags": [ + "159a4779-17fb-40ac-9e19-74cbc1fd414c" + ] + } + ] + } + } + } + ] + }, + "Id": "6c3b9fe2-2bc3-9c43-b22c-abbb5c112196", + "DeletedAt": null + }, { "$type": "MiniLcmCrdtAdapter", "Obj": { diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt index eaacdc2db0..8094960b3d 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt @@ -1,4 +1,4 @@ -[ +[ { "Input": { "$type": "MiniLcmCrdtAdapter", @@ -32,7 +32,11 @@ "Name": { "en": "Husband, wife" }, + "Abbreviation": {}, "Code": "4.1.9.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -73,7 +77,11 @@ "Name": { "en": "Poison" }, + "Abbreviation": {}, "Code": "2.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false }, @@ -2180,7 +2188,11 @@ "tay": "Borders", "hle": "1080p" }, + "Abbreviation": {}, "Code": "Gorgeous", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -2493,7 +2505,11 @@ "Name": { "ulk": "white" }, + "Abbreviation": {}, "Code": "SSL", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -2712,7 +2728,11 @@ "bjy": "Montana", "ga": "neural-net" }, + "Abbreviation": {}, "Code": "Rand", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -2985,7 +3005,11 @@ "aif": "Bypass", "hms": "Future" }, + "Abbreviation": {}, "Code": "orange", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -3405,7 +3429,11 @@ "ktg": "card", "zaf": "Tasty" }, + "Abbreviation": {}, "Code": "North Korean Won", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -3780,7 +3808,11 @@ "Name": { "idt": "Persevering" }, + "Abbreviation": {}, "Code": "auxiliary", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "DeletedAt": null, "Predefined": false } @@ -4035,5 +4067,5065 @@ "Id": "b14e4cf6-2b50-74a4-e21e-482b38efd849", "DeletedAt": null } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "Name": { + "en": "Husband, wife" + }, + "Code": "4.1.9.2.1", + "DeletedAt": null, + "Predefined": false + }, + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "Name": { + "en": "Husband, wife" + }, + "Abbreviation": {}, + "Code": "4.1.9.2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + }, + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "9fd83240-7fdb-6d68-8c5d-cd2793d4eb4b", + "Name": { + "mxj": "Chief" + }, + "Code": "Cambridgeshire", + "DeletedAt": null, + "Predefined": false + }, + "Id": "9fd83240-7fdb-6d68-8c5d-cd2793d4eb4b", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "9fd83240-7fdb-6d68-8c5d-cd2793d4eb4b", + "Name": { + "mxj": "Chief" + }, + "Abbreviation": {}, + "Code": "Cambridgeshire", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + }, + "Id": "9fd83240-7fdb-6d68-8c5d-cd2793d4eb4b", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "Name": { + "en": "Poison" + }, + "Code": "2.5.3.2", + "DeletedAt": null, + "Predefined": false + }, + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "Name": { + "en": "Poison" + }, + "Abbreviation": {}, + "Code": "2.5.3.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + }, + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "6c54b75f-23fb-bbf2-a6a0-33418f0f311b", + "Name": { + "cab": "withdrawal", + "kko": "success", + "wku": "Small Frozen Pants", + "tvw": "Terrace" + }, + "Code": "Myanmar", + "DeletedAt": null, + "Predefined": false + }, + "Id": "6c54b75f-23fb-bbf2-a6a0-33418f0f311b", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "6c54b75f-23fb-bbf2-a6a0-33418f0f311b", + "Name": { + "cab": "withdrawal", + "kko": "success", + "wku": "Small Frozen Pants", + "tvw": "Terrace" + }, + "Abbreviation": {}, + "Code": "Myanmar", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + }, + "Id": "6c54b75f-23fb-bbf2-a6a0-33418f0f311b", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", + "Order": 0, + "DeletedAt": null, + "EntryId": "40441758-a443-78ad-5a91-ff960b9916d5", + "Definition": { + "bqu": { + "Spans": [ + { + "Text": "Generic", + "Ws": "bqu", + "Tags": [ + "48c3c7a1-ec4e-4525-ba86-12bccc426156" + ] + }, + { + "Text": "Ergonomic Wooden Pants", + "Ws": "mie", + "Bold": "Invert", + "FontSize": -1554990305, + "ForeColor": "#FF0000", + "Tags": [ + "63895a7f-9e74-d3f2-fa1d-4e9c6249a821" + ] + }, + { + "Text": "Missouri", + "Ws": "bqu", + "Tags": [ + "bfe28abd-921c-43ab-b12a-3983d72806ee" + ] + } + ] + }, + "aaq": { + "Spans": [ + { + "Text": "connect", + "Ws": "aaq", + "Tags": [ + "d1626cf1-836c-474c-9a60-0326b58c1133" + ] + } + ] + }, + "kbr": { + "Spans": [ + { + "Text": "Visionary", + "Ws": "olo", + "Bold": "Off", + "FontSize": -806356479, + "ForeColor": "#ADFF2F", + "Tags": [ + "2b69d915-a453-0323-2e8b-f9779ff69c71" + ] + }, + { + "Text": "Wooden", + "Ws": "mgv", + "Bold": "On", + "FontSize": -42268580, + "ForeColor": "#FF0000", + "Tags": [ + "21259b45-178e-13b0-f6b5-07cb32e8e086" + ] + }, + { + "Text": "Incredible Plastic Cheese", + "Ws": "mtg", + "Bold": "Invert", + "FontSize": -741761540, + "ForeColor": "#00000000", + "Tags": [ + "cefbf8c2-8cc0-394a-b794-e9a238955186" + ] + } + ] + }, + "aac": { + "Spans": [ + { + "Text": "Automotive", + "Ws": "aac", + "Tags": [ + "59554364-b6c8-478f-ab66-797c70131883" + ] + } + ] + } + }, + "Gloss": { + "wmm": "clear-thinking", + "mrr": "purple", + "nbv": "ADP", + "asv": "Keys" + }, + "PartOfSpeech": { + "Id": "4f11dbe5-38f3-5d99-f97e-66dde448383c", + "Name": { + "suo": "payment", + "czk": "Robust", + "msn": "SQL" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "becc1fbd-40c9-74aa-d900-3a686e83905a", + "SemanticDomains": [ + { + "Id": "d4fdc835-1442-31e9-6434-14c603b0cfc6", + "Name": { + "tay": "Borders", + "hle": "1080p" + }, + "Code": "Gorgeous", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "7f3dac33-9bec-e820-a020-5b263fb3ddbb", + "Order": 0, + "MediaUri": "sil-media://lexbox/9e223822-02f7-4964-ac7d-cb513c99a2e7", + "Caption": { + "xsd": { + "Spans": [ + { + "Text": "Coordinator", + "Ws": "csg", + "Bold": "Invert", + "FontSize": -327243448, + "ForeColor": "#00000000", + "Tags": [ + "818b5074-cd33-9963-c796-b5d6dfc342a6" + ] + }, + { + "Text": "product", + "Ws": "xsd", + "Tags": [ + "79528c49-d5db-452b-97e2-169d8d410bcc" + ] + }, + { + "Text": "Plastic", + "Ws": "hts", + "Bold": "On", + "FontSize": -1770557873, + "ForeColor": "#ADFF2F", + "Tags": [ + "579e4099-8da7-2229-2e02-26ba5887ea95" + ] + }, + { + "Text": "purple", + "Ws": "xsd", + "Tags": [ + "8e4d4fab-e322-4620-a75c-ab065950d3ea" + ] + } + ] + }, + "umg": { + "Spans": [ + { + "Text": "Inlet", + "Ws": "wdy", + "Bold": "On", + "FontSize": -1879231265, + "ForeColor": "#00FFFF", + "Tags": [ + "4a560dbe-c97c-6e88-9a70-5ac3d7d8bab3" + ] + }, + { + "Text": "systemic", + "Ws": "uzs", + "Bold": "Invert", + "FontSize": -360633128, + "ForeColor": "#0000FF", + "Tags": [ + "10ecf908-a4e7-a5d2-e49f-36b1c80ee4dc" + ] + } + ] + }, + "qvl": { + "Spans": [ + { + "Text": "Health, Health \u0026 Movies", + "Ws": "bfo", + "Bold": "Off", + "FontSize": -2011149657, + "ForeColor": "#00FFFF", + "Tags": [ + "24f961eb-bb2e-e9c7-7b54-d0f4869a1f62" + ] + } + ] + } + } + } + ] + }, + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", + "Order": 0, + "DeletedAt": null, + "EntryId": "40441758-a443-78ad-5a91-ff960b9916d5", + "Definition": { + "bqu": { + "Spans": [ + { + "Text": "Generic", + "Ws": "bqu", + "Tags": [ + "48c3c7a1-ec4e-4525-ba86-12bccc426156" + ] + }, + { + "Text": "Ergonomic Wooden Pants", + "Ws": "mie", + "Bold": "Invert", + "FontSize": -1554990305, + "ForeColor": "#FF0000", + "Tags": [ + "63895a7f-9e74-d3f2-fa1d-4e9c6249a821" + ] + }, + { + "Text": "Missouri", + "Ws": "bqu", + "Tags": [ + "bfe28abd-921c-43ab-b12a-3983d72806ee" + ] + } + ] + }, + "aaq": { + "Spans": [ + { + "Text": "connect", + "Ws": "aaq", + "Tags": [ + "d1626cf1-836c-474c-9a60-0326b58c1133" + ] + } + ] + }, + "kbr": { + "Spans": [ + { + "Text": "Visionary", + "Ws": "olo", + "Bold": "Off", + "FontSize": -806356479, + "ForeColor": "#ADFF2F", + "Tags": [ + "2b69d915-a453-0323-2e8b-f9779ff69c71" + ] + }, + { + "Text": "Wooden", + "Ws": "mgv", + "Bold": "On", + "FontSize": -42268580, + "ForeColor": "#FF0000", + "Tags": [ + "21259b45-178e-13b0-f6b5-07cb32e8e086" + ] + }, + { + "Text": "Incredible Plastic Cheese", + "Ws": "mtg", + "Bold": "Invert", + "FontSize": -741761540, + "ForeColor": "#00000000", + "Tags": [ + "cefbf8c2-8cc0-394a-b794-e9a238955186" + ] + } + ] + }, + "aac": { + "Spans": [ + { + "Text": "Automotive", + "Ws": "aac", + "Tags": [ + "59554364-b6c8-478f-ab66-797c70131883" + ] + } + ] + } + }, + "Gloss": { + "wmm": "clear-thinking", + "mrr": "purple", + "nbv": "ADP", + "asv": "Keys" + }, + "PartOfSpeech": { + "Id": "4f11dbe5-38f3-5d99-f97e-66dde448383c", + "Name": { + "suo": "payment", + "czk": "Robust", + "msn": "SQL" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "becc1fbd-40c9-74aa-d900-3a686e83905a", + "SemanticDomains": [ + { + "Id": "d4fdc835-1442-31e9-6434-14c603b0cfc6", + "Name": { + "tay": "Borders", + "hle": "1080p" + }, + "Abbreviation": {}, + "Code": "Gorgeous", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "7f3dac33-9bec-e820-a020-5b263fb3ddbb", + "Order": 0, + "MediaUri": "sil-media://lexbox/9e223822-02f7-4964-ac7d-cb513c99a2e7", + "Caption": { + "xsd": { + "Spans": [ + { + "Text": "Coordinator", + "Ws": "csg", + "Bold": "Invert", + "FontSize": -327243448, + "ForeColor": "#00000000", + "Tags": [ + "818b5074-cd33-9963-c796-b5d6dfc342a6" + ] + }, + { + "Text": "product", + "Ws": "xsd", + "Tags": [ + "79528c49-d5db-452b-97e2-169d8d410bcc" + ] + }, + { + "Text": "Plastic", + "Ws": "hts", + "Bold": "On", + "FontSize": -1770557873, + "ForeColor": "#ADFF2F", + "Tags": [ + "579e4099-8da7-2229-2e02-26ba5887ea95" + ] + }, + { + "Text": "purple", + "Ws": "xsd", + "Tags": [ + "8e4d4fab-e322-4620-a75c-ab065950d3ea" + ] + } + ] + }, + "umg": { + "Spans": [ + { + "Text": "Inlet", + "Ws": "wdy", + "Bold": "On", + "FontSize": -1879231265, + "ForeColor": "#00FFFF", + "Tags": [ + "4a560dbe-c97c-6e88-9a70-5ac3d7d8bab3" + ] + }, + { + "Text": "systemic", + "Ws": "uzs", + "Bold": "Invert", + "FontSize": -360633128, + "ForeColor": "#0000FF", + "Tags": [ + "10ecf908-a4e7-a5d2-e49f-36b1c80ee4dc" + ] + } + ] + }, + "qvl": { + "Spans": [ + { + "Text": "Health, Health \u0026 Movies", + "Ws": "bfo", + "Bold": "Off", + "FontSize": -2011149657, + "ForeColor": "#00FFFF", + "Tags": [ + "24f961eb-bb2e-e9c7-7b54-d0f4869a1f62" + ] + } + ] + } + } + } + ] + }, + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "Order": 0, + "DeletedAt": null, + "EntryId": "bd93bd5e-7614-63b5-f8f8-418bb4d173a1", + "Definition": { + "kib": { + "Spans": [ + { + "Text": "white", + "Ws": "mlq", + "Bold": "Off", + "FontSize": -1266993758, + "ForeColor": "#ADFF2F", + "Tags": [ + "4ba15547-4de9-f211-cedb-eb6ae4a3585a" + ] + }, + { + "Text": "alarm", + "Ws": "kib", + "Tags": [ + "379f51ff-b990-4dd9-be22-0d3677fa6314" + ] + } + ] + }, + "ksu": { + "Spans": [ + { + "Text": "engineer", + "Ws": "ksu", + "Tags": [ + "9182f41f-c5cc-4bee-98c4-182da28b1d0e" + ] + }, + { + "Text": "digital", + "Ws": "ksu", + "Tags": [ + "3add4820-26bc-44cb-a4f0-4620a72fbd5b" + ] + }, + { + "Text": "Rustic Fresh Gloves", + "Ws": "rmw", + "Bold": "Off", + "FontSize": -46748961, + "ForeColor": "#00000000", + "Tags": [ + "d5cb92db-1efa-53a0-c79d-06cd6dc46df8" + ] + }, + { + "Text": "invoice", + "Ws": "ksu", + "Tags": [ + "e70fe58a-2061-499f-b159-41772bb52ae5" + ] + } + ] + }, + "lup": { + "Spans": [ + { + "Text": "orchestration", + "Ws": "lup", + "Tags": [ + "d594bd6e-85af-4488-ad58-0c170e742288" + ] + }, + { + "Text": "virtual", + "Ws": "nla", + "Bold": "Invert", + "FontSize": 1615051790, + "ForeColor": "#A52A2A", + "Tags": [ + "103dfddc-0b92-94a3-cc20-18c010a98259" + ] + }, + { + "Text": "synthesize", + "Ws": "lup", + "Tags": [ + "c88fb26c-173f-42d4-90fe-ff4e1e70f522" + ] + } + ] + }, + "hrr": { + "Spans": [ + { + "Text": "e-tailers", + "Ws": "bqd", + "Bold": "Off", + "FontSize": 472465589, + "ForeColor": "#00000000", + "Tags": [ + "9039100c-83f9-478f-2e2f-458a421ca608" + ] + }, + { + "Text": "Digitized", + "Ws": "hrr", + "Tags": [ + "53edd83c-33c3-4d77-8a1f-74f2bb67ede6" + ] + }, + { + "Text": "orange", + "Ws": "hrr", + "Tags": [ + "67e36abd-9146-49b9-a4d9-82117ec3add7" + ] + }, + { + "Text": "AI", + "Ws": "xvo", + "Bold": "Off", + "FontSize": 304629055, + "ForeColor": "#ADFF2F", + "Tags": [ + "262a57b1-aa31-b4c3-bd5b-36af4e403f1e" + ] + } + ] + } + }, + "Gloss": { + "gsw": "convergence" + }, + "PartOfSpeech": { + "Id": "b1979210-319d-4312-6f43-f5cb253c5499", + "Name": { + "bfq": "circuit", + "dmf": "bypassing" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "2b927261-aa9c-cbcf-7106-aac9623d284d", + "SemanticDomains": [ + { + "Id": "4ec2c08c-496d-1ab3-e24d-f26f9f2072d8", + "Name": { + "gmg": "Berkshire" + }, + "Code": "composite", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "79804e72-7f48-797b-8a59-5c3475376e49", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "khn": { + "Spans": [ + { + "Text": "calculating", + "Ws": "nwo", + "Bold": "Invert", + "FontSize": 635314379, + "ForeColor": "#00FFFF", + "Tags": [ + "3551a842-4434-3cb2-8b30-c431081dd986" + ] + }, + { + "Text": "indexing", + "Ws": "mbu", + "Bold": "Off", + "FontSize": -194985111, + "ForeColor": "#FF0000", + "Tags": [ + "7a5ef929-bfd5-196f-7508-0a77f494732c" + ] + }, + { + "Text": "Union", + "Ws": "khn", + "Tags": [ + "1734e155-75de-4d5b-ae70-9948486da05e" + ] + }, + { + "Text": "Flats", + "Ws": "khn", + "Tags": [ + "a589e4d4-a619-47c7-8704-d55ae9f35627" + ] + } + ] + }, + "koy": { + "Spans": [ + { + "Text": "methodologies", + "Ws": "pgn", + "Bold": "Off", + "FontSize": 1161930853, + "ForeColor": "#A52A2A", + "Tags": [ + "3d70eae0-f050-cb10-86ae-d6ce0d895b95" + ] + }, + { + "Text": "morph", + "Ws": "koy", + "Tags": [ + "fddc4869-4a72-4d18-abcd-652d59320480" + ] + } + ] + }, + "vec": { + "Spans": [ + { + "Text": "orchid", + "Ws": "zrn", + "Bold": "Invert", + "FontSize": 365353705, + "ForeColor": "#ADFF2F", + "Tags": [ + "fec30dae-01ad-909a-2ad1-1d1cab53875e" + ] + } + ] + }, + "xiv": { + "Spans": [ + { + "Text": "synthesize", + "Ws": "xpp", + "Bold": "Invert", + "FontSize": -2041724376, + "ForeColor": "#ADFF2F", + "Tags": [ + "ce9fca32-4b65-0221-a54c-6927768e48a3" + ] + }, + { + "Text": "Future", + "Ws": "xiv", + "Tags": [ + "722cf43b-14e4-43da-8583-afdc017a4bdd" + ] + } + ] + } + } + } + ] + }, + "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "Order": 0, + "DeletedAt": null, + "EntryId": "bd93bd5e-7614-63b5-f8f8-418bb4d173a1", + "Definition": { + "kib": { + "Spans": [ + { + "Text": "white", + "Ws": "mlq", + "Bold": "Off", + "FontSize": -1266993758, + "ForeColor": "#ADFF2F", + "Tags": [ + "4ba15547-4de9-f211-cedb-eb6ae4a3585a" + ] + }, + { + "Text": "alarm", + "Ws": "kib", + "Tags": [ + "379f51ff-b990-4dd9-be22-0d3677fa6314" + ] + } + ] + }, + "ksu": { + "Spans": [ + { + "Text": "engineer", + "Ws": "ksu", + "Tags": [ + "9182f41f-c5cc-4bee-98c4-182da28b1d0e" + ] + }, + { + "Text": "digital", + "Ws": "ksu", + "Tags": [ + "3add4820-26bc-44cb-a4f0-4620a72fbd5b" + ] + }, + { + "Text": "Rustic Fresh Gloves", + "Ws": "rmw", + "Bold": "Off", + "FontSize": -46748961, + "ForeColor": "#00000000", + "Tags": [ + "d5cb92db-1efa-53a0-c79d-06cd6dc46df8" + ] + }, + { + "Text": "invoice", + "Ws": "ksu", + "Tags": [ + "e70fe58a-2061-499f-b159-41772bb52ae5" + ] + } + ] + }, + "lup": { + "Spans": [ + { + "Text": "orchestration", + "Ws": "lup", + "Tags": [ + "d594bd6e-85af-4488-ad58-0c170e742288" + ] + }, + { + "Text": "virtual", + "Ws": "nla", + "Bold": "Invert", + "FontSize": 1615051790, + "ForeColor": "#A52A2A", + "Tags": [ + "103dfddc-0b92-94a3-cc20-18c010a98259" + ] + }, + { + "Text": "synthesize", + "Ws": "lup", + "Tags": [ + "c88fb26c-173f-42d4-90fe-ff4e1e70f522" + ] + } + ] + }, + "hrr": { + "Spans": [ + { + "Text": "e-tailers", + "Ws": "bqd", + "Bold": "Off", + "FontSize": 472465589, + "ForeColor": "#00000000", + "Tags": [ + "9039100c-83f9-478f-2e2f-458a421ca608" + ] + }, + { + "Text": "Digitized", + "Ws": "hrr", + "Tags": [ + "53edd83c-33c3-4d77-8a1f-74f2bb67ede6" + ] + }, + { + "Text": "orange", + "Ws": "hrr", + "Tags": [ + "67e36abd-9146-49b9-a4d9-82117ec3add7" + ] + }, + { + "Text": "AI", + "Ws": "xvo", + "Bold": "Off", + "FontSize": 304629055, + "ForeColor": "#ADFF2F", + "Tags": [ + "262a57b1-aa31-b4c3-bd5b-36af4e403f1e" + ] + } + ] + } + }, + "Gloss": { + "gsw": "convergence" + }, + "PartOfSpeech": { + "Id": "b1979210-319d-4312-6f43-f5cb253c5499", + "Name": { + "bfq": "circuit", + "dmf": "bypassing" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "2b927261-aa9c-cbcf-7106-aac9623d284d", + "SemanticDomains": [ + { + "Id": "4ec2c08c-496d-1ab3-e24d-f26f9f2072d8", + "Name": { + "gmg": "Berkshire" + }, + "Abbreviation": {}, + "Code": "composite", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "79804e72-7f48-797b-8a59-5c3475376e49", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "khn": { + "Spans": [ + { + "Text": "calculating", + "Ws": "nwo", + "Bold": "Invert", + "FontSize": 635314379, + "ForeColor": "#00FFFF", + "Tags": [ + "3551a842-4434-3cb2-8b30-c431081dd986" + ] + }, + { + "Text": "indexing", + "Ws": "mbu", + "Bold": "Off", + "FontSize": -194985111, + "ForeColor": "#FF0000", + "Tags": [ + "7a5ef929-bfd5-196f-7508-0a77f494732c" + ] + }, + { + "Text": "Union", + "Ws": "khn", + "Tags": [ + "1734e155-75de-4d5b-ae70-9948486da05e" + ] + }, + { + "Text": "Flats", + "Ws": "khn", + "Tags": [ + "a589e4d4-a619-47c7-8704-d55ae9f35627" + ] + } + ] + }, + "koy": { + "Spans": [ + { + "Text": "methodologies", + "Ws": "pgn", + "Bold": "Off", + "FontSize": 1161930853, + "ForeColor": "#A52A2A", + "Tags": [ + "3d70eae0-f050-cb10-86ae-d6ce0d895b95" + ] + }, + { + "Text": "morph", + "Ws": "koy", + "Tags": [ + "fddc4869-4a72-4d18-abcd-652d59320480" + ] + } + ] + }, + "vec": { + "Spans": [ + { + "Text": "orchid", + "Ws": "zrn", + "Bold": "Invert", + "FontSize": 365353705, + "ForeColor": "#ADFF2F", + "Tags": [ + "fec30dae-01ad-909a-2ad1-1d1cab53875e" + ] + } + ] + }, + "xiv": { + "Spans": [ + { + "Text": "synthesize", + "Ws": "xpp", + "Bold": "Invert", + "FontSize": -2041724376, + "ForeColor": "#ADFF2F", + "Tags": [ + "ce9fca32-4b65-0221-a54c-6927768e48a3" + ] + }, + { + "Text": "Future", + "Ws": "xiv", + "Tags": [ + "722cf43b-14e4-43da-8583-afdc017a4bdd" + ] + } + ] + } + } + } + ] + }, + "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "Order": 0, + "DeletedAt": null, + "EntryId": "d5af7990-8051-039c-3257-2bd93bad5da4", + "Definition": { + "gnj": { + "Spans": [ + { + "Text": "pink", + "Ws": "otn", + "Bold": "Invert", + "FontSize": -1048489220, + "ForeColor": "#FF0000", + "Tags": [ + "4931b96a-e357-8a72-5708-03cd3e00df0d" + ] + }, + { + "Text": "B2C", + "Ws": "kra", + "Bold": "On", + "FontSize": 787158362, + "ForeColor": "#FF0000", + "Tags": [ + "6e3735d6-70d2-6e59-ecf7-cfd0da49ba19" + ] + } + ] + }, + "yae": { + "Spans": [ + { + "Text": "Strategist", + "Ws": "yae", + "Tags": [ + "a2c427fc-a1e0-414d-9d74-9c92d2634c4c" + ] + } + ] + } + }, + "Gloss": { + "kwy": "optical", + "dz": "Product" + }, + "PartOfSpeech": { + "Id": "872bc271-c608-b3b6-17f7-7a87d584b7b3", + "Name": { + "tsk": "deposit", + "ush": "Frozen", + "ulw": "bandwidth", + "nkx": "Home Loan Account" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bf4af087-da24-5eb3-0237-ef224c28cfec", + "SemanticDomains": [ + { + "Id": "7f788bc3-c6b8-860a-9149-ec59e7500629", + "Name": { + "tst": "networks", + "szv": "Riel", + "bje": "copying", + "owl": "Savings Account" + }, + "Code": "synthesize", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "Order": 0, + "DeletedAt": null, + "EntryId": "d5af7990-8051-039c-3257-2bd93bad5da4", + "Definition": { + "gnj": { + "Spans": [ + { + "Text": "pink", + "Ws": "otn", + "Bold": "Invert", + "FontSize": -1048489220, + "ForeColor": "#FF0000", + "Tags": [ + "4931b96a-e357-8a72-5708-03cd3e00df0d" + ] + }, + { + "Text": "B2C", + "Ws": "kra", + "Bold": "On", + "FontSize": 787158362, + "ForeColor": "#FF0000", + "Tags": [ + "6e3735d6-70d2-6e59-ecf7-cfd0da49ba19" + ] + } + ] + }, + "yae": { + "Spans": [ + { + "Text": "Strategist", + "Ws": "yae", + "Tags": [ + "a2c427fc-a1e0-414d-9d74-9c92d2634c4c" + ] + } + ] + } + }, + "Gloss": { + "kwy": "optical", + "dz": "Product" + }, + "PartOfSpeech": { + "Id": "872bc271-c608-b3b6-17f7-7a87d584b7b3", + "Name": { + "tsk": "deposit", + "ush": "Frozen", + "ulw": "bandwidth", + "nkx": "Home Loan Account" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bf4af087-da24-5eb3-0237-ef224c28cfec", + "SemanticDomains": [ + { + "Id": "7f788bc3-c6b8-860a-9149-ec59e7500629", + "Name": { + "tst": "networks", + "szv": "Riel", + "bje": "copying", + "owl": "Savings Account" + }, + "Abbreviation": {}, + "Code": "synthesize", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "Order": 0, + "DeletedAt": null, + "EntryId": "1451ad8e-6f5a-8923-a691-6e3ed0ba10ac", + "Definition": { + "djo": { + "Spans": [ + { + "Text": "bi-directional", + "Ws": "dbr", + "Bold": "Invert", + "FontSize": -1747614445, + "ForeColor": "#00FFFF", + "Tags": [ + "cdbfc681-b4cb-fc53-0049-2f7a15f2cf9c" + ] + }, + { + "Text": "Village", + "Ws": "djo", + "Tags": [ + "06b2b112-2eaf-498c-a2b6-3691a0a2d5f2" + ] + }, + { + "Text": "Music, Clothing \u0026 Shoes", + "Ws": "djo", + "Tags": [ + "a7e91784-b210-401a-b134-8a7196d75290" + ] + } + ] + }, + "qyp": { + "Spans": [ + { + "Text": "flexibility", + "Ws": "qyp", + "Tags": [ + "a7ec7011-d986-4fcb-8c65-ed250fa27837" + ] + }, + { + "Text": "users", + "Ws": "qyp", + "Tags": [ + "89317672-83e3-4ec0-b15a-130c709c296a" + ] + }, + { + "Text": "Analyst", + "Ws": "dep", + "Bold": "Off", + "FontSize": -938960202, + "ForeColor": "#00FFFF", + "Tags": [ + "34eed6fc-feb1-cb7e-5fba-2cc249b35f9d" + ] + } + ] + } + }, + "Gloss": { + "ciy": "Curve" + }, + "PartOfSpeech": { + "Id": "a6b04de2-ca75-b141-abe1-f4494a514535", + "Name": { + "mxt": "TCP" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "fac379c1-43a4-5710-83c8-5b9f55c90108", + "SemanticDomains": [ + { + "Id": "3ad12c58-f9a5-9ccd-04ff-8b979eac461b", + "Name": { + "ulk": "white" + }, + "Code": "SSL", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "ddc6af94-5a95-c404-2cb8-ae1e61968538", + "Order": 0, + "MediaUri": "sil-media://lexbox/24556101-1dbc-4d4a-bf5a-8f9cf05fe8ea", + "Caption": { + "pea": { + "Spans": [ + { + "Text": "alarm", + "Ws": "pea", + "Tags": [ + "c97d629f-da4a-4e7f-9ea2-fedb628649e0" + ] + }, + { + "Text": "relationships", + "Ws": "byi", + "Bold": "Invert", + "FontSize": -1098187694, + "ForeColor": "#ADFF2F", + "Tags": [ + "d9693d70-5ee4-4a63-7abc-f42c99fca4f2" + ] + }, + { + "Text": "Kentucky", + "Ws": "pea", + "Tags": [ + "2d593536-8d6e-4766-ae62-c141ee7cb206" + ] + } + ] + } + } + } + ] + }, + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "Order": 0, + "DeletedAt": null, + "EntryId": "1451ad8e-6f5a-8923-a691-6e3ed0ba10ac", + "Definition": { + "djo": { + "Spans": [ + { + "Text": "bi-directional", + "Ws": "dbr", + "Bold": "Invert", + "FontSize": -1747614445, + "ForeColor": "#00FFFF", + "Tags": [ + "cdbfc681-b4cb-fc53-0049-2f7a15f2cf9c" + ] + }, + { + "Text": "Village", + "Ws": "djo", + "Tags": [ + "06b2b112-2eaf-498c-a2b6-3691a0a2d5f2" + ] + }, + { + "Text": "Music, Clothing \u0026 Shoes", + "Ws": "djo", + "Tags": [ + "a7e91784-b210-401a-b134-8a7196d75290" + ] + } + ] + }, + "qyp": { + "Spans": [ + { + "Text": "flexibility", + "Ws": "qyp", + "Tags": [ + "a7ec7011-d986-4fcb-8c65-ed250fa27837" + ] + }, + { + "Text": "users", + "Ws": "qyp", + "Tags": [ + "89317672-83e3-4ec0-b15a-130c709c296a" + ] + }, + { + "Text": "Analyst", + "Ws": "dep", + "Bold": "Off", + "FontSize": -938960202, + "ForeColor": "#00FFFF", + "Tags": [ + "34eed6fc-feb1-cb7e-5fba-2cc249b35f9d" + ] + } + ] + } + }, + "Gloss": { + "ciy": "Curve" + }, + "PartOfSpeech": { + "Id": "a6b04de2-ca75-b141-abe1-f4494a514535", + "Name": { + "mxt": "TCP" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "fac379c1-43a4-5710-83c8-5b9f55c90108", + "SemanticDomains": [ + { + "Id": "3ad12c58-f9a5-9ccd-04ff-8b979eac461b", + "Name": { + "ulk": "white" + }, + "Abbreviation": {}, + "Code": "SSL", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "ddc6af94-5a95-c404-2cb8-ae1e61968538", + "Order": 0, + "MediaUri": "sil-media://lexbox/24556101-1dbc-4d4a-bf5a-8f9cf05fe8ea", + "Caption": { + "pea": { + "Spans": [ + { + "Text": "alarm", + "Ws": "pea", + "Tags": [ + "c97d629f-da4a-4e7f-9ea2-fedb628649e0" + ] + }, + { + "Text": "relationships", + "Ws": "byi", + "Bold": "Invert", + "FontSize": -1098187694, + "ForeColor": "#ADFF2F", + "Tags": [ + "d9693d70-5ee4-4a63-7abc-f42c99fca4f2" + ] + }, + { + "Text": "Kentucky", + "Ws": "pea", + "Tags": [ + "2d593536-8d6e-4766-ae62-c141ee7cb206" + ] + } + ] + } + } + } + ] + }, + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "Order": 0, + "DeletedAt": null, + "EntryId": "170f50ef-06ff-c0c3-ba31-95d557834be3", + "Definition": { + "kqx": { + "Spans": [ + { + "Text": "implementation", + "Ws": "kqx", + "Tags": [ + "69e02d33-4485-4535-a14d-baf5a4d2acd6" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "kqx", + "Tags": [ + "0db6b9b8-58f5-4473-9fde-43e665c44da2" + ] + }, + { + "Text": "Coordinator", + "Ws": "hdn", + "Bold": "Off", + "FontSize": -1831667232, + "ForeColor": "#A52A2A", + "Tags": [ + "f6c84f90-af3a-1f4c-415e-3e21f12ce3e9" + ] + } + ] + } + }, + "Gloss": { + "bdz": "generate", + "doo": "Refined Frozen Towels", + "mej": "Accounts", + "ymc": "Awesome Metal Soap" + }, + "PartOfSpeech": { + "Id": "27bbbcc2-0763-1cbb-f7f2-e8a268b88542", + "Name": { + "win": "CFA Franc BCEAO", + "mxe": "Senior", + "gpa": "Austria", + "xmo": "Incredible" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a1a57ccc-5bb6-1db3-e404-d295a92a533c", + "SemanticDomains": [ + { + "Id": "f405f8cf-f979-b590-ac68-af276c005e5e", + "Name": { + "pue": "Automotive, Games \u0026 Grocery", + "ptr": "deposit", + "etn": "Configurable", + "xco": "Borders" + }, + "Code": "mint green", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "8365c6df-c5d4-df40-f393-cb241ea38a5a", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "imt": { + "Spans": [ + { + "Text": "Fantastic Wooden Sausages", + "Ws": "imt", + "Tags": [ + "a6f02bbc-af27-4241-995b-1988ab411381" + ] + }, + { + "Text": "Investment Account", + "Ws": "lii", + "Bold": "Off", + "FontSize": 294442575, + "ForeColor": "#FF0000", + "Tags": [ + "6136995a-68ce-2078-2287-0e3238630303" + ] + }, + { + "Text": "SSL", + "Ws": "nzm", + "Bold": "On", + "FontSize": -60028142, + "ForeColor": "#00000000", + "Tags": [ + "1e38adaf-4a97-e03b-9485-3e81ae7f5f57" + ] + } + ] + }, + "xkx": { + "Spans": [ + { + "Text": "incentivize", + "Ws": "xkx", + "Tags": [ + "7fcd101f-d866-4125-a76e-240480390548" + ] + }, + { + "Text": "client-server", + "Ws": "xkx", + "Tags": [ + "db527e0f-0bec-4a80-ad0d-e64eb86d6cf3" + ] + }, + { + "Text": "syndicate", + "Ws": "xkx", + "Tags": [ + "6881422e-d4e6-4f54-88f3-20597df98b0c" + ] + }, + { + "Text": "Practical", + "Ws": "kcb", + "Bold": "On", + "FontSize": -701786450, + "ForeColor": "#ADFF2F", + "Tags": [ + "2e7a971a-bd7c-a7bf-b8f7-488dcc272960" + ] + } + ] + } + } + } + ] + }, + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "Order": 0, + "DeletedAt": null, + "EntryId": "170f50ef-06ff-c0c3-ba31-95d557834be3", + "Definition": { + "kqx": { + "Spans": [ + { + "Text": "implementation", + "Ws": "kqx", + "Tags": [ + "69e02d33-4485-4535-a14d-baf5a4d2acd6" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "kqx", + "Tags": [ + "0db6b9b8-58f5-4473-9fde-43e665c44da2" + ] + }, + { + "Text": "Coordinator", + "Ws": "hdn", + "Bold": "Off", + "FontSize": -1831667232, + "ForeColor": "#A52A2A", + "Tags": [ + "f6c84f90-af3a-1f4c-415e-3e21f12ce3e9" + ] + } + ] + } + }, + "Gloss": { + "bdz": "generate", + "doo": "Refined Frozen Towels", + "mej": "Accounts", + "ymc": "Awesome Metal Soap" + }, + "PartOfSpeech": { + "Id": "27bbbcc2-0763-1cbb-f7f2-e8a268b88542", + "Name": { + "win": "CFA Franc BCEAO", + "mxe": "Senior", + "gpa": "Austria", + "xmo": "Incredible" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a1a57ccc-5bb6-1db3-e404-d295a92a533c", + "SemanticDomains": [ + { + "Id": "f405f8cf-f979-b590-ac68-af276c005e5e", + "Name": { + "pue": "Automotive, Games \u0026 Grocery", + "ptr": "deposit", + "etn": "Configurable", + "xco": "Borders" + }, + "Abbreviation": {}, + "Code": "mint green", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "8365c6df-c5d4-df40-f393-cb241ea38a5a", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "imt": { + "Spans": [ + { + "Text": "Fantastic Wooden Sausages", + "Ws": "imt", + "Tags": [ + "a6f02bbc-af27-4241-995b-1988ab411381" + ] + }, + { + "Text": "Investment Account", + "Ws": "lii", + "Bold": "Off", + "FontSize": 294442575, + "ForeColor": "#FF0000", + "Tags": [ + "6136995a-68ce-2078-2287-0e3238630303" + ] + }, + { + "Text": "SSL", + "Ws": "nzm", + "Bold": "On", + "FontSize": -60028142, + "ForeColor": "#00000000", + "Tags": [ + "1e38adaf-4a97-e03b-9485-3e81ae7f5f57" + ] + } + ] + }, + "xkx": { + "Spans": [ + { + "Text": "incentivize", + "Ws": "xkx", + "Tags": [ + "7fcd101f-d866-4125-a76e-240480390548" + ] + }, + { + "Text": "client-server", + "Ws": "xkx", + "Tags": [ + "db527e0f-0bec-4a80-ad0d-e64eb86d6cf3" + ] + }, + { + "Text": "syndicate", + "Ws": "xkx", + "Tags": [ + "6881422e-d4e6-4f54-88f3-20597df98b0c" + ] + }, + { + "Text": "Practical", + "Ws": "kcb", + "Bold": "On", + "FontSize": -701786450, + "ForeColor": "#ADFF2F", + "Tags": [ + "2e7a971a-bd7c-a7bf-b8f7-488dcc272960" + ] + } + ] + } + } + } + ] + }, + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Order": 0, + "DeletedAt": null, + "EntryId": "d6347312-90fd-7a9b-611c-10e2be8f1e83", + "Definition": { + "zu": { + "Spans": [ + { + "Text": "optical", + "Ws": "zu", + "Tags": [ + "2f40db72-6dcd-4605-94f4-bb2f8e6f2c24" + ] + }, + { + "Text": "eco-centric", + "Ws": "ses", + "Bold": "On", + "FontSize": 150168967, + "ForeColor": "#ADFF2F", + "Tags": [ + "4d35b5c1-d8c0-2ee3-e261-985e474e2c62" + ] + }, + { + "Text": "Internal", + "Ws": "zu", + "Tags": [ + "ef294368-381e-4228-9feb-6fc5a21cb6f1" + ] + } + ] + } + }, + "Gloss": { + "nhz": "Personal Loan Account", + "vec": "Summit" + }, + "PartOfSpeech": { + "Id": "fe457b90-ba20-b702-a156-13149c126cc6", + "Name": { + "zkh": "Parks" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "aa3e7491-0e0d-b22f-cbf1-63e76cd83314", + "SemanticDomains": [ + { + "Id": "ecf6b571-e360-f100-7cf7-ec214489914a", + "Name": { + "bjy": "Montana", + "ga": "neural-net" + }, + "Code": "Rand", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "c70c8e39-9fea-f0ca-96ea-c54682b26ff2", + "Order": 0, + "MediaUri": "sil-media://lexbox/cc67fbb0-7072-4a0c-aa87-1c11dbd5c160", + "Caption": { + "spl": { + "Spans": [ + { + "Text": "Road", + "Ws": "plj", + "Bold": "On", + "FontSize": 206809027, + "ForeColor": "#ADFF2F", + "Tags": [ + "5ba3fafc-2a16-8ee1-4764-223a2ece4032" + ] + }, + { + "Text": "explicit", + "Ws": "ybb", + "Bold": "On", + "FontSize": -1840259444, + "ForeColor": "#ADFF2F", + "Tags": [ + "6fddd2cc-5dbd-6d0d-4bed-39e98d79771a" + ] + }, + { + "Text": "TCP", + "Ws": "mqb", + "Bold": "Invert", + "FontSize": 890686392, + "ForeColor": "#0000FF", + "Tags": [ + "2ff98fc6-d387-23aa-581a-9199a4971005" + ] + } + ] + } + } + } + ] + }, + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Order": 0, + "DeletedAt": null, + "EntryId": "d6347312-90fd-7a9b-611c-10e2be8f1e83", + "Definition": { + "zu": { + "Spans": [ + { + "Text": "optical", + "Ws": "zu", + "Tags": [ + "2f40db72-6dcd-4605-94f4-bb2f8e6f2c24" + ] + }, + { + "Text": "eco-centric", + "Ws": "ses", + "Bold": "On", + "FontSize": 150168967, + "ForeColor": "#ADFF2F", + "Tags": [ + "4d35b5c1-d8c0-2ee3-e261-985e474e2c62" + ] + }, + { + "Text": "Internal", + "Ws": "zu", + "Tags": [ + "ef294368-381e-4228-9feb-6fc5a21cb6f1" + ] + } + ] + } + }, + "Gloss": { + "nhz": "Personal Loan Account", + "vec": "Summit" + }, + "PartOfSpeech": { + "Id": "fe457b90-ba20-b702-a156-13149c126cc6", + "Name": { + "zkh": "Parks" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "aa3e7491-0e0d-b22f-cbf1-63e76cd83314", + "SemanticDomains": [ + { + "Id": "ecf6b571-e360-f100-7cf7-ec214489914a", + "Name": { + "bjy": "Montana", + "ga": "neural-net" + }, + "Abbreviation": {}, + "Code": "Rand", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "c70c8e39-9fea-f0ca-96ea-c54682b26ff2", + "Order": 0, + "MediaUri": "sil-media://lexbox/cc67fbb0-7072-4a0c-aa87-1c11dbd5c160", + "Caption": { + "spl": { + "Spans": [ + { + "Text": "Road", + "Ws": "plj", + "Bold": "On", + "FontSize": 206809027, + "ForeColor": "#ADFF2F", + "Tags": [ + "5ba3fafc-2a16-8ee1-4764-223a2ece4032" + ] + }, + { + "Text": "explicit", + "Ws": "ybb", + "Bold": "On", + "FontSize": -1840259444, + "ForeColor": "#ADFF2F", + "Tags": [ + "6fddd2cc-5dbd-6d0d-4bed-39e98d79771a" + ] + }, + { + "Text": "TCP", + "Ws": "mqb", + "Bold": "Invert", + "FontSize": 890686392, + "ForeColor": "#0000FF", + "Tags": [ + "2ff98fc6-d387-23aa-581a-9199a4971005" + ] + } + ] + } + } + } + ] + }, + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "Order": 0, + "DeletedAt": null, + "EntryId": "c8692489-ecea-4455-a12f-3b8e845ee660", + "Definition": { + "uni": { + "Spans": [ + { + "Text": "Officer", + "Ws": "uni", + "Tags": [ + "c20655dd-aa14-43d4-a3f6-c3feb4bf0417" + ] + } + ] + } + }, + "Gloss": { + "tjo": "reinvent" + }, + "PartOfSpeech": { + "Id": "dd85375e-839a-adab-af0d-5b2b8fb0c75e", + "Name": { + "lgn": "bus", + "bpt": "multi-state" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "69fd7bba-28e1-ab86-f993-ace1b3d028d6", + "SemanticDomains": [ + { + "Id": "0be1c84e-f1f9-40c2-8242-e07f81e2b466", + "Name": { + "tda": "bypassing", + "leb": "Analyst", + "kxm": "Avon" + }, + "Code": "Auto Loan Account", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "991f2191-40bc-e56b-dd24-d6135792053b", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "pzn": { + "Spans": [ + { + "Text": "portals", + "Ws": "aux", + "Bold": "Invert", + "FontSize": 1639221492, + "ForeColor": "#ADFF2F", + "Tags": [ + "39c4e2fa-22d5-ae8a-33da-0e2ef61a2bec" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "pzn", + "Tags": [ + "6a5e9f05-72ce-462d-8e77-cba524d3c745" + ] + }, + { + "Text": "toolset", + "Ws": "bkn", + "Bold": "On", + "FontSize": 1678144495, + "ForeColor": "#0000FF", + "Tags": [ + "320debd0-19af-1f43-568f-320fd25dd10f" + ] + }, + { + "Text": "functionalities", + "Ws": "yxa", + "Bold": "On", + "FontSize": 1088844074, + "ForeColor": "#A52A2A", + "Tags": [ + "5af5d0bd-de4e-ac4e-9b91-b1e1c1ed975e" + ] + } + ] + }, + "zim": { + "Spans": [ + { + "Text": "Avenue", + "Ws": "zim", + "Tags": [ + "a00cf5d4-6f85-4723-8da8-b96ad5ffdcf1" + ] + }, + { + "Text": "copying", + "Ws": "zim", + "Tags": [ + "b1769f78-b17d-4f1e-a128-1751fc4c60e8" + ] + }, + { + "Text": "interface", + "Ws": "bhk", + "Bold": "Invert", + "FontSize": 1962777344, + "ForeColor": "#0000FF", + "Tags": [ + "f6c5673c-dbf4-c29c-daa6-17473f85e209" + ] + } + ] + }, + "ghl": { + "Spans": [ + { + "Text": "bypassing", + "Ws": "ghl", + "Tags": [ + "da3e852a-3246-4abc-9a22-2fa254b08eba" + ] + }, + { + "Text": "Small Cotton Hat", + "Ws": "ghl", + "Tags": [ + "ab718d66-b0f4-466e-bfc6-eb39e22adcfb" + ] + } + ] + }, + "afo": { + "Spans": [ + { + "Text": "Marketing", + "Ws": "afo", + "Tags": [ + "a460263d-9619-4a3f-9b42-17d1359b0b64" + ] + }, + { + "Text": "Liechtenstein", + "Ws": "afo", + "Tags": [ + "f85b1388-51bc-497c-86a6-063d6cc00c30" + ] + } + ] + } + } + } + ] + }, + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "Order": 0, + "DeletedAt": null, + "EntryId": "c8692489-ecea-4455-a12f-3b8e845ee660", + "Definition": { + "uni": { + "Spans": [ + { + "Text": "Officer", + "Ws": "uni", + "Tags": [ + "c20655dd-aa14-43d4-a3f6-c3feb4bf0417" + ] + } + ] + } + }, + "Gloss": { + "tjo": "reinvent" + }, + "PartOfSpeech": { + "Id": "dd85375e-839a-adab-af0d-5b2b8fb0c75e", + "Name": { + "lgn": "bus", + "bpt": "multi-state" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "69fd7bba-28e1-ab86-f993-ace1b3d028d6", + "SemanticDomains": [ + { + "Id": "0be1c84e-f1f9-40c2-8242-e07f81e2b466", + "Name": { + "tda": "bypassing", + "leb": "Analyst", + "kxm": "Avon" + }, + "Abbreviation": {}, + "Code": "Auto Loan Account", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "991f2191-40bc-e56b-dd24-d6135792053b", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "pzn": { + "Spans": [ + { + "Text": "portals", + "Ws": "aux", + "Bold": "Invert", + "FontSize": 1639221492, + "ForeColor": "#ADFF2F", + "Tags": [ + "39c4e2fa-22d5-ae8a-33da-0e2ef61a2bec" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "pzn", + "Tags": [ + "6a5e9f05-72ce-462d-8e77-cba524d3c745" + ] + }, + { + "Text": "toolset", + "Ws": "bkn", + "Bold": "On", + "FontSize": 1678144495, + "ForeColor": "#0000FF", + "Tags": [ + "320debd0-19af-1f43-568f-320fd25dd10f" + ] + }, + { + "Text": "functionalities", + "Ws": "yxa", + "Bold": "On", + "FontSize": 1088844074, + "ForeColor": "#A52A2A", + "Tags": [ + "5af5d0bd-de4e-ac4e-9b91-b1e1c1ed975e" + ] + } + ] + }, + "zim": { + "Spans": [ + { + "Text": "Avenue", + "Ws": "zim", + "Tags": [ + "a00cf5d4-6f85-4723-8da8-b96ad5ffdcf1" + ] + }, + { + "Text": "copying", + "Ws": "zim", + "Tags": [ + "b1769f78-b17d-4f1e-a128-1751fc4c60e8" + ] + }, + { + "Text": "interface", + "Ws": "bhk", + "Bold": "Invert", + "FontSize": 1962777344, + "ForeColor": "#0000FF", + "Tags": [ + "f6c5673c-dbf4-c29c-daa6-17473f85e209" + ] + } + ] + }, + "ghl": { + "Spans": [ + { + "Text": "bypassing", + "Ws": "ghl", + "Tags": [ + "da3e852a-3246-4abc-9a22-2fa254b08eba" + ] + }, + { + "Text": "Small Cotton Hat", + "Ws": "ghl", + "Tags": [ + "ab718d66-b0f4-466e-bfc6-eb39e22adcfb" + ] + } + ] + }, + "afo": { + "Spans": [ + { + "Text": "Marketing", + "Ws": "afo", + "Tags": [ + "a460263d-9619-4a3f-9b42-17d1359b0b64" + ] + }, + { + "Text": "Liechtenstein", + "Ws": "afo", + "Tags": [ + "f85b1388-51bc-497c-86a6-063d6cc00c30" + ] + } + ] + } + } + } + ] + }, + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "Order": 0, + "DeletedAt": null, + "EntryId": "8045aa9c-e9b4-6831-accc-217bf6cecb5a", + "Definition": { + "kie": { + "Spans": [ + { + "Text": "Court", + "Ws": "kie", + "Tags": [ + "3e7bc154-0fdf-422e-8672-bba82c4c7bea" + ] + } + ] + }, + "nwx": { + "Spans": [ + { + "Text": "high-level", + "Ws": "knx", + "Bold": "Off", + "FontSize": 1816913505, + "ForeColor": "#00FFFF", + "Tags": [ + "ec7bac85-e8de-3dca-a608-1b16c8f3a74d" + ] + }, + { + "Text": "Auto Loan Account", + "Ws": "ktc", + "Bold": "On", + "FontSize": 1311882955, + "ForeColor": "#ADFF2F", + "Tags": [ + "681a5741-2ee8-6bf5-1d04-12b39007cc6e" + ] + }, + { + "Text": "benchmark", + "Ws": "nwx", + "Tags": [ + "3859d1b1-3d0f-42c4-b175-e4ceda64f6a0" + ] + }, + { + "Text": "morph", + "Ws": "acs", + "Bold": "Invert", + "FontSize": -756973096, + "ForeColor": "#FF0000", + "Tags": [ + "ee463bc5-b7dc-3a7e-2b84-0b1aa34501b0" + ] + } + ] + } + }, + "Gloss": { + "nef": "Zimbabwe Dollar", + "shc": "monetize", + "mft": "Identity" + }, + "PartOfSpeech": { + "Id": "740b3570-ae92-43ca-e535-dcc5bba83e9a", + "Name": { + "bmc": "Practical Cotton Keyboard", + "umo": "Switchable", + "yma": "Executive", + "gbd": "Awesome Metal Bacon" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "60178cb0-6d29-dbbb-e444-f6e20fb55c82", + "SemanticDomains": [ + { + "Id": "0f8fb88f-7436-fbaf-d55e-25211a471f35", + "Name": { + "axg": "Home Loan Account", + "snr": "reintermediate", + "llx": "digital", + "ait": "Court" + }, + "Code": "Frozen", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "Order": 0, + "DeletedAt": null, + "EntryId": "8045aa9c-e9b4-6831-accc-217bf6cecb5a", + "Definition": { + "kie": { + "Spans": [ + { + "Text": "Court", + "Ws": "kie", + "Tags": [ + "3e7bc154-0fdf-422e-8672-bba82c4c7bea" + ] + } + ] + }, + "nwx": { + "Spans": [ + { + "Text": "high-level", + "Ws": "knx", + "Bold": "Off", + "FontSize": 1816913505, + "ForeColor": "#00FFFF", + "Tags": [ + "ec7bac85-e8de-3dca-a608-1b16c8f3a74d" + ] + }, + { + "Text": "Auto Loan Account", + "Ws": "ktc", + "Bold": "On", + "FontSize": 1311882955, + "ForeColor": "#ADFF2F", + "Tags": [ + "681a5741-2ee8-6bf5-1d04-12b39007cc6e" + ] + }, + { + "Text": "benchmark", + "Ws": "nwx", + "Tags": [ + "3859d1b1-3d0f-42c4-b175-e4ceda64f6a0" + ] + }, + { + "Text": "morph", + "Ws": "acs", + "Bold": "Invert", + "FontSize": -756973096, + "ForeColor": "#FF0000", + "Tags": [ + "ee463bc5-b7dc-3a7e-2b84-0b1aa34501b0" + ] + } + ] + } + }, + "Gloss": { + "nef": "Zimbabwe Dollar", + "shc": "monetize", + "mft": "Identity" + }, + "PartOfSpeech": { + "Id": "740b3570-ae92-43ca-e535-dcc5bba83e9a", + "Name": { + "bmc": "Practical Cotton Keyboard", + "umo": "Switchable", + "yma": "Executive", + "gbd": "Awesome Metal Bacon" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "60178cb0-6d29-dbbb-e444-f6e20fb55c82", + "SemanticDomains": [ + { + "Id": "0f8fb88f-7436-fbaf-d55e-25211a471f35", + "Name": { + "axg": "Home Loan Account", + "snr": "reintermediate", + "llx": "digital", + "ait": "Court" + }, + "Abbreviation": {}, + "Code": "Frozen", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "Order": 0, + "DeletedAt": null, + "EntryId": "b298a98d-22a6-40d4-f897-fb7e5ef12432", + "Definition": { + "lof": { + "Spans": [ + { + "Text": "function", + "Ws": "lof", + "Tags": [ + "bc1cb5a3-0c11-47f3-aef1-f8ecb5e1a8d9" + ] + } + ] + } + }, + "Gloss": { + "svm": "Incredible Soft Bike", + "boh": "Key", + "nfd": "analyzing", + "byo": "Argentine Peso" + }, + "PartOfSpeech": { + "Id": "d257270c-51c4-6979-84cf-b9ccff8d60dc", + "Name": { + "bsp": "application" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a353cc36-57b4-8ed4-0fd4-d616fced9108", + "SemanticDomains": [ + { + "Id": "c43c9761-815e-0b1e-b90c-dfdf799b16d9", + "Name": { + "kxv": "Tenge", + "dih": "holistic", + "aif": "Bypass", + "hms": "Future" + }, + "Code": "orange", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "f3fb453a-99d8-0b46-b190-409064885cbd", + "Order": 0, + "MediaUri": "sil-media://lexbox/7d361699-1e9d-4d5e-89b3-eb66898523f7", + "Caption": { + "pdi": { + "Spans": [ + { + "Text": "National", + "Ws": "pdi", + "Tags": [ + "47346349-78e0-470f-aaf9-3980c401e041" + ] + }, + { + "Text": "Intelligent Wooden Computer", + "Ws": "pdi", + "Tags": [ + "a464551e-c62b-439a-90ff-a69add9b1241" + ] + }, + { + "Text": "lime", + "Ws": "shz", + "Bold": "Invert", + "FontSize": -455513223, + "ForeColor": "#00000000", + "Tags": [ + "6c1d33ac-f149-8bd9-a358-6e589cb34bc6" + ] + } + ] + }, + "fip": { + "Spans": [ + { + "Text": "indexing", + "Ws": "fip", + "Tags": [ + "eb32049a-a31e-4f10-aa04-8b3ac193abda" + ] + }, + { + "Text": "integrate", + "Ws": "fip", + "Tags": [ + "5e96dfb4-a4ab-48b7-9139-0ddd54e5c2fc" + ] + }, + { + "Text": "Grocery", + "Ws": "nhu", + "Bold": "Off", + "FontSize": 781582330, + "ForeColor": "#00000000", + "Tags": [ + "aa20518f-f7e6-4157-b9e6-a0377a26c6c8" + ] + } + ] + }, + "tdk": { + "Spans": [ + { + "Text": "Kids \u0026 Home", + "Ws": "tdk", + "Tags": [ + "0fdbc8ee-310d-4954-bfd9-7db50ae03b2c" + ] + }, + { + "Text": "District", + "Ws": "dap", + "Bold": "Invert", + "FontSize": 1319768493, + "ForeColor": "#A52A2A", + "Tags": [ + "38206d1c-bcd0-8df6-4b10-234afe42152f" + ] + } + ] + }, + "jos": { + "Spans": [ + { + "Text": "Director", + "Ws": "jos", + "Tags": [ + "d7d60d66-c9ce-45aa-9004-e0268b91d2d5" + ] + }, + { + "Text": "back-end", + "Ws": "ham", + "Bold": "Off", + "FontSize": 613268958, + "ForeColor": "#00000000", + "Tags": [ + "1ef432cc-f167-0755-ec93-06d5f330878b" + ] + }, + { + "Text": "Djibouti", + "Ws": "hmv", + "Bold": "Off", + "FontSize": -1306242714, + "ForeColor": "#0000FF", + "Tags": [ + "0f4fc950-4619-ed72-314f-2239b9b1aab7" + ] + } + ] + } + } + } + ] + }, + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "Order": 0, + "DeletedAt": null, + "EntryId": "b298a98d-22a6-40d4-f897-fb7e5ef12432", + "Definition": { + "lof": { + "Spans": [ + { + "Text": "function", + "Ws": "lof", + "Tags": [ + "bc1cb5a3-0c11-47f3-aef1-f8ecb5e1a8d9" + ] + } + ] + } + }, + "Gloss": { + "svm": "Incredible Soft Bike", + "boh": "Key", + "nfd": "analyzing", + "byo": "Argentine Peso" + }, + "PartOfSpeech": { + "Id": "d257270c-51c4-6979-84cf-b9ccff8d60dc", + "Name": { + "bsp": "application" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a353cc36-57b4-8ed4-0fd4-d616fced9108", + "SemanticDomains": [ + { + "Id": "c43c9761-815e-0b1e-b90c-dfdf799b16d9", + "Name": { + "kxv": "Tenge", + "dih": "holistic", + "aif": "Bypass", + "hms": "Future" + }, + "Abbreviation": {}, + "Code": "orange", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "f3fb453a-99d8-0b46-b190-409064885cbd", + "Order": 0, + "MediaUri": "sil-media://lexbox/7d361699-1e9d-4d5e-89b3-eb66898523f7", + "Caption": { + "pdi": { + "Spans": [ + { + "Text": "National", + "Ws": "pdi", + "Tags": [ + "47346349-78e0-470f-aaf9-3980c401e041" + ] + }, + { + "Text": "Intelligent Wooden Computer", + "Ws": "pdi", + "Tags": [ + "a464551e-c62b-439a-90ff-a69add9b1241" + ] + }, + { + "Text": "lime", + "Ws": "shz", + "Bold": "Invert", + "FontSize": -455513223, + "ForeColor": "#00000000", + "Tags": [ + "6c1d33ac-f149-8bd9-a358-6e589cb34bc6" + ] + } + ] + }, + "fip": { + "Spans": [ + { + "Text": "indexing", + "Ws": "fip", + "Tags": [ + "eb32049a-a31e-4f10-aa04-8b3ac193abda" + ] + }, + { + "Text": "integrate", + "Ws": "fip", + "Tags": [ + "5e96dfb4-a4ab-48b7-9139-0ddd54e5c2fc" + ] + }, + { + "Text": "Grocery", + "Ws": "nhu", + "Bold": "Off", + "FontSize": 781582330, + "ForeColor": "#00000000", + "Tags": [ + "aa20518f-f7e6-4157-b9e6-a0377a26c6c8" + ] + } + ] + }, + "tdk": { + "Spans": [ + { + "Text": "Kids \u0026 Home", + "Ws": "tdk", + "Tags": [ + "0fdbc8ee-310d-4954-bfd9-7db50ae03b2c" + ] + }, + { + "Text": "District", + "Ws": "dap", + "Bold": "Invert", + "FontSize": 1319768493, + "ForeColor": "#A52A2A", + "Tags": [ + "38206d1c-bcd0-8df6-4b10-234afe42152f" + ] + } + ] + }, + "jos": { + "Spans": [ + { + "Text": "Director", + "Ws": "jos", + "Tags": [ + "d7d60d66-c9ce-45aa-9004-e0268b91d2d5" + ] + }, + { + "Text": "back-end", + "Ws": "ham", + "Bold": "Off", + "FontSize": 613268958, + "ForeColor": "#00000000", + "Tags": [ + "1ef432cc-f167-0755-ec93-06d5f330878b" + ] + }, + { + "Text": "Djibouti", + "Ws": "hmv", + "Bold": "Off", + "FontSize": -1306242714, + "ForeColor": "#0000FF", + "Tags": [ + "0f4fc950-4619-ed72-314f-2239b9b1aab7" + ] + } + ] + } + } + } + ] + }, + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "Order": 0, + "DeletedAt": null, + "EntryId": "9382fd2a-0dce-2f5d-bdf8-976c89b78f09", + "Definition": { + "mcf": { + "Spans": [ + { + "Text": "Cove", + "Ws": "woa", + "Bold": "Invert", + "FontSize": 661665754, + "ForeColor": "#FF0000", + "Tags": [ + "7e4eb13c-1680-aa3b-fa16-171af5077e94" + ] + }, + { + "Text": "Coordinator", + "Ws": "aax", + "Bold": "Invert", + "FontSize": -776890613, + "ForeColor": "#A52A2A", + "Tags": [ + "ec21f133-fe8a-c054-ef38-4e916aed3242" + ] + }, + { + "Text": "override", + "Ws": "zag", + "Bold": "Off", + "FontSize": -2144821366, + "ForeColor": "#0000FF", + "Tags": [ + "a13c3436-b669-fe85-d1ff-bc4ccf3ec120" + ] + } + ] + }, + "kfj": { + "Spans": [ + { + "Text": "Serbia", + "Ws": "kfj", + "Tags": [ + "0419d5df-b122-4065-bf3e-a96cf8ebaa24" + ] + }, + { + "Text": "Generic Cotton Pizza", + "Ws": "hng", + "Bold": "Invert", + "FontSize": 1518698995, + "ForeColor": "#ADFF2F", + "Tags": [ + "11e84286-9334-7add-782b-bd14dc7f7b01" + ] + }, + { + "Text": "Texas", + "Ws": "kfj", + "Tags": [ + "72ec4ae5-33eb-43c7-96fd-fca3e2910b07" + ] + } + ] + }, + "tag": { + "Spans": [ + { + "Text": "Falkland Islands Pound", + "Ws": "syo", + "Bold": "Invert", + "FontSize": 1861298083, + "ForeColor": "#00000000", + "Tags": [ + "c346269b-13e9-7610-ad49-1e3b17458a40" + ] + }, + { + "Text": "Usability", + "Ws": "uhn", + "Bold": "Invert", + "FontSize": 1491545820, + "ForeColor": "#A52A2A", + "Tags": [ + "9ff7d106-2b72-bccb-6216-c8d5bfbc9843" + ] + } + ] + } + }, + "Gloss": { + "sny": "Neck" + }, + "PartOfSpeech": { + "Id": "ea8ff3b0-4362-9168-1d32-b4c538f7cc7a", + "Name": { + "lvl": "Democratic People\u0027s Republic of Korea" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "eaa97b2e-477b-d15a-d009-b03bfecad893", + "SemanticDomains": [ + { + "Id": "e177e1c5-b5bc-2038-2b15-5e5d48be2529", + "Name": { + "kmu": "Wooden" + }, + "Code": "mission-critical", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "96e78848-8081-b916-c42f-a477c7c720b3", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "ske": { + "Spans": [ + { + "Text": "PCI", + "Ws": "meq", + "Bold": "Off", + "FontSize": 939450240, + "ForeColor": "#0000FF", + "Tags": [ + "62979dec-0d70-de3f-2f18-69b6a9463735" + ] + }, + { + "Text": "Automated", + "Ws": "ske", + "Tags": [ + "780eaa13-730a-4784-9958-dc5480b4c4e0" + ] + }, + { + "Text": "Savings Account", + "Ws": "urt", + "Bold": "On", + "FontSize": 1397834172, + "ForeColor": "#0000FF", + "Tags": [ + "c705abb0-c434-bc17-fedf-cd58b1ab3b55" + ] + } + ] + }, + "dif": { + "Spans": [ + { + "Text": "parsing", + "Ws": "dif", + "Tags": [ + "e08b843d-33f9-47e7-801d-af636f03cad4" + ] + }, + { + "Text": "web-readiness", + "Ws": "dif", + "Tags": [ + "699262f7-e6a4-4e43-bcbe-718c3f7616b2" + ] + } + ] + } + } + } + ] + }, + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "Order": 0, + "DeletedAt": null, + "EntryId": "9382fd2a-0dce-2f5d-bdf8-976c89b78f09", + "Definition": { + "mcf": { + "Spans": [ + { + "Text": "Cove", + "Ws": "woa", + "Bold": "Invert", + "FontSize": 661665754, + "ForeColor": "#FF0000", + "Tags": [ + "7e4eb13c-1680-aa3b-fa16-171af5077e94" + ] + }, + { + "Text": "Coordinator", + "Ws": "aax", + "Bold": "Invert", + "FontSize": -776890613, + "ForeColor": "#A52A2A", + "Tags": [ + "ec21f133-fe8a-c054-ef38-4e916aed3242" + ] + }, + { + "Text": "override", + "Ws": "zag", + "Bold": "Off", + "FontSize": -2144821366, + "ForeColor": "#0000FF", + "Tags": [ + "a13c3436-b669-fe85-d1ff-bc4ccf3ec120" + ] + } + ] + }, + "kfj": { + "Spans": [ + { + "Text": "Serbia", + "Ws": "kfj", + "Tags": [ + "0419d5df-b122-4065-bf3e-a96cf8ebaa24" + ] + }, + { + "Text": "Generic Cotton Pizza", + "Ws": "hng", + "Bold": "Invert", + "FontSize": 1518698995, + "ForeColor": "#ADFF2F", + "Tags": [ + "11e84286-9334-7add-782b-bd14dc7f7b01" + ] + }, + { + "Text": "Texas", + "Ws": "kfj", + "Tags": [ + "72ec4ae5-33eb-43c7-96fd-fca3e2910b07" + ] + } + ] + }, + "tag": { + "Spans": [ + { + "Text": "Falkland Islands Pound", + "Ws": "syo", + "Bold": "Invert", + "FontSize": 1861298083, + "ForeColor": "#00000000", + "Tags": [ + "c346269b-13e9-7610-ad49-1e3b17458a40" + ] + }, + { + "Text": "Usability", + "Ws": "uhn", + "Bold": "Invert", + "FontSize": 1491545820, + "ForeColor": "#A52A2A", + "Tags": [ + "9ff7d106-2b72-bccb-6216-c8d5bfbc9843" + ] + } + ] + } + }, + "Gloss": { + "sny": "Neck" + }, + "PartOfSpeech": { + "Id": "ea8ff3b0-4362-9168-1d32-b4c538f7cc7a", + "Name": { + "lvl": "Democratic People\u0027s Republic of Korea" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "eaa97b2e-477b-d15a-d009-b03bfecad893", + "SemanticDomains": [ + { + "Id": "e177e1c5-b5bc-2038-2b15-5e5d48be2529", + "Name": { + "kmu": "Wooden" + }, + "Abbreviation": {}, + "Code": "mission-critical", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "96e78848-8081-b916-c42f-a477c7c720b3", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "ske": { + "Spans": [ + { + "Text": "PCI", + "Ws": "meq", + "Bold": "Off", + "FontSize": 939450240, + "ForeColor": "#0000FF", + "Tags": [ + "62979dec-0d70-de3f-2f18-69b6a9463735" + ] + }, + { + "Text": "Automated", + "Ws": "ske", + "Tags": [ + "780eaa13-730a-4784-9958-dc5480b4c4e0" + ] + }, + { + "Text": "Savings Account", + "Ws": "urt", + "Bold": "On", + "FontSize": 1397834172, + "ForeColor": "#0000FF", + "Tags": [ + "c705abb0-c434-bc17-fedf-cd58b1ab3b55" + ] + } + ] + }, + "dif": { + "Spans": [ + { + "Text": "parsing", + "Ws": "dif", + "Tags": [ + "e08b843d-33f9-47e7-801d-af636f03cad4" + ] + }, + { + "Text": "web-readiness", + "Ws": "dif", + "Tags": [ + "699262f7-e6a4-4e43-bcbe-718c3f7616b2" + ] + } + ] + } + } + } + ] + }, + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "Order": 0, + "DeletedAt": null, + "EntryId": "018eaf35-2a0a-6098-13b3-260ea4017d27", + "Definition": { + "dac": { + "Spans": [ + { + "Text": "Accountability", + "Ws": "dac", + "Tags": [ + "755f2352-8b57-41a1-bb72-cdb00c70a723" + ] + }, + { + "Text": "Berkshire", + "Ws": "osi", + "Bold": "Off", + "FontSize": 202893717, + "ForeColor": "#0000FF", + "Tags": [ + "60af4336-04cc-2d89-f7d1-093374e118b8" + ] + } + ] + }, + "ptt": { + "Spans": [ + { + "Text": "Checking Account", + "Ws": "ptt", + "Tags": [ + "fb86b786-0054-48ba-8f7d-9cee06055c4d" + ] + }, + { + "Text": "content", + "Ws": "fsl", + "Bold": "Invert", + "FontSize": -712294872, + "ForeColor": "#00000000", + "Tags": [ + "97add724-5b06-4d9d-54f5-ef39c28c08bb" + ] + }, + { + "Text": "SQL", + "Ws": "ptt", + "Tags": [ + "49987f83-0e34-4f77-9b8b-d61c3a8e603d" + ] + } + ] + }, + "kzh": { + "Spans": [ + { + "Text": "Uzbekistan", + "Ws": "kzh", + "Tags": [ + "4aad02ff-438f-4f6f-89d9-6ec8340b6763" + ] + } + ] + }, + "ulf": { + "Spans": [ + { + "Text": "Intelligent Frozen Sausages", + "Ws": "ulf", + "Tags": [ + "e09b6dde-62e8-423a-af41-9ce466144488" + ] + }, + { + "Text": "District", + "Ws": "twp", + "Bold": "Invert", + "FontSize": -1102337901, + "ForeColor": "#A52A2A", + "Tags": [ + "07334f1a-5d23-f06b-390c-f4e04cd6aaaa" + ] + }, + { + "Text": "next-generation", + "Ws": "ulf", + "Tags": [ + "12169ebc-09bc-4536-94ee-764bd5495ede" + ] + }, + { + "Text": "Direct", + "Ws": "loo", + "Bold": "Invert", + "FontSize": 1945097886, + "ForeColor": "#FF0000", + "Tags": [ + "9ae6b7b0-9c92-0333-eac6-84a7fb521cb0" + ] + } + ] + } + }, + "Gloss": { + "qud": "Square" + }, + "PartOfSpeech": { + "Id": "ab15d93b-1c45-e79b-f1b2-5d8f71e45335", + "Name": { + "pmz": "infomediaries", + "tmj": "Health \u0026 Books", + "buu": "Corporate", + "hix": "International" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "326aff5e-43f0-7705-7672-a2aa8ba2023c", + "SemanticDomains": [ + { + "Id": "702e9bc7-e774-0d90-8f88-dff28920154b", + "Name": { + "ktg": "card", + "zaf": "Tasty" + }, + "Code": "North Korean Won", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "0e6a2808-96be-86d5-6092-04f762f26202", + "Order": 0, + "MediaUri": "sil-media://lexbox/7b06b27e-80e9-420d-bc93-c2c29720ef78", + "Caption": { + "emq": { + "Spans": [ + { + "Text": "strategize", + "Ws": "emq", + "Tags": [ + "c5fccb12-219e-46f0-93ff-2234546ef6b7" + ] + } + ] + } + } + } + ] + }, + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "Order": 0, + "DeletedAt": null, + "EntryId": "018eaf35-2a0a-6098-13b3-260ea4017d27", + "Definition": { + "dac": { + "Spans": [ + { + "Text": "Accountability", + "Ws": "dac", + "Tags": [ + "755f2352-8b57-41a1-bb72-cdb00c70a723" + ] + }, + { + "Text": "Berkshire", + "Ws": "osi", + "Bold": "Off", + "FontSize": 202893717, + "ForeColor": "#0000FF", + "Tags": [ + "60af4336-04cc-2d89-f7d1-093374e118b8" + ] + } + ] + }, + "ptt": { + "Spans": [ + { + "Text": "Checking Account", + "Ws": "ptt", + "Tags": [ + "fb86b786-0054-48ba-8f7d-9cee06055c4d" + ] + }, + { + "Text": "content", + "Ws": "fsl", + "Bold": "Invert", + "FontSize": -712294872, + "ForeColor": "#00000000", + "Tags": [ + "97add724-5b06-4d9d-54f5-ef39c28c08bb" + ] + }, + { + "Text": "SQL", + "Ws": "ptt", + "Tags": [ + "49987f83-0e34-4f77-9b8b-d61c3a8e603d" + ] + } + ] + }, + "kzh": { + "Spans": [ + { + "Text": "Uzbekistan", + "Ws": "kzh", + "Tags": [ + "4aad02ff-438f-4f6f-89d9-6ec8340b6763" + ] + } + ] + }, + "ulf": { + "Spans": [ + { + "Text": "Intelligent Frozen Sausages", + "Ws": "ulf", + "Tags": [ + "e09b6dde-62e8-423a-af41-9ce466144488" + ] + }, + { + "Text": "District", + "Ws": "twp", + "Bold": "Invert", + "FontSize": -1102337901, + "ForeColor": "#A52A2A", + "Tags": [ + "07334f1a-5d23-f06b-390c-f4e04cd6aaaa" + ] + }, + { + "Text": "next-generation", + "Ws": "ulf", + "Tags": [ + "12169ebc-09bc-4536-94ee-764bd5495ede" + ] + }, + { + "Text": "Direct", + "Ws": "loo", + "Bold": "Invert", + "FontSize": 1945097886, + "ForeColor": "#FF0000", + "Tags": [ + "9ae6b7b0-9c92-0333-eac6-84a7fb521cb0" + ] + } + ] + } + }, + "Gloss": { + "qud": "Square" + }, + "PartOfSpeech": { + "Id": "ab15d93b-1c45-e79b-f1b2-5d8f71e45335", + "Name": { + "pmz": "infomediaries", + "tmj": "Health \u0026 Books", + "buu": "Corporate", + "hix": "International" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "326aff5e-43f0-7705-7672-a2aa8ba2023c", + "SemanticDomains": [ + { + "Id": "702e9bc7-e774-0d90-8f88-dff28920154b", + "Name": { + "ktg": "card", + "zaf": "Tasty" + }, + "Abbreviation": {}, + "Code": "North Korean Won", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "0e6a2808-96be-86d5-6092-04f762f26202", + "Order": 0, + "MediaUri": "sil-media://lexbox/7b06b27e-80e9-420d-bc93-c2c29720ef78", + "Caption": { + "emq": { + "Spans": [ + { + "Text": "strategize", + "Ws": "emq", + "Tags": [ + "c5fccb12-219e-46f0-93ff-2234546ef6b7" + ] + } + ] + } + } + } + ] + }, + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "Order": 0, + "DeletedAt": null, + "EntryId": "dec2c32e-6e17-173e-13fd-7f2ab4ce56c9", + "Definition": { + "jud": { + "Spans": [ + { + "Text": "Fantastic Fresh Table", + "Ws": "jud", + "Tags": [ + "3dde4d6e-b610-44cd-b7f0-853f6d9f9680" + ] + }, + { + "Text": "EXE", + "Ws": "jud", + "Tags": [ + "944daefe-a88f-4168-ace0-a81099908859" + ] + }, + { + "Text": "France", + "Ws": "jud", + "Tags": [ + "6d6018a8-4d8b-43c5-a188-68ae485981f3" + ] + } + ] + }, + "lum": { + "Spans": [ + { + "Text": "Central", + "Ws": "lum", + "Tags": [ + "d96dca0e-fdb6-4ac1-9864-69a63788d3ae" + ] + }, + { + "Text": "Home Loan Account", + "Ws": "lum", + "Tags": [ + "d2743a5b-67a5-441d-a4f6-efd0f55c9f90" + ] + } + ] + } + }, + "Gloss": { + "zmc": "Cotton", + "nbs": "Programmable" + }, + "PartOfSpeech": { + "Id": "5fb817b7-7c86-56ce-ca5f-ff8467d5260f", + "Name": { + "mkf": "Home \u0026 Shoes" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "1245db57-fd23-45e3-c394-a38c7e1fa617", + "SemanticDomains": [ + { + "Id": "2fc2a227-ac73-8518-5bba-5b74c1285b40", + "Name": { + "kg": "Solomon Islands Dollar", + "osc": "Consultant", + "bpe": "Ferry" + }, + "Code": "Awesome Fresh Sausages", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "12ce8612-d983-1af0-4b37-21a1c23a8e21", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "skb": { + "Spans": [ + { + "Text": "Slovakia (Slovak Republic)", + "Ws": "skb", + "Tags": [ + "e6ae98b8-677e-4834-b4d7-d738ba2816f9" + ] + }, + { + "Text": "Luxembourg", + "Ws": "hab", + "Bold": "Off", + "FontSize": -797072059, + "ForeColor": "#A52A2A", + "Tags": [ + "bad7abdd-5e58-9f69-d0ed-91cb7bf79b10" + ] + } + ] + }, + "bsp": { + "Spans": [ + { + "Text": "Berkshire", + "Ws": "bsp", + "Tags": [ + "2f1eb23e-692a-49f0-9b7f-4d23d925cccc" + ] + }, + { + "Text": "red", + "Ws": "bsp", + "Tags": [ + "7720eab3-709f-498c-9b30-66c2e3ac737c" + ] + } + ] + }, + "hni": { + "Spans": [ + { + "Text": "Lead", + "Ws": "phd", + "Bold": "Invert", + "FontSize": -1680981122, + "ForeColor": "#ADFF2F", + "Tags": [ + "ea4753f5-8b13-fa87-0e09-6fbc78b78581" + ] + }, + { + "Text": "River", + "Ws": "hni", + "Tags": [ + "56385552-a5f6-4d29-a228-49e09e16e294" + ] + } + ] + }, + "tdq": { + "Spans": [ + { + "Text": "Gorgeous", + "Ws": "tdq", + "Tags": [ + "7da9faf0-8cb9-42a3-a486-079bd0f05a33" + ] + }, + { + "Text": "whiteboard", + "Ws": "dda", + "Bold": "On", + "FontSize": -773976336, + "ForeColor": "#0000FF", + "Tags": [ + "42011f31-c33a-1f4f-925d-abb59c734377" + ] + } + ] + } + } + } + ] + }, + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "Order": 0, + "DeletedAt": null, + "EntryId": "dec2c32e-6e17-173e-13fd-7f2ab4ce56c9", + "Definition": { + "jud": { + "Spans": [ + { + "Text": "Fantastic Fresh Table", + "Ws": "jud", + "Tags": [ + "3dde4d6e-b610-44cd-b7f0-853f6d9f9680" + ] + }, + { + "Text": "EXE", + "Ws": "jud", + "Tags": [ + "944daefe-a88f-4168-ace0-a81099908859" + ] + }, + { + "Text": "France", + "Ws": "jud", + "Tags": [ + "6d6018a8-4d8b-43c5-a188-68ae485981f3" + ] + } + ] + }, + "lum": { + "Spans": [ + { + "Text": "Central", + "Ws": "lum", + "Tags": [ + "d96dca0e-fdb6-4ac1-9864-69a63788d3ae" + ] + }, + { + "Text": "Home Loan Account", + "Ws": "lum", + "Tags": [ + "d2743a5b-67a5-441d-a4f6-efd0f55c9f90" + ] + } + ] + } + }, + "Gloss": { + "zmc": "Cotton", + "nbs": "Programmable" + }, + "PartOfSpeech": { + "Id": "5fb817b7-7c86-56ce-ca5f-ff8467d5260f", + "Name": { + "mkf": "Home \u0026 Shoes" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "1245db57-fd23-45e3-c394-a38c7e1fa617", + "SemanticDomains": [ + { + "Id": "2fc2a227-ac73-8518-5bba-5b74c1285b40", + "Name": { + "kg": "Solomon Islands Dollar", + "osc": "Consultant", + "bpe": "Ferry" + }, + "Abbreviation": {}, + "Code": "Awesome Fresh Sausages", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "12ce8612-d983-1af0-4b37-21a1c23a8e21", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "skb": { + "Spans": [ + { + "Text": "Slovakia (Slovak Republic)", + "Ws": "skb", + "Tags": [ + "e6ae98b8-677e-4834-b4d7-d738ba2816f9" + ] + }, + { + "Text": "Luxembourg", + "Ws": "hab", + "Bold": "Off", + "FontSize": -797072059, + "ForeColor": "#A52A2A", + "Tags": [ + "bad7abdd-5e58-9f69-d0ed-91cb7bf79b10" + ] + } + ] + }, + "bsp": { + "Spans": [ + { + "Text": "Berkshire", + "Ws": "bsp", + "Tags": [ + "2f1eb23e-692a-49f0-9b7f-4d23d925cccc" + ] + }, + { + "Text": "red", + "Ws": "bsp", + "Tags": [ + "7720eab3-709f-498c-9b30-66c2e3ac737c" + ] + } + ] + }, + "hni": { + "Spans": [ + { + "Text": "Lead", + "Ws": "phd", + "Bold": "Invert", + "FontSize": -1680981122, + "ForeColor": "#ADFF2F", + "Tags": [ + "ea4753f5-8b13-fa87-0e09-6fbc78b78581" + ] + }, + { + "Text": "River", + "Ws": "hni", + "Tags": [ + "56385552-a5f6-4d29-a228-49e09e16e294" + ] + } + ] + }, + "tdq": { + "Spans": [ + { + "Text": "Gorgeous", + "Ws": "tdq", + "Tags": [ + "7da9faf0-8cb9-42a3-a486-079bd0f05a33" + ] + }, + { + "Text": "whiteboard", + "Ws": "dda", + "Bold": "On", + "FontSize": -773976336, + "ForeColor": "#0000FF", + "Tags": [ + "42011f31-c33a-1f4f-925d-abb59c734377" + ] + } + ] + } + } + } + ] + }, + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "Order": 0, + "DeletedAt": null, + "EntryId": "7310ab10-987a-3630-26ae-dc6a34fb0deb", + "Definition": { + "xau": { + "Spans": [ + { + "Text": "PCI", + "Ws": "xsb", + "Bold": "Off", + "FontSize": 534074098, + "ForeColor": "#0000FF", + "Tags": [ + "dfb21668-81b3-ef3f-4703-9ea338812723" + ] + }, + { + "Text": "harness", + "Ws": "lro", + "Bold": "Off", + "FontSize": -1293318803, + "ForeColor": "#0000FF", + "Tags": [ + "badee952-2d27-fc9b-656a-381da87e3b10" + ] + } + ] + } + }, + "Gloss": { + "fvr": "Licensed", + "zyn": "lime", + "sjo": "online", + "wkb": "Generic Cotton Shirt" + }, + "PartOfSpeech": { + "Id": "cdc711e2-8767-4c25-5ad3-36bca7a318fe", + "Name": { + "cdh": "South Georgia and the South Sandwich Islands", + "bwq": "Cambridgeshire" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bdf71ef6-0ea6-40b9-5a51-c9d92a7ca8a4", + "SemanticDomains": [ + { + "Id": "1835f6da-43ce-0a96-13e4-e485558e6a88", + "Name": { + "hnj": "Consultant", + "dtn": "encompassing" + }, + "Code": "Brazilian Real", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "Order": 0, + "DeletedAt": null, + "EntryId": "7310ab10-987a-3630-26ae-dc6a34fb0deb", + "Definition": { + "xau": { + "Spans": [ + { + "Text": "PCI", + "Ws": "xsb", + "Bold": "Off", + "FontSize": 534074098, + "ForeColor": "#0000FF", + "Tags": [ + "dfb21668-81b3-ef3f-4703-9ea338812723" + ] + }, + { + "Text": "harness", + "Ws": "lro", + "Bold": "Off", + "FontSize": -1293318803, + "ForeColor": "#0000FF", + "Tags": [ + "badee952-2d27-fc9b-656a-381da87e3b10" + ] + } + ] + } + }, + "Gloss": { + "fvr": "Licensed", + "zyn": "lime", + "sjo": "online", + "wkb": "Generic Cotton Shirt" + }, + "PartOfSpeech": { + "Id": "cdc711e2-8767-4c25-5ad3-36bca7a318fe", + "Name": { + "cdh": "South Georgia and the South Sandwich Islands", + "bwq": "Cambridgeshire" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bdf71ef6-0ea6-40b9-5a51-c9d92a7ca8a4", + "SemanticDomains": [ + { + "Id": "1835f6da-43ce-0a96-13e4-e485558e6a88", + "Name": { + "hnj": "Consultant", + "dtn": "encompassing" + }, + "Abbreviation": {}, + "Code": "Brazilian Real", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "Order": 0, + "DeletedAt": null, + "EntryId": "45402c66-1666-a6ae-be14-52268308a80d", + "Definition": { + "wrr": { + "Spans": [ + { + "Text": "radical", + "Ws": "wrr", + "Tags": [ + "ca09e09e-93d9-465b-a90c-150f9fe1c37d" + ] + }, + { + "Text": "Denmark", + "Ws": "wrr", + "Tags": [ + "c98ffdcf-b21d-4f26-aa98-96766f1de795" + ] + }, + { + "Text": "Strategist", + "Ws": "pag", + "Bold": "Invert", + "FontSize": 1802509412, + "ForeColor": "#FF0000", + "Tags": [ + "83cedf51-7bb2-2a83-6ac1-3dfd1da56010" + ] + } + ] + }, + "yaj": { + "Spans": [ + { + "Text": "Shore", + "Ws": "yaj", + "Tags": [ + "c2cb390c-d89f-4d44-b15e-8c66084f976f" + ] + }, + { + "Text": "Course", + "Ws": "tku", + "Bold": "On", + "FontSize": -887647908, + "ForeColor": "#ADFF2F", + "Tags": [ + "788a2a1f-d8b2-db8e-157a-f675ac13fc1a" + ] + } + ] + }, + "ptq": { + "Spans": [ + { + "Text": "copying", + "Ws": "ptq", + "Tags": [ + "30ada735-7e8e-4399-80cf-e0c87ecd94ae" + ] + }, + { + "Text": "upward-trending", + "Ws": "kl", + "Bold": "On", + "FontSize": 2020980805, + "ForeColor": "#A52A2A", + "Tags": [ + "54fd1200-a70f-1498-b1d1-cb77180f34b0" + ] + }, + { + "Text": "Kansas", + "Ws": "rcf", + "Bold": "Invert", + "FontSize": -1745182649, + "ForeColor": "#00FFFF", + "Tags": [ + "5d91118e-46d7-97d5-9b4d-e8efbc08330e" + ] + } + ] + } + }, + "Gloss": { + "sda": "migration", + "url": "sexy" + }, + "PartOfSpeech": { + "Id": "2aea7efe-0c41-a465-06d7-dc7d1dd44b9b", + "Name": { + "pab": "convergence", + "kgl": "North Dakota", + "ppu": "Iowa" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "f25a3e84-2992-a4c1-a86c-3f5d0a221a7c", + "SemanticDomains": [ + { + "Id": "0404de20-eee7-0b57-0d07-9d00e64c3588", + "Name": { + "idt": "Persevering" + }, + "Code": "auxiliary", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "de247b82-e534-9742-c69a-20a76209b78c", + "Order": 0, + "MediaUri": "sil-media://lexbox/396c23b3-1736-4d1e-bc7d-15baf5e5aefb", + "Caption": { + "bab": { + "Spans": [ + { + "Text": "convergence", + "Ws": "bab", + "Tags": [ + "7b5f64a7-3b9a-4cab-b513-80c8804a5175" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "bab", + "Tags": [ + "b2da0f22-28e8-4b7e-9cc0-f7491b3ee991" + ] + }, + { + "Text": "integrated", + "Ws": "ibm", + "Bold": "Off", + "FontSize": -1988753505, + "ForeColor": "#A52A2A", + "Tags": [ + "8e0b442f-cccf-7a3d-d17a-2d8e56d3c038" + ] + }, + { + "Text": "approach", + "Ws": "rmx", + "Bold": "Invert", + "FontSize": 1336983740, + "ForeColor": "#A52A2A", + "Tags": [ + "b443ce55-c277-33c3-9d59-f863851a32c0" + ] + } + ] + }, + "anj": { + "Spans": [ + { + "Text": "Refined", + "Ws": "anj", + "Tags": [ + "70f80489-9e6a-4593-a7d4-b9a0651bdd32" + ] + }, + { + "Text": "connect", + "Ws": "won", + "Bold": "Off", + "FontSize": -1171626966, + "ForeColor": "#FF0000", + "Tags": [ + "2f7b1eca-ebad-a134-98bd-8453634579ab" + ] + } + ] + }, + "jer": { + "Spans": [ + { + "Text": "Mews", + "Ws": "mek", + "Bold": "On", + "FontSize": -49834405, + "ForeColor": "#ADFF2F", + "Tags": [ + "d160ce7d-6803-3adc-c88d-05cf3939ae45" + ] + }, + { + "Text": "productivity", + "Ws": "beo", + "Bold": "On", + "FontSize": 1358440076, + "ForeColor": "#0000FF", + "Tags": [ + "791f8e3b-d5d0-593e-8ca2-c57ebb123c9b" + ] + }, + { + "Text": "Internal", + "Ws": "jer", + "Tags": [ + "22593efb-681a-4e61-bdc4-96b4d54feee5" + ] + } + ] + }, + "orn": { + "Spans": [ + { + "Text": "Kiribati", + "Ws": "orn", + "Tags": [ + "43da294d-1349-48ab-a650-3fae8cd2cc0e" + ] + } + ] + } + } + } + ] + }, + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "Order": 0, + "DeletedAt": null, + "EntryId": "45402c66-1666-a6ae-be14-52268308a80d", + "Definition": { + "wrr": { + "Spans": [ + { + "Text": "radical", + "Ws": "wrr", + "Tags": [ + "ca09e09e-93d9-465b-a90c-150f9fe1c37d" + ] + }, + { + "Text": "Denmark", + "Ws": "wrr", + "Tags": [ + "c98ffdcf-b21d-4f26-aa98-96766f1de795" + ] + }, + { + "Text": "Strategist", + "Ws": "pag", + "Bold": "Invert", + "FontSize": 1802509412, + "ForeColor": "#FF0000", + "Tags": [ + "83cedf51-7bb2-2a83-6ac1-3dfd1da56010" + ] + } + ] + }, + "yaj": { + "Spans": [ + { + "Text": "Shore", + "Ws": "yaj", + "Tags": [ + "c2cb390c-d89f-4d44-b15e-8c66084f976f" + ] + }, + { + "Text": "Course", + "Ws": "tku", + "Bold": "On", + "FontSize": -887647908, + "ForeColor": "#ADFF2F", + "Tags": [ + "788a2a1f-d8b2-db8e-157a-f675ac13fc1a" + ] + } + ] + }, + "ptq": { + "Spans": [ + { + "Text": "copying", + "Ws": "ptq", + "Tags": [ + "30ada735-7e8e-4399-80cf-e0c87ecd94ae" + ] + }, + { + "Text": "upward-trending", + "Ws": "kl", + "Bold": "On", + "FontSize": 2020980805, + "ForeColor": "#A52A2A", + "Tags": [ + "54fd1200-a70f-1498-b1d1-cb77180f34b0" + ] + }, + { + "Text": "Kansas", + "Ws": "rcf", + "Bold": "Invert", + "FontSize": -1745182649, + "ForeColor": "#00FFFF", + "Tags": [ + "5d91118e-46d7-97d5-9b4d-e8efbc08330e" + ] + } + ] + } + }, + "Gloss": { + "sda": "migration", + "url": "sexy" + }, + "PartOfSpeech": { + "Id": "2aea7efe-0c41-a465-06d7-dc7d1dd44b9b", + "Name": { + "pab": "convergence", + "kgl": "North Dakota", + "ppu": "Iowa" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "f25a3e84-2992-a4c1-a86c-3f5d0a221a7c", + "SemanticDomains": [ + { + "Id": "0404de20-eee7-0b57-0d07-9d00e64c3588", + "Name": { + "idt": "Persevering" + }, + "Abbreviation": {}, + "Code": "auxiliary", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "de247b82-e534-9742-c69a-20a76209b78c", + "Order": 0, + "MediaUri": "sil-media://lexbox/396c23b3-1736-4d1e-bc7d-15baf5e5aefb", + "Caption": { + "bab": { + "Spans": [ + { + "Text": "convergence", + "Ws": "bab", + "Tags": [ + "7b5f64a7-3b9a-4cab-b513-80c8804a5175" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "bab", + "Tags": [ + "b2da0f22-28e8-4b7e-9cc0-f7491b3ee991" + ] + }, + { + "Text": "integrated", + "Ws": "ibm", + "Bold": "Off", + "FontSize": -1988753505, + "ForeColor": "#A52A2A", + "Tags": [ + "8e0b442f-cccf-7a3d-d17a-2d8e56d3c038" + ] + }, + { + "Text": "approach", + "Ws": "rmx", + "Bold": "Invert", + "FontSize": 1336983740, + "ForeColor": "#A52A2A", + "Tags": [ + "b443ce55-c277-33c3-9d59-f863851a32c0" + ] + } + ] + }, + "anj": { + "Spans": [ + { + "Text": "Refined", + "Ws": "anj", + "Tags": [ + "70f80489-9e6a-4593-a7d4-b9a0651bdd32" + ] + }, + { + "Text": "connect", + "Ws": "won", + "Bold": "Off", + "FontSize": -1171626966, + "ForeColor": "#FF0000", + "Tags": [ + "2f7b1eca-ebad-a134-98bd-8453634579ab" + ] + } + ] + }, + "jer": { + "Spans": [ + { + "Text": "Mews", + "Ws": "mek", + "Bold": "On", + "FontSize": -49834405, + "ForeColor": "#ADFF2F", + "Tags": [ + "d160ce7d-6803-3adc-c88d-05cf3939ae45" + ] + }, + { + "Text": "productivity", + "Ws": "beo", + "Bold": "On", + "FontSize": 1358440076, + "ForeColor": "#0000FF", + "Tags": [ + "791f8e3b-d5d0-593e-8ca2-c57ebb123c9b" + ] + }, + { + "Text": "Internal", + "Ws": "jer", + "Tags": [ + "22593efb-681a-4e61-bdc4-96b4d54feee5" + ] + } + ] + }, + "orn": { + "Spans": [ + { + "Text": "Kiribati", + "Ws": "orn", + "Tags": [ + "43da294d-1349-48ab-a650-3fae8cd2cc0e" + ] + } + ] + } + } + } + ] + }, + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "3ad5077d-175e-bf42-60ec-df0e3cf1d2bb", + "Order": 0, + "DeletedAt": null, + "EntryId": "d522a89d-4b91-60d5-297a-467ce5ce36f4", + "Definition": { + "dry": { + "Spans": [ + { + "Text": "Steel", + "Ws": "dry", + "Tags": [ + "be2ec4e5-bfa6-4ff7-9b80-ec12c4d0c9cf" + ] + } + ] + } + }, + "Gloss": { + "tit": "engage" + }, + "PartOfSpeech": { + "Id": "df0da2e0-a5da-82e4-e988-4431bacce8f3", + "Name": { + "ikp": "synergy", + "tsl": "Fall", + "tk": "Montana" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "e7d2c844-a20e-ba5c-05e7-6f866aaa2ac6", + "SemanticDomains": [ + { + "Id": "a9e87dc5-0ede-0598-843d-c41e192b3f6e", + "Name": { + "aea": "input", + "nid": "Object-based", + "mrx": "Money Market Account", + "btb": "silver" + }, + "Code": "applications", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "e8b84384-ad9c-de55-500d-2daaf850489f", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "keo": { + "Spans": [ + { + "Text": "Enterprise-wide", + "Ws": "keo", + "Tags": [ + "b538e609-473d-4d09-9671-5d2e09bc8a30" + ] + }, + { + "Text": "Orchestrator", + "Ws": "keo", + "Tags": [ + "ede13a71-9711-4349-aa66-a7020ac3c031" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "keo", + "Tags": [ + "38d21012-801c-4c1a-975a-9c1cf91f050a" + ] + }, + { + "Text": "B2B", + "Ws": "kyj", + "Bold": "On", + "FontSize": -1858501651, + "ForeColor": "#0000FF", + "Tags": [ + "66a553e4-5194-e5b0-6c39-338c330124f5" + ] + } + ] + }, + "ff": { + "Spans": [ + { + "Text": "monitor", + "Ws": "mui", + "Bold": "Invert", + "FontSize": -606743290, + "ForeColor": "#A52A2A", + "Tags": [ + "305a02ea-e366-db54-9910-8d796ba274de" + ] + }, + { + "Text": "Sleek", + "Ws": "ff", + "Tags": [ + "5fb72bf8-9fe2-43f5-bd61-d34aa029a6a1" + ] + }, + { + "Text": "Cambridgeshire", + "Ws": "wgb", + "Bold": "Off", + "FontSize": 1848039410, + "ForeColor": "#ADFF2F", + "Tags": [ + "e342eaea-2df7-6a8d-3b48-f61b958eea60" + ] + } + ] + }, + "guk": { + "Spans": [ + { + "Text": "transmitter", + "Ws": "tsw", + "Bold": "Off", + "FontSize": 221661809, + "ForeColor": "#0000FF", + "Tags": [ + "4c5f3218-b554-93eb-2cca-d48b98cab6e8" + ] + }, + { + "Text": "Division", + "Ws": "guk", + "Tags": [ + "86f7802f-dba5-43f6-9811-1255edd2e315" + ] + }, + { + "Text": "National", + "Ws": "rdb", + "Bold": "Off", + "FontSize": 1925781087, + "ForeColor": "#FF0000", + "Tags": [ + "579f6868-09fc-4b8a-0ae9-055a7687bce3" + ] + }, + { + "Text": "Organized", + "Ws": "guk", + "Tags": [ + "51587b9a-1751-414e-82c2-cdcaa713b663" + ] + } + ] + }, + "oku": { + "Spans": [ + { + "Text": "cultivate", + "Ws": "khf", + "Bold": "Invert", + "FontSize": 649438159, + "ForeColor": "#FF0000", + "Tags": [ + "a2d806af-6edc-9113-e764-967c34b9cb60" + ] + }, + { + "Text": "National", + "Ws": "oku", + "Tags": [ + "ab2319ae-3f72-4cdc-b18e-bdaa35ecabe6" + ] + }, + { + "Text": "Computers \u0026 Garden", + "Ws": "mps", + "Bold": "On", + "FontSize": -1143440197, + "ForeColor": "#ADFF2F", + "Tags": [ + "98ff380a-aac0-4b6c-d238-3a222013e4ab" + ] + }, + { + "Text": "Underpass", + "Ws": "oco", + "Bold": "On", + "FontSize": -1803562901, + "ForeColor": "#0000FF", + "Tags": [ + "1f710598-c3a4-f191-fecd-e3cd9296dfdf" + ] + } + ] + } + } + } + ] + }, + "Id": "3ad5077d-175e-bf42-60ec-df0e3cf1d2bb", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "3ad5077d-175e-bf42-60ec-df0e3cf1d2bb", + "Order": 0, + "DeletedAt": null, + "EntryId": "d522a89d-4b91-60d5-297a-467ce5ce36f4", + "Definition": { + "dry": { + "Spans": [ + { + "Text": "Steel", + "Ws": "dry", + "Tags": [ + "be2ec4e5-bfa6-4ff7-9b80-ec12c4d0c9cf" + ] + } + ] + } + }, + "Gloss": { + "tit": "engage" + }, + "PartOfSpeech": { + "Id": "df0da2e0-a5da-82e4-e988-4431bacce8f3", + "Name": { + "ikp": "synergy", + "tsl": "Fall", + "tk": "Montana" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "e7d2c844-a20e-ba5c-05e7-6f866aaa2ac6", + "SemanticDomains": [ + { + "Id": "a9e87dc5-0ede-0598-843d-c41e192b3f6e", + "Name": { + "aea": "input", + "nid": "Object-based", + "mrx": "Money Market Account", + "btb": "silver" + }, + "Abbreviation": {}, + "Code": "applications", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "e8b84384-ad9c-de55-500d-2daaf850489f", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "keo": { + "Spans": [ + { + "Text": "Enterprise-wide", + "Ws": "keo", + "Tags": [ + "b538e609-473d-4d09-9671-5d2e09bc8a30" + ] + }, + { + "Text": "Orchestrator", + "Ws": "keo", + "Tags": [ + "ede13a71-9711-4349-aa66-a7020ac3c031" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "keo", + "Tags": [ + "38d21012-801c-4c1a-975a-9c1cf91f050a" + ] + }, + { + "Text": "B2B", + "Ws": "kyj", + "Bold": "On", + "FontSize": -1858501651, + "ForeColor": "#0000FF", + "Tags": [ + "66a553e4-5194-e5b0-6c39-338c330124f5" + ] + } + ] + }, + "ff": { + "Spans": [ + { + "Text": "monitor", + "Ws": "mui", + "Bold": "Invert", + "FontSize": -606743290, + "ForeColor": "#A52A2A", + "Tags": [ + "305a02ea-e366-db54-9910-8d796ba274de" + ] + }, + { + "Text": "Sleek", + "Ws": "ff", + "Tags": [ + "5fb72bf8-9fe2-43f5-bd61-d34aa029a6a1" + ] + }, + { + "Text": "Cambridgeshire", + "Ws": "wgb", + "Bold": "Off", + "FontSize": 1848039410, + "ForeColor": "#ADFF2F", + "Tags": [ + "e342eaea-2df7-6a8d-3b48-f61b958eea60" + ] + } + ] + }, + "guk": { + "Spans": [ + { + "Text": "transmitter", + "Ws": "tsw", + "Bold": "Off", + "FontSize": 221661809, + "ForeColor": "#0000FF", + "Tags": [ + "4c5f3218-b554-93eb-2cca-d48b98cab6e8" + ] + }, + { + "Text": "Division", + "Ws": "guk", + "Tags": [ + "86f7802f-dba5-43f6-9811-1255edd2e315" + ] + }, + { + "Text": "National", + "Ws": "rdb", + "Bold": "Off", + "FontSize": 1925781087, + "ForeColor": "#FF0000", + "Tags": [ + "579f6868-09fc-4b8a-0ae9-055a7687bce3" + ] + }, + { + "Text": "Organized", + "Ws": "guk", + "Tags": [ + "51587b9a-1751-414e-82c2-cdcaa713b663" + ] + } + ] + }, + "oku": { + "Spans": [ + { + "Text": "cultivate", + "Ws": "khf", + "Bold": "Invert", + "FontSize": 649438159, + "ForeColor": "#FF0000", + "Tags": [ + "a2d806af-6edc-9113-e764-967c34b9cb60" + ] + }, + { + "Text": "National", + "Ws": "oku", + "Tags": [ + "ab2319ae-3f72-4cdc-b18e-bdaa35ecabe6" + ] + }, + { + "Text": "Computers \u0026 Garden", + "Ws": "mps", + "Bold": "On", + "FontSize": -1143440197, + "ForeColor": "#ADFF2F", + "Tags": [ + "98ff380a-aac0-4b6c-d238-3a222013e4ab" + ] + }, + { + "Text": "Underpass", + "Ws": "oco", + "Bold": "On", + "FontSize": -1803562901, + "ForeColor": "#0000FF", + "Tags": [ + "1f710598-c3a4-f191-fecd-e3cd9296dfdf" + ] + } + ] + } + } + } + ] + }, + "Id": "3ad5077d-175e-bf42-60ec-df0e3cf1d2bb", + "DeletedAt": null + } } -] +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json index b087157ce9..c2de1618cb 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json +++ b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json @@ -144,7 +144,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_16" @@ -166,7 +170,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_19" @@ -188,7 +196,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_21" @@ -210,7 +222,11 @@ "Name": { "en": "Person" }, + "Abbreviation": {}, "Code": "2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_23" @@ -232,7 +248,11 @@ "Name": { "en": "Body" }, + "Abbreviation": {}, "Code": "2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_25" @@ -254,7 +274,11 @@ "Name": { "en": "Head" }, + "Abbreviation": {}, "Code": "2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_27" @@ -276,7 +300,11 @@ "Name": { "en": "Eye" }, + "Abbreviation": {}, "Code": "2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_29" diff --git a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json index b10f437131..2d6ab6614b 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json +++ b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json @@ -445,7 +445,11 @@ "Name": { "en": "Person" }, + "Abbreviation": {}, "Code": "2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_39" @@ -467,7 +471,11 @@ "Name": { "en": "Body" }, + "Abbreviation": {}, "Code": "2.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": false }, "Id": "Guid_42" @@ -489,7 +497,11 @@ "Name": { "en": "Head" }, + "Abbreviation": {}, "Code": "2.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": false }, "Id": "Guid_44" @@ -511,7 +523,11 @@ "Name": { "en": "Eye" }, + "Abbreviation": {}, "Code": "2.1.1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": false }, "Id": "Guid_46" @@ -533,7 +549,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_48" @@ -555,7 +575,11 @@ "Name": { "en": "Sky" }, + "Abbreviation": {}, "Code": "1.1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_50" @@ -577,7 +601,11 @@ "Name": { "en": "World" }, + "Abbreviation": {}, "Code": "1.2", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true }, "Id": "Guid_52" @@ -708,7 +736,11 @@ "Name": { "en": "Universe, Creation" }, + "Abbreviation": {}, "Code": "1", + "Description": {}, + "OcmCodes": "", + "LouwNidaCodes": "", "Predefined": true } ], diff --git a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt index 20fd028c36..75164326ab 100644 --- a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt @@ -328,11 +328,19 @@ EntityType: SemanticDomain Properties: Id (Guid) Required PK AfterSave:Throw ValueGenerated.OnAdd + Abbreviation (MultiString) Required + Annotations: + Relational:ColumnType: jsonb Code (string) Required DeletedAt (DateTimeOffset?) + Description (RichMultiString) Required + Annotations: + Relational:ColumnType: jsonb + LouwNidaCodes (string) Required Name (MultiString) Required Annotations: Relational:ColumnType: jsonb + OcmCodes (string) Required Predefined (bool) Required SnapshotId (no field, Guid?) Shadow FK Index Keys: diff --git a/backend/FwLite/LcmCrdt/Changes/CreateSemanticDomainChange.cs b/backend/FwLite/LcmCrdt/Changes/CreateSemanticDomainChange.cs index 1570f958c9..5d8a8dd6a9 100644 --- a/backend/FwLite/LcmCrdt/Changes/CreateSemanticDomainChange.cs +++ b/backend/FwLite/LcmCrdt/Changes/CreateSemanticDomainChange.cs @@ -1,3 +1,5 @@ +using System.Diagnostics.CodeAnalysis; +using System.Text.Json.Serialization; using SIL.Harmony; using SIL.Harmony.Changes; using SIL.Harmony.Core; @@ -5,16 +7,54 @@ namespace LcmCrdt.Changes; -// must use the name `entityId` to support json deserialization as it must match the name of the property -public class CreateSemanticDomainChange(Guid entityId, MultiString name, string code, bool predefined = false) - : CreateChange(entityId), ISelfNamedType +public class CreateSemanticDomainChange : CreateChange, ISelfNamedType { - public MultiString Name { get; } = name; - public bool Predefined { get; } = predefined; - public string Code { get; } = code; + [SetsRequiredMembers] + public CreateSemanticDomainChange(SemanticDomain semanticDomain) : base(semanticDomain.Id) + { + Name = semanticDomain.Name; + Abbreviation = semanticDomain.Abbreviation; + Description = semanticDomain.Description; + OcmCodes = semanticDomain.OcmCodes; + LouwNidaCodes = semanticDomain.LouwNidaCodes; + Predefined = semanticDomain.Predefined; + Code = SemanticDomain.ResolveCode(semanticDomain.Abbreviation, semanticDomain.Code); + } + + [SetsRequiredMembers] + public CreateSemanticDomainChange(Guid entityId, MultiString name, string code, bool predefined = false) + : this(new SemanticDomain { Id = entityId, Name = name, Code = code, Predefined = predefined }) + { + } + + // must use the name `entityId` to support json deserialization as it must match the name of the property + [JsonConstructor] + [SetsRequiredMembers] + private CreateSemanticDomainChange(Guid entityId) : base(entityId) + { + Name = new MultiString(); + } + + public required MultiString Name { get; init; } + public bool Predefined { get; init; } + public string Code { get; init; } = string.Empty; + public MultiString Abbreviation { get; init; } = new(); + public RichMultiString Description { get; init; } = new(); + public string OcmCodes { get; init; } = string.Empty; + public string LouwNidaCodes { get; init; } = string.Empty; public override ValueTask NewEntity(Commit commit, IChangeContext context) { - return ValueTask.FromResult(new SemanticDomain { Id = EntityId, Code = Code, Name = Name, Predefined = Predefined }); + return ValueTask.FromResult(new SemanticDomain + { + Id = EntityId, + Name = Name, + Abbreviation = Abbreviation, + Description = Description, + OcmCodes = OcmCodes, + LouwNidaCodes = LouwNidaCodes, + Predefined = Predefined, + Code = SemanticDomain.ResolveCode(Abbreviation, Code), + }); } } diff --git a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs index b982cc7d37..09966eae84 100644 --- a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs +++ b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs @@ -257,7 +257,7 @@ public async IAsyncEnumerable GetSemanticDomains() public async Task CreateSemanticDomain(SemanticDomain semanticDomain) { - await AddChange(new CreateSemanticDomainChange(semanticDomain.Id, semanticDomain.Name, semanticDomain.Code, semanticDomain.Predefined)); + await AddChange(new CreateSemanticDomainChange(semanticDomain)); return await GetSemanticDomain(semanticDomain.Id) ?? throw NotFoundException.ForType(semanticDomain.Id); } @@ -285,7 +285,7 @@ public async Task DeleteSemanticDomain(Guid id) public async Task BulkImportSemanticDomains(IAsyncEnumerable semanticDomains) { - await AddChanges(await semanticDomains.Select(sd => new CreateSemanticDomainChange(sd.Id, sd.Name, sd.Code, sd.Predefined)).ToArrayAsync()); + await AddChanges(await semanticDomains.Select(sd => new CreateSemanticDomainChange(sd)).ToArrayAsync()); } public async IAsyncEnumerable GetComplexFormTypes() diff --git a/backend/FwLite/LcmCrdt/Migrations/20260807043954_AddSemanticDomainExtendedFields.Designer.cs b/backend/FwLite/LcmCrdt/Migrations/20260807043954_AddSemanticDomainExtendedFields.Designer.cs new file mode 100644 index 0000000000..2d38adfc89 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260807043954_AddSemanticDomainExtendedFields.Designer.cs @@ -0,0 +1,1008 @@ +// +using System; +using System.Collections.Generic; +using LcmCrdt; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace LcmCrdt.Migrations +{ + [DbContext(typeof(LcmCrdtDbContext))] + [Migration("20260807043954_AddSemanticDomainExtendedFields")] + partial class AddSemanticDomainExtendedFields + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "10.0.8"); + + modelBuilder.Entity("LcmCrdt.Data.UnreadComment", b => + { + b.Property("CommentId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CommentThreadId") + .HasColumnType("TEXT"); + + b.Property("MarkedUnreadAt") + .HasColumnType("TEXT"); + + b.HasKey("CommentId"); + + b.HasIndex("CommentThreadId"); + + b.ToTable("UnreadComments"); + }); + + modelBuilder.Entity("LcmCrdt.FullTextSearch.EntrySearchRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CitationForm") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Gloss") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Headword") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("LexemeForm") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("EntrySearchRecord", null, t => + { + t.ExcludeFromMigrations(); + }); + }); + + modelBuilder.Entity("LcmCrdt.ProjectData", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ClientId") + .HasColumnType("TEXT"); + + b.Property("Code") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("FwProjectId") + .HasColumnType("TEXT"); + + b.Property("LastUserId") + .HasColumnType("TEXT"); + + b.Property("LastUserName") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("OriginDomain") + .HasColumnType("TEXT"); + + b.Property("Role") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasDefaultValue("Editor"); + + b.HasKey("Id"); + + b.ToTable("ProjectData"); + }); + + modelBuilder.Entity("MiniLcm.Models.CommentThread", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("AuthorId") + .HasColumnType("TEXT"); + + b.Property("AuthorName") + .HasColumnType("TEXT"); + + b.Property("CreatedAt") + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Status") + .HasColumnType("INTEGER"); + + b.Property("SubjectId") + .HasColumnType("TEXT"); + + b.Property("SubjectType") + .HasColumnType("INTEGER"); + + b.Property("UpdatedAt") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("CreatedAt"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.HasIndex("SubjectType", "SubjectId"); + + b.ToTable("CommentThread"); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormComponent", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ComplexFormEntryId") + .HasColumnType("TEXT"); + + b.Property("ComplexFormHeadword") + .HasColumnType("TEXT"); + + b.Property("ComponentEntryId") + .HasColumnType("TEXT"); + + b.Property("ComponentHeadword") + .HasColumnType("TEXT"); + + b.Property("ComponentSenseId") + .HasColumnType("TEXT") + .HasColumnName("ComponentSenseId"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("ComponentEntryId"); + + b.HasIndex("ComponentSenseId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.HasIndex("ComplexFormEntryId", "ComponentEntryId") + .IsUnique() + .HasFilter("ComponentSenseId IS NULL"); + + b.HasIndex("ComplexFormEntryId", "ComponentEntryId", "ComponentSenseId") + .IsUnique() + .HasFilter("ComponentSenseId IS NOT NULL"); + + b.ToTable("ComplexFormComponents", (string)null); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("ComplexFormType"); + }); + + modelBuilder.Entity("MiniLcm.Models.CustomView", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Analysis") + .HasColumnType("jsonb"); + + b.Property("Base") + .HasColumnType("INTEGER"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("EntryFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ExampleFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("SenseFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Vernacular") + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("CustomView"); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CitationForm") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ComplexFormTypes") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("HomographNumber") + .HasColumnType("INTEGER"); + + b.Property("LexemeForm") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("LiteralMeaning") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("MorphType") + .HasColumnType("INTEGER"); + + b.Property("Note") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("PublishIn") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Entry"); + }); + + modelBuilder.Entity("MiniLcm.Models.ExampleSentence", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("Reference") + .HasColumnType("jsonb"); + + b.Property("SenseId") + .HasColumnType("TEXT"); + + b.Property("Sentence") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Translations") + .IsRequired() + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("SenseId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("ExampleSentence"); + }); + + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Description") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Kind") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Postfix") + .HasColumnType("TEXT"); + + b.Property("Prefix") + .HasColumnType("TEXT"); + + b.Property("SecondaryOrder") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Kind") + .IsUnique(); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("MorphType"); + }); + + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Predefined") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("PartOfSpeech"); + }); + + modelBuilder.Entity("MiniLcm.Models.Publication", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("IsMain") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Publication"); + }); + + modelBuilder.Entity("MiniLcm.Models.SemanticDomain", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Code") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Description") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("LouwNidaCodes") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("OcmCodes") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Predefined") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("SemanticDomain"); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("EntryId") + .HasColumnType("TEXT"); + + b.Property("Gloss") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("PartOfSpeechId") + .HasColumnType("TEXT"); + + b.Property("Pictures") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("jsonb") + .HasDefaultValueSql("'[]'"); + + b.Property("SemanticDomains") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("EntryId"); + + b.HasIndex("PartOfSpeechId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Sense"); + }); + + modelBuilder.Entity("MiniLcm.Models.UserComment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("AuthorId") + .HasColumnType("TEXT"); + + b.Property("AuthorName") + .HasColumnType("TEXT"); + + b.Property("CommentThreadId") + .HasColumnType("TEXT"); + + b.Property("CreatedAt") + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("PreviousCommentId") + .HasColumnType("TEXT"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Text") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("UpdatedAt") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("CommentThreadId"); + + b.HasIndex("CreatedAt"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("UserComment"); + }); + + modelBuilder.Entity("MiniLcm.Models.WritingSystem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Exemplars") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Font") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Type") + .HasColumnType("INTEGER"); + + b.Property("WsId") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.HasIndex("WsId", "Type") + .IsUnique(); + + b.ToTable("WritingSystem"); + }); + + modelBuilder.Entity("SIL.Harmony.Commit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ClientId") + .HasColumnType("TEXT"); + + b.Property("Hash") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Metadata") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ParentHash") + .IsRequired() + .HasColumnType("TEXT"); + + b.ComplexProperty(typeof(Dictionary), "HybridDateTime", "SIL.Harmony.Commit.HybridDateTime#HybridDateTime", b1 => + { + b1.IsRequired(); + + b1.Property("Counter") + .HasColumnType("INTEGER") + .HasColumnName("Counter"); + + b1.Property("DateTime") + .HasColumnType("TEXT") + .HasColumnName("DateTime"); + }); + + b.HasKey("Id"); + + b.ToTable("Commits", (string)null); + + b.HasAnnotation("CustomIndex:CompositeIndexes", "[{\"paths\":[\"HybridDateTime.DateTime\",\"HybridDateTime.Counter\",\"Id\"],\"unique\":false,\"name\":\"IX_Commits_DateTime_Counter_Id\"}]"); + }); + + modelBuilder.Entity("SIL.Harmony.Core.ChangeEntity", b => + { + b.Property("CommitId") + .HasColumnType("TEXT"); + + b.Property("Index") + .HasColumnType("INTEGER"); + + b.Property("Change") + .HasColumnType("jsonb"); + + b.Property("EntityId") + .HasColumnType("TEXT"); + + b.HasKey("CommitId", "Index"); + + b.ToTable("ChangeEntities", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Db.ObjectSnapshot", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CommitId") + .HasColumnType("TEXT"); + + b.Property("Entity") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("EntityId") + .HasColumnType("TEXT"); + + b.Property("EntityIsDeleted") + .HasColumnType("INTEGER"); + + b.Property("IsRoot") + .HasColumnType("INTEGER"); + + b.PrimitiveCollection("References") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TypeName") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("EntityId"); + + b.HasIndex("CommitId", "EntityId") + .IsUnique(); + + b.ToTable("Snapshots", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.LocalResource", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("LocalPath") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("LocalResource"); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.RemoteResource", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Metadata") + .HasColumnType("jsonb"); + + b.Property("RemoteId") + .HasColumnType("TEXT"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("RemoteResource", (string)null); + }); + + modelBuilder.Entity("MiniLcm.Models.CommentThread", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.CommentThread", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormComponent", b => + { + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("Components") + .HasForeignKey("ComplexFormEntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("ComplexForms") + .HasForeignKey("ComponentEntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.Sense", null) + .WithMany() + .HasForeignKey("ComponentSenseId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ComplexFormComponent", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormType", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ComplexFormType", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.CustomView", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.CustomView", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Entry", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.ExampleSentence", b => + { + b.HasOne("MiniLcm.Models.Sense", null) + .WithMany("ExampleSentences") + .HasForeignKey("SenseId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ExampleSentence", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.MorphType", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.PartOfSpeech", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Publication", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Publication", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.SemanticDomain", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.SemanticDomain", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("Senses") + .HasForeignKey("EntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.PartOfSpeech", "PartOfSpeech") + .WithMany() + .HasForeignKey("PartOfSpeechId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Sense", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + + b.Navigation("PartOfSpeech"); + }); + + modelBuilder.Entity("MiniLcm.Models.UserComment", b => + { + b.HasOne("MiniLcm.Models.CommentThread", null) + .WithMany("Comments") + .HasForeignKey("CommentThreadId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.UserComment", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.WritingSystem", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.WritingSystem", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("SIL.Harmony.Core.ChangeEntity", b => + { + b.HasOne("SIL.Harmony.Commit", null) + .WithMany("ChangeEntities") + .HasForeignKey("CommitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("SIL.Harmony.Db.ObjectSnapshot", b => + { + b.HasOne("SIL.Harmony.Commit", "Commit") + .WithMany("Snapshots") + .HasForeignKey("CommitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Commit"); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.RemoteResource", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("SIL.Harmony.Resource.RemoteResource", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.CommentThread", b => + { + b.Navigation("Comments"); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.Navigation("ComplexForms"); + + b.Navigation("Components"); + + b.Navigation("Senses"); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.Navigation("ExampleSentences"); + }); + + modelBuilder.Entity("SIL.Harmony.Commit", b => + { + b.Navigation("ChangeEntities"); + + b.Navigation("Snapshots"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/backend/FwLite/LcmCrdt/Migrations/20260807043954_AddSemanticDomainExtendedFields.cs b/backend/FwLite/LcmCrdt/Migrations/20260807043954_AddSemanticDomainExtendedFields.cs new file mode 100644 index 0000000000..8ccf058ba9 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260807043954_AddSemanticDomainExtendedFields.cs @@ -0,0 +1,62 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace LcmCrdt.Migrations +{ + /// + public partial class AddSemanticDomainExtendedFields : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "Abbreviation", + table: "SemanticDomain", + type: "jsonb", + nullable: false, + defaultValueSql: "'{}'"); + + migrationBuilder.AddColumn( + name: "Description", + table: "SemanticDomain", + type: "jsonb", + nullable: false, + defaultValueSql: "'{}'"); + + migrationBuilder.AddColumn( + name: "LouwNidaCodes", + table: "SemanticDomain", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "OcmCodes", + table: "SemanticDomain", + type: "TEXT", + nullable: false, + defaultValue: ""); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Abbreviation", + table: "SemanticDomain"); + + migrationBuilder.DropColumn( + name: "Description", + table: "SemanticDomain"); + + migrationBuilder.DropColumn( + name: "LouwNidaCodes", + table: "SemanticDomain"); + + migrationBuilder.DropColumn( + name: "OcmCodes", + table: "SemanticDomain"); + } + } +} diff --git a/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs b/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs index e01718e11d..f8f7a8599e 100644 --- a/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs +++ b/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs @@ -472,6 +472,10 @@ protected override void BuildModel(ModelBuilder modelBuilder) .ValueGeneratedOnAdd() .HasColumnType("TEXT"); + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("jsonb"); + b.Property("Code") .IsRequired() .HasColumnType("TEXT"); @@ -479,10 +483,22 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("DeletedAt") .HasColumnType("TEXT"); + b.Property("Description") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("LouwNidaCodes") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("Name") .IsRequired() .HasColumnType("jsonb"); + b.Property("OcmCodes") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("Predefined") .HasColumnType("INTEGER"); diff --git a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs index 3732e63f0d..44db0fa58c 100644 --- a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs +++ b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs @@ -45,6 +45,18 @@ public static AutoFakerConfig MakeConfig(string[]? validWs = null, int repeatCou if (context.Instance is SemanticDomain domain) { domain.Predefined = false; + // LCM stores hierarchy codes in Abbreviation; keep a single "en" value aligned with Code + // so FwData round-trips match (GetSemanticDomainCode vs multi-WS Abbreviation). + var code = !string.IsNullOrEmpty(domain.Code) + ? domain.Code + : SemanticDomain.CodeFromAbbreviation(domain.Abbreviation); + if (string.IsNullOrEmpty(code)) + code = "1"; + domain.Abbreviation = new MultiString { { "en", code } }; + domain.Code = code; + domain.Description ??= new RichMultiString(); + domain.OcmCodes ??= string.Empty; + domain.LouwNidaCodes ??= string.Empty; } }, true), new SimpleOverride(context => diff --git a/backend/FwLite/MiniLcm.Tests/BasicApiTestsBase.cs b/backend/FwLite/MiniLcm.Tests/BasicApiTestsBase.cs index 4d0da31a51..eb22e25484 100644 --- a/backend/FwLite/MiniLcm.Tests/BasicApiTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/BasicApiTestsBase.cs @@ -255,7 +255,7 @@ public async Task CreateSense_WillCreateWithExistingDomains() { var senseId = Guid.NewGuid(); var semanticDomainId = Guid.NewGuid(); - await Api.CreateSemanticDomain(new SemanticDomain() { Id = semanticDomainId, Code = "test", Name = new MultiString() { { "en", "test" } } }); + await Api.CreateSemanticDomain(new SemanticDomain() { Id = semanticDomainId, Abbreviation = { { "en", "test" } }, Name = new MultiString() { { "en", "test" } } }); var semanticDomain = await Api.GetSemanticDomains().SingleOrDefaultAsync(sd => sd.Id == semanticDomainId); ArgumentNullException.ThrowIfNull(semanticDomain); var createdSense = await Api.CreateSense(Entry1Id, new Sense() diff --git a/backend/FwLite/MiniLcm.Tests/Helpers/NfcTestData.cs b/backend/FwLite/MiniLcm.Tests/Helpers/NfcTestData.cs index bd727c2293..b53007fdae 100644 --- a/backend/FwLite/MiniLcm.Tests/Helpers/NfcTestData.cs +++ b/backend/FwLite/MiniLcm.Tests/Helpers/NfcTestData.cs @@ -71,6 +71,10 @@ public static SemanticDomain CreateNfcSemanticDomain() Id = Guid.NewGuid(), Code = Nfc, Name = CreateNfcMultiString(), + Abbreviation = CreateNfcMultiString(), + Description = CreateNfcRichMultiString(), + OcmCodes = Nfc, + LouwNidaCodes = Nfc, Predefined = true, }; } diff --git a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs index 5766b1a153..3c53d8eb40 100644 --- a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs @@ -21,7 +21,7 @@ public override async Task InitializeAsync() await base.InitializeAsync(); var nounPos = new PartOfSpeech() { Id = Guid.NewGuid(), Name = { { "en", "Noun" } } }; await Api.CreatePartOfSpeech(nounPos); - var semanticDomain = new SemanticDomain() { Id = Guid.NewGuid(), Name = { { "en", "Fruit" } }, Code = "1. Fruit" }; + var semanticDomain = new SemanticDomain() { Id = Guid.NewGuid(), Name = { { "en", "Fruit" } }, Abbreviation = { { "en", "1. Fruit" } } }; await Api.CreateSemanticDomain(semanticDomain); var complexFormType = new ComplexFormType() { Id = Guid.NewGuid(), Name = new() { { "en", "Very complex" } } }; await Api.CreateComplexFormType(complexFormType); diff --git a/backend/FwLite/MiniLcm.Tests/SemanticDomainTestsBase.cs b/backend/FwLite/MiniLcm.Tests/SemanticDomainTestsBase.cs index a84f96fa52..c5f03065bd 100644 --- a/backend/FwLite/MiniLcm.Tests/SemanticDomainTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/SemanticDomainTestsBase.cs @@ -12,12 +12,16 @@ public override async Task InitializeAsync() var semanticDomain = new SemanticDomain() { - Id = Guid.NewGuid(), Name = new MultiString() { { "en", "new-semantic-domain" } }, Code = "1.0" + Id = Guid.NewGuid(), + Name = new MultiString() { { "en", "new-semantic-domain" } }, + Abbreviation = new MultiString() { { "en", "1.0" } }, }; await Api.CreateSemanticDomain(semanticDomain); await Api.CreateSemanticDomain(new SemanticDomain() { - Id = Guid.NewGuid(), Name = new MultiString() { { "en", "new-semantic-domain-2" } }, Code = "1.1" + Id = Guid.NewGuid(), + Name = new MultiString() { { "en", "new-semantic-domain-2" } }, + Abbreviation = new MultiString() { { "en", "1.1" } }, }); await Api.CreateEntry(new Entry() @@ -50,6 +54,61 @@ public async Task GetSemanticDomains_ReturnsAllSemanticDomains() }); } + [Fact] + public async Task CreateSemanticDomain_RoundTripsExtendedFields() + { + var id = Guid.NewGuid(); + var created = await Api.CreateSemanticDomain(new SemanticDomain + { + Id = id, + Name = new MultiString { { "en", "Animals" } }, + Abbreviation = new MultiString { { "en", "1.6" } }, + Description = new RichMultiString { { "en", new RichString("Living creatures") } }, + OcmCodes = "22; 22.1", + LouwNidaCodes = "4.1; 4.2", + }); + + created.Abbreviation.Values["en"].Should().Be("1.6"); + created.Code.Should().Be("1.6"); + created.Description["en"].GetPlainText().Should().Be("Living creatures"); + created.OcmCodes.Should().Be("22; 22.1"); + created.LouwNidaCodes.Should().Be("4.1; 4.2"); + + var fetched = await Api.GetSemanticDomain(id); + fetched.Should().NotBeNull(); + fetched!.Abbreviation.Values["en"].Should().Be("1.6"); + fetched.Code.Should().Be("1.6"); + fetched.Description["en"].GetPlainText().Should().Be("Living creatures"); + fetched.OcmCodes.Should().Be("22; 22.1"); + fetched.LouwNidaCodes.Should().Be("4.1; 4.2"); + } + + [Fact] + public async Task UpdateSemanticDomain_UpdatesExtendedFields() + { + var id = Guid.NewGuid(); + var before = await Api.CreateSemanticDomain(new SemanticDomain + { + Id = id, + Name = new MultiString { { "en", "Food" } }, + Abbreviation = new MultiString { { "en", "5.2" } }, + }); + + var after = before.Copy(); + after.Abbreviation = new MultiString { { "en", "5.2.1" } }; + after.Code = string.Empty; // prefer Abbreviation when Code is cleared + after.Description = new RichMultiString { { "en", new RichString("Things people eat") } }; + after.OcmCodes = "25"; + after.LouwNidaCodes = "5"; + + var updated = await Api.UpdateSemanticDomain(before, after); + updated.Abbreviation.Values["en"].Should().Be("5.2.1"); + updated.Code.Should().Be("5.2.1"); + updated.Description["en"].GetPlainText().Should().Be("Things people eat"); + updated.OcmCodes.Should().Be("25"); + updated.LouwNidaCodes.Should().Be("5"); + } + [Fact] public async Task Sense_HasSemanticDomains() { diff --git a/backend/FwLite/MiniLcm/Models/SemanticDomain.cs b/backend/FwLite/MiniLcm/Models/SemanticDomain.cs index f300d8c0da..ef88fc87d6 100644 --- a/backend/FwLite/MiniLcm/Models/SemanticDomain.cs +++ b/backend/FwLite/MiniLcm/Models/SemanticDomain.cs @@ -4,10 +4,49 @@ public class SemanticDomain : IPossibility, IObjectWithId { public virtual Guid Id { get; set; } public virtual MultiString Name { get; set; } = new(); + public virtual MultiString Abbreviation { get; set; } = new(); + /// + /// Convenience code for UI/filters. Prefer Abbreviation for multi-writing-system data. + /// When empty, filled from Abbreviation via . + /// When set (e.g. by FLEx), Code is preferred over Abbreviation. + /// public virtual string Code { get; set; } = string.Empty; + public virtual RichMultiString Description { get; set; } = new(); + public virtual string OcmCodes { get; set; } = string.Empty; + public virtual string LouwNidaCodes { get; set; } = string.Empty; public DateTimeOffset? DeletedAt { get; set; } public bool Predefined { get; set; } + /// First non-empty Abbreviation value, preferring English. + public static string CodeFromAbbreviation(MultiString abbreviation) + { + if (abbreviation.Values.TryGetValue("en", out var en) && !string.IsNullOrEmpty(en)) + return en; + foreach (var value in abbreviation.Values.Values) + { + if (!string.IsNullOrEmpty(value)) + return value; + } + return string.Empty; + } + + /// + /// Prefer a non-empty (e.g. FLEx-supplied); otherwise derive from Abbreviation. + /// Never invents Abbreviation from Code. + /// + public static string ResolveCode(MultiString abbreviation, string? code) + { + if (!string.IsNullOrEmpty(code)) + return code; + return CodeFromAbbreviation(abbreviation); + } + + /// Fill from Abbreviation only when Code is empty. + public void ApplyResolvedCode() + { + Code = ResolveCode(Abbreviation, Code); + } + public Guid[] GetReferences() { return []; @@ -24,6 +63,10 @@ public SemanticDomain Copy() Id = Id, Code = Code, Name = Name.Copy(), + Abbreviation = Abbreviation.Copy(), + Description = Description.Copy(), + OcmCodes = OcmCodes, + LouwNidaCodes = LouwNidaCodes, DeletedAt = DeletedAt, Predefined = Predefined }; diff --git a/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs b/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs index a43847bb50..10b8f7c6f3 100644 --- a/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs +++ b/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs @@ -168,7 +168,11 @@ private static SemanticDomain NormalizeSemanticDomain(SemanticDomain sd) { var copy = sd.Copy(); copy.Name = StringNormalizer.Normalize(sd.Name); - copy.Code = StringNormalizer.Normalize(sd.Code); // yes, LibLcm normalizes this too + copy.Abbreviation = StringNormalizer.Normalize(sd.Abbreviation); + copy.Description = StringNormalizer.Normalize(sd.Description); + copy.OcmCodes = StringNormalizer.Normalize(sd.OcmCodes) ?? string.Empty; + copy.LouwNidaCodes = StringNormalizer.Normalize(sd.LouwNidaCodes) ?? string.Empty; + copy.Code = StringNormalizer.Normalize(SemanticDomain.ResolveCode(copy.Abbreviation, sd.Code)) ?? string.Empty; return copy; } diff --git a/backend/FwLite/MiniLcm/SyncHelpers/SemanticDomainSync.cs b/backend/FwLite/MiniLcm/SyncHelpers/SemanticDomainSync.cs index f5a94fc947..74caaa6906 100644 --- a/backend/FwLite/MiniLcm/SyncHelpers/SemanticDomainSync.cs +++ b/backend/FwLite/MiniLcm/SyncHelpers/SemanticDomainSync.cs @@ -26,14 +26,26 @@ public static async Task Sync(SemanticDomain before, public static UpdateObjectInput? SemanticDomainDiffToUpdate(SemanticDomain beforeSemanticDomain, SemanticDomain afterSemanticDomain) { + afterSemanticDomain.ApplyResolvedCode(); JsonPatchDocument patchDocument = new(); patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(SemanticDomain.Name), beforeSemanticDomain.Name, afterSemanticDomain.Name)); - // TODO: Once we add abbreviations to MiniLcm's SemanticDomain objects, then: - // patchDocument.Operations.AddRange(GetMultiStringDiff(nameof(SemanticDomain.Abbreviation), - // beforeSemanticDomain.Abbreviation, - // afterSemanticDomain.Abbreviation)); + patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(SemanticDomain.Abbreviation), + beforeSemanticDomain.Abbreviation, + afterSemanticDomain.Abbreviation)); + patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(SemanticDomain.Description), + beforeSemanticDomain.Description, + afterSemanticDomain.Description)); + patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff(nameof(SemanticDomain.Code), + beforeSemanticDomain.Code, + afterSemanticDomain.Code)); + patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff(nameof(SemanticDomain.OcmCodes), + beforeSemanticDomain.OcmCodes, + afterSemanticDomain.OcmCodes)); + patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff(nameof(SemanticDomain.LouwNidaCodes), + beforeSemanticDomain.LouwNidaCodes, + afterSemanticDomain.LouwNidaCodes)); if (patchDocument.Operations.Count == 0) return null; return new UpdateObjectInput(patchDocument); } diff --git a/backend/FwLite/MiniLcm/Validators/SemanticDomainValidator.cs b/backend/FwLite/MiniLcm/Validators/SemanticDomainValidator.cs index 633049b3ff..b8d2545391 100644 --- a/backend/FwLite/MiniLcm/Validators/SemanticDomainValidator.cs +++ b/backend/FwLite/MiniLcm/Validators/SemanticDomainValidator.cs @@ -7,9 +7,9 @@ public class SemanticDomainValidator : AbstractValidator { public SemanticDomainValidator() { - RuleFor(s => s.Code) - .NotNull().WithMessage((s) => $"Code is required ({s.Name} - {s.Id})") - .NotEmpty().WithMessage((s) => $"Code is required ({s.Name} - {s.Id})"); + RuleFor(s => s) + .Must(s => !string.IsNullOrEmpty(SemanticDomain.ResolveCode(s.Abbreviation, s.Code))) + .WithMessage(s => $"Code or Abbreviation is required ({s.Name} - {s.Id})"); RuleFor(s => s.DeletedAt).Null(); RuleFor(s => s.Id).Must(BeCanonicalGuid).When(s => s.Predefined); RuleFor(s => s.Name).Required(s => s.Id.ToString("D")); diff --git a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISemanticDomain.ts b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISemanticDomain.ts index 502822071c..f14e7c1d7f 100644 --- a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISemanticDomain.ts +++ b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISemanticDomain.ts @@ -5,12 +5,17 @@ import type {IObjectWithId} from './IObjectWithId'; import type {IMultiString} from '$lib/dotnet-types/i-multi-string'; +import type {IRichMultiString} from '$lib/dotnet-types/i-multi-string'; export interface ISemanticDomain extends IObjectWithId { id: string; name: IMultiString; + abbreviation: IMultiString; code: string; + description: IRichMultiString; + ocmCodes: string; + louwNidaCodes: string; deletedAt?: string; predefined: boolean; } diff --git a/frontend/viewer/src/project/demo/in-memory-demo-api.ts b/frontend/viewer/src/project/demo/in-memory-demo-api.ts index 07962c8edb..9b8dcdc042 100644 --- a/frontend/viewer/src/project/demo/in-memory-demo-api.ts +++ b/frontend/viewer/src/project/demo/in-memory-demo-api.ts @@ -203,8 +203,26 @@ export class InMemoryDemoApi implements IMiniLcmJsInvokable { getSemanticDomains(): Promise { return Promise.resolve([ - {id: '36e8f1df-1798-4ae6-904d-600ca6eb4145', name: {en: 'Fruit'}, code: '1', predefined: false}, - {id: 'Animal', name: {en: 'Animal'}, code: '2', predefined: false}, + { + id: '36e8f1df-1798-4ae6-904d-600ca6eb4145', + name: {en: 'Fruit'}, + abbreviation: {en: '1'}, + code: '1', + description: {}, + ocmCodes: '', + louwNidaCodes: '', + predefined: false, + }, + { + id: 'Animal', + name: {en: 'Animal'}, + abbreviation: {en: '2'}, + code: '2', + description: {}, + ocmCodes: '', + louwNidaCodes: '', + predefined: false, + }, ]); }